interface VCpuCountRangeRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnCapacityProviderPropsMixin_VCpuCountRangeRequestProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » CfnCapacityProviderPropsMixin » VCpuCountRangeRequestProperty |
The minimum and maximum number of vCPUs for instance type selection.
This allows you to specify a range of vCPU counts that meet your workload requirements.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from '@aws-cdk/cfn-property-mixins';
const vCpuCountRangeRequestProperty: ecs.CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum number of vCPUs. |
| min? | number | The minimum number of vCPUs. |
max?
Type:
number
(optional)
The maximum number of vCPUs.
Instance types with more vCPUs than this value are excluded from selection.
min?
Type:
number
(optional)
The minimum number of vCPUs.
Instance types with fewer vCPUs than this value are excluded from selection.

.NET
Go
Java
Python
TypeScript