Interface MaintenanceWindowExecution.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MaintenanceWindowExecution.Builder,MaintenanceWindowExecution>,SdkBuilder<MaintenanceWindowExecution.Builder,MaintenanceWindowExecution>,SdkPojo
- Enclosing class:
- MaintenanceWindowExecution
public static interface MaintenanceWindowExecution.Builder extends SdkPojo, CopyableBuilder<MaintenanceWindowExecution.Builder,MaintenanceWindowExecution>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MaintenanceWindowExecution.BuilderendTime(Instant endTime)The time the execution finished.MaintenanceWindowExecution.BuilderstartTime(Instant startTime)The time the execution started.MaintenanceWindowExecution.Builderstatus(String status)The status of the execution.MaintenanceWindowExecution.Builderstatus(MaintenanceWindowExecutionStatus status)The status of the execution.MaintenanceWindowExecution.BuilderstatusDetails(String statusDetails)The details explaining the status.MaintenanceWindowExecution.BuilderwindowExecutionId(String windowExecutionId)The ID of the maintenance window execution.MaintenanceWindowExecution.BuilderwindowId(String windowId)The ID of the maintenance window.-
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
-
windowId
MaintenanceWindowExecution.Builder windowId(String windowId)
The ID of the maintenance window.
- Parameters:
windowId- The ID of the maintenance window.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
windowExecutionId
MaintenanceWindowExecution.Builder windowExecutionId(String windowExecutionId)
The ID of the maintenance window execution.
- Parameters:
windowExecutionId- The ID of the maintenance window execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
MaintenanceWindowExecution.Builder status(String status)
The status of the execution.
- Parameters:
status- The status of the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MaintenanceWindowExecutionStatus,MaintenanceWindowExecutionStatus
-
status
MaintenanceWindowExecution.Builder status(MaintenanceWindowExecutionStatus status)
The status of the execution.
- Parameters:
status- The status of the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MaintenanceWindowExecutionStatus,MaintenanceWindowExecutionStatus
-
statusDetails
MaintenanceWindowExecution.Builder statusDetails(String statusDetails)
The details explaining the status. Not available for all status values.
- Parameters:
statusDetails- The details explaining the status. Not available for all status values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
MaintenanceWindowExecution.Builder startTime(Instant startTime)
The time the execution started.
- Parameters:
startTime- The time the execution started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
MaintenanceWindowExecution.Builder endTime(Instant endTime)
The time the execution finished.
- Parameters:
endTime- The time the execution finished.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-