Interface CfnContainerFleetPropsMixin.LocationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContainerFleetPropsMixin.LocationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnContainerFleetPropsMixin
@Stability(Stable)
public static interface CfnContainerFleetPropsMixin.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.cfnpropertymixins.services.gamelift.*;
LocationConfigurationProperty locationConfigurationProperty = LocationConfigurationProperty.builder()
.location("location")
.locationCapacity(LocationCapacityProperty.builder()
.desiredEc2Instances(123)
.managedCapacityConfiguration(ManagedCapacityConfigurationProperty.builder()
.scaleInAfterInactivityMinutes(123)
.zeroCapacityStrategy("zeroCapacityStrategy")
.build())
.maxSize(123)
.minSize(123)
.build())
.playerGatewayStatus("playerGatewayStatus")
.stoppedActions(List.of("stoppedActions"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnContainerFleetPropsMixin.LocationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn AWS Region code, such asus-west-2.default ObjectCurrent resource capacity settings in a specified fleet or location.default StringThe player gateway status for the location.A list of fleet actions that have been suspended in the fleet location.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 Servers service locations for managed hosting.
- See Also:
-
getLocationCapacity
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.
Returns union: either
IResolvableorCfnContainerFleetPropsMixin.LocationCapacityProperty- See Also:
-
getPlayerGatewayStatus
The player gateway status for the location.- See Also:
-
getStoppedActions
A list of fleet actions that have been suspended in the fleet location.- See Also:
-
builder
@Stability(Stable) static CfnContainerFleetPropsMixin.LocationConfigurationProperty.Builder builder()
-