com.pulumi.awsnative.b2bi.kotlin.inputs.GetTransformerPlainArgs.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.b2bi.kotlin.inputs
import com.pulumi.awsnative.b2bi.inputs.GetTransformerPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property transformerId The system-assigned unique identifier for the transformer.
*/
public data class GetTransformerPlainArgs(
public val transformerId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.b2bi.inputs.GetTransformerPlainArgs =
com.pulumi.awsnative.b2bi.inputs.GetTransformerPlainArgs.builder()
.transformerId(transformerId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetTransformerPlainArgs].
*/
@PulumiTagMarker
public class GetTransformerPlainArgsBuilder internal constructor() {
private var transformerId: String? = null
/**
* @param value The system-assigned unique identifier for the transformer.
*/
@JvmName("wpngulkypibywwnv")
public suspend fun transformerId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.transformerId = mapped
}
internal fun build(): GetTransformerPlainArgs = GetTransformerPlainArgs(
transformerId = transformerId ?: throw PulumiNullFieldException("transformerId"),
)
}