public static interface PatchRule.Builder extends SdkPojo, CopyableBuilder<PatchRule.Builder,PatchRule>
Modifier and Type | Method and Description |
---|---|
PatchRule.Builder |
approveAfterDays(Integer approveAfterDays)
The number of days after the release date of each patch matched by the rule that the patch is marked as
approved in the patch baseline.
|
PatchRule.Builder |
approveUntilDate(String approveUntilDate)
The cutoff date for auto approval of released patches.
|
PatchRule.Builder |
complianceLevel(PatchComplianceLevel complianceLevel)
A compliance severity level for all approved patches in a patch baseline.
|
PatchRule.Builder |
complianceLevel(String complianceLevel)
A compliance severity level for all approved patches in a patch baseline.
|
PatchRule.Builder |
enableNonSecurity(Boolean enableNonSecurity)
For instances identified by the approval rule filters, enables a patch baseline to apply non-security updates
available in the specified repository.
|
default PatchRule.Builder |
patchFilterGroup(Consumer<PatchFilterGroup.Builder> patchFilterGroup)
The patch filter group that defines the criteria for the rule.
|
PatchRule.Builder |
patchFilterGroup(PatchFilterGroup patchFilterGroup)
The patch filter group that defines the criteria for the rule.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
PatchRule.Builder patchFilterGroup(PatchFilterGroup patchFilterGroup)
The patch filter group that defines the criteria for the rule.
patchFilterGroup
- The patch filter group that defines the criteria for the rule.default PatchRule.Builder patchFilterGroup(Consumer<PatchFilterGroup.Builder> patchFilterGroup)
The patch filter group that defines the criteria for the rule.
This is a convenience that creates an instance of thePatchFilterGroup.Builder
avoiding the need to
create one manually via PatchFilterGroup.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to patchFilterGroup(PatchFilterGroup)
.patchFilterGroup
- a consumer that will call methods on PatchFilterGroup.Builder
patchFilterGroup(PatchFilterGroup)
PatchRule.Builder complianceLevel(String complianceLevel)
A compliance severity level for all approved patches in a patch baseline.
complianceLevel
- A compliance severity level for all approved patches in a patch baseline.PatchComplianceLevel
,
PatchComplianceLevel
PatchRule.Builder complianceLevel(PatchComplianceLevel complianceLevel)
A compliance severity level for all approved patches in a patch baseline.
complianceLevel
- A compliance severity level for all approved patches in a patch baseline.PatchComplianceLevel
,
PatchComplianceLevel
PatchRule.Builder approveAfterDays(Integer approveAfterDays)
The number of days after the release date of each patch matched by the rule that the patch is marked as
approved in the patch baseline. For example, a value of 7
means that patches are approved seven
days after they are released. Not supported on Ubuntu Server.
approveAfterDays
- The number of days after the release date of each patch matched by the rule that the patch is marked
as approved in the patch baseline. For example, a value of 7
means that patches are
approved seven days after they are released. Not supported on Ubuntu Server.PatchRule.Builder approveUntilDate(String approveUntilDate)
The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically. Not supported on Ubuntu Server.
Enter dates in the format YYYY-MM-DD
. For example, 2020-12-31
.
approveUntilDate
- The cutoff date for auto approval of released patches. Any patches released on or before this date are
installed automatically. Not supported on Ubuntu Server.
Enter dates in the format YYYY-MM-DD
. For example, 2020-12-31
.
PatchRule.Builder enableNonSecurity(Boolean enableNonSecurity)
For instances identified by the approval rule filters, enables a patch baseline to apply non-security updates available in the specified repository. The default value is 'false'. Applies to Linux instances only.
enableNonSecurity
- For instances identified by the approval rule filters, enables a patch baseline to apply non-security
updates available in the specified repository. The default value is 'false'. Applies to Linux
instances only.Copyright © 2021 Amazon Web Services, Inc. All Rights Reserved.