interface AcceleratorTotalMemoryMiBRequestProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty |
Java | software.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty |
Python | aws_cdk.aws_autoscaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty |
TypeScript | @aws-cdk/aws-autoscaling » CfnAutoScalingGroup » AcceleratorTotalMemoryMiBRequestProperty |
AcceleratorTotalMemoryMiBRequest
is a property of the InstanceRequirements
property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum total memory size for the accelerators for an instance type, in MiB.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as autoscaling from '@aws-cdk/aws-autoscaling';
const acceleratorTotalMemoryMiBRequestProperty: autoscaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty = {
max: 123,
min: 123,
};
Properties
Name | Type | Description |
---|---|---|
max? | number | The memory maximum in MiB. |
min? | number | The memory minimum in MiB. |
max?
Type:
number
(optional)
The memory maximum in MiB.
min?
Type:
number
(optional)
The memory minimum in MiB.