Properties
| Name | Type | Description |
|---|---|---|
| UserName | object | |
| SerialNumber | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeactivateMFADeviceRequest",
"title": "DeactivateMFADeviceRequest",
"type": "object",
"required": [
"UserName",
"SerialNumber"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/existingUserNameType"
},
{
"description": "<p>The name of the user whose MFA device you want to deactivate.</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>"
}
]
},
"SerialNumber": {
"allOf": [
{
"$ref": "#/components/schemas/serialNumberType"
},
{
"description": "<p>The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device 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>"
}
]
}
}
}