interface TotalLocalStorageGBProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnLaunchTemplate.TotalLocalStorageGBProperty |
![]() | software.amazon.awscdk.services.ec2.CfnLaunchTemplate.TotalLocalStorageGBProperty |
![]() | aws_cdk.aws_ec2.CfnLaunchTemplate.TotalLocalStorageGBProperty |
![]() | @aws-cdk/aws-ec2 » CfnLaunchTemplate » TotalLocalStorageGBProperty |
The minimum and maximum amount of total local storage, in GB.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const totalLocalStorageGBProperty: ec2.CfnLaunchTemplate.TotalLocalStorageGBProperty = {
max: 123,
min: 123,
};
Properties
Name | Type | Description |
---|---|---|
max? | number | The maximum amount of total local storage, in GB. |
min? | number | The minimum amount of total local storage, in GB. |
max?
Type:
number
(optional)
The maximum amount of total local storage, in GB.
To specify no maximum limit, omit this parameter.
min?
Type:
number
(optional)
The minimum amount of total local storage, in GB.
To specify no minimum limit, omit this parameter.