Interface CommandExecutionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CommandExecutionSummary.Builder,CommandExecutionSummary>,SdkBuilder<CommandExecutionSummary.Builder,CommandExecutionSummary>,SdkPojo
- Enclosing class:
- CommandExecutionSummary
public static interface CommandExecutionSummary.Builder extends SdkPojo, CopyableBuilder<CommandExecutionSummary.Builder,CommandExecutionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommandExecutionSummary.BuildercommandArn(String commandArn)The Amazon Resource Name (ARN) of the command execution.CommandExecutionSummary.BuildercompletedAt(Instant completedAt)The date and time at which the command completed executing on the target device.CommandExecutionSummary.BuildercreatedAt(Instant createdAt)The date and time at which the command execution was created for the target device.CommandExecutionSummary.BuilderexecutionId(String executionId)The unique identifier of the command execution.CommandExecutionSummary.BuilderstartedAt(Instant startedAt)The date and time at which the command started executing on the target device.CommandExecutionSummary.Builderstatus(String status)The status of the command executions.CommandExecutionSummary.Builderstatus(CommandExecutionStatus status)The status of the command executions.CommandExecutionSummary.BuildertargetArn(String targetArn)The Amazon Resource Name (ARN) of the target device for which the command is being 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
commandArn
CommandExecutionSummary.Builder commandArn(String commandArn)
The Amazon Resource Name (ARN) of the command execution.
- Parameters:
commandArn- The Amazon Resource Name (ARN) of the command execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionId
CommandExecutionSummary.Builder executionId(String executionId)
The unique identifier of the command execution.
- Parameters:
executionId- The unique identifier of the command execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetArn
CommandExecutionSummary.Builder targetArn(String targetArn)
The Amazon Resource Name (ARN) of the target device for which the command is being executed.
- Parameters:
targetArn- The Amazon Resource Name (ARN) of the target device for which the command is being executed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
CommandExecutionSummary.Builder status(String status)
The status of the command executions.
- Parameters:
status- The status of the command executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CommandExecutionStatus,CommandExecutionStatus
-
status
CommandExecutionSummary.Builder status(CommandExecutionStatus status)
The status of the command executions.
- Parameters:
status- The status of the command executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CommandExecutionStatus,CommandExecutionStatus
-
createdAt
CommandExecutionSummary.Builder createdAt(Instant createdAt)
The date and time at which the command execution was created for the target device.
- Parameters:
createdAt- The date and time at which the command execution was created for the target device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedAt
CommandExecutionSummary.Builder startedAt(Instant startedAt)
The date and time at which the command started executing on the target device.
- Parameters:
startedAt- The date and time at which the command started executing on the target device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
completedAt
CommandExecutionSummary.Builder completedAt(Instant completedAt)
The date and time at which the command completed executing on the target device.
- Parameters:
completedAt- The date and time at which the command completed executing on the target device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-