![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.refactorspaces.kotlin.outputs.GetServiceResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.refactorspaces.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.
* @property serviceIdentifier The unique identifier of the service.
* @property tags Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair.
*/
public data class GetServiceResult(
public val arn: String? = null,
public val serviceIdentifier: String? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.refactorspaces.outputs.GetServiceResult): GetServiceResult = GetServiceResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
serviceIdentifier = javaType.serviceIdentifier().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