@Stability(value=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
.maxSessionLengthInMinutes(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunchProfile.StreamConfigurationProperty.Builder
A builder for
CfnLaunchProfile.StreamConfigurationProperty |
static class |
CfnLaunchProfile.StreamConfigurationProperty.Jsii$Proxy
An implementation for
CfnLaunchProfile.StreamConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunchProfile.StreamConfigurationProperty.Builder |
builder() |
String |
getClipboardMode()
Enable or disable the use of the system clipboard to copy and paste between the streaming session and streaming client.
|
List<String> |
getEc2InstanceTypes()
The EC2 instance types that users can select from when launching a streaming session with this launch profile.
|
default Number |
getMaxSessionLengthInMinutes()
The length of time, in minutes, that a streaming session can be active before it is stopped or terminated.
|
List<String> |
getStreamingImageIds()
The streaming images that users can select from when launching a streaming session with this launch profile.
|
@Stability(value=Stable) @NotNull String getClipboardMode()
@Stability(value=Stable) @NotNull List<String> getEc2InstanceTypes()
@Stability(value=Stable) @NotNull List<String> getStreamingImageIds()
@Stability(value=Stable) @Nullable default Number getMaxSessionLengthInMinutes()
After this point, Nimble Studio automatically terminates or stops the session. The default length of time is 690 minutes, and the maximum length of time is 30 days.
@Stability(value=Stable) static CfnLaunchProfile.StreamConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.