@Stability(value=Stable)
public static interface CfnUserPool.CustomEmailSenderProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getLambdaArn()
The Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Cognito triggers to send email notifications to users.
|
default 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.
|
@Stability(value=Stable) @Nullable default String getLambdaArn()
@Stability(value=Stable) @Nullable default String getLambdaVersion()
The only supported value is V1_0 .
@Stability(value=Stable) static CfnUserPool.CustomEmailSenderProperty.Builder builder()
Copyright © 2022. All rights reserved.