public static interface CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty
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 software.amazon.awscdk.services.autoscaling.*; NetworkBandwidthGbpsRequestProperty networkBandwidthGbpsRequestProperty = NetworkBandwidthGbpsRequestProperty.builder() .max(123) .min(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty.Builder
A builder for
CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty |
static class |
CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty.Jsii$Proxy
An implementation for
CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty.Builder |
builder() |
default java.lang.Number |
getMax()
The maximum amount of network bandwidth, in gigabits per second (Gbps).
|
default java.lang.Number |
getMin()
The minimum amount of network bandwidth, in gigabits per second (Gbps).
|