Properties
| Name | Type | Description |
|---|---|---|
| SerialNumber | object | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TagMFADeviceRequest",
"title": "TagMFADeviceRequest",
"type": "object",
"required": [
"SerialNumber",
"Tags"
],
"properties": {
"SerialNumber": {
"allOf": [
{
"$ref": "#/components/schemas/serialNumberType"
},
{
"description": "<p>The unique identifier for the IAM virtual MFA device to which you want to add tags. For virtual MFA devices, the serial number is the same as the ARN.</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 virtual MFA device. Each tag consists of a key name and an associated value."
}
]
}
}
}