![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.connect.kotlin.outputs.GetViewVersionResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.connect.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property version The version of the view.
* @property viewVersionArn The Amazon Resource Name (ARN) of the created view version.
*/
public data class GetViewVersionResult(
public val version: Int? = null,
public val viewVersionArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.connect.outputs.GetViewVersionResult): GetViewVersionResult = GetViewVersionResult(
version = javaType.version().map({ args0 -> args0 }).orElse(null),
viewVersionArn = javaType.viewVersionArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy