Interface CfnSpotFleet.EbsBlockDeviceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSpotFleet.EbsBlockDeviceProperty.Jsii$Proxy
Enclosing class:
CfnSpotFleet

@Stability(Stable) public static interface CfnSpotFleet.EbsBlockDeviceProperty extends software.amazon.jsii.JsiiSerializable
Describes a block device 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.ec2.*;
 EbsBlockDeviceProperty ebsBlockDeviceProperty = EbsBlockDeviceProperty.builder()
         .deleteOnTermination(false)
         .encrypted(false)
         .iops(123)
         .snapshotId("snapshotId")
         .volumeSize(123)
         .volumeType("volumeType")
         .build();
 

See Also: