Interface CfnContainerRecipe.EbsInstanceBlockDeviceSpecificationProperty

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

@Stability(Stable) public static interface CfnContainerRecipe.EbsInstanceBlockDeviceSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Amazon EBS-specific block device mapping specifications.

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.imagebuilder.*;
 EbsInstanceBlockDeviceSpecificationProperty ebsInstanceBlockDeviceSpecificationProperty = EbsInstanceBlockDeviceSpecificationProperty.builder()
         .deleteOnTermination(false)
         .encrypted(false)
         .iops(123)
         .kmsKeyId("kmsKeyId")
         .snapshotId("snapshotId")
         .throughput(123)
         .volumeSize(123)
         .volumeType("volumeType")
         .build();
 

See Also: