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