Show / Hide Table of Contents

Class CfnRuleGroup.RuleVariablesProperty

Settings that are available for use in the rules in the RuleGroup where this is defined.

Inheritance
System.Object
CfnRuleGroup.RuleVariablesProperty
Implements
CfnRuleGroup.IRuleVariablesProperty
Namespace: Amazon.CDK.AWS.NetworkFirewall
Assembly: Amazon.CDK.AWS.NetworkFirewall.dll
Syntax (csharp)
public class RuleVariablesProperty : Object, CfnRuleGroup.IRuleVariablesProperty
Syntax (vb)
Public Class RuleVariablesProperty
    Inherits Object
    Implements CfnRuleGroup.IRuleVariablesProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-rulevariables.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.NetworkFirewall;

var ruleVariablesProperty = new RuleVariablesProperty {
    IpSets = new Dictionary<string, object> {
        { "ipSetsKey", new Dictionary<string, string[]?> {
            { "definition", new [] { "definition" } }
        } }
    },
    PortSets = new Dictionary<string, object> {
        { "portSetsKey", new PortSetProperty {
            Definition = new [] { "definition" }
        } }
    }
};

Synopsis

Constructors

RuleVariablesProperty()

Properties

IpSets

A list of IP addresses and address ranges, in CIDR notation.

PortSets

A list of port ranges.

Constructors

RuleVariablesProperty()

public RuleVariablesProperty()

Properties

IpSets

A list of IP addresses and address ranges, in CIDR notation.

public object IpSets { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-rulevariables.html#cfn-networkfirewall-rulegroup-rulevariables-ipsets

PortSets

A list of port ranges.

public object PortSets { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-rulevariables.html#cfn-networkfirewall-rulegroup-rulevariables-portsets

Implements

CfnRuleGroup.IRuleVariablesProperty
Back to top Generated by DocFX