Class: Aws::Lambda::Types::GetDurableExecutionStateRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#checkpoint_tokenString

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.

Returns:

  • (String)


4371
4372
4373
4374
4375
4376
4377
4378
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4371

class GetDurableExecutionStateRequest < Struct.new(
  :durable_execution_arn,
  :checkpoint_token,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#durable_execution_arnString

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

Returns:

  • (String)


4371
4372
4373
4374
4375
4376
4377
4378
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4371

class GetDurableExecutionStateRequest < Struct.new(
  :durable_execution_arn,
  :checkpoint_token,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#markerString

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.

Returns:

  • (String)


4371
4372
4373
4374
4375
4376
4377
4378
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4371

class GetDurableExecutionStateRequest < Struct.new(
  :durable_execution_arn,
  :checkpoint_token,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#max_itemsInteger

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.

Returns:

  • (Integer)


4371
4372
4373
4374
4375
4376
4377
4378
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4371

class GetDurableExecutionStateRequest < Struct.new(
  :durable_execution_arn,
  :checkpoint_token,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end