Interface EbsDeviceOptions

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.300Z") @Stability(Stable) public interface EbsDeviceOptions extends software.amazon.jsii.JsiiSerializable, EbsDeviceOptionsBase
Block device options for an EBS volume.

Example:

 BastionHostLinux host = BastionHostLinux.Builder.create(this, "BastionHost")
         .vpc(vpc)
         .blockDevices(List.of(BlockDevice.builder()
                 .deviceName("EBSBastionHost")
                 .volume(BlockDeviceVolume.ebs(10, EbsDeviceOptions.builder()
                         .encrypted(true)
                         .build()))
                 .build()))
         .build();