Class CfnPatchBaseline.PatchFilterGroupProperty
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.
public class CfnPatchBaseline.PatchFilterGroupProperty : CfnPatchBaseline.IPatchFilterGroupProperty
- Inheritance
-
CfnPatchBaseline.PatchFilterGroupProperty
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var patchFilterGroupProperty = new PatchFilterGroupProperty {
PatchFilters = new [] { new PatchFilterProperty {
Key = "key",
Values = new [] { "values" }
} }
};
Remarks
PatchFilterGroup
is the property type for the GlobalFilters
property of the AWS::SSM::PatchBaseline resource and the PatchFilterGroup
property of the Rule property type.
ExampleMetadata: fixture=_generated
Constructors
PatchFilterGroupProperty()
public PatchFilterGroupProperty()
Properties
PatchFilters
The set of patch filters that make up the group.
public object? PatchFilters { get; set; }