{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeleteRolePermissionsBoundaryRequest",
"title": "DeleteRolePermissionsBoundaryRequest",
"type": "object",
"required": [
"RoleName"
],
"properties": {
"RoleName": {
"allOf": [
{
"$ref": "#/components/schemas/roleNameType"
},
{
"description": "The name (friendly name, not ARN) of the IAM role from which you want to remove the permissions boundary."
}
]
}
}
}