interface LocationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GameLift.CfnFleetPropsMixin.LocationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgamelift#CfnFleetPropsMixin_LocationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.gamelift.CfnFleetPropsMixin.LocationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_gamelift.CfnFleetPropsMixin.LocationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_gamelift » 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 { aws_gamelift as gamelift } from '@aws-cdk/cfn-property-mixins';
const locationConfigurationProperty: gamelift.CfnFleetPropsMixin.LocationConfigurationProperty = {
location: 'location',
locationCapacity: {
desiredEc2Instances: 123,
managedCapacityConfiguration: {
scaleInAfterInactivityMinutes: 123,
zeroCapacityStrategy: 'zeroCapacityStrategy',
},
maxSize: 123,
minSize: 123,
},
playerGatewayStatus: 'playerGatewayStatus',
};
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. |
| player | string | The player gateway status for the location. |
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
playerGatewayStatus?
Type:
string
(optional)
The player gateway status for the location.

.NET
Go
Java
Python
TypeScript