public static interface CfnUserPool.CustomSMSSenderProperty
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.*; CustomSMSSenderProperty customSMSSenderProperty = CustomSMSSenderProperty.builder() .lambdaArn("lambdaArn") .lambdaVersion("lambdaVersion") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserPool.CustomSMSSenderProperty.Builder
A builder for
CfnUserPool.CustomSMSSenderProperty |
static class |
CfnUserPool.CustomSMSSenderProperty.Jsii$Proxy
An implementation for
CfnUserPool.CustomSMSSenderProperty |
Modifier and Type | Method and Description |
---|---|
static CfnUserPool.CustomSMSSenderProperty.Builder |
builder() |
default java.lang.String |
getLambdaArn()
The Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Cognito triggers to send SMS notifications to users.
|
default java.lang.String |
getLambdaVersion()
The Lambda version represents the signature of the "request" attribute in the "event" information Amazon Cognito passes to your custom SMS sender Lambda function.
|
default java.lang.String getLambdaArn()
default java.lang.String getLambdaVersion()
The only supported value is V1_0
.
static CfnUserPool.CustomSMSSenderProperty.Builder builder()