![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateColumnSchemaArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateColumnSchemaArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The column schema.
* @property dataType The data type of the column schema.
* @property geographicRole The geographic role of the column schema.
* @property name The name of the column schema.
*/
public data class TemplateColumnSchemaArgs(
public val dataType: Output? = null,
public val geographicRole: Output? = null,
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateColumnSchemaArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateColumnSchemaArgs.builder()
.dataType(dataType?.applyValue({ args0 -> args0 }))
.geographicRole(geographicRole?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TemplateColumnSchemaArgs].
*/
@PulumiTagMarker
public class TemplateColumnSchemaArgsBuilder internal constructor() {
private var dataType: Output? = null
private var geographicRole: Output? = null
private var name: Output? = null
/**
* @param value The data type of the column schema.
*/
@JvmName("vbgvqdqtgaticoow")
public suspend fun dataType(`value`: Output) {
this.dataType = value
}
/**
* @param value The geographic role of the column schema.
*/
@JvmName("mtlojjkvlvklfnee")
public suspend fun geographicRole(`value`: Output) {
this.geographicRole = value
}
/**
* @param value The name of the column schema.
*/
@JvmName("kxjxogoqnkbywlho")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The data type of the column schema.
*/
@JvmName("qbgyqyhxgjujqvcp")
public suspend fun dataType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dataType = mapped
}
/**
* @param value The geographic role of the column schema.
*/
@JvmName("dryuhptljeidrxia")
public suspend fun geographicRole(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.geographicRole = mapped
}
/**
* @param value The name of the column schema.
*/
@JvmName("ptmornmpxxctgese")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): TemplateColumnSchemaArgs = TemplateColumnSchemaArgs(
dataType = dataType,
geographicRole = geographicRole,
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy