aws-cdk-lib.aws_gamelift.CfnFleet.LocationConfigurationProperty

interface LocationConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.GameLift.CfnFleet.LocationConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#CfnFleet_LocationConfigurationProperty
Javasoftware.amazon.awscdk.services.gamelift.CfnFleet.LocationConfigurationProperty
Pythonaws_cdk.aws_gamelift.CfnFleet.LocationConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_gamelift as gamelift } from 'aws-cdk-lib';
const locationConfigurationProperty: gamelift.CfnFleet.LocationConfigurationProperty = {
  location: 'location',

  // the properties below are optional
  locationCapacity: {
    desiredEc2Instances: 123,
    maxSize: 123,
    minSize: 123,
  },
};

Properties

NameTypeDescription
locationstringAn AWS Region code, such as us-west-2 .
locationCapacity?IResolvable | LocationCapacityPropertyCurrent resource capacity settings in a specified fleet or location.

location

Type: string

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


locationCapacity?

Type: IResolvable | LocationCapacityProperty (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