Interface CfnLaunchConfiguration.BlockDeviceProperty

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

@Stability(Stable) public static interface CfnLaunchConfiguration.BlockDeviceProperty extends software.amazon.jsii.JsiiSerializable
BlockDevice is a property of the EBS property of the AWS::AutoScaling::LaunchConfiguration BlockDeviceMapping property type that describes an Amazon 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.*;
 BlockDeviceProperty blockDeviceProperty = BlockDeviceProperty.builder()
         .deleteOnTermination(false)
         .encrypted(false)
         .iops(123)
         .snapshotId("snapshotId")
         .throughput(123)
         .volumeSize(123)
         .volumeType("volumeType")
         .build();
 

See Also: