Class: Aws::Lambda::Types::ContextDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ContextDetails
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Details about a durable execution context.
Constant Summary collapse
- SENSITIVE =
[:result]
Instance Attribute Summary collapse
-
#error ⇒ Types::ErrorObject
Details about the context failure.
-
#replay_children ⇒ Boolean
Whether the state data of child operations of this completed context should be included in the invoke payload and
GetDurableExecutionStateresponse. -
#result ⇒ String
The response payload from the context.
Instance Attribute Details
#error ⇒ Types::ErrorObject
Details about the context failure.
1049 1050 1051 1052 1053 1054 1055 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1049 class ContextDetails < Struct.new( :replay_children, :result, :error) SENSITIVE = [:result] include Aws::Structure end |
#replay_children ⇒ Boolean
Whether the state data of child operations of this completed context
should be included in the invoke payload and
GetDurableExecutionState response.
1049 1050 1051 1052 1053 1054 1055 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1049 class ContextDetails < Struct.new( :replay_children, :result, :error) SENSITIVE = [:result] include Aws::Structure end |
#result ⇒ String
The response payload from the context.
1049 1050 1051 1052 1053 1054 1055 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1049 class ContextDetails < Struct.new( :replay_children, :result, :error) SENSITIVE = [:result] include Aws::Structure end |