{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MFADevice", "title": "MFADevice", "type": "object", "required": [ "UserName", "SerialNumber", "EnableDate" ], "properties": { "UserName": { "allOf": [ { "$ref": "#/components/schemas/userNameType" }, { "description": "The user with whom the MFA device is associated." } ] }, "SerialNumber": { "allOf": [ { "$ref": "#/components/schemas/serialNumberType" }, { "description": "The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN." } ] }, "EnableDate": { "allOf": [ { "$ref": "#/components/schemas/dateType" }, { "description": "The date when the MFA device was enabled for the user." } ] } }, "description": "
Contains information about an MFA device.
This data type is used as a response element in the ListMFADevices operation.
" }