Show / Hide Table of Contents

Class 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.

Inheritance
object
CfnPatchBaseline.PatchFilterGroupProperty
Implements
CfnPatchBaseline.IPatchFilterGroupProperty
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.PatchFilterGroupProperty : CfnPatchBaseline.IPatchFilterGroupProperty
Syntax (vb)
Public Class CfnPatchBaseline.PatchFilterGroupProperty Implements CfnPatchBaseline.IPatchFilterGroupProperty
Remarks

PatchFilterGroup is the property type for the GlobalFilters property of the AWS::SSM::PatchBaseline resource and the PatchFilterGroup property of the Rule property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfiltergroup.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 patchFilterGroupProperty = new PatchFilterGroupProperty {
                 PatchFilters = new [] { new PatchFilterProperty {
                     Key = "key",
                     Values = new [] { "values" }
                 } }
             };

Synopsis

Constructors

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.

Properties

PatchFilters

The set of patch filters that make up the group.

Constructors

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.

public PatchFilterGroupProperty()
Remarks

PatchFilterGroup is the property type for the GlobalFilters property of the AWS::SSM::PatchBaseline resource and the PatchFilterGroup property of the Rule property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfiltergroup.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 patchFilterGroupProperty = new PatchFilterGroupProperty {
                 PatchFilters = new [] { new PatchFilterProperty {
                     Key = "key",
                     Values = new [] { "values" }
                 } }
             };

Properties

PatchFilters

The set of patch filters that make up the group.

public object? PatchFilters { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnPatchBaseline.IPatchFilterProperty)[]

Implements

CfnPatchBaseline.IPatchFilterGroupProperty
Back to top Generated by DocFX