Show / Hide Table of Contents

Class CfnPatchBaseline.PatchFilterProperty

The PatchFilter property type defines a patch filter for an AWS Systems Manager patch baseline.

Inheritance
object
CfnPatchBaseline.PatchFilterProperty
Implements
CfnPatchBaseline.IPatchFilterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPatchBaseline.PatchFilterProperty : CfnPatchBaseline.IPatchFilterProperty
Syntax (vb)
Public Class CfnPatchBaseline.PatchFilterProperty Implements CfnPatchBaseline.IPatchFilterProperty
Remarks

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var patchFilterProperty = new PatchFilterProperty {
                 Key = "key",
                 Values = new [] { "values" }
             };

Synopsis

Constructors

PatchFilterProperty()

The PatchFilter property type defines a patch filter for an AWS Systems Manager patch baseline.

Properties

Key

The key for the filter.

Values

The value for the filter key.

Constructors

PatchFilterProperty()

The PatchFilter property type defines a patch filter for an AWS Systems Manager patch baseline.

public PatchFilterProperty()
Remarks

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var patchFilterProperty = new PatchFilterProperty {
                 Key = "key",
                 Values = new [] { "values" }
             };

Properties

Key

The key for the filter.

public string? Key { get; set; }
Property Value

string

Remarks

For information about valid keys, see PatchFilter in the AWS Systems Manager API Reference .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html#cfn-ssm-patchbaseline-patchfilter-key

Values

The value for the filter key.

public string[]? Values { get; set; }
Property Value

string[]

Remarks

For information about valid values for each key based on operating system type, see PatchFilter in the AWS Systems Manager API Reference .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html#cfn-ssm-patchbaseline-patchfilter-values

Implements

CfnPatchBaseline.IPatchFilterProperty
Back to top Generated by DocFX