Interface CfnFleet.LocationCapacityProperty

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

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

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: