aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.MemoryMiBRequestProperty

interface MemoryMiBRequestProperty

LanguageType name
.NETAmazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.MemoryMiBRequestProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_MemoryMiBRequestProperty
Javasoftware.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.MemoryMiBRequestProperty
Pythonaws_cdk.aws_autoscaling.CfnAutoScalingGroup.MemoryMiBRequestProperty
TypeScript aws-cdk-lib » aws_autoscaling » CfnAutoScalingGroup » MemoryMiBRequestProperty

MemoryMiBRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum instance memory size 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 memoryMiBRequestProperty: autoscaling.CfnAutoScalingGroup.MemoryMiBRequestProperty = {
  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.