Show / Hide Table of Contents

Class CfnContainerFleet.LocationConfigurationProperty

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

Inheritance
object
CfnContainerFleet.LocationConfigurationProperty
Implements
CfnContainerFleet.ILocationConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnContainerFleet.LocationConfigurationProperty : CfnContainerFleet.ILocationConfigurationProperty
Syntax (vb)
Public Class CfnContainerFleet.LocationConfigurationProperty Implements 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 {
                     DesiredEc2Instances = 123,
                     MaxSize = 123,
                     MinSize = 123
                 },
                 StoppedActions = new [] { "stoppedActions" }
             };

Synopsis

Constructors

LocationConfigurationProperty()

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

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.

Constructors

LocationConfigurationProperty()

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

public LocationConfigurationProperty()
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 {
                     DesiredEc2Instances = 123,
                     MaxSize = 123,
                     MinSize = 123
                 },
                 StoppedActions = new [] { "stoppedActions" }
             };

Properties

Location

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

public string Location { get; set; }
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.

public object? LocationCapacity { get; set; }
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

StoppedActions

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

public string[]? StoppedActions { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnContainerFleet.ILocationConfigurationProperty
Back to top Generated by DocFX