Class CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty
- 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 class CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty : CfnAutoScalingGroup.ITotalLocalStorageGBRequestProperty
- Inheritance
-
CfnAutoScalingGroup.TotalLocalStorageGBRequestProperty
- Implements
- Inherited Members
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
Constructors
TotalLocalStorageGBRequestProperty()
public TotalLocalStorageGBRequestProperty()
Properties
Max
The storage maximum in GB.
public double? Max { get; set; }
Property Value
Remarks
Min
The storage minimum in GB.
public double? Min { get; set; }