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