Interface CfnLaunchProfile.StreamConfigurationSessionStorageProperty

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

@Stability(Stable) public static interface CfnLaunchProfile.StreamConfigurationSessionStorageProperty extends software.amazon.jsii.JsiiSerializable
The configuration for a streaming session’s upload storage.

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.*;
 StreamConfigurationSessionStorageProperty streamConfigurationSessionStorageProperty = StreamConfigurationSessionStorageProperty.builder()
         .mode(List.of("mode"))
         // the properties below are optional
         .root(StreamingSessionStorageRootProperty.builder()
                 .linux("linux")
                 .windows("windows")
                 .build())
         .build();