Interface CfnSpotFleetPropsMixin.NetworkBandwidthGbpsRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSpotFleetPropsMixin.NetworkBandwidthGbpsRequestProperty.Jsii$Proxy
- Enclosing class:
CfnSpotFleetPropsMixin
@Stability(Stable)
public static interface CfnSpotFleetPropsMixin.NetworkBandwidthGbpsRequestProperty
extends software.amazon.jsii.JsiiSerializable
The minimum and maximum amount of baseline network bandwidth, in gigabits per second (Gbps).
For more information, see Amazon EC2 instance network bandwidth in the Amazon EC2 User Guide .
Default: No minimum or maximum limits
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.ec2.mixins.*;
NetworkBandwidthGbpsRequestProperty networkBandwidthGbpsRequestProperty = NetworkBandwidthGbpsRequestProperty.builder()
.max(123)
.min(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSpotFleetPropsMixin.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 CfnSpotFleetPropsMixin.NetworkBandwidthGbpsRequestProperty.Builder builder()
-