Show / Hide Table of Contents

Interface CfnFleet.ILocationConfigurationProperty

A remote location where a multi-location fleet can deploy game servers for game hosting.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-locationconfiguration.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 locationConfigurationProperty = new LocationConfigurationProperty {
                 Location = "location",

                 // the properties below are optional
                 LocationCapacity = new LocationCapacityProperty {
                     MaxSize = 123,
                     MinSize = 123,

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

Synopsis

Properties

Location

An AWS Region code, such as us-west-2 .

LocationCapacity

Current resource capacity settings for managed EC2 fleets and managed container fleets.

Properties

Location

An AWS Region code, such as us-west-2 .

string Location { get; }
Property Value

string

Remarks

For a list of supported Regions and Local Zones, see Amazon GameLift Servers service locations for managed hosting.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-locationconfiguration.html#cfn-gamelift-fleet-locationconfiguration-location

LocationCapacity

Current resource capacity settings for managed EC2 fleets and managed container fleets.

object? LocationCapacity { get; }
Property Value

object

Remarks

For multi-location fleets, location values might refer to a fleet's remote location or its home Region.

Returned by: DescribeFleetCapacity , DescribeFleetLocationCapacity , UpdateFleetCapacity

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-locationconfiguration.html#cfn-gamelift-fleet-locationconfiguration-locationcapacity

Type union: either IResolvable or CfnFleet.ILocationCapacityProperty

Back to top Generated by DocFX