Interface CfnRuleGroup.HeaderProperty

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

@Stability(Stable) public static interface CfnRuleGroup.HeaderProperty extends software.amazon.jsii.JsiiSerializable
The 5-tuple criteria for AWS Network Firewall to use to inspect packet headers in stateful traffic flow inspection.

Traffic flows that match the criteria are a match for the corresponding stateful rule.

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.*;
 HeaderProperty headerProperty = HeaderProperty.builder()
         .destination("destination")
         .destinationPort("destinationPort")
         .direction("direction")
         .protocol("protocol")
         .source("source")
         .sourcePort("sourcePort")
         .build();
 

See Also: