{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetUserPolicyRequest", "title": "GetUserPolicyRequest", "type": "object", "required": [ "UserName", "PolicyName" ], "properties": { "UserName": { "allOf": [ { "$ref": "#/components/schemas/existingUserNameType" }, { "description": "
The name of the user who the policy is associated with.
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: _+=,.@-
" } ] } } }