Class: Aws::Lambda::Types::GetDurableExecutionHistoryResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

The response from the GetDurableExecutionHistory operation, containing the execution history and events.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#eventsArray<Types::Event>

An array of execution history events, ordered chronologically unless ReverseOrder is set to true. Each event represents a significant occurrence during the execution, such as step completion or callback resolution.

Returns:



4245
4246
4247
4248
4249
4250
# File 'lib/aws-sdk-lambda/types.rb', line 4245

class GetDurableExecutionHistoryResponse < Struct.new(
  :events,
  :next_marker)
  SENSITIVE = []
  include Aws::Structure
end

#next_markerString

If present, indicates that more history events are available. Use this value as the Marker parameter in a subsequent request to retrieve the next page of results.

Returns:

  • (String)


4245
4246
4247
4248
4249
4250
# File 'lib/aws-sdk-lambda/types.rb', line 4245

class GetDurableExecutionHistoryResponse < Struct.new(
  :events,
  :next_marker)
  SENSITIVE = []
  include Aws::Structure
end