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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNetworkInsightsPath.PathFilterPropertystatic final classAn implementation forCfnNetworkInsightsPath.PathFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationAddress
The destination IPv4 address.- See Also:
-
getDestinationPortRange
The destination port range.- See Also:
-
getSourceAddress
The source IPv4 address.- See Also:
-
getSourcePortRange
The source port range.- See Also:
-
builder
-