Interface Task.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Task.Builder,Task>,SdkBuilder<Task.Builder,Task>,SdkPojo
- Enclosing class:
- Task
public static interface Task.Builder extends SdkPojo, CopyableBuilder<Task.Builder,Task>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Task.BuilderprogressPercent(Integer progressPercent)Indication of the percentage completion of the task.Task.Builderstatus(String status)Status of the task - Not Started, In-Progress, Complete.Task.Builderstatus(Status status)Status of the task - Not Started, In-Progress, Complete.Task.BuilderstatusDetail(String statusDetail)Details of task status as notified by a migration tool.-
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
-
status
Task.Builder status(String status)
Status of the task - Not Started, In-Progress, Complete.
-
status
Task.Builder status(Status status)
Status of the task - Not Started, In-Progress, Complete.
-
statusDetail
Task.Builder statusDetail(String statusDetail)
Details of task status as notified by a migration tool. A tool might use this field to provide clarifying information about the status that is unique to that tool or that explains an error state.
- Parameters:
statusDetail- Details of task status as notified by a migration tool. A tool might use this field to provide clarifying information about the status that is unique to that tool or that explains an error state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
progressPercent
Task.Builder progressPercent(Integer progressPercent)
Indication of the percentage completion of the task.
- Parameters:
progressPercent- Indication of the percentage completion of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-