Class CfnVerifiedAccessEndpoint.PortRangeProperty
Describes the port range for a Verified Access endpoint.
Inheritance
System.Object
CfnVerifiedAccessEndpoint.PortRangeProperty
Implements
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PortRangeProperty : Object, CfnVerifiedAccessEndpoint.IPortRangeProperty
Syntax (vb)
Public Class PortRangeProperty
Inherits Object
Implements CfnVerifiedAccessEndpoint.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 {
FromPort = 123,
ToPort = 123
};
Synopsis
Constructors
PortRangeProperty() |
Properties
FromPort | The start of the port range. |
ToPort | The end of the port range. |
Constructors
PortRangeProperty()
public PortRangeProperty()
Properties
FromPort
The start of the port range.
public Nullable<double> FromPort { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
ToPort
The end of the port range.
public Nullable<double> ToPort { get; set; }
Property Value
System.Nullable<System.Double>