Show / Hide Table of Contents

Interface CfnAutoScalingGroup.IMemoryMiBRequestProperty

MemoryMiBRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum instance memory size for an instance type, in MiB.

Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface IMemoryMiBRequestProperty
Syntax (vb)
Public Interface IMemoryMiBRequestProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-memorymibrequest.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 memoryMiBRequestProperty = new MemoryMiBRequestProperty {
    Max = 123,
    Min = 123
};

Synopsis

Properties

Max

The memory maximum in MiB.

Min

The memory minimum in MiB.

Properties

Max

The memory maximum in MiB.

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-memorymibrequest.html#cfn-autoscaling-autoscalinggroup-memorymibrequest-max

Min

The memory minimum in MiB.

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-memorymibrequest.html#cfn-autoscaling-autoscalinggroup-memorymibrequest-min

Back to top Generated by DocFX