interface NetworkInterfaceCountProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnLaunchTemplate.NetworkInterfaceCountProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnLaunchTemplate_NetworkInterfaceCountProperty |
![]() | software.amazon.awscdk.services.ec2.CfnLaunchTemplate.NetworkInterfaceCountProperty |
![]() | aws_cdk.aws_ec2.CfnLaunchTemplate.NetworkInterfaceCountProperty |
![]() | aws-cdk-lib » aws_ec2 » CfnLaunchTemplate » NetworkInterfaceCountProperty |
The minimum and maximum number of network interfaces.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const networkInterfaceCountProperty: ec2.CfnLaunchTemplate.NetworkInterfaceCountProperty = {
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.
To specify no maximum limit, omit this parameter.
min?
Type:
number
(optional)
The minimum number of network interfaces.
To specify no minimum limit, omit this parameter.