Interface TaskListEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TaskListEntry.Builder,TaskListEntry>,SdkBuilder<TaskListEntry.Builder,TaskListEntry>,SdkPojo
- Enclosing class:
- TaskListEntry
public static interface TaskListEntry.Builder extends SdkPojo, CopyableBuilder<TaskListEntry.Builder,TaskListEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskListEntry.Buildername(String name)The name of the task.TaskListEntry.Builderstatus(String status)The status of the task.TaskListEntry.Builderstatus(TaskStatus status)The status of the task.TaskListEntry.BuildertaskArn(String taskArn)The Amazon Resource Name (ARN) of the task.-
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
-
taskArn
TaskListEntry.Builder taskArn(String taskArn)
The Amazon Resource Name (ARN) of the task.
- Parameters:
taskArn- The Amazon Resource Name (ARN) of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
TaskListEntry.Builder status(String status)
The status of the task.
- Parameters:
status- The status of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaskStatus,TaskStatus
-
status
TaskListEntry.Builder status(TaskStatus status)
The status of the task.
- Parameters:
status- The status of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaskStatus,TaskStatus
-
name
TaskListEntry.Builder name(String name)
The name of the task.
- Parameters:
name- The name of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-