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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnLaunchProfile.StreamConfigurationSessionStorageProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
Allows artists to upload files to their workstations.The only valid option is
UPLOAD. -
getRoot
The configuration for the upload storage root of the streaming session. -
builder
@Stability(Stable) static CfnLaunchProfile.StreamConfigurationSessionStorageProperty.Builder builder()
-