interface AcceleratorCountRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnFleetPropsMixin.AcceleratorCountRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnFleetPropsMixin_AcceleratorCountRangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnFleetPropsMixin.AcceleratorCountRangeProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnFleetPropsMixin.AcceleratorCountRangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnFleetPropsMixin » 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 { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const acceleratorCountRangeProperty: deadline_mixins.CfnFleetPropsMixin.AcceleratorCountRangeProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum number of GPU accelerators in the worker host. |
| min? | 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.
min?
Type:
number
(optional)
The minimum number of GPU accelerators in the worker host.

.NET
Go
Java
Python
TypeScript