Show / Hide Table of Contents

Interface CfnPatchBaseline.IRuleGroupProperty

The RuleGroup property type specifies a set of rules that define the approval rules for an AWS Systems Manager patch baseline.

Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnPatchBaseline.IRuleGroupProperty
Syntax (vb)
Public Interface CfnPatchBaseline.IRuleGroupProperty
Remarks

RuleGroup is the property type for the ApprovalRules property of the AWS::SSM::PatchBaseline resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rulegroup.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 ruleGroupProperty = new RuleGroupProperty {
                 PatchRules = new [] { new RuleProperty {
                     ApproveAfterDays = 123,
                     ApproveUntilDate = "approveUntilDate",
                     ComplianceLevel = "complianceLevel",
                     EnableNonSecurity = false,
                     PatchFilterGroup = new PatchFilterGroupProperty {
                         PatchFilters = new [] { new PatchFilterProperty {
                             Key = "key",
                             Values = new [] { "values" }
                         } }
                     }
                 } }
             };

Synopsis

Properties

PatchRules

The rules that make up the rule group.

Properties

PatchRules

The rules that make up the rule group.

object? PatchRules { get; }
Property Value

object

Remarks

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

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

Back to top Generated by DocFX