package awsnetworkfirewall // Identifier for a single stateful rule group, used in a firewall policy to refer to a rule group. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // statefulRuleGroupReferenceProperty := &StatefulRuleGroupReferenceProperty{ // ResourceArn: jsii.String("resourceArn"), // // // the properties below are optional // Override: &StatefulRuleGroupOverrideProperty{ // Action: jsii.String("action"), // }, // Priority: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-statefulrulegroupreference.html // type CfnFirewallPolicy_StatefulRuleGroupReferenceProperty struct { // The Amazon Resource Name (ARN) of the stateful rule group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-statefulrulegroupreference.html#cfn-networkfirewall-firewallpolicy-statefulrulegroupreference-resourcearn // ResourceArn *string `field:"required" json:"resourceArn" yaml:"resourceArn"` // The action that allows the policy owner to override the behavior of the rule group within a policy. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-statefulrulegroupreference.html#cfn-networkfirewall-firewallpolicy-statefulrulegroupreference-override // Override interface{} `field:"optional" json:"override" yaml:"override"` // An integer setting that indicates the order in which to run the stateful rule groups in a single `FirewallPolicy` . // // This setting only applies to firewall policies that specify the `STRICT_ORDER` rule order in the stateful engine options settings. // // Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. // // You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-statefulrulegroupreference.html#cfn-networkfirewall-firewallpolicy-statefulrulegroupreference-priority // Priority *float64 `field:"optional" json:"priority" yaml:"priority"` }