{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RemoveRoleFromInstanceProfileRequest", "title": "RemoveRoleFromInstanceProfileRequest", "type": "object", "required": [ "InstanceProfileName", "RoleName" ], "properties": { "InstanceProfileName": { "allOf": [ { "$ref": "#/components/schemas/instanceProfileNameType" }, { "description": "

The name of the instance profile to update.

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

" } ] }, "RoleName": { "allOf": [ { "$ref": "#/components/schemas/roleNameType" }, { "description": "

The name of the role to remove.

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

" } ] } } }