Interface CfnLaunchProfileProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLaunchProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.495Z") @Stability(Stable) public interface CfnLaunchProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLaunchProfile.

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
                 .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())
         .studioComponentIds(List.of("studioComponentIds"))
         .studioId("studioId")
         // the properties below are optional
         .description("description")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 
  • Method Details

    • getEc2SubnetIds

      @Stability(Stable) @NotNull List<String> getEc2SubnetIds()
      Unique identifiers for a collection of EC2 subnets.
    • getLaunchProfileProtocolVersions

      @Stability(Stable) @NotNull List<String> getLaunchProfileProtocolVersions()
      The version number of the protocol that is used by the launch profile.

      The only valid version is "2021-03-31".

    • getName

      @Stability(Stable) @NotNull String getName()
      A friendly name for the launch profile.
    • getStreamConfiguration

      @Stability(Stable) @NotNull Object getStreamConfiguration()
      A configuration for a streaming session.
    • getStudioComponentIds

      @Stability(Stable) @NotNull List<String> getStudioComponentIds()
      Unique identifiers for a collection of studio components that can be used with this launch profile.
    • getStudioId

      @Stability(Stable) @NotNull String getStudioId()
      The unique identifier for a studio resource.

      In Nimble Studio , all other resources are contained in a studio resource.

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A human-readable description of the launch profile.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

      @Stability(Stable) static CfnLaunchProfileProps.Builder builder()
      Returns:
      a CfnLaunchProfileProps.Builder of CfnLaunchProfileProps