interface MemoryMiBRequestProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.MemoryMiBRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_MemoryMiBRequestProperty |
Java | software.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.MemoryMiBRequestProperty |
Python | aws_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
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.