interface VCpuCountRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnFleetPropsMixin.VCpuCountRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnFleetPropsMixin_VCpuCountRangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnFleetPropsMixin.VCpuCountRangeProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnFleetPropsMixin.VCpuCountRangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnFleetPropsMixin » VCpuCountRangeProperty |
The allowable range of vCPU processing power for the fleet.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const vCpuCountRangeProperty: deadline_mixins.CfnFleetPropsMixin.VCpuCountRangeProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum amount of vCPU. |
| min? | number | The minimum amount of vCPU. |
max?
Type:
number
(optional)
The maximum amount of vCPU.
min?
Type:
number
(optional)
The minimum amount of vCPU.

.NET
Go
Java
Python
TypeScript