Class CfnSpotFleet.VCpuCountRangeRequestProperty
The minimum and maximum number of vCPUs.
Inheritance
System.Object
CfnSpotFleet.VCpuCountRangeRequestProperty
Implements
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VCpuCountRangeRequestProperty : Object, CfnSpotFleet.IVCpuCountRangeRequestProperty
Syntax (vb)
Public Class VCpuCountRangeRequestProperty
Inherits Object
Implements CfnSpotFleet.IVCpuCountRangeRequestProperty
Remarks
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() |
Properties
Max | The maximum number of vCPUs. |
Min | The minimum number of vCPUs. |
Constructors
VCpuCountRangeRequestProperty()
public VCpuCountRangeRequestProperty()
Properties
Max
The maximum number of vCPUs.
public Nullable<double> Max { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
To specify no maximum limit, omit this parameter.
Min
The minimum number of vCPUs.
public Nullable<double> Min { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
To specify no minimum limit, specify 0
.