Class: Aws::Lambda::Types::CheckpointUpdatedExecutionState
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::CheckpointUpdatedExecutionState
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Contains operations that have been updated since the last checkpoint, such as completed asynchronous work like timers or callbacks.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_marker ⇒ String
Indicates that more results are available.
-
#operations ⇒ Array<Types::Operation>
A list of operations that have been updated since the last checkpoint.
Instance Attribute Details
#next_marker ⇒ String
Indicates that more results are available. Use this value in a subsequent call to retrieve the next page of results.
876 877 878 879 880 881 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 876 class CheckpointUpdatedExecutionState < Struct.new( :operations, :next_marker) SENSITIVE = [] include Aws::Structure end |
#operations ⇒ Array<Types::Operation>
A list of operations that have been updated since the last checkpoint.
876 877 878 879 880 881 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 876 class CheckpointUpdatedExecutionState < Struct.new( :operations, :next_marker) SENSITIVE = [] include Aws::Structure end |