Skip to content

Start Monitoring Members

guardduty_start_monitoring_members R Documentation

Turns on GuardDuty monitoring of the specified member accounts

Description

Turns on GuardDuty monitoring of the specified member accounts. Use this operation to restart monitoring of accounts that you stopped monitoring with the stop_monitoring_members operation.

Usage

guardduty_start_monitoring_members(DetectorId, AccountIds)

Arguments

DetectorId

[required] The unique ID of the detector of the GuardDuty administrator account associated with the member accounts to monitor.

AccountIds

[required] A list of account IDs of the GuardDuty member accounts to start monitoring.

Value

A list with the following syntax:

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

Request syntax

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