interface NetworkInterfaceCountRequestProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.CfnCapacityProvider.NetworkInterfaceCountRequestProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnCapacityProvider_NetworkInterfaceCountRequestProperty |
![]() | software.amazon.awscdk.services.ecs.CfnCapacityProvider.NetworkInterfaceCountRequestProperty |
![]() | aws_cdk.aws_ecs.CfnCapacityProvider.NetworkInterfaceCountRequestProperty |
![]() | aws-cdk-lib » aws_ecs » CfnCapacityProvider » NetworkInterfaceCountRequestProperty |
The minimum and maximum number of network interfaces for instance type selection.
This is useful for workloads that require multiple network interfaces.
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 networkInterfaceCountRequestProperty: ecs.CfnCapacityProvider.NetworkInterfaceCountRequestProperty = {
max: 123,
min: 123,
};
Properties
Name | Type | Description |
---|---|---|
max? | number | The maximum number of network interfaces. |
min? | number | The minimum number of network interfaces. |
max?
Type:
number
(optional)
The maximum number of network interfaces.
Instance types that support more network interfaces are excluded from selection.
min?
Type:
number
(optional)
The minimum number of network interfaces.
Instance types that support fewer network interfaces are excluded from selection.