class Amazonite::Lambda::GetDurableExecutionStateRequest

Included Modules

Defined in:

lambda/get_durable_execution_state_request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(durable_execution_arn : String, checkpoint_token : String, marker : String | Nil = nil, max_items : Int32 | Nil = nil) #

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

[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 checkpoint_token : String #

A checkpoint token that identifies the current state of the execution. This token is provided by the Lambda runtime and ensures that state retrieval is consistent with the current execution context.


[View source]
def checkpoint_token=(checkpoint_token : String) #

A checkpoint token that identifies the current state of the execution. This token is provided by the Lambda runtime and ensures that state retrieval is consistent with the current execution context.


[View source]
def durable_execution_arn : String #

The Amazon Resource Name (ARN) of the durable execution.


[View source]
def durable_execution_arn=(durable_execution_arn : String) #

The Amazon Resource Name (ARN) of the durable execution.


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

See Object#hash(hasher)


def marker : String | Nil #

If NextMarker was returned from a previous request, use this value to retrieve the next page of operations. Each pagination token expires after 24 hours.


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

If NextMarker was returned from a previous request, use this value to retrieve the next page of operations. Each pagination token expires after 24 hours.


[View source]
def max_items : Int32 | Nil #

The maximum number of operations to return per call. You can use Marker to retrieve additional pages of results. The default is 100 and the maximum allowed is 1000. A value of 0 uses the default.


[View source]
def max_items=(max_items : Int32 | Nil) #

The maximum number of operations to return per call. You can use Marker to retrieve additional pages of results. The default is 100 and the maximum allowed is 1000. A value of 0 uses the default.


[View source]
def validate! : Nil #

[View source]