Class: Aws::Lambda::Types::CallbackOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb

Overview

Configuration options for callback operations in durable executions, including timeout settings and retry behavior.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#heartbeat_timeout_secondsInteger

The heartbeat timeout for the callback operation, in seconds. If not specified or set to 0, heartbeat timeout is disabled.

Returns:

  • (Integer)


428
429
430
431
432
433
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 428

class CallbackOptions < Struct.new(
  :timeout_seconds,
  :heartbeat_timeout_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#timeout_secondsInteger

The timeout for the callback operation in seconds. If not specified or set to 0, the callback has no timeout.

Returns:

  • (Integer)


428
429
430
431
432
433
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 428

class CallbackOptions < Struct.new(
  :timeout_seconds,
  :heartbeat_timeout_seconds)
  SENSITIVE = []
  include Aws::Structure
end