Properties
| Name | Type | Description |
|---|---|---|
| UserName | object | |
| TagKeys | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UntagUserRequest",
"title": "UntagUserRequest",
"type": "object",
"required": [
"UserName",
"TagKeys"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/existingUserNameType"
},
{
"description": "<p>The name of the IAM user from which you want to remove 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>"
}
]
},
"TagKeys": {
"allOf": [
{
"$ref": "#/components/schemas/tagKeyListType"
},
{
"description": "A list of key names as a simple array of strings. The tags with matching keys are removed from the specified user."
}
]
}
}
}