Interface CfnFleet.LocationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleet.LocationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFleet
@Stability(Stable)
public static interface CfnFleet.LocationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
This data type has been expanded to use with the Amazon GameLift containers feature, which is currently in public preview..
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 software.amazon.awscdk.services.gamelift.*; LocationConfigurationProperty locationConfigurationProperty = LocationConfigurationProperty.builder() .location("location") // the properties below are optional .locationCapacity(LocationCapacityProperty.builder() .desiredEc2Instances(123) .maxSize(123) .minSize(123) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFleet.LocationConfigurationProperty
static final class
An implementation forCfnFleet.LocationConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocation
An AWS Region code, such asus-west-2
.For a list of supported Regions and Local Zones, see Amazon GameLift service locations for managed hosting.
- See Also:
-
getLocationCapacity
Current resource capacity settings for managed EC2 fleets and 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
- See Also:
-
builder
-