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
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnLaunchProfile.StreamConfigurationSessionStorageProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getMode()default ObjectgetRoot()Returns union: eitherIResolvableorCfnLaunchProfile.StreamingSessionStorageRootPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
- See Also:
-
getRoot
Returns union: eitherIResolvableorCfnLaunchProfile.StreamingSessionStorageRootProperty- See Also:
-
builder
@Stability(Stable) static CfnLaunchProfile.StreamConfigurationSessionStorageProperty.Builder builder()
-