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

.NET
Go
Java
Python
TypeScript