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

SetUserPoolMfaConfigRequest

import type { SetUserPoolMfaConfigRequest } from "https://aws-api.deno.dev/v0.4/services/cognitoidentityserviceprovider.ts?docs=full";
interface SetUserPoolMfaConfigRequest {
MfaConfiguration?: UserPoolMfaType | null;
SmsMfaConfiguration?: SmsMfaConfigType | null;
SoftwareTokenMfaConfiguration?: SoftwareTokenMfaConfigType | null;
UserPoolId: string;
}

§Properties

§
MfaConfiguration?: UserPoolMfaType | null
[src]

The MFA configuration. If you set the MfaConfiguration value to ‘ON’, only users who have set up an MFA factor can sign in. To learn more, see Adding Multi-Factor Authentication (MFA) to a user pool. Valid values include:

  • OFF MFA won't be used for any users.
  • ON MFA is required for all users to sign in.
  • OPTIONAL MFA will be required only for individual users who have an MFA factor activated.
§
SmsMfaConfiguration?: SmsMfaConfigType | null
[src]

The SMS text message MFA configuration.

§
SoftwareTokenMfaConfiguration?: SoftwareTokenMfaConfigType | null
[src]

The software token MFA configuration.

§
UserPoolId: string
[src]

The user pool ID.