Class: Aws::CognitoIdentityProvider::Types::CustomSMSLambdaVersionConfigType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::CustomSMSLambdaVersionConfigType
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass CustomSMSLambdaVersionConfigType data as a hash:
{
lambda_version: "V1_0", # required, accepts V1_0
lambda_arn: "ArnType", # required
}
A custom SMS sender Lambda configuration type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lambda_arn ⇒ String
The Amazon Resource Name (ARN) of the Lambda function that Amazon Cognito activates to send SMS notifications to users.
-
#lambda_version ⇒ String
Signature of the "request" attribute in the "event" information that Amazon Cognito passes to your custom SMS Lambda function.
Instance Attribute Details
#lambda_arn ⇒ String
The Amazon Resource Name (ARN) of the Lambda function that Amazon Cognito activates to send SMS notifications to users.
4029 4030 4031 4032 4033 4034 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4029 class CustomSMSLambdaVersionConfigType < Struct.new( :lambda_version, :lambda_arn) SENSITIVE = [] include Aws::Structure end |
#lambda_version ⇒ String
Signature of the "request" attribute in the "event" information
that Amazon Cognito passes to your custom SMS Lambda function. The
only supported value is V1_0
.
4029 4030 4031 4032 4033 4034 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4029 class CustomSMSLambdaVersionConfigType < Struct.new( :lambda_version, :lambda_arn) SENSITIVE = [] include Aws::Structure end |