Class CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty
The minimum and maximum number of vCPUs for instance type selection.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty : CfnCapacityProviderPropsMixin.IVCpuCountRangeRequestProperty
Syntax (vb)
Public Class CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty Implements CfnCapacityProviderPropsMixin.IVCpuCountRangeRequestProperty
Remarks
This allows you to specify a range of vCPU counts that meet your workload requirements.
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.Mixins.Preview.AWS.ECS.Mixins;
var vCpuCountRangeRequestProperty = new VCpuCountRangeRequestProperty {
Max = 123,
Min = 123
};
Synopsis
Constructors
| VCpuCountRangeRequestProperty() | The minimum and maximum number of vCPUs for instance type selection. |
Properties
| Max | The maximum number of vCPUs. |
| Min | The minimum number of vCPUs. |
Constructors
VCpuCountRangeRequestProperty()
The minimum and maximum number of vCPUs for instance type selection.
public VCpuCountRangeRequestProperty()
Remarks
This allows you to specify a range of vCPU counts that meet your workload requirements.
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.Mixins.Preview.AWS.ECS.Mixins;
var vCpuCountRangeRequestProperty = new VCpuCountRangeRequestProperty {
Max = 123,
Min = 123
};
Properties
Max
The maximum number of vCPUs.
public double? Max { get; set; }
Property Value
Remarks
Instance types with more vCPUs than this value are excluded from selection.
Min
The minimum number of vCPUs.
public double? Min { get; set; }
Property Value
Remarks
Instance types with fewer vCPUs than this value are excluded from selection.