Interface CfnDBInstance.AdditionalStorageVolumeProperty

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

@Stability(Stable) public static interface CfnDBInstance.AdditionalStorageVolumeProperty 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.rds.*;
 AdditionalStorageVolumeProperty additionalStorageVolumeProperty = AdditionalStorageVolumeProperty.builder()
         .allocatedStorage("allocatedStorage")
         .iops(123)
         .maxAllocatedStorage(123)
         .storageThroughput(123)
         .storageType("storageType")
         .volumeName("volumeName")
         .build();
 

See Also: