Interface GetDurableExecutionStateResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetDurableExecutionStateResponse.Builder,GetDurableExecutionStateResponse>,LambdaResponse.Builder,SdkBuilder<GetDurableExecutionStateResponse.Builder,GetDurableExecutionStateResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetDurableExecutionStateResponse
@Mutable @NotThreadSafe public static interface GetDurableExecutionStateResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<GetDurableExecutionStateResponse.Builder,GetDurableExecutionStateResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDurableExecutionStateResponse.BuildernextMarker(String nextMarker)If present, indicates that more operations are available.GetDurableExecutionStateResponse.Builderoperations(Collection<Operation> operations)An array of operations that represent the current state of the durable execution.GetDurableExecutionStateResponse.Builderoperations(Consumer<Operation.Builder>... operations)An array of operations that represent the current state of the durable execution.GetDurableExecutionStateResponse.Builderoperations(Operation... operations)An array of operations that represent the current state of the durable execution.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lambda.model.LambdaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
operations
GetDurableExecutionStateResponse.Builder operations(Collection<Operation> operations)
An array of operations that represent the current state of the durable execution. Operations are ordered by their start sequence number in ascending order and include information needed for replay processing.
- Parameters:
operations- An array of operations that represent the current state of the durable execution. Operations are ordered by their start sequence number in ascending order and include information needed for replay processing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
GetDurableExecutionStateResponse.Builder operations(Operation... operations)
An array of operations that represent the current state of the durable execution. Operations are ordered by their start sequence number in ascending order and include information needed for replay processing.
- Parameters:
operations- An array of operations that represent the current state of the durable execution. Operations are ordered by their start sequence number in ascending order and include information needed for replay processing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
GetDurableExecutionStateResponse.Builder operations(Consumer<Operation.Builder>... operations)
An array of operations that represent the current state of the durable execution. Operations are ordered by their start sequence number in ascending order and include information needed for replay processing.
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
GetDurableExecutionStateResponse.Builder nextMarker(String nextMarker)
If present, indicates that more operations are available. Use this value as the
Markerparameter in a subsequent request to retrieve the next page of results.- Parameters:
nextMarker- If present, indicates that more operations are available. Use this value as theMarkerparameter in a subsequent request to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-