interface NetworkBandwidthGbpsRequestProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty |
![]() | software.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty |
![]() | aws_cdk.aws_autoscaling.CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty |
![]() | @aws-cdk/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 * as autoscaling from '@aws-cdk/aws-autoscaling';
const networkBandwidthGbpsRequestProperty: autoscaling.CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty = {
max: 123,
min: 123,
};
Properties
Name | Type | Description |
---|---|---|
max? | number | The maximum amount of network bandwidth, in gigabits per second (Gbps). |
min? | number | The 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).