interface TotalLocalStorageGBRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AutoScaling.Mixins.CfnAutoScalingGroupPropsMixin.TotalLocalStorageGBRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsautoscaling/mixins#CfnAutoScalingGroupPropsMixin_TotalLocalStorageGBRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.autoscaling.mixins.CfnAutoScalingGroupPropsMixin.TotalLocalStorageGBRequestProperty |
Python | aws_cdk.mixins_preview.aws_autoscaling.mixins.CfnAutoScalingGroupPropsMixin.TotalLocalStorageGBRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_autoscaling » mixins » CfnAutoScalingGroupPropsMixin » 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 { mixins as autoscaling_mixins } from '@aws-cdk/mixins-preview/aws-autoscaling';
const totalLocalStorageGBRequestProperty: autoscaling_mixins.CfnAutoScalingGroupPropsMixin.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
Go
Java
Python
TypeScript