interface LocationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Mixins.CfnFleetPropsMixin.LocationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/mixins#CfnFleetPropsMixin_LocationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.mixins.CfnFleetPropsMixin.LocationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_gamelift.mixins.CfnFleetPropsMixin.LocationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_gamelift » mixins » CfnFleetPropsMixin » 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 { mixins as gamelift_mixins } from '@aws-cdk/mixins-preview/aws-gamelift';
const locationConfigurationProperty: gamelift_mixins.CfnFleetPropsMixin.LocationConfigurationProperty = {
location: 'location',
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 for managed EC2 fleets and managed container fleets. |
location?
Type:
string
(optional)
An AWS Region code, such as us-west-2 .
For a list of supported Regions and Local Zones, see Amazon GameLift Servers service locations for managed hosting.
locationCapacity?
Type:
IResolvable | Location
(optional)
Current resource capacity settings for managed EC2 fleets and managed container fleets.
For multi-location fleets, location values might refer to a fleet's remote location or its home Region.
Returned by: DescribeFleetCapacity , DescribeFleetLocationCapacity , UpdateFleetCapacity

.NET
Go
Java
Python
TypeScript