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