Interface EbsDeviceOptionsBase

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
EbsDeviceOptions, EbsDeviceProps, EbsDeviceSnapshotOptions
All Known Implementing Classes:
EbsDeviceOptions.Jsii$Proxy, EbsDeviceOptionsBase.Jsii$Proxy, EbsDeviceProps.Jsii$Proxy, EbsDeviceSnapshotOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:13.015Z") @Stability(Stable) public interface EbsDeviceOptionsBase extends software.amazon.jsii.JsiiSerializable
Base block device options for an EBS volume.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.autoscaling.*;
 EbsDeviceOptionsBase ebsDeviceOptionsBase = EbsDeviceOptionsBase.builder()
         .deleteOnTermination(false)
         .iops(123)
         .throughput(123)
         .volumeType(EbsDeviceVolumeType.STANDARD)
         .build();