APIs.io Engineering Platform · Schema
RemoveRoleFromInstanceProfileRequest
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| InstanceProfileName | object | |
| RoleName | object |
JSON Schema
{
"$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": "<p>The name of the instance profile to update.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p>"
}
]
},
"RoleName": {
"allOf": [
{
"$ref": "#/components/schemas/roleNameType"
},
{
"description": "<p>The name of the role to remove.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p>"
}
]
}
}
}