Learn R Programming

paws.security.identity (version 0.1.12)

guardduty_stop_monitoring_members: Stops GuardDuty monitoring for the specified member accounts

Description

Stops GuardDuty monitoring for the specified member accounts. Use the start_monitoring_members operation to restart monitoring for those accounts.

Usage

guardduty_stop_monitoring_members(DetectorId, AccountIds)

Value

A list with the following syntax:

list(
  UnprocessedAccounts = list(
    list(
      AccountId = "string",
      Result = "string"
    )
  )
)

Arguments

DetectorId

[required] The unique ID of the detector associated with the GuardDuty administrator account that is monitoring member accounts.

AccountIds

[required] A list of account IDs for the member accounts to stop monitoring.

Request syntax

svc$stop_monitoring_members(
  DetectorId = "string",
  AccountIds = list(
    "string"
  )
)