Show / Hide Table of Contents

Class CfnLaunchTemplate.NetworkBandwidthGbpsProperty

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Inheritance
object
CfnLaunchTemplate.NetworkBandwidthGbpsProperty
Implements
CfnLaunchTemplate.INetworkBandwidthGbpsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLaunchTemplate.NetworkBandwidthGbpsProperty : CfnLaunchTemplate.INetworkBandwidthGbpsProperty
Syntax (vb)
Public Class CfnLaunchTemplate.NetworkBandwidthGbpsProperty Implements CfnLaunchTemplate.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 <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth">Available instance bandwidth</a> in the <em>Amazon EC2 User Guide</em> .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkbandwidthgbps.html

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

Constructors

NetworkBandwidthGbpsProperty()

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Properties

Max

The maximum amount of network bandwidth, in Gbps.

Min

The minimum amount of network bandwidth, in Gbps.

Constructors

NetworkBandwidthGbpsProperty()

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

public NetworkBandwidthGbpsProperty()
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 <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth">Available instance bandwidth</a> in the <em>Amazon EC2 User Guide</em> .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkbandwidthgbps.html

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
             };

Properties

Max

The maximum amount of network bandwidth, in Gbps.

public double? Max { get; set; }
Property Value

double?

Remarks

To specify no maximum limit, omit this parameter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkbandwidthgbps.html#cfn-ec2-launchtemplate-networkbandwidthgbps-max

Min

The minimum amount of network bandwidth, in Gbps.

public double? Min { get; set; }
Property Value

double?

Remarks

If this parameter is not specified, there is no minimum limit.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkbandwidthgbps.html#cfn-ec2-launchtemplate-networkbandwidthgbps-min

Implements

CfnLaunchTemplate.INetworkBandwidthGbpsProperty
Back to top Generated by DocFX