Interface CfnNetworkInsightsAnalysis.IPortRangeProperty
Describes a range of ports.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPortRangeProperty
Syntax (vb)
Public Interface IPortRangeProperty
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 portRangeProperty = new PortRangeProperty {
From = 123,
To = 123
};
Synopsis
Properties
From | The first port in the range. |
To | The last port in the range. |
Properties
From
The first port in the range.
virtual Nullable<double> From { get; }
Property Value
System.Nullable<System.Double>
Remarks
To
The last port in the range.
virtual Nullable<double> To { get; }
Property Value
System.Nullable<System.Double>