{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetGroupPolicyResponse",
"title": "GetGroupPolicyResponse",
"type": "object",
"required": [
"GroupName",
"PolicyName",
"PolicyDocument"
],
"properties": {
"GroupName": {
"allOf": [
{
"$ref": "#/components/schemas/groupNameType"
},
{
"description": "The group the policy is associated with."
}
]
},
"PolicyName": {
"allOf": [
{
"$ref": "#/components/schemas/policyNameType"
},
{
"description": "The name of the policy."
}
]
},
"PolicyDocument": {
"allOf": [
{
"$ref": "#/components/schemas/policyDocumentType"
},
{
"description": "<p>The policy document.</p> <p>IAM stores policies in JSON format. However, resources that were created using CloudFormation templates can be formatted in YAML. CloudFormation always converts a YAML policy to JSON format before submitting it to IAM.</p>"
}
]
}
},
"description": "Contains the response to a successful <a>GetGroupPolicy</a> request. "
}