{ "$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": "

The name of the user whose MFA device you want to resynchronize.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

" } ] }, "SerialNumber": { "allOf": [ { "$ref": "#/components/schemas/serialNumberType" }, { "description": "

Serial number that uniquely identifies the MFA device.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

" } ] }, "AuthenticationCode1": { "allOf": [ { "$ref": "#/components/schemas/authenticationCodeType" }, { "description": "

An authentication code emitted by the device.

The format for this parameter is a sequence of six digits.

" } ] }, "AuthenticationCode2": { "allOf": [ { "$ref": "#/components/schemas/authenticationCodeType" }, { "description": "

A subsequent authentication code emitted by the device.

The format for this parameter is a sequence of six digits.

" } ] } } }