Class: Aws::Lambda::Types::ChainedInvokeOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ChainedInvokeOptions
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Configuration options for chained function invocations in durable executions, including retry settings and timeout configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#function_name ⇒ String
The name or ARN of the Lambda function to invoke.
-
#tenant_id ⇒ String
The tenant identifier for the chained invocation.
Instance Attribute Details
#function_name ⇒ String
The name or ARN of the Lambda function to invoke.
714 715 716 717 718 719 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 714 class ChainedInvokeOptions < Struct.new( :function_name, :tenant_id) SENSITIVE = [] include Aws::Structure end |
#tenant_id ⇒ String
The tenant identifier for the chained invocation.
714 715 716 717 718 719 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 714 class ChainedInvokeOptions < Struct.new( :function_name, :tenant_id) SENSITIVE = [] include Aws::Structure end |