{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteUserPolicyRequest", "title": "DeleteUserPolicyRequest", "type": "object", "required": [ "UserName", "PolicyName" ], "properties": { "UserName": { "allOf": [ { "$ref": "#/components/schemas/existingUserNameType" }, { "description": "

The name (friendly name, not ARN) identifying the user that the policy is embedded in.

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 identifying the policy document to delete.

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: _+=,.@-

" } ] } } }