Class CfnSpotFleet.NetworkBandwidthGbpsRequestProperty
The minimum and maximum amount of baseline network bandwidth, in gigabits per second (Gbps).
Inheritance
System.Object
CfnSpotFleet.NetworkBandwidthGbpsRequestProperty
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class NetworkBandwidthGbpsRequestProperty : Object, CfnSpotFleet.INetworkBandwidthGbpsRequestProperty
Syntax (vb)
Public Class NetworkBandwidthGbpsRequestProperty
Inherits Object
Implements CfnSpotFleet.INetworkBandwidthGbpsRequestProperty
Remarks
For more information, see Amazon EC2 instance network bandwidth in the Amazon EC2 User Guide .
Default: No minimum or maximum limits
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var networkBandwidthGbpsRequestProperty = new NetworkBandwidthGbpsRequestProperty {
Max = 123,
Min = 123
};
Synopsis
Constructors
NetworkBandwidthGbpsRequestProperty() |
Properties
Max | The maximum amount of network bandwidth, in Gbps. |
Min | The minimum amount of network bandwidth, in Gbps. |
Constructors
NetworkBandwidthGbpsRequestProperty()
public NetworkBandwidthGbpsRequestProperty()
Properties
Max
The maximum amount of network bandwidth, in Gbps.
public Nullable<double> Max { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
To specify no maximum limit, omit this parameter.
Min
The minimum amount of network bandwidth, in Gbps.
public Nullable<double> Min { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
To specify no minimum limit, omit this parameter.