interface NetworkBandwidthGbpsRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnCapacityProviderPropsMixin.NetworkBandwidthGbpsRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnCapacityProviderPropsMixin_NetworkBandwidthGbpsRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnCapacityProviderPropsMixin.NetworkBandwidthGbpsRequestProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnCapacityProviderPropsMixin.NetworkBandwidthGbpsRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnCapacityProviderPropsMixin » NetworkBandwidthGbpsRequestProperty |
The minimum and maximum network bandwidth in gigabits per second (Gbps) for instance type selection.
This is important for network-intensive workloads.
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 networkBandwidthGbpsRequestProperty: ecs_mixins.CfnCapacityProviderPropsMixin.NetworkBandwidthGbpsRequestProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum network bandwidth in Gbps. |
| min? | number | The minimum network bandwidth in Gbps. |
max?
Type:
number
(optional)
The maximum network bandwidth in Gbps.
Instance types with higher network bandwidth are excluded from selection.
min?
Type:
number
(optional)
The minimum network bandwidth in Gbps.
Instance types with lower network bandwidth are excluded from selection.

.NET
Go
Java
Python
TypeScript