interface BaselineEbsBandwidthMbpsRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnCapacityProvider_BaselineEbsBandwidthMbpsRequestProperty |
Java | software.amazon.awscdk.services.ecs.CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty |
Python | aws_cdk.aws_ecs.CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnCapacityProvider » BaselineEbsBandwidthMbpsRequestProperty |
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 { aws_ecs as ecs } from 'aws-cdk-lib';
const baselineEbsBandwidthMbpsRequestProperty: ecs.CfnCapacityProvider.BaselineEbsBandwidthMbpsRequestProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum baseline Amazon EBS bandwidth in Mbps. |
| min? | number | The minimum baseline Amazon EBS bandwidth in Mbps. |
max?
Type:
number
(optional)
The maximum baseline Amazon EBS bandwidth in Mbps.
Instance types with higher Amazon EBS bandwidth are excluded from selection.
min?
Type:
number
(optional)
The minimum baseline Amazon EBS bandwidth in Mbps.
Instance types with lower Amazon EBS bandwidth are excluded from selection.

.NET
Go
Java
Python
TypeScript