interface TotalLocalStorageGBRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty |
Java | software.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty |
Python | aws_cdk.aws_autoscaling.CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty |
TypeScript | @aws-cdk/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 * as autoscaling from '@aws-cdk/aws-autoscaling';
const totalLocalStorageGBRequestProperty: autoscaling.CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The storage maximum in GB. |
| min? | number | The storage minimum in GB. |
max?
Type:
number
(optional)
The storage maximum in GB.
min?
Type:
number
(optional)
The storage minimum in GB.

.NET
Java
Python
TypeScript