![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.voiceid.kotlin.inputs.GetDomainPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.voiceid.kotlin.inputs
import com.pulumi.awsnative.voiceid.inputs.GetDomainPlainArgs.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 domainId The identifier of the domain.
*/
public data class GetDomainPlainArgs(
public val domainId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.voiceid.inputs.GetDomainPlainArgs =
com.pulumi.awsnative.voiceid.inputs.GetDomainPlainArgs.builder()
.domainId(domainId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetDomainPlainArgs].
*/
@PulumiTagMarker
public class GetDomainPlainArgsBuilder internal constructor() {
private var domainId: String? = null
/**
* @param value The identifier of the domain.
*/
@JvmName("ficjautndfioyoah")
public suspend fun domainId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.domainId = mapped
}
internal fun build(): GetDomainPlainArgs = GetDomainPlainArgs(
domainId = domainId ?: throw PulumiNullFieldException("domainId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy