Interface CfnAutoScalingGroup.ITotalLocalStorageGBRequestProperty
- Namespace
- Amazon.CDK.AWS.AutoScaling
- Assembly
- Amazon.CDK.AWS.AutoScaling.dll
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.
public interface CfnAutoScalingGroup.ITotalLocalStorageGBRequestProperty
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AutoScaling;
var totalLocalStorageGBRequestProperty = new TotalLocalStorageGBRequestProperty {
Max = 123,
Min = 123
};
Remarks
ExampleMetadata: fixture=_generated
Properties
Max
The storage maximum in GB.
double? Max { get; }
Property Value
Remarks
Min
The storage minimum in GB.
double? Min { get; }