Show / Hide Table of Contents

Interface CfnContainerFleet.IConnectionPortRangeProperty

The set of port numbers to open on each instance in a container fleet.

Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnContainerFleet.IConnectionPortRangeProperty
Syntax (vb)
Public Interface CfnContainerFleet.IConnectionPortRangeProperty
Remarks

Connection ports are used by inbound traffic to connect with processes that are running in containers on the fleet.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-connectionportrange.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.GameLift;

             var connectionPortRangeProperty = new ConnectionPortRangeProperty {
                 FromPort = 123,
                 ToPort = 123
             };

Synopsis

Properties

FromPort

Starting value for the port range.

ToPort

Ending value for the port.

Properties

FromPort

Starting value for the port range.

double FromPort { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-connectionportrange.html#cfn-gamelift-containerfleet-connectionportrange-fromport

ToPort

Ending value for the port.

double ToPort { get; }
Property Value

double

Remarks

Port numbers are end-inclusive. This value must be equal to or greater than FromPort .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-connectionportrange.html#cfn-gamelift-containerfleet-connectionportrange-toport

Back to top Generated by DocFX