Interface CfnContainerFleetPropsMixin.LocationCapacityProperty

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

@Stability(Stable) public static interface CfnContainerFleetPropsMixin.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.cfnpropertymixins.services.gamelift.*;
 LocationCapacityProperty locationCapacityProperty = LocationCapacityProperty.builder()
         .desiredEc2Instances(123)
         .managedCapacityConfiguration(ManagedCapacityConfigurationProperty.builder()
                 .scaleInAfterInactivityMinutes(123)
                 .zeroCapacityStrategy("zeroCapacityStrategy")
                 .build())
         .maxSize(123)
         .minSize(123)
         .build();
 

See Also: