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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The destination addresses.The destination ports.The destination prefix lists.The protocols.The source addresses.The source ports.The source prefix lists.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationAddresses
The destination addresses. -
getDestinationPorts
The destination ports. -
getDestinationPrefixLists
The destination prefix lists. -
getProtocols
The protocols. -
getSourceAddresses
The source addresses. -
getSourcePorts
The source ports. -
getSourcePrefixLists
The source prefix lists. -
builder
@Stability(Stable) static CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty.Builder builder()
-