Interface CfnContainerFleet.LocationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnContainerFleet.LocationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnContainerFleet

@Stability(Stable) public static interface CfnContainerFleet.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())
         .stoppedActions(List.of("stoppedActions"))
         .build();
 

See Also: