Interface CfnAutoScalingGroup.ITotalLocalStorageGBRequestProperty
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.
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface ITotalLocalStorageGBRequestProperty
Syntax (vb)
Public Interface ITotalLocalStorageGBRequestProperty
Remarks
ExampleMetadata: fixture=_generated
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
};
Synopsis
Properties
| Max | The storage maximum in GB. |
| Min | The storage minimum in GB. |
Properties
Max
The storage maximum in GB.
virtual Nullable<double> Max { get; }
Property Value
System.Nullable<System.Double>
Remarks
Min
The storage minimum in GB.
virtual Nullable<double> Min { get; }
Property Value
System.Nullable<System.Double>