Show / Hide Table of Contents

Class CfnSpotFleet.NetworkBandwidthGbpsRequestProperty

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

Inheritance
object
CfnSpotFleet.NetworkBandwidthGbpsRequestProperty
Implements
CfnSpotFleet.INetworkBandwidthGbpsRequestProperty
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 CfnSpotFleet.NetworkBandwidthGbpsRequestProperty : CfnSpotFleet.INetworkBandwidthGbpsRequestProperty
Syntax (vb)
Public Class CfnSpotFleet.NetworkBandwidthGbpsRequestProperty 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-networkbandwidthgbpsrequest.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 networkBandwidthGbpsRequestProperty = new NetworkBandwidthGbpsRequestProperty {
                 Max = 123,
                 Min = 123
             };

Synopsis

Constructors

NetworkBandwidthGbpsRequestProperty()

The minimum and maximum amount of baseline 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

NetworkBandwidthGbpsRequestProperty()

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

public NetworkBandwidthGbpsRequestProperty()
Remarks

For more information, see Amazon EC2 instance network bandwidth in the Amazon EC2 User Guide .

Default: No minimum or maximum limits

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-networkbandwidthgbpsrequest.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 networkBandwidthGbpsRequestProperty = new NetworkBandwidthGbpsRequestProperty {
                 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-spotfleet-networkbandwidthgbpsrequest.html#cfn-ec2-spotfleet-networkbandwidthgbpsrequest-max

Min

The minimum amount of network bandwidth, in Gbps.

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

double?

Remarks

To specify no minimum limit, omit this parameter.

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

Implements

CfnSpotFleet.INetworkBandwidthGbpsRequestProperty
Back to top Generated by DocFX