Get Members
guardduty_get_members | R Documentation |
Retrieves GuardDuty member accounts (of the current GuardDuty administrator account) specified by the account IDs¶
Description¶
Retrieves GuardDuty member accounts (of the current GuardDuty administrator account) specified by the account IDs.
Usage¶
Arguments¶
DetectorId
[required] The unique ID of the detector of the GuardDuty account whose members you want to retrieve.
To find the
detectorId
in the current Region, see the Settings page in the GuardDuty console, or run thelist_detectors
API.AccountIds
[required] A list of account IDs of the GuardDuty member accounts that you want to describe.
Value¶
A list with the following syntax:
list(
Members = list(
list(
AccountId = "string",
DetectorId = "string",
MasterId = "string",
Email = "string",
RelationshipStatus = "string",
InvitedAt = "string",
UpdatedAt = "string",
AdministratorId = "string"
)
),
UnprocessedAccounts = list(
list(
AccountId = "string",
Result = "string"
)
)
)