Interface CfnNetworkInsightsPath.IFilterPortRangeProperty
Describes a port range.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFilterPortRangeProperty
Syntax (vb)
Public Interface IFilterPortRangeProperty
Remarks
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 filterPortRangeProperty = new FilterPortRangeProperty {
FromPort = 123,
ToPort = 123
};
Synopsis
Properties
FromPort | The first port in the range. |
ToPort | The last port in the range. |
Properties
FromPort
The first port in the range.
virtual Nullable<double> FromPort { get; }
Property Value
System.Nullable<System.Double>
Remarks
ToPort
The last port in the range.
virtual Nullable<double> ToPort { get; }
Property Value
System.Nullable<System.Double>