aws-cdk-lib.aws_cognito.CfnUserPool.CustomEmailSenderProperty

interface CustomEmailSenderProperty

LanguageType name
.NETAmazon.CDK.AWS.Cognito.CfnUserPool.CustomEmailSenderProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPool_CustomEmailSenderProperty
Javasoftware.amazon.awscdk.services.cognito.CfnUserPool.CustomEmailSenderProperty
Pythonaws_cdk.aws_cognito.CfnUserPool.CustomEmailSenderProperty
TypeScript aws-cdk-lib » aws_cognito » CfnUserPool » CustomEmailSenderProperty

A custom email sender AWS Lambda trigger.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const customEmailSenderProperty: cognito.CfnUserPool.CustomEmailSenderProperty = {
  lambdaArn: 'lambdaArn',
  lambdaVersion: 'lambdaVersion',
};

Properties

NameTypeDescription
lambdaArn?stringThe Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Cognito triggers to send email notifications to users.
lambdaVersion?stringThe Lambda version represents the signature of the "request" attribute in the "event" information that Amazon Cognito passes to your custom email sender AWS Lambda function.

lambdaArn?

Type: string (optional)

The Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Cognito triggers to send email notifications to users.


lambdaVersion?

Type: string (optional)

The Lambda version represents the signature of the "request" attribute in the "event" information that Amazon Cognito passes to your custom email sender AWS Lambda function.

The only supported value is V1_0 .