Interface CfnFleet.ScalingConfigurationInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleet.ScalingConfigurationInputProperty.Jsii$Proxy
- Enclosing class:
CfnFleet
@Stability(Stable)
public static interface CfnFleet.ScalingConfigurationInputProperty
extends software.amazon.jsii.JsiiSerializable
The scaling configuration input of a compute fleet.
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.codebuild.*; ScalingConfigurationInputProperty scalingConfigurationInputProperty = ScalingConfigurationInputProperty.builder() .maxCapacity(123) .scalingType("scalingType") .targetTrackingScalingConfigs(List.of(TargetTrackingScalingConfigurationProperty.builder() .metricType("metricType") .targetValue(123) .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFleet.ScalingConfigurationInputProperty
static final class
An implementation forCfnFleet.ScalingConfigurationInputProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxCapacity
The maximum number of instances in the fleet when auto-scaling.- See Also:
-
getScalingType
The scaling type for a compute fleet.- See Also:
-
getTargetTrackingScalingConfigs
A list ofTargetTrackingScalingConfiguration
objects.- See Also:
-
builder
-