Interface TaskSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TaskSummary.Builder,TaskSummary>,SdkBuilder<TaskSummary.Builder,TaskSummary>,SdkPojo
- Enclosing class:
- TaskSummary
public static interface TaskSummary.Builder extends SdkPojo, CopyableBuilder<TaskSummary.Builder,TaskSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskSummary.Builderstate(String state)The state of the task assigned to one or many devices.TaskSummary.Builderstate(TaskState state)The state of the task assigned to one or many devices.TaskSummary.Buildertags(Map<String,String> tags)Optional metadata that you assign to a resource.TaskSummary.BuildertaskArn(String taskArn)The Amazon Resource Name (ARN) of the task.TaskSummary.BuildertaskId(String taskId)The task ID.-
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
-
state
TaskSummary.Builder state(String state)
The state of the task assigned to one or many devices.
-
state
TaskSummary.Builder state(TaskState state)
The state of the task assigned to one or many devices.
-
tags
TaskSummary.Builder tags(Map<String,String> tags)
Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, such as by purpose, owner, or environment.
- Parameters:
tags- Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, such as by purpose, owner, or environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskArn
TaskSummary.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.
-
taskId
TaskSummary.Builder taskId(String taskId)
The task ID.
- Parameters:
taskId- The task ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-