Properties
| Name | Type | Description |
|---|---|---|
| InstanceProfileName | object | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TagInstanceProfileRequest",
"title": "TagInstanceProfileRequest",
"type": "object",
"required": [
"InstanceProfileName",
"Tags"
],
"properties": {
"InstanceProfileName": {
"allOf": [
{
"$ref": "#/components/schemas/instanceProfileNameType"
},
{
"description": "<p>The name of the IAM instance profile to which you want to add tags.</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>"
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/tagListType"
},
{
"description": "The list of tags that you want to attach to the IAM instance profile. Each tag consists of a key name and an associated value."
}
]
}
}
}