List Organization Admin Accounts
| securityhub_list_organization_admin_accounts | R Documentation |
Lists the Security Hub CSPM administrator accounts¶
Description¶
Lists the Security Hub CSPM administrator accounts. Can only be called by the organization management account.
Usage¶
securityhub_list_organization_admin_accounts(MaxResults, NextToken,
Feature)
Arguments¶
MaxResults |
The maximum number of items to return in the response. |
NextToken |
The token that is required for pagination. On your first call to
the |
Feature |
The feature where the delegated administrator account is listed. Defaults to Security Hub CSPM if not specified. |
Value¶
A list with the following syntax:
list(
AdminAccounts = list(
list(
AccountId = "string",
Status = "ENABLED"|"DISABLE_IN_PROGRESS"
)
),
NextToken = "string",
Feature = "SecurityHub"|"SecurityHubV2"
)
Request syntax¶
svc$list_organization_admin_accounts(
MaxResults = 123,
NextToken = "string",
Feature = "SecurityHub"|"SecurityHubV2"
)