interface AcceleratorCountRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnFleet.AcceleratorCountRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnFleet_AcceleratorCountRangeProperty |
Java | software.amazon.awscdk.services.deadline.CfnFleet.AcceleratorCountRangeProperty |
Python | aws_cdk.aws_deadline.CfnFleet.AcceleratorCountRangeProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnFleet » AcceleratorCountRangeProperty |
Defines the maximum and minimum number of GPU accelerators required for a worker instance..
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as deadline } from 'aws-cdk-lib';
const acceleratorCountRangeProperty: deadline.CfnFleet.AcceleratorCountRangeProperty = {
min: 123,
// the properties below are optional
max: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| min | number | The minimum number of GPU accelerators in the worker host. |
| max? | number | The maximum number of GPU accelerators in the worker host. |
min
Type:
number
The minimum number of GPU accelerators in the worker host.
max?
Type:
number
(optional)
The maximum number of GPU accelerators in the worker host.

.NET
Go
Java
Python
TypeScript