interface MemoryGiBPerVCpuRequestProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_MemoryGiBPerVCpuRequestProperty | 
  Java | software.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty | 
  Python | aws_cdk.aws_autoscaling.CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty | 
  TypeScript  | aws-cdk-lib » aws_autoscaling » CfnAutoScalingGroup » MemoryGiBPerVCpuRequestProperty | 
MemoryGiBPerVCpuRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum amount of memory per vCPU for an instance type, in GiB.
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 memoryGiBPerVCpuRequestProperty: autoscaling.CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty = {
  max: 123,
  min: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| max? | number | The memory maximum in GiB. | 
| min? | number | The memory minimum in GiB. | 
max?
Type:
number
(optional)
The memory maximum in GiB.
min?
Type:
number
(optional)
The memory minimum in GiB.

 .NET
 Go
 Java
 Python
 TypeScript