com.pulumi.awsnative.nimblestudio.kotlin.outputs.GetLaunchProfileResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.nimblestudio.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property description The description.
* @property launchProfileId The unique identifier for the launch profile resource.
* @property launchProfileProtocolVersions The version number of the protocol that is used by the launch profile. The only valid
* version is "2021-03-31".
* @property name The name for the launch profile.
* @property streamConfiguration A configuration for a streaming session.
* @property studioComponentIds Unique identifiers for a collection of studio components that can be used with this
* launch profile.
*/
public data class GetLaunchProfileResult(
public val description: String? = null,
public val launchProfileId: String? = null,
public val launchProfileProtocolVersions: List? = null,
public val name: String? = null,
public val streamConfiguration: LaunchProfileStreamConfiguration? = null,
public val studioComponentIds: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.nimblestudio.outputs.GetLaunchProfileResult): GetLaunchProfileResult = GetLaunchProfileResult(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
launchProfileId = javaType.launchProfileId().map({ args0 -> args0 }).orElse(null),
launchProfileProtocolVersions = javaType.launchProfileProtocolVersions().map({ args0 -> args0 }),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
streamConfiguration = javaType.streamConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.nimblestudio.kotlin.outputs.LaunchProfileStreamConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
studioComponentIds = javaType.studioComponentIds().map({ args0 -> args0 }),
)
}
}