Class: Aws::Lambda::Types::ContextOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ContextOptions
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Configuration options for a durable execution context.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#replay_children ⇒ Boolean
Whether the state data of children of the completed context should be included in the invoke payload and
GetDurableExecutionStateresponse.
Instance Attribute Details
#replay_children ⇒ Boolean
Whether the state data of children of the completed context should
be included in the invoke payload and GetDurableExecutionState
response.
1081 1082 1083 1084 1085 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1081 class ContextOptions < Struct.new( :replay_children) SENSITIVE = [] include Aws::Structure end |