Interface CheckpointUpdatedExecutionState.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CheckpointUpdatedExecutionState.Builder,CheckpointUpdatedExecutionState>,SdkBuilder<CheckpointUpdatedExecutionState.Builder,CheckpointUpdatedExecutionState>,SdkPojo
- Enclosing class:
- CheckpointUpdatedExecutionState
@Mutable @NotThreadSafe public static interface CheckpointUpdatedExecutionState.Builder extends SdkPojo, CopyableBuilder<CheckpointUpdatedExecutionState.Builder,CheckpointUpdatedExecutionState>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CheckpointUpdatedExecutionState.BuildernextMarker(String nextMarker)Indicates that more results are available.CheckpointUpdatedExecutionState.Builderoperations(Collection<Operation> operations)A list of operations that have been updated since the last checkpoint.CheckpointUpdatedExecutionState.Builderoperations(Consumer<Operation.Builder>... operations)A list of operations that have been updated since the last checkpoint.CheckpointUpdatedExecutionState.Builderoperations(Operation... operations)A list of operations that have been updated since the last checkpoint.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
operations
CheckpointUpdatedExecutionState.Builder operations(Collection<Operation> operations)
A list of operations that have been updated since the last checkpoint.
- Parameters:
operations- A list of operations that have been updated since the last checkpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
CheckpointUpdatedExecutionState.Builder operations(Operation... operations)
A list of operations that have been updated since the last checkpoint.
- Parameters:
operations- A list of operations that have been updated since the last checkpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
CheckpointUpdatedExecutionState.Builder operations(Consumer<Operation.Builder>... operations)
A list of operations that have been updated since the last checkpoint.
This is a convenience method that creates an instance of theOperation.Builderavoiding the need to create one manually viaOperation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#operations(List.) - Parameters:
operations- a consumer that will call methods onOperation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#operations(java.util.Collection)
-
nextMarker
CheckpointUpdatedExecutionState.Builder nextMarker(String nextMarker)
Indicates that more results are available. Use this value in a subsequent call to retrieve the next page of results.
- Parameters:
nextMarker- Indicates that more results are available. Use this value in a subsequent call to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-