Class: Aws::Lambda::Types::CallbackOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::CallbackOptions
- 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
-
#heartbeat_timeout_seconds ⇒ Integer
The heartbeat timeout for the callback operation, in seconds.
-
#timeout_seconds ⇒ Integer
The timeout for the callback operation in seconds.
Instance Attribute Details
#heartbeat_timeout_seconds ⇒ Integer
The heartbeat timeout for the callback operation, in seconds. If not specified or set to 0, heartbeat timeout is disabled.
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_seconds ⇒ Integer
The timeout for the callback operation in seconds. If not specified or set to 0, the callback has no timeout.
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 |