Enum EbsDeviceVolumeType
Supported EBS volume types for blockDevices.
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum EbsDeviceVolumeType
Syntax (vb)
Public Enum EbsDeviceVolumeType
Remarks
ExampleMetadata: infused
Examples
Vpc vpc;
InstanceType instanceType;
IMachineImage machineImage;
var autoScalingGroup = new AutoScalingGroup(this, "ASG", new AutoScalingGroupProps {
Vpc = vpc,
InstanceType = instanceType,
MachineImage = machineImage,
BlockDevices = new [] { new BlockDevice {
DeviceName = "gp3-volume",
Volume = BlockDeviceVolume.Ebs(15, new EbsDeviceOptions {
VolumeType = EbsDeviceVolumeType.GP3,
Throughput = 125
})
} }
});
Synopsis
Fields
GP2 | General Purpose SSD - GP2. |
GP3 | General Purpose SSD - GP3. |
IO1 | Provisioned IOPS SSD - IO1. |
SC1 | Cold HDD. |
ST1 | Throughput Optimized HDD. |
STANDARD | Magnetic. |
Fields
Name | Description |
---|---|
GP2 | General Purpose SSD - GP2. |
GP3 | General Purpose SSD - GP3. |
IO1 | Provisioned IOPS SSD - IO1. |
SC1 | Cold HDD. |
ST1 | Throughput Optimized HDD. |
STANDARD | Magnetic. |