Interface CfnPatchBaseline.PatchFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPatchBaseline.PatchFilterProperty.Jsii$Proxy
- Enclosing class:
CfnPatchBaseline
@Stability(Stable)
public static interface CfnPatchBaseline.PatchFilterProperty
extends software.amazon.jsii.JsiiSerializable
The
PatchFilter property type defines a patch filter for an AWS Systems Manager patch baseline.
The PatchFilters property of the PatchFilterGroup property type contains a list of PatchFilter property types.
You can view lists of valid values for the patch properties by running the DescribePatchProperties command. For more information, see DescribePatchProperties in the AWS Systems Manager API Reference .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ssm.*;
PatchFilterProperty patchFilterProperty = PatchFilterProperty.builder()
.key("key")
.values(List.of("values"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPatchBaseline.PatchFilterPropertystatic final classAn implementation forCfnPatchBaseline.PatchFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key for the filter.For information about valid keys, see PatchFilter in the AWS Systems Manager API Reference .
- See Also:
-
getValues
The value for the filter key.For information about valid values for each key based on operating system type, see PatchFilter in the AWS Systems Manager API Reference .
- See Also:
-
builder
-