Learn R Programming

paws.security.identity (version 0.1.12)

guardduty_disassociate_members: Disassociates GuardDuty member accounts (to the current GuardDuty administrator account) specified by the account IDs

Description

Disassociates GuardDuty member accounts (to the current GuardDuty administrator account) specified by the account IDs.

Usage

guardduty_disassociate_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 of the GuardDuty account whose members you want to disassociate from the administrator account.

AccountIds

[required] A list of account IDs of the GuardDuty member accounts that you want to disassociate from the administrator account.

Request syntax

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