Interface CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty

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

@Stability(Stable) public static interface CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty extends software.amazon.jsii.JsiiSerializable
Describes a packet header statement.

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.ec2.*;
 PacketHeaderStatementRequestProperty packetHeaderStatementRequestProperty = PacketHeaderStatementRequestProperty.builder()
         .destinationAddresses(List.of("destinationAddresses"))
         .destinationPorts(List.of("destinationPorts"))
         .destinationPrefixLists(List.of("destinationPrefixLists"))
         .protocols(List.of("protocols"))
         .sourceAddresses(List.of("sourceAddresses"))
         .sourcePorts(List.of("sourcePorts"))
         .sourcePrefixLists(List.of("sourcePrefixLists"))
         .build();