interface NetworkBandwidthGbpsRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnCapacityProvider.NetworkBandwidthGbpsRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnCapacityProvider_NetworkBandwidthGbpsRequestProperty |
Java | software.amazon.awscdk.services.ecs.CfnCapacityProvider.NetworkBandwidthGbpsRequestProperty |
Python | aws_cdk.aws_ecs.CfnCapacityProvider.NetworkBandwidthGbpsRequestProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnCapacityProvider » 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 { aws_ecs as ecs } from 'aws-cdk-lib';
const networkBandwidthGbpsRequestProperty: ecs.CfnCapacityProvider.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