Properties
| Name | Type | Description |
|---|---|---|
| UserName | object | |
| SerialNumber | object | |
| AuthenticationCode1 | object | |
| AuthenticationCode2 | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ResyncMFADeviceRequest",
"title": "ResyncMFADeviceRequest",
"type": "object",
"required": [
"UserName",
"SerialNumber",
"AuthenticationCode1",
"AuthenticationCode2"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/existingUserNameType"
},
{
"description": "<p>The name of the user whose MFA device you want to resynchronize.</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>Serial number that uniquely identifies the MFA device.</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>"
}
]
},
"AuthenticationCode1": {
"allOf": [
{
"$ref": "#/components/schemas/authenticationCodeType"
},
{
"description": "<p>An authentication code emitted by the device.</p> <p>The format for this parameter is a sequence of six digits.</p>"
}
]
},
"AuthenticationCode2": {
"allOf": [
{
"$ref": "#/components/schemas/authenticationCodeType"
},
{
"description": "<p>A subsequent authentication code emitted by the device.</p> <p>The format for this parameter is a sequence of six digits.</p>"
}
]
}
}
}