Class: Aws::Lambda::Types::GetDurableExecutionStateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::GetDurableExecutionStateRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#checkpoint_token ⇒ String
A checkpoint token that identifies the current state of the execution.
-
#durable_execution_arn ⇒ String
The Amazon Resource Name (ARN) of the durable execution.
-
#marker ⇒ String
If
NextMarkerwas returned from a previous request, use this value to retrieve the next page of operations. -
#max_items ⇒ Integer
The maximum number of operations to return per call.
Instance Attribute Details
#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.
4314 4315 4316 4317 4318 4319 4320 4321 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4314 class GetDurableExecutionStateRequest < Struct.new( :durable_execution_arn, :checkpoint_token, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#durable_execution_arn ⇒ String
The Amazon Resource Name (ARN) of the durable execution.
4314 4315 4316 4317 4318 4319 4320 4321 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4314 class GetDurableExecutionStateRequest < Struct.new( :durable_execution_arn, :checkpoint_token, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
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.
4314 4315 4316 4317 4318 4319 4320 4321 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4314 class GetDurableExecutionStateRequest < Struct.new( :durable_execution_arn, :checkpoint_token, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
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.
4314 4315 4316 4317 4318 4319 4320 4321 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4314 class GetDurableExecutionStateRequest < Struct.new( :durable_execution_arn, :checkpoint_token, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |