Interface CfnFleet.PersistentVolumeConfigurationProperty

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

@Stability(Stable) public static interface CfnFleet.PersistentVolumeConfigurationProperty 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.deadline.*;
 PersistentVolumeConfigurationProperty persistentVolumeConfigurationProperty = PersistentVolumeConfigurationProperty.builder()
         .mountPath("mountPath")
         // the properties below are optional
         .iops(123)
         .lastUsedTtlHours(123)
         .sizeGiB(123)
         .throughputMiB(123)
         .build();
 

See Also: