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 IPathFilterProperty
Syntax (vb)
Public Interface 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.
virtual string DestinationAddress { get; }
Property Value
System.String
Remarks
DestinationPortRange
The destination port range.
virtual object DestinationPortRange { get; }
Property Value
System.Object
Remarks
SourceAddress
The source IPv4 address.
virtual string SourceAddress { get; }
Property Value
System.String
Remarks
SourcePortRange
The source port range.
virtual object SourcePortRange { get; }
Property Value
System.Object