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

LambdaConfigType

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

Specifies the configuration for Lambda triggers.

interface LambdaConfigType {
CreateAuthChallenge?: string | null;
CustomEmailSender?: CustomEmailLambdaVersionConfigType | null;
CustomMessage?: string | null;
CustomSMSSender?: CustomSMSLambdaVersionConfigType | null;
DefineAuthChallenge?: string | null;
KMSKeyID?: string | null;
PostAuthentication?: string | null;
PostConfirmation?: string | null;
PreAuthentication?: string | null;
PreSignUp?: string | null;
PreTokenGeneration?: string | null;
UserMigration?: string | null;
VerifyAuthChallengeResponse?: string | null;
}

§Properties

§
CreateAuthChallenge?: string | null
[src]

Creates an authentication challenge.

§
CustomEmailSender?: CustomEmailLambdaVersionConfigType | null
[src]

A custom email sender Lambda trigger.

§
CustomMessage?: string | null
[src]

A custom Message Lambda trigger.

§
CustomSMSSender?: CustomSMSLambdaVersionConfigType | null
[src]

A custom SMS sender Lambda trigger.

§
DefineAuthChallenge?: string | null
[src]

Defines the authentication challenge.

§
KMSKeyID?: string | null
[src]

The Amazon Resource Name (ARN) of an KMS key. Amazon Cognito uses the key to encrypt codes and temporary passwords sent to CustomEmailSender and CustomSMSSender.

§
PostAuthentication?: string | null
[src]

A post-authentication Lambda trigger.

§
PostConfirmation?: string | null
[src]

A post-confirmation Lambda trigger.

§
PreAuthentication?: string | null
[src]

A pre-authentication Lambda trigger.

§
PreSignUp?: string | null
[src]

A pre-registration Lambda trigger.

§
PreTokenGeneration?: string | null
[src]

A Lambda trigger that is invoked before token generation.

§
UserMigration?: string | null
[src]

The user migration Lambda config type.

§
VerifyAuthChallengeResponse?: string | null
[src]

Verifies the authentication challenge response.