interface PatchFilterGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Mixins.CfnPatchBaselinePropsMixin.PatchFilterGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/mixins#CfnPatchBaselinePropsMixin_PatchFilterGroupProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssm.mixins.CfnPatchBaselinePropsMixin.PatchFilterGroupProperty |
Python | aws_cdk.mixins_preview.aws_ssm.mixins.CfnPatchBaselinePropsMixin.PatchFilterGroupProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssm » mixins » CfnPatchBaselinePropsMixin » 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 { mixins as ssm_mixins } from '@aws-cdk/mixins-preview/aws-ssm';
const patchFilterGroupProperty: ssm_mixins.CfnPatchBaselinePropsMixin.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
Go
Java
Python
TypeScript