interface LocationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.CfnFleet.LocationConfigurationProperty |
Java | software.amazon.awscdk.services.gamelift.CfnFleet.LocationConfigurationProperty |
Python | aws_cdk.aws_gamelift.CfnFleet.LocationConfigurationProperty |
TypeScript | @aws-cdk/aws-gamelift » CfnFleet » LocationConfigurationProperty |
A remote location where a multi-location fleet can deploy game servers for game hosting.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift from '@aws-cdk/aws-gamelift';
const locationConfigurationProperty: gamelift.CfnFleet.LocationConfigurationProperty = {
location: 'location',
// the properties below are optional
locationCapacity: {
desiredEc2Instances: 123,
maxSize: 123,
minSize: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| location | string | An AWS Region code, such as us-west-2 . |
| location | IResolvable | Location | Current resource capacity settings in a specified fleet or location. |
location
Type:
string
An AWS Region code, such as us-west-2 .
locationCapacity?
Type:
IResolvable | Location
(optional)
Current resource capacity settings in a specified fleet or location.
The location value might refer to a fleet's remote location or its home Region.
Related actions
DescribeFleetCapacity | DescribeFleetLocationCapacity | UpdateFleetCapacity

.NET
Java
Python
TypeScript