Class CfnRuleGroup.ReferenceSetsProperty
Configures the ReferenceSets
for a stateful rule group.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.NetworkFirewall
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRuleGroup.ReferenceSetsProperty : CfnRuleGroup.IReferenceSetsProperty
Syntax (vb)
Public Class CfnRuleGroup.ReferenceSetsProperty Implements CfnRuleGroup.IReferenceSetsProperty
Remarks
For more information, see the Using IP set references in Suricata compatible rule groups in the Network Firewall User Guide .
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 referenceSetsProperty = new ReferenceSetsProperty {
IpSetReferences = new Dictionary<string, object> {
{ "ipSetReferencesKey", new Dictionary<string, string?> {
{ "referenceArn", "referenceArn" }
} }
}
};
Synopsis
Constructors
ReferenceSetsProperty() | Configures the |
Properties
IpSetReferences | The IP set references to use in the stateful rule group. |
Constructors
ReferenceSetsProperty()
Configures the ReferenceSets
for a stateful rule group.
public ReferenceSetsProperty()
Remarks
For more information, see the Using IP set references in Suricata compatible rule groups in the Network Firewall User Guide .
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 referenceSetsProperty = new ReferenceSetsProperty {
IpSetReferences = new Dictionary<string, object> {
{ "ipSetReferencesKey", new Dictionary<string, string?> {
{ "referenceArn", "referenceArn" }
} }
}
};
Properties
IpSetReferences
The IP set references to use in the stateful rule group.
public object? IpSetReferences { get; set; }