Class: Aws::Lambda::Types::ContextDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#errorTypes::ErrorObject

Details about the context failure.

Returns:



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_childrenBoolean

Whether the state data of child operations of this completed context should be included in the invoke payload and GetDurableExecutionState response.

Returns:

  • (Boolean)


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

#resultString

The response payload from the context.

Returns:

  • (String)


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