Interface CfnCapacityProvider.VCpuCountRangeRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapacityProvider.VCpuCountRangeRequestProperty.Jsii$Proxy
- Enclosing class:
CfnCapacityProvider
@Stability(Stable)
public static interface CfnCapacityProvider.VCpuCountRangeRequestProperty
extends software.amazon.jsii.JsiiSerializable
The minimum and maximum number of vCPUs for instance type selection.
This allows you to specify a range of vCPU counts that meet your workload requirements.
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.ecs.*; VCpuCountRangeRequestProperty vCpuCountRangeRequestProperty = VCpuCountRangeRequestProperty.builder() .min(123) // the properties below are optional .max(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCapacityProvider.VCpuCountRangeRequestProperty
static final class
An implementation forCfnCapacityProvider.VCpuCountRangeRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMin
The minimum number of vCPUs.Instance types with fewer vCPUs than this value are excluded from selection.
- See Also:
-
getMax
The maximum number of vCPUs.Instance types with more vCPUs than this value are excluded from selection.
- See Also:
-
builder
-