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