Class: Aws::Connect::Types::AssociateLambdaFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::AssociateLambdaFunctionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#function_arn ⇒ String
The Amazon Resource Name (ARN) for the Lambda function being associated.
-
#instance_id ⇒ String
The identifier of the Amazon Connect instance.
Instance Attribute Details
#function_arn ⇒ String
The Amazon Resource Name (ARN) for the Lambda function being associated. Maximum number of characters allowed is 140.
849 850 851 852 853 854 |
# File 'lib/aws-sdk-connect/types.rb', line 849 class AssociateLambdaFunctionRequest < Struct.new( :instance_id, :function_arn) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The identifier of the Amazon Connect instance. You can [find the instance ID] in the Amazon Resource Name (ARN) of the instance.
[1]: docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
849 850 851 852 853 854 |
# File 'lib/aws-sdk-connect/types.rb', line 849 class AssociateLambdaFunctionRequest < Struct.new( :instance_id, :function_arn) SENSITIVE = [] include Aws::Structure end |