Properties
| Name | Type | Description |
|---|---|---|
| RoleName | object | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TagRoleRequest",
"title": "TagRoleRequest",
"type": "object",
"required": [
"RoleName",
"Tags"
],
"properties": {
"RoleName": {
"allOf": [
{
"$ref": "#/components/schemas/roleNameType"
},
{
"description": "<p>The name of the IAM role to which you want to add tags.</p> <p>This parameter accepts (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters that consist of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p>"
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/tagListType"
},
{
"description": "The list of tags that you want to attach to the IAM role. Each tag consists of a key name and an associated value."
}
]
}
}
}