Show / Hide Table of Contents

Class CfnRuleGroup.RuleDefinitionProperty

The inspection criteria and action for a single stateless rule.

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

AWS Network Firewall inspects each packet for the specified matching criteria. When a packet matches the criteria, Network Firewall performs the rule's actions on the packet.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-ruledefinition.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 ruleDefinitionProperty = new RuleDefinitionProperty {
    Actions = new [] { "actions" },
    MatchAttributes = new MatchAttributesProperty {
        DestinationPorts = new [] { new PortRangeProperty {
            FromPort = 123,
            ToPort = 123
        } },
        Destinations = new [] { new AddressProperty {
            AddressDefinition = "addressDefinition"
        } },
        Protocols = new [] { 123 },
        SourcePorts = new [] { new PortRangeProperty {
            FromPort = 123,
            ToPort = 123
        } },
        Sources = new [] { new AddressProperty {
            AddressDefinition = "addressDefinition"
        } },
        TcpFlags = new [] { new TCPFlagFieldProperty {
            Flags = new [] { "flags" },

            // the properties below are optional
            Masks = new [] { "masks" }
        } }
    }
};

Synopsis

Constructors

RuleDefinitionProperty()

Properties

Actions

The actions to take on a packet that matches one of the stateless rule definition's match attributes.

MatchAttributes

Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection.

Constructors

RuleDefinitionProperty()

public RuleDefinitionProperty()

Properties

Actions

The actions to take on a packet that matches one of the stateless rule definition's match attributes.

public string[] Actions { get; set; }
Property Value

System.String[]

Remarks

You must specify a standard action and you can add custom actions.

Network Firewall only forwards a packet for stateful rule inspection if you specify aws:forward_to_sfe for a rule that the packet matches, or if the packet doesn't match any stateless rule and you specify aws:forward_to_sfe for the StatelessDefaultActions setting for the FirewallPolicy .

For every rule, you must specify exactly one of the following standard actions.

    Additionally, you can specify a custom action. To do this, you define a custom action by name and type, then provide the name you've assigned to the action in this Actions setting.

    To provide more than one action in this setting, separate the settings with a comma. For example, if you have a publish metrics custom action that you've named MyMetricsAction , then you could specify the standard action aws:pass combined with the custom action using [“aws:pass”, “MyMetricsAction”] .

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

    MatchAttributes

    Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection.

    public object MatchAttributes { get; set; }
    Property Value

    System.Object

    Remarks

    Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags.

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

    Implements

    CfnRuleGroup.IRuleDefinitionProperty
    Back to top Generated by DocFX