aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty

interface NetworkBandwidthGbpsRequestProperty

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

NetworkBandwidthGbpsRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum network bandwidth for an instance type, in Gbps.

Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide for Linux Instances .

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 networkBandwidthGbpsRequestProperty: autoscaling.CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe maximum amount of network bandwidth, in gigabits per second (Gbps).
min?numberThe minimum amount of network bandwidth, in gigabits per second (Gbps).

max?

Type: number (optional)

The maximum amount of network bandwidth, in gigabits per second (Gbps).


min?

Type: number (optional)

The minimum amount of network bandwidth, in gigabits per second (Gbps).