Interface CfnContainerFleet.LocationCapacityProperty

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

@Stability(Stable) public static interface CfnContainerFleet.LocationCapacityProperty extends software.amazon.jsii.JsiiSerializable
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.

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.*;
 LocationCapacityProperty locationCapacityProperty = LocationCapacityProperty.builder()
         .desiredEc2Instances(123)
         .maxSize(123)
         .minSize(123)
         .build();
 

See Also: