interface AcceleratorTotalMemoryMiBProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnLaunchTemplatePropsMixin.AcceleratorTotalMemoryMiBProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnLaunchTemplatePropsMixin_AcceleratorTotalMemoryMiBProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnLaunchTemplatePropsMixin.AcceleratorTotalMemoryMiBProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnLaunchTemplatePropsMixin.AcceleratorTotalMemoryMiBProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnLaunchTemplatePropsMixin » AcceleratorTotalMemoryMiBProperty |
The minimum and maximum amount of total accelerator memory, in MiB.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const acceleratorTotalMemoryMiBProperty: ec2_mixins.CfnLaunchTemplatePropsMixin.AcceleratorTotalMemoryMiBProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum amount of accelerator memory, in MiB. |
| min? | number | The minimum amount of accelerator memory, in MiB. |
max?
Type:
number
(optional)
The maximum amount of accelerator memory, in MiB.
To specify no maximum limit, omit this parameter.
min?
Type:
number
(optional)
The minimum amount of accelerator memory, in MiB.
To specify no minimum limit, omit this parameter.

.NET
Go
Java
Python
TypeScript