interface AcceleratorTotalMemoryMiBRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnFleetPropsMixin.AcceleratorTotalMemoryMiBRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnFleetPropsMixin_AcceleratorTotalMemoryMiBRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnFleetPropsMixin.AcceleratorTotalMemoryMiBRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnFleetPropsMixin.AcceleratorTotalMemoryMiBRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnFleetPropsMixin » AcceleratorTotalMemoryMiBRangeProperty |
Defines the maximum and minimum amount of memory, in MiB, to use for the accelerator.
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 acceleratorTotalMemoryMiBRangeProperty: deadline.CfnFleetPropsMixin.AcceleratorTotalMemoryMiBRangeProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum amount of memory to use for the accelerator, measured in MiB. |
| min? | number | The minimum amount of memory to use for the accelerator, measured in MiB. |
max?
Type:
number
(optional)
The maximum amount of memory to use for the accelerator, measured in MiB.
min?
Type:
number
(optional)
The minimum amount of memory to use for the accelerator, measured in MiB.

.NET
Go
Java
Python
TypeScript