Interface CfnNetworkInsightsAccessScope.PathStatementRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkInsightsAccessScope.PathStatementRequestProperty.Jsii$Proxy
- Enclosing class:
CfnNetworkInsightsAccessScope
@Stability(Stable)
public static interface CfnNetworkInsightsAccessScope.PathStatementRequestProperty
extends software.amazon.jsii.JsiiSerializable
Describes a path 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.*;
PathStatementRequestProperty pathStatementRequestProperty = PathStatementRequestProperty.builder()
.packetHeaderStatement(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())
.resourceStatement(ResourceStatementRequestProperty.builder()
.resources(List.of("resources"))
.resourceTypes(List.of("resourceTypes"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnNetworkInsightsAccessScope.PathStatementRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPacketHeaderStatement
The packet header statement.Returns union: either
IResolvableorCfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty- See Also:
-
getResourceStatement
The resource statement.Returns union: either
IResolvableorCfnNetworkInsightsAccessScope.ResourceStatementRequestProperty- See Also:
-
builder
@Stability(Stable) static CfnNetworkInsightsAccessScope.PathStatementRequestProperty.Builder builder()
-