interface PatchFilterProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SSM.CfnPatchBaseline.PatchFilterProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnPatchBaseline_PatchFilterProperty |
![]() | software.amazon.awscdk.services.ssm.CfnPatchBaseline.PatchFilterProperty |
![]() | aws_cdk.aws_ssm.CfnPatchBaseline.PatchFilterProperty |
![]() | aws-cdk-lib » 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 { aws_ssm as ssm } from 'aws-cdk-lib';
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 .