Interface CfnNetworkInsightsAnalysis.IPortRangeProperty
Describes a range of ports.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnNetworkInsightsAnalysis.IPortRangeProperty
Syntax (vb)
Public Interface CfnNetworkInsightsAnalysis.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.
double? From { get; }
Property Value
Remarks
To
The last port in the range.
double? To { get; }