public static interface CfnUserPool.CustomEmailSenderProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cognito.*; CustomEmailSenderProperty customEmailSenderProperty = CustomEmailSenderProperty.builder() .lambdaArn("lambdaArn") .lambdaVersion("lambdaVersion") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserPool.CustomEmailSenderProperty.Builder
A builder for
CfnUserPool.CustomEmailSenderProperty |
static class |
CfnUserPool.CustomEmailSenderProperty.Jsii$Proxy
An implementation for
CfnUserPool.CustomEmailSenderProperty |
Modifier and Type | Method and Description |
---|---|
static CfnUserPool.CustomEmailSenderProperty.Builder |
builder() |
default java.lang.String |
getLambdaArn()
The Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Cognito triggers to send email notifications to users.
|
default java.lang.String |
getLambdaVersion()
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.
|
default java.lang.String getLambdaArn()
default java.lang.String getLambdaVersion()
The only supported value is V1_0
.
static CfnUserPool.CustomEmailSenderProperty.Builder builder()