Class CfnUserPool.CustomSMSSenderProperty
A custom SMS sender AWS Lambda trigger.
public class CfnUserPool.CustomSMSSenderProperty : CfnUserPool.ICustomSMSSenderProperty
- Inheritance
-
CfnUserPool.CustomSMSSenderProperty
- 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 customSMSSenderProperty = new CustomSMSSenderProperty {
LambdaArn = "lambdaArn",
LambdaVersion = "lambdaVersion"
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
CustomSMSSenderProperty()
public CustomSMSSenderProperty()
Properties
LambdaArn
The Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Cognito triggers to send SMS notifications to users.
public string? LambdaArn { get; set; }
Property Value
Remarks
LambdaVersion
The Lambda version represents the signature of the "request" attribute in the "event" information Amazon Cognito passes to your custom SMS sender Lambda function.
public string? LambdaVersion { get; set; }