Class: Aws::Lambda::Types::ChainedInvokeOptions

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#function_nameString

The name or ARN of the Lambda function to invoke.

Returns:

  • (String)


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_idString

The tenant identifier for the chained invocation.

Returns:

  • (String)


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