List Members
| securityhub_list_members | R Documentation |
Lists details about all member accounts for the current Security Hub administrator account¶
Description¶
Lists details about all member accounts for the current Security Hub administrator account.
The results include both member accounts that belong to an organization and member accounts that were invited manually.
Usage¶
Arguments¶
OnlyAssociatedSpecifies which member accounts to include in the response based on their relationship status with the administrator account. The default value is
TRUE.If
OnlyAssociatedis set toTRUE, the response includes member accounts whose relationship status with the administrator account is set toENABLED.If
OnlyAssociatedis set toFALSE, the response includes all existing member accounts.MaxResultsThe maximum number of items to return in the response.
NextTokenThe token that is required for pagination. On your first call to the
list_membersoperation, set the value of this parameter toNULL.For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
Value¶
A list with the following syntax:
list(
Members = list(
list(
AccountId = "string",
Email = "string",
MasterId = "string",
AdministratorId = "string",
MemberStatus = "string",
InvitedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)