Interface CfnLaunchProfile.VolumeConfigurationProperty

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

@Stability(Stable) public static interface CfnLaunchProfile.VolumeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Custom volume configuration for the root volumes that are attached to streaming sessions.

This parameter is only allowed when sessionPersistenceMode is ACTIVATED .

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.nimblestudio.*;
 VolumeConfigurationProperty volumeConfigurationProperty = VolumeConfigurationProperty.builder()
         .iops(123)
         .size(123)
         .throughput(123)
         .build();
 

See Also: