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

VirtualMFADevice

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

Contains information about a virtual MFA device.

interface VirtualMFADevice {
Base32StringSeed?: Uint8Array | null;
EnableDate?: Date | number | null;
QRCodePNG?: Uint8Array | null;
SerialNumber: string;
Tags: Tag[];
User?: User | null;
}

§Properties

§
Base32StringSeed?: Uint8Array | null
[src]

The base32 seed defined as specified in RFC3548. The Base32StringSeed is base64-encoded.

§
EnableDate?: Date | number | null
[src]

The date and time on which the virtual MFA device was enabled.

§
QRCodePNG?: Uint8Array | null
[src]

A QR code PNG image that encodes otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String where $virtualMFADeviceName is one of the create call arguments. AccountName is the user name if set (otherwise, the account ID otherwise), and Base32String is the seed in base32 format. The Base32String value is base64-encoded.

§
SerialNumber: string
[src]

The serial number associated with VirtualMFADevice.

§
Tags: Tag[]
[src]

A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

§
User?: User | null
[src]

The IAM user associated with this virtual MFA device.