Show / Hide Table of Contents

Class CfnSpotFleet.VCpuCountRangeRequestProperty

The minimum and maximum number of vCPUs.

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

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

Synopsis

Constructors

VCpuCountRangeRequestProperty()

The minimum and maximum number of vCPUs.

Properties

Max

The maximum number of vCPUs.

Min

The minimum number of vCPUs.

Constructors

VCpuCountRangeRequestProperty()

The minimum and maximum number of vCPUs.

public VCpuCountRangeRequestProperty()
Remarks

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

Properties

Max

The maximum number of vCPUs.

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-vcpucountrangerequest.html#cfn-ec2-spotfleet-vcpucountrangerequest-max

Min

The minimum number of vCPUs.

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

double?

Remarks

To specify no minimum limit, specify 0 .

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

Implements

CfnSpotFleet.IVCpuCountRangeRequestProperty
Back to top Generated by DocFX