Show / Hide Table of Contents

Interface CfnListener.IPortRangeProperty

A complex type for a range of ports for a listener.

Namespace: Amazon.CDK.AWS.GlobalAccelerator
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnListener.IPortRangeProperty
Syntax (vb)
Public Interface CfnListener.IPortRangeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-globalaccelerator-listener-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.GlobalAccelerator;

             var portRangeProperty = new PortRangeProperty {
                 FromPort = 123,
                 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

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

ToPort

The last port in the range of ports, inclusive.

double ToPort { get; }
Property Value

double

Remarks

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

Back to top Generated by DocFX