Interface CfnLaunchTemplate.INetworkBandwidthGbpsProperty
The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface INetworkBandwidthGbpsProperty
Syntax (vb)
Public Interface INetworkBandwidthGbpsProperty
Remarks
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 .
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 networkBandwidthGbpsProperty = new NetworkBandwidthGbpsProperty {
Max = 123,
Min = 123
};
Synopsis
Properties
Max | The maximum amount of network bandwidth, in Gbps. |
Min | The minimum amount of network bandwidth, in Gbps. |
Properties
Max
The maximum amount of network bandwidth, in Gbps.
virtual Nullable<double> Max { get; }
Property Value
System.Nullable<System.Double>
Remarks
To specify no maximum limit, omit this parameter.
Min
The minimum amount of network bandwidth, in Gbps.
virtual Nullable<double> Min { get; }
Property Value
System.Nullable<System.Double>
Remarks
If this parameter is not specified, there is no minimum limit.