Describe Organization
| organizations_describe_organization | R Documentation |
Retrieves information about the organization that the user's account belongs to¶
Description¶
Retrieves information about the organization that the user's account belongs to.
You can call this operation from any account in a organization.
Even if a policy type is shown as available in the organization, you can
disable it separately at the root level with disable_policy_type. Use
list_roots to see the status of policy types for a specified root.
Usage¶
Value¶
A list with the following syntax:
list(
Organization = list(
Id = "string",
Arn = "string",
FeatureSet = "ALL"|"CONSOLIDATED_BILLING",
MasterAccountArn = "string",
MasterAccountId = "string",
MasterAccountEmail = "string",
AvailablePolicyTypes = list(
list(
Type = "SERVICE_CONTROL_POLICY"|"RESOURCE_CONTROL_POLICY"|"TAG_POLICY"|"BACKUP_POLICY"|"AISERVICES_OPT_OUT_POLICY"|"CHATBOT_POLICY"|"DECLARATIVE_POLICY_EC2"|"SECURITYHUB_POLICY"|"INSPECTOR_POLICY"|"UPGRADE_ROLLOUT_POLICY"|"BEDROCK_POLICY"|"S3_POLICY"|"NETWORK_SECURITY_DIRECTOR_POLICY",
Status = "ENABLED"|"PENDING_ENABLE"|"PENDING_DISABLE"
)
)
)
)