MFADevice

Contains information about an MFA device.

This data type is used as a response element in the ListMFADevices operation.

APIs.ioEngineeringPlatform

Properties

Name Type Description
UserName object
SerialNumber object
EnableDate object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-mfadevice-schema.json Raw ↑
{
  "$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": "<p>Contains information about an MFA device.</p> <p>This data type is used as a response element in the <a>ListMFADevices</a> operation.</p>"
}