Show / Hide Table of Contents

Interface CfnContainerFleet.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 CfnContainerFleet.ILocationConfigurationProperty
Syntax (vb)
Public Interface CfnContainerFleet.ILocationConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-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
                 },
                 StoppedActions = new [] { "stoppedActions" }
             };

Synopsis

Properties

Location

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

LocationCapacity

Current resource capacity settings in a specified fleet or location.

StoppedActions

A list of fleet actions that have been suspended in the fleet location.

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-containerfleet-locationconfiguration.html#cfn-gamelift-containerfleet-locationconfiguration-location

LocationCapacity

Current resource capacity settings in a specified fleet or location.

object? LocationCapacity { get; }
Property Value

object

Remarks

The location value might refer to a fleet's remote location or its home Region.

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

Type union: either IResolvable or CfnContainerFleet.ILocationCapacityProperty

StoppedActions

A list of fleet actions that have been suspended in the fleet location.

string[]? StoppedActions { get; }
Property Value

string[]

Remarks

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

Back to top Generated by DocFX