Interface GetMaintenanceWindowExecutionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetMaintenanceWindowExecutionResponse.Builder,GetMaintenanceWindowExecutionResponse>,SdkBuilder<GetMaintenanceWindowExecutionResponse.Builder,GetMaintenanceWindowExecutionResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- GetMaintenanceWindowExecutionResponse
public static interface GetMaintenanceWindowExecutionResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<GetMaintenanceWindowExecutionResponse.Builder,GetMaintenanceWindowExecutionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetMaintenanceWindowExecutionResponse.BuilderendTime(Instant endTime)The time the maintenance window finished running.GetMaintenanceWindowExecutionResponse.BuilderstartTime(Instant startTime)The time the maintenance window started running.GetMaintenanceWindowExecutionResponse.Builderstatus(String status)The status of the maintenance window execution.GetMaintenanceWindowExecutionResponse.Builderstatus(MaintenanceWindowExecutionStatus status)The status of the maintenance window execution.GetMaintenanceWindowExecutionResponse.BuilderstatusDetails(String statusDetails)The details explaining the status.GetMaintenanceWindowExecutionResponse.BuildertaskIds(String... taskIds)The ID of the task executions from the maintenance window execution.GetMaintenanceWindowExecutionResponse.BuildertaskIds(Collection<String> taskIds)The ID of the task executions from the maintenance window execution.GetMaintenanceWindowExecutionResponse.BuilderwindowExecutionId(String windowExecutionId)The ID of the maintenance window execution.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
windowExecutionId
GetMaintenanceWindowExecutionResponse.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.
-
taskIds
GetMaintenanceWindowExecutionResponse.Builder taskIds(Collection<String> taskIds)
The ID of the task executions from the maintenance window execution.
- Parameters:
taskIds- The ID of the task executions from the maintenance window execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskIds
GetMaintenanceWindowExecutionResponse.Builder taskIds(String... taskIds)
The ID of the task executions from the maintenance window execution.
- Parameters:
taskIds- The ID of the task executions from the maintenance window execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
GetMaintenanceWindowExecutionResponse.Builder status(String status)
The status of the maintenance window execution.
- Parameters:
status- The status of the maintenance window execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MaintenanceWindowExecutionStatus,MaintenanceWindowExecutionStatus
-
status
GetMaintenanceWindowExecutionResponse.Builder status(MaintenanceWindowExecutionStatus status)
The status of the maintenance window execution.
- Parameters:
status- The status of the maintenance window execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MaintenanceWindowExecutionStatus,MaintenanceWindowExecutionStatus
-
statusDetails
GetMaintenanceWindowExecutionResponse.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
GetMaintenanceWindowExecutionResponse.Builder startTime(Instant startTime)
The time the maintenance window started running.
- Parameters:
startTime- The time the maintenance window started running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
GetMaintenanceWindowExecutionResponse.Builder endTime(Instant endTime)
The time the maintenance window finished running.
- Parameters:
endTime- The time the maintenance window finished running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-