interface BaselineEbsBandwidthMbpsRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnCapacityProviderPropsMixin.BaselineEbsBandwidthMbpsRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnCapacityProviderPropsMixin_BaselineEbsBandwidthMbpsRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnCapacityProviderPropsMixin.BaselineEbsBandwidthMbpsRequestProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnCapacityProviderPropsMixin.BaselineEbsBandwidthMbpsRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnCapacityProviderPropsMixin » 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 { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const baselineEbsBandwidthMbpsRequestProperty: ecs_mixins.CfnCapacityProviderPropsMixin.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