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¶
organizations_describe_policy(PolicyId)
Arguments¶
PolicyId |
[required] The unique identifier (ID) of the policy that you want
details about. You can get the ID from the 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"|"RESOURCE_CONTROL_POLICY"|"TAG_POLICY"|"BACKUP_POLICY"|"AISERVICES_OPT_OUT_POLICY"|"CHATBOT_POLICY"|"DECLARATIVE_POLICY_EC2",
AwsManaged = TRUE|FALSE
),
Content = "string"
)
)
Request syntax¶
svc$describe_policy(
PolicyId = "string"
)
Examples¶
## Not run:
# The following example shows how to request information about a
# policy:/n/n
svc$describe_policy(
PolicyId = "p-examplepolicyid111"
)
## End(Not run)