Show / Hide Table of Contents

Interface IPortRange

The list of port ranges for the connections from clients to the accelerator.

Namespace: Amazon.CDK.AWS.GlobalAccelerator
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPortRange
Syntax (vb)
Public Interface IPortRange
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.GlobalAccelerator;

            var portRange = new PortRange {
                FromPort = 123,

                // the properties below are optional
                ToPort = 123
            };

Synopsis

Properties

FromPort

The first port in the range of ports, inclusive.

ToPort

The last port in the range of ports, inclusive.

Properties

FromPort

The first port in the range of ports, inclusive.

double FromPort { get; }
Property Value

double

Remarks

ExampleMetadata: fixture=_generated

ToPort

The last port in the range of ports, inclusive.

double? ToPort { get; }
Property Value

double?

Remarks

Default: - same as fromPort

Back to top Generated by DocFX