Interface CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty.Jsii$Proxy
- Enclosing class:
CfnAutoScalingGroup
@Stability(Stable)
public static interface CfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.autoscaling.*; NetworkBandwidthGbpsRequestProperty networkBandwidthGbpsRequestProperty = NetworkBandwidthGbpsRequestProperty.builder() .max(123) .min(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty
static final class
An implementation forCfnAutoScalingGroup.NetworkBandwidthGbpsRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum amount of network bandwidth, in gigabits per second (Gbps).- See Also:
-
getMin
The minimum amount of network bandwidth, in gigabits per second (Gbps).- See Also:
-
builder
-