interface AcceleratorCountRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnFleetPropsMixin.AcceleratorCountRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnFleetPropsMixin_AcceleratorCountRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnFleetPropsMixin.AcceleratorCountRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnFleetPropsMixin.AcceleratorCountRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » 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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const acceleratorCountRangeProperty: deadline.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