Class CfnAutoScalingGroup.BaselineEbsBandwidthMbpsRequestProperty
- Namespace
- Amazon.CDK.AWS.AutoScaling
- Assembly
- Amazon.CDK.AWS.AutoScaling.dll
BaselineEbsBandwidthMbpsRequest
is a property of the InstanceRequirements
property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum baseline bandwidth performance for an instance type, in Mbps.
public class CfnAutoScalingGroup.BaselineEbsBandwidthMbpsRequestProperty : CfnAutoScalingGroup.IBaselineEbsBandwidthMbpsRequestProperty
- Inheritance
-
CfnAutoScalingGroup.BaselineEbsBandwidthMbpsRequestProperty
- 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 baselineEbsBandwidthMbpsRequestProperty = new BaselineEbsBandwidthMbpsRequestProperty {
Max = 123,
Min = 123
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
BaselineEbsBandwidthMbpsRequestProperty()
public BaselineEbsBandwidthMbpsRequestProperty()
Properties
Max
The maximum value in Mbps.
public double? Max { get; set; }
Property Value
Remarks
Min
The minimum value in Mbps.
public double? Min { get; set; }