Show / Hide Table of Contents

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-totallocalstoragegbrequest.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-totallocalstoragegbrequest.html#cfn-autoscaling-autoscalinggroup-totallocalstoragegbrequest-max

Min

The storage minimum in GB.

virtual Nullable<double> Min { get; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-totallocalstoragegbrequest.html#cfn-autoscaling-autoscalinggroup-totallocalstoragegbrequest-min

Back to top Generated by DocFX