Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MFADevice

import type { MFADevice } from "https://aws-api.deno.dev/v0.4/services/iam.ts?docs=full";

Contains information about an MFA device.

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

interface MFADevice {
EnableDate: Date | number;
SerialNumber: string;
UserName: string;
}

§Properties

§
EnableDate: Date | number
[src]

The date when the MFA device was enabled for the user.

§
SerialNumber: string
[src]

The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN.

§
UserName: string
[src]

The user with whom the MFA device is associated.