Interface CfnAutoScalingGroup.INetworkBandwidthGbpsRequestProperty
- Namespace
- Amazon.CDK.AWS.AutoScaling
- Assembly
- Amazon.CDK.AWS.AutoScaling.dll
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.
public interface CfnAutoScalingGroup.INetworkBandwidthGbpsRequestProperty
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AutoScaling;
var networkBandwidthGbpsRequestProperty = new NetworkBandwidthGbpsRequestProperty {
Max = 123,
Min = 123
};
Remarks
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 <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth">Available instance bandwidth</a> in the <em>Amazon EC2 User Guide for Linux Instances</em> .
ExampleMetadata: fixture=_generated
Properties
Max
The maximum amount of network bandwidth, in gigabits per second (Gbps).
double? Max { get; }
Property Value
Remarks
Min
The minimum amount of network bandwidth, in gigabits per second (Gbps).
double? Min { get; }