aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty

interface NetworkInterfaceCountRequestProperty

LanguageType name
.NETAmazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_NetworkInterfaceCountRequestProperty
Javasoftware.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty
Pythonaws_cdk.aws_autoscaling.CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty
TypeScript aws-cdk-lib » aws_autoscaling » CfnAutoScalingGroup » NetworkInterfaceCountRequestProperty

NetworkInterfaceCountRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum number of network interfaces for an instance type.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_autoscaling as autoscaling } from 'aws-cdk-lib';
const networkInterfaceCountRequestProperty: autoscaling.CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe maximum number of network interfaces.
min?numberThe minimum number of network interfaces.

max?

Type: number (optional)

The maximum number of network interfaces.


min?

Type: number (optional)

The minimum number of network interfaces.