Describe Policy
organizations_describe_policy | R Documentation |
Retrieves information about a policy¶
Description¶
Retrieves information about a policy.
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¶
PolicyId
[required] The unique identifier (ID) of the policy that you want details about. You can get the ID from the
list_policies
orlist_policies_for_target
operations.The regex pattern for a policy ID string requires "p-" followed by from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_).
Value¶
A list with the following syntax:
list(
Policy = list(
PolicySummary = list(
Id = "string",
Arn = "string",
Name = "string",
Description = "string",
Type = "SERVICE_CONTROL_POLICY"|"TAG_POLICY"|"BACKUP_POLICY"|"AISERVICES_OPT_OUT_POLICY",
AwsManaged = TRUE|FALSE
),
Content = "string"
)
)