Learn R Programming

paws.security.identity (version 0.1.12)

guardduty_invite_members: Invites other AWS accounts (created as members of the current AWS account by CreateMembers) to enable GuardDuty, and allow the current AWS account to view and manage these accounts' findings on their behalf as the GuardDuty administrator account

Description

Invites other AWS accounts (created as members of the current AWS account by CreateMembers) to enable GuardDuty, and allow the current AWS account to view and manage these accounts' findings on their behalf as the GuardDuty administrator account.

Usage

guardduty_invite_members(DetectorId, AccountIds,
  DisableEmailNotification, Message)

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 that you want to invite members with.

AccountIds

[required] A list of account IDs of the accounts that you want to invite to GuardDuty as members.

DisableEmailNotification

A Boolean value that specifies whether you want to disable email notification to the accounts that you are inviting to GuardDuty as members.

Message

The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members.

Request syntax

svc$invite_members(
  DetectorId = "string",
  AccountIds = list(
    "string"
  ),
  DisableEmailNotification = TRUE|FALSE,
  Message = "string"
)