interface PatchFilterGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnPatchBaseline.PatchFilterGroupProperty |
Java | software.amazon.awscdk.services.ssm.CfnPatchBaseline.PatchFilterGroupProperty |
Python | aws_cdk.aws_ssm.CfnPatchBaseline.PatchFilterGroupProperty |
TypeScript | @aws-cdk/aws-ssm » 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.
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 * as ssm from '@aws-cdk/aws-ssm';
const patchFilterGroupProperty: ssm.CfnPatchBaseline.PatchFilterGroupProperty = {
patchFilters: [{
key: 'key',
values: ['values'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| patch | IResolvable | IResolvable | Patch[] | The set of patch filters that make up the group. |
patchFilters?
Type:
IResolvable | IResolvable | Patch[]
(optional)
The set of patch filters that make up the group.

.NET
Java
Python
TypeScript