aws-cdk-lib.aws_ssm.CfnPatchBaseline.PatchFilterGroupProperty

interface PatchFilterGroupProperty

LanguageType name
.NETAmazon.CDK.AWS.SSM.CfnPatchBaseline.PatchFilterGroupProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnPatchBaseline_PatchFilterGroupProperty
Javasoftware.amazon.awscdk.services.ssm.CfnPatchBaseline.PatchFilterGroupProperty
Pythonaws_cdk.aws_ssm.CfnPatchBaseline.PatchFilterGroupProperty
TypeScript aws-cdk-lib » 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 { aws_ssm as ssm } from 'aws-cdk-lib';
const patchFilterGroupProperty: ssm.CfnPatchBaseline.PatchFilterGroupProperty = {
  patchFilters: [{
    key: 'key',
    values: ['values'],
  }],
};

Properties

NameTypeDescription
patchFilters?IResolvable | IResolvable | PatchFilterProperty[]The set of patch filters that make up the group.

patchFilters?

Type: IResolvable | IResolvable | PatchFilterProperty[] (optional)

The set of patch filters that make up the group.