Class: Aws::CognitoIdentityProvider::Types::CustomEmailLambdaVersionConfigType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::CustomEmailLambdaVersionConfigType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The properties of a custom email sender Lambda trigger.
This data type is a request and response parameter of
- CreateUserPool][1
-
and [UpdateUserPool], and a response parameter
of [DescribeUserPool].
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_CreateUserPool.html [2]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UpdateUserPool.html [3]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_DescribeUserPool.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lambda_arn ⇒ String
The Amazon Resource Name (ARN) of the function that you want to assign to your Lambda trigger.
-
#lambda_version ⇒ String
The user pool trigger version of the request that Amazon Cognito sends to your Lambda function.
Instance Attribute Details
#lambda_arn ⇒ String
The Amazon Resource Name (ARN) of the function that you want to assign to your Lambda trigger.
4499 4500 4501 4502 4503 4504 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4499 class CustomEmailLambdaVersionConfigType < Struct.new( :lambda_version, :lambda_arn) SENSITIVE = [] include Aws::Structure end |
#lambda_version ⇒ String
The user pool trigger version of the request that Amazon Cognito sends to your Lambda function. Higher-numbered versions add fields that support new features.
You must use a ‘LambdaVersion` of `V1_0` with a custom sender function.
4499 4500 4501 4502 4503 4504 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4499 class CustomEmailLambdaVersionConfigType < Struct.new( :lambda_version, :lambda_arn) SENSITIVE = [] include Aws::Structure end |