Interface CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty.Jsii$Proxy
- Enclosing class:
CfnCapacityProvider
@Stability(Stable)
public static interface CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty
extends software.amazon.jsii.JsiiSerializable
The minimum and maximum baseline Amazon EBS bandwidth in megabits per second (Mbps) for instance type selection.
This is important for workloads with high storage I/O 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.*;
BaselineEbsBandwidthMbpsRequestProperty baselineEbsBandwidthMbpsRequestProperty = BaselineEbsBandwidthMbpsRequestProperty.builder()
.max(123)
.min(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum baseline Amazon EBS bandwidth in Mbps.Instance types with higher Amazon EBS bandwidth are excluded from selection.
- See Also:
-
getMin
The minimum baseline Amazon EBS bandwidth in Mbps.Instance types with lower Amazon EBS bandwidth are excluded from selection.
- See Also:
-
builder
@Stability(Stable) static CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty.Builder builder()
-