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 ILocationConfigurationProperty
Syntax (vb)
Public Interface ILocationConfigurationProperty
Remarks
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
Properties
Location | An AWS Region code, such as |
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
System.String
Remarks
For a list of supported Regions and Local Zones, see Amazon GameLift Servers service locations for managed hosting.
LocationCapacity
Current resource capacity settings in a specified fleet or location.
virtual object LocationCapacity { get; }
Property Value
System.Object
Remarks
The location value might refer to a fleet's remote location or its home Region.
StoppedActions
A list of fleet actions that have been suspended in the fleet location.
virtual string[] StoppedActions { get; }
Property Value
System.String[]