DeactivateMFADeviceRequest

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-deactivatemfadevicerequest-schema.json Raw ↑
{
  "$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>"
        }
      ]
    }
  }
}