Interface WorkUnitRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkUnitRange.Builder,WorkUnitRange>,SdkBuilder<WorkUnitRange.Builder,WorkUnitRange>,SdkPojo
- Enclosing class:
- WorkUnitRange
public static interface WorkUnitRange.Builder extends SdkPojo, CopyableBuilder<WorkUnitRange.Builder,WorkUnitRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkUnitRange.BuilderworkUnitIdMax(Long workUnitIdMax)Defines the maximum work unit ID in the range.WorkUnitRange.BuilderworkUnitIdMin(Long workUnitIdMin)Defines the minimum work unit ID in the range.WorkUnitRange.BuilderworkUnitToken(String workUnitToken)A work token used to query the execution service.-
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, sdkFields
-
-
-
-
Method Detail
-
workUnitIdMax
WorkUnitRange.Builder workUnitIdMax(Long workUnitIdMax)
Defines the maximum work unit ID in the range. The maximum value is inclusive.
- Parameters:
workUnitIdMax- Defines the maximum work unit ID in the range. The maximum value is inclusive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workUnitIdMin
WorkUnitRange.Builder workUnitIdMin(Long workUnitIdMin)
Defines the minimum work unit ID in the range.
- Parameters:
workUnitIdMin- Defines the minimum work unit ID in the range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workUnitToken
WorkUnitRange.Builder workUnitToken(String workUnitToken)
A work token used to query the execution service.
- Parameters:
workUnitToken- A work token used to query the execution service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-