@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.070Z") @Stability(value=Stable) public interface CfnLaunchProfileProps 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.*;
CfnLaunchProfileProps cfnLaunchProfileProps = CfnLaunchProfileProps.builder()
.ec2SubnetIds(List.of("ec2SubnetIds"))
.launchProfileProtocolVersions(List.of("launchProfileProtocolVersions"))
.name("name")
.streamConfiguration(StreamConfigurationProperty.builder()
.clipboardMode("clipboardMode")
.ec2InstanceTypes(List.of("ec2InstanceTypes"))
.streamingImageIds(List.of("streamingImageIds"))
// the properties below are optional
.maxSessionLengthInMinutes(123)
.maxStoppedSessionLengthInMinutes(123)
.sessionStorage(StreamConfigurationSessionStorageProperty.builder()
.mode(List.of("mode"))
// the properties below are optional
.root(StreamingSessionStorageRootProperty.builder()
.linux("linux")
.windows("windows")
.build())
.build())
.build())
.studioComponentIds(List.of("studioComponentIds"))
.studioId("studioId")
// the properties below are optional
.description("description")
.tags(Map.of(
"tagsKey", "tags"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunchProfileProps.Builder
A builder for
CfnLaunchProfileProps |
static class |
CfnLaunchProfileProps.Jsii$Proxy
An implementation for
CfnLaunchProfileProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunchProfileProps.Builder |
builder() |
default String |
getDescription()
A human-readable description of the launch profile.
|
List<String> |
getEc2SubnetIds()
Unique identifiers for a collection of EC2 subnets.
|
List<String> |
getLaunchProfileProtocolVersions()
The version number of the protocol that is used by the launch profile.
|
String |
getName()
A friendly name for the launch profile.
|
Object |
getStreamConfiguration()
A configuration for a streaming session.
|
List<String> |
getStudioComponentIds()
Unique identifiers for a collection of studio components that can be used with this launch profile.
|
String |
getStudioId()
The unique identifier for a studio resource.
|
default Map<String,String> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull List<String> getEc2SubnetIds()
@Stability(value=Stable) @NotNull List<String> getLaunchProfileProtocolVersions()
The only valid version is "2021-03-31".
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getStreamConfiguration()
@Stability(value=Stable) @NotNull List<String> getStudioComponentIds()
@Stability(value=Stable) @NotNull String getStudioId()
In Nimble Studio , all other resources are contained in a studio resource.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnLaunchProfileProps.Builder builder()
CfnLaunchProfileProps.Builder of CfnLaunchProfilePropsCopyright © 2022. All rights reserved.