![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.proton.kotlin.outputs.GetServiceTemplateResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.proton.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property arn The Amazon Resource Name (ARN) of the service template.
* @property description A description of the service template.
* @property displayName The name of the service template as displayed in the developer interface.
* @property tags An optional list of metadata items that you can associate with the Proton service template. A tag is a key-value pair.
* For more information, see Proton resources and tagging in the
* Proton User Guide.
*/
public data class GetServiceTemplateResult(
public val arn: String? = null,
public val description: String? = null,
public val displayName: String? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.proton.outputs.GetServiceTemplateResult): GetServiceTemplateResult = GetServiceTemplateResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
displayName = javaType.displayName().map({ args0 -> args0 }).orElse(null),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy