Class: Aws::Lambda::Types::CallbackStartedDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::CallbackStartedDetails
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Contains details about a callback operation that has started, including timing information and callback metadata.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#callback_id ⇒ String
The callback ID.
-
#heartbeat_timeout ⇒ Integer
The heartbeat timeout value, in seconds.
-
#timeout ⇒ Integer
The timeout value, in seconds.
Instance Attribute Details
#callback_id ⇒ String
The callback ID. Callback IDs are generated by the DurableContext
when a durable function calls ctx.waitForCallback.
453 454 455 456 457 458 459 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 453 class CallbackStartedDetails < Struct.new( :callback_id, :heartbeat_timeout, :timeout) SENSITIVE = [] include Aws::Structure end |
#heartbeat_timeout ⇒ Integer
The heartbeat timeout value, in seconds.
453 454 455 456 457 458 459 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 453 class CallbackStartedDetails < Struct.new( :callback_id, :heartbeat_timeout, :timeout) SENSITIVE = [] include Aws::Structure end |
#timeout ⇒ Integer
The timeout value, in seconds.
453 454 455 456 457 458 459 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 453 class CallbackStartedDetails < Struct.new( :callback_id, :heartbeat_timeout, :timeout) SENSITIVE = [] include Aws::Structure end |