aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty

interface TotalLocalStorageGBRequestProperty

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

TotalLocalStorageGBRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum total local storage size for an instance type, in GB.

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 totalLocalStorageGBRequestProperty: autoscaling.CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe storage maximum in GB.
min?numberThe storage minimum in GB.

max?

Type: number (optional)

The storage maximum in GB.


min?

Type: number (optional)

The storage minimum in GB.