{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetRolePolicyRequest", "title": "GetRolePolicyRequest", "type": "object", "required": [ "RoleName", "PolicyName" ], "properties": { "RoleName": { "allOf": [ { "$ref": "#/components/schemas/roleNameType" }, { "description": "
The name of the role associated with the policy.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
" } ] }, "PolicyName": { "allOf": [ { "$ref": "#/components/schemas/policyNameType" }, { "description": "The name of the policy document to get.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
" } ] } } }