Interface CfnLaunchProfile.StreamConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLaunchProfile.StreamConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnLaunchProfile
@Stability(Stable)
public static interface CfnLaunchProfile.StreamConfigurationProperty
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.*;
StreamConfigurationProperty streamConfigurationProperty = StreamConfigurationProperty.builder()
.clipboardMode("clipboardMode")
.ec2InstanceTypes(List.of("ec2InstanceTypes"))
.streamingImageIds(List.of("streamingImageIds"))
// the properties below are optional
.automaticTerminationMode("automaticTerminationMode")
.maxSessionLengthInMinutes(123)
.maxStoppedSessionLengthInMinutes(123)
.sessionBackup(StreamConfigurationSessionBackupProperty.builder()
.maxBackupsToRetain(123)
.mode("mode")
.build())
.sessionPersistenceMode("sessionPersistenceMode")
.sessionStorage(StreamConfigurationSessionStorageProperty.builder()
.mode(List.of("mode"))
// the properties below are optional
.root(StreamingSessionStorageRootProperty.builder()
.linux("linux")
.windows("windows")
.build())
.build())
.volumeConfiguration(VolumeConfigurationProperty.builder()
.iops(123)
.size(123)
.throughput(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLaunchProfile.StreamConfigurationPropertystatic final classAn implementation forCfnLaunchProfile.StreamConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault Numberdefault Numberdefault ObjectReturns union: eitherIResolvableorCfnLaunchProfile.StreamConfigurationSessionBackupPropertydefault Stringdefault ObjectReturns union: eitherIResolvableorCfnLaunchProfile.StreamConfigurationSessionStoragePropertydefault ObjectReturns union: eitherIResolvableorCfnLaunchProfile.VolumeConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClipboardMode
- See Also:
-
getEc2InstanceTypes
- See Also:
-
getStreamingImageIds
- See Also:
-
getAutomaticTerminationMode
- See Also:
-
getMaxSessionLengthInMinutes
- See Also:
-
getMaxStoppedSessionLengthInMinutes
- See Also:
-
getSessionBackup
Returns union: eitherIResolvableorCfnLaunchProfile.StreamConfigurationSessionBackupProperty- See Also:
-
getSessionPersistenceMode
- See Also:
-
getSessionStorage
Returns union: eitherIResolvableorCfnLaunchProfile.StreamConfigurationSessionStorageProperty- See Also:
-
getVolumeConfiguration
Returns union: eitherIResolvableorCfnLaunchProfile.VolumeConfigurationProperty- See Also:
-
builder
-