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
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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFleet.LocationConfigurationPropertystatic final classAn implementation forCfnFleet.LocationConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getLocationAn AWS Region code, such asus-west-2.
- 
getLocationCapacityCurrent 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 
- 
builder
 
-