Interface CfnNetworkInsightsPath.IPathFilterProperty
Describes a set of filters for a path analysis.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnNetworkInsightsPath.IPathFilterProperty
Syntax (vb)
Public Interface CfnNetworkInsightsPath.IPathFilterProperty
Remarks
Use path filters to scope the analysis when there can be multiple resulting paths.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var pathFilterProperty = new PathFilterProperty {
DestinationAddress = "destinationAddress",
DestinationPortRange = new FilterPortRangeProperty {
FromPort = 123,
ToPort = 123
},
SourceAddress = "sourceAddress",
SourcePortRange = new FilterPortRangeProperty {
FromPort = 123,
ToPort = 123
}
};
Synopsis
Properties
DestinationAddress | The destination IPv4 address. |
DestinationPortRange | The destination port range. |
SourceAddress | The source IPv4 address. |
SourcePortRange | The source port range. |
Properties
DestinationAddress
The destination IPv4 address.
string? DestinationAddress { get; }
Property Value
Remarks
DestinationPortRange
The destination port range.
object? DestinationPortRange { get; }
Property Value
Remarks
SourceAddress
The source IPv4 address.
string? SourceAddress { get; }
Property Value
Remarks
SourcePortRange
The source port range.
object? SourcePortRange { get; }