Amplify Toolbox
    Preparing search index...

    Type Alias MfaSignUpFlow

    type MfaSignUpFlow = {
        emailSignUpChallenge?: () => Promise<ChallengeResponse>;
        mfaPreference?: "EMAIL" | "SMS" | "TOTP";
        password: string;
        signInFlow: "MFA";
        smsSignUpChallenge?: () => Promise<ChallengeResponse>;
        totpSignUpChallenge?: (
            totpSetup: auth.SetUpTOTPOutput,
        ) => Promise<ChallengeResponse>;
    }
    Index

    Properties

    emailSignUpChallenge?: () => Promise<ChallengeResponse>
    mfaPreference?: "EMAIL" | "SMS" | "TOTP"
    password: string
    signInFlow: "MFA"
    smsSignUpChallenge?: () => Promise<ChallengeResponse>
    totpSignUpChallenge?: (
        totpSetup: auth.SetUpTOTPOutput,
    ) => Promise<ChallengeResponse>