Show / Hide Table of Contents

Interface CfnPatchBaseline.IPatchFilterGroupProperty

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.

Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.AWS.SSM.dll
Syntax (csharp)
public interface IPatchFilterGroupProperty
Syntax (vb)
Public Interface 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.

Link: 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

Properties

PatchFilters

The set of patch filters that make up the group.

Properties

PatchFilters

The set of patch filters that make up the group.

virtual object PatchFilters { get; }
Property Value

System.Object

Remarks

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

Back to top Generated by DocFX