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();