aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty

interface MemoryGiBPerVCpuRequestProperty

LanguageType name
.NETAmazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_MemoryGiBPerVCpuRequestProperty
Javasoftware.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty
Pythonaws_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

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

max?

Type: number (optional)

The memory maximum in GiB.


min?

Type: number (optional)

The memory minimum in GiB.