Interface TwoFactorLoginCommandInput

interface TwoFactorLoginCommandInput {
    pollingNonce?: string;
    trustThisDevice: "0" | "1";
    twoFactorIdentifier?: string;
    username?: string;
    verificationCode: string;
    verificationMethod: TwoFactorMethod;
}

Properties

pollingNonce?: string
trustThisDevice: "0" | "1"
twoFactorIdentifier?: string
username?: string
verificationCode: string
verificationMethod: TwoFactorMethod