interface PatchFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnPatchBaseline.PatchFilterProperty |
Java | software.amazon.awscdk.services.ssm.CfnPatchBaseline.PatchFilterProperty |
Python | aws_cdk.aws_ssm.CfnPatchBaseline.PatchFilterProperty |
TypeScript | @aws-cdk/aws-ssm » CfnPatchBaseline » PatchFilterProperty |
The PatchFilter property type defines a patch filter for an AWS Systems Manager patch baseline.
The PatchFilters property of the PatchFilterGroup property type contains a list of PatchFilter property types.
You can view lists of valid values for the patch properties by running the DescribePatchProperties command. For more information, see DescribePatchProperties in the AWS Systems Manager API Reference .
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 patchFilterProperty: ssm.CfnPatchBaseline.PatchFilterProperty = {
key: 'key',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key for the filter. |
| values? | string[] | The value for the filter key. |
key?
Type:
string
(optional)
The key for the filter.
For information about valid keys, see PatchFilter in the AWS Systems Manager API Reference .
values?
Type:
string[]
(optional)
The value for the filter key.
For information about valid values for each key based on operating system type, see PatchFilter in the AWS Systems Manager API Reference .

.NET
Java
Python
TypeScript