Interface CfnPatchBaseline.PatchFilterGroupProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPatchBaseline.PatchFilterGroupProperty.Jsii$Proxy
Enclosing class:
CfnPatchBaseline

@Stability(Stable) public static interface CfnPatchBaseline.PatchFilterGroupProperty extends software.amazon.jsii.JsiiSerializable
The PatchFilterGroup property type specifies a set of patch filters for an AWS Systems Manager patch baseline, typically used for approval rules for a Systems Manager patch baseline.

PatchFilterGroup is the property type for the GlobalFilters property of the AWS::SSM::PatchBaseline resource and the PatchFilterGroup property of the Rule property type.

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.*;
 PatchFilterGroupProperty patchFilterGroupProperty = PatchFilterGroupProperty.builder()
         .patchFilters(List.of(PatchFilterProperty.builder()
                 .key("key")
                 .values(List.of("values"))
                 .build()))
         .build();