Interface CfnNetworkInsightsPath.PathFilterProperty

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

@Stability(Stable) public static interface CfnNetworkInsightsPath.PathFilterProperty extends software.amazon.jsii.JsiiSerializable
Describes a set of filters for a path analysis.

Use path filters to scope the analysis when there can be multiple resulting paths.

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.*;
 PathFilterProperty pathFilterProperty = PathFilterProperty.builder()
         .destinationAddress("destinationAddress")
         .destinationPortRange(FilterPortRangeProperty.builder()
                 .fromPort(123)
                 .toPort(123)
                 .build())
         .sourceAddress("sourceAddress")
         .sourcePortRange(FilterPortRangeProperty.builder()
                 .fromPort(123)
                 .toPort(123)
                 .build())
         .build();