Interface ExecutionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecutionSummary.Builder,ExecutionSummary>,SdkBuilder<ExecutionSummary.Builder,ExecutionSummary>,SdkPojo
- Enclosing class:
- ExecutionSummary
public static interface ExecutionSummary.Builder extends SdkPojo, CopyableBuilder<ExecutionSummary.Builder,ExecutionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionSummary.BuilderexecutionId(String executionId)The ID of the execution.ExecutionSummary.BuildermanagedDeviceId(String managedDeviceId)The ID of the managed device that the task is being executed on.ExecutionSummary.Builderstate(String state)The state of the execution.ExecutionSummary.Builderstate(ExecutionState state)The state of the execution.ExecutionSummary.BuildertaskId(String taskId)The ID 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
-
executionId
ExecutionSummary.Builder executionId(String executionId)
The ID of the execution.
- Parameters:
executionId- The ID of the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
managedDeviceId
ExecutionSummary.Builder managedDeviceId(String managedDeviceId)
The ID of the managed device that the task is being executed on.
- Parameters:
managedDeviceId- The ID of the managed device that the task is being executed on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
ExecutionSummary.Builder state(String state)
The state of the execution.
- Parameters:
state- The state of the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionState,ExecutionState
-
state
ExecutionSummary.Builder state(ExecutionState state)
The state of the execution.
- Parameters:
state- The state of the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionState,ExecutionState
-
taskId
ExecutionSummary.Builder taskId(String taskId)
The ID of the task.
- Parameters:
taskId- The ID of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-