Show / Hide Table of Contents

Class CfnVerifiedAccessEndpoint.PortRangeProperty

Describes the port range for a Verified Access endpoint.

Inheritance
object
CfnVerifiedAccessEndpoint.PortRangeProperty
Implements
CfnVerifiedAccessEndpoint.IPortRangeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVerifiedAccessEndpoint.PortRangeProperty : CfnVerifiedAccessEndpoint.IPortRangeProperty
Syntax (vb)
Public Class CfnVerifiedAccessEndpoint.PortRangeProperty Implements CfnVerifiedAccessEndpoint.IPortRangeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-portrange.html

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()

Describes the port range for a Verified Access endpoint.

Properties

FromPort

The start of the port range.

ToPort

The end of the port range.

Constructors

PortRangeProperty()

Describes the port range for a Verified Access endpoint.

public PortRangeProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-portrange.html

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
             };

Properties

FromPort

The start of the port range.

public double? FromPort { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-portrange.html#cfn-ec2-verifiedaccessendpoint-portrange-fromport

ToPort

The end of the port range.

public double? ToPort { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-portrange.html#cfn-ec2-verifiedaccessendpoint-portrange-toport

Implements

CfnVerifiedAccessEndpoint.IPortRangeProperty
Back to top Generated by DocFX