Table of Contents

Class CfnUserPool.CustomEmailSenderProperty

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

A custom email sender AWS Lambda trigger.

public class CfnUserPool.CustomEmailSenderProperty : CfnUserPool.ICustomEmailSenderProperty
Inheritance
CfnUserPool.CustomEmailSenderProperty
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Cognito;

             var customEmailSenderProperty = new CustomEmailSenderProperty {
                 LambdaArn = "lambdaArn",
                 LambdaVersion = "lambdaVersion"
             };

Remarks

Constructors

CustomEmailSenderProperty()

public CustomEmailSenderProperty()

Properties

LambdaArn

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

public string? LambdaArn { get; set; }

Property Value

string

Remarks

LambdaVersion

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.

public string? LambdaVersion { get; set; }

Property Value

string

Remarks