Interface CfnEC2FleetPropsMixin.NetworkBandwidthGbpsRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEC2FleetPropsMixin.NetworkBandwidthGbpsRequestProperty.Jsii$Proxy
- Enclosing class:
CfnEC2FleetPropsMixin
@Stability(Stable)
public static interface CfnEC2FleetPropsMixin.NetworkBandwidthGbpsRequestProperty
extends software.amazon.jsii.JsiiSerializable
The minimum and maximum amount of network bandwidth, in gigabits per second (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 .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
NetworkBandwidthGbpsRequestProperty networkBandwidthGbpsRequestProperty = NetworkBandwidthGbpsRequestProperty.builder()
.max(123)
.min(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEC2FleetPropsMixin.NetworkBandwidthGbpsRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum amount of network bandwidth, in Gbps.To specify no maximum limit, omit this parameter.
- See Also:
-
getMin
The minimum amount of network bandwidth, in Gbps.To specify no minimum limit, omit this parameter.
- See Also:
-
builder
@Stability(Stable) static CfnEC2FleetPropsMixin.NetworkBandwidthGbpsRequestProperty.Builder builder()
-