{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteRolePolicyRequest", "title": "DeleteRolePolicyRequest", "type": "object", "required": [ "RoleName", "PolicyName" ], "properties": { "RoleName": { "allOf": [ { "$ref": "#/components/schemas/roleNameType" }, { "description": "
The name (friendly name, not ARN) identifying the role 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 of the inline policy to delete from the specified IAM role.
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: _+=,.@-
" } ] } } }