class Amazonite::Lambda::GetDurableExecutionHistoryResponse

Overview

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

Included Modules

Defined in:

lambda/get_durable_execution_history_response.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(events : Array(Event), next_marker : String | Nil = nil) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def events : Array(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.


[View source]
def events=(events : Array(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.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def next_marker : String | Nil #

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.


[View source]
def next_marker=(next_marker : String | Nil) #

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.


[View source]
def validate! : Nil #

[View source]