Describe Account
organizations_describe_account | R Documentation |
Retrieves Organizations-related information about the specified account¶
Description¶
Retrieves Organizations-related information about the specified account.
This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an Amazon Web Services service.
Usage¶
Arguments¶
AccountId
[required] The unique identifier (ID) of the Amazon Web Services account that you want information about. You can get the ID from the
list_accounts
orlist_accounts_for_parent
operations.The regex pattern for an account ID string requires exactly 12 digits.
Value¶
A list with the following syntax:
list(
Account = list(
Id = "string",
Arn = "string",
Email = "string",
Name = "string",
Status = "ACTIVE"|"SUSPENDED"|"PENDING_CLOSURE",
JoinedMethod = "INVITED"|"CREATED",
JoinedTimestamp = as.POSIXct(
"2015-01-01"
)
)
)