Interface CfnRuleGroup.ReferenceSetsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRuleGroup.ReferenceSetsProperty.Jsii$Proxy
Enclosing class:
CfnRuleGroup

@Stability(Stable) public static interface CfnRuleGroup.ReferenceSetsProperty extends software.amazon.jsii.JsiiSerializable
Configures the ReferenceSets for a stateful rule group.

For more information, see the Using IP set references in Suricata compatible rule groups in the Network Firewall User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.networkfirewall.*;
 ReferenceSetsProperty referenceSetsProperty = ReferenceSetsProperty.builder()
         .ipSetReferences(Map.of(
                 "ipSetReferencesKey", Map.of(
                         "referenceArn", "referenceArn")))
         .build();
 

See Also: