Interface CfnLayer.VolumeConfigurationProperty

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

@Stability(Stable) public static interface CfnLayer.VolumeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.opsworks.*;
 VolumeConfigurationProperty volumeConfigurationProperty = VolumeConfigurationProperty.builder()
         .encrypted(false)
         .iops(123)
         .mountPoint("mountPoint")
         .numberOfDisks(123)
         .raidLevel(123)
         .size(123)
         .volumeType("volumeType")
         .build();
 

See Also: