aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty

interface AcceleratorTotalMemoryMiBRequestProperty

LanguageType name
.NETAmazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_AcceleratorTotalMemoryMiBRequestProperty
Javasoftware.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty
Pythonaws_cdk.aws_autoscaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty
TypeScript aws-cdk-lib » 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 { aws_autoscaling as autoscaling } from 'aws-cdk-lib';
const acceleratorTotalMemoryMiBRequestProperty: autoscaling.CfnAutoScalingGroup.AcceleratorTotalMemoryMiBRequestProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe memory maximum in MiB.
min?numberThe memory minimum in MiB.

max?

Type: number (optional)

The memory maximum in MiB.


min?

Type: number (optional)

The memory minimum in MiB.