Interface PatchStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PatchStatus.Builder,PatchStatus>,SdkBuilder<PatchStatus.Builder,PatchStatus>,SdkPojo
- Enclosing class:
- PatchStatus
public static interface PatchStatus.Builder extends SdkPojo, CopyableBuilder<PatchStatus.Builder,PatchStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PatchStatus.BuilderapprovalDate(Instant approvalDate)The date the patch was approved (or will be approved if the status isPENDING_APPROVAL).PatchStatus.BuildercomplianceLevel(String complianceLevel)The compliance severity level for a patch.PatchStatus.BuildercomplianceLevel(PatchComplianceLevel complianceLevel)The compliance severity level for a patch.PatchStatus.BuilderdeploymentStatus(String deploymentStatus)The approval status of a patch.PatchStatus.BuilderdeploymentStatus(PatchDeploymentStatus deploymentStatus)The approval status of a patch.-
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
-
deploymentStatus
PatchStatus.Builder deploymentStatus(String deploymentStatus)
The approval status of a patch.
- Parameters:
deploymentStatus- The approval status of a patch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PatchDeploymentStatus,PatchDeploymentStatus
-
deploymentStatus
PatchStatus.Builder deploymentStatus(PatchDeploymentStatus deploymentStatus)
The approval status of a patch.
- Parameters:
deploymentStatus- The approval status of a patch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PatchDeploymentStatus,PatchDeploymentStatus
-
complianceLevel
PatchStatus.Builder complianceLevel(String complianceLevel)
The compliance severity level for a patch.
- Parameters:
complianceLevel- The compliance severity level for a patch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PatchComplianceLevel,PatchComplianceLevel
-
complianceLevel
PatchStatus.Builder complianceLevel(PatchComplianceLevel complianceLevel)
The compliance severity level for a patch.
- Parameters:
complianceLevel- The compliance severity level for a patch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PatchComplianceLevel,PatchComplianceLevel
-
approvalDate
PatchStatus.Builder approvalDate(Instant approvalDate)
The date the patch was approved (or will be approved if the status is
PENDING_APPROVAL).- Parameters:
approvalDate- The date the patch was approved (or will be approved if the status isPENDING_APPROVAL).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-