
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateTableBorderOptionsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateTableBorderOptionsArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.TemplateTableBorderStyle
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property color The color of a table border.
* @property style The style (none, solid) of a table border.
* @property thickness The thickness of a table border.
*/
public data class TemplateTableBorderOptionsArgs(
public val color: Output? = null,
public val style: Output? = null,
public val thickness: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateTableBorderOptionsArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateTableBorderOptionsArgs.builder()
.color(color?.applyValue({ args0 -> args0 }))
.style(style?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.thickness(thickness?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TemplateTableBorderOptionsArgs].
*/
@PulumiTagMarker
public class TemplateTableBorderOptionsArgsBuilder internal constructor() {
private var color: Output? = null
private var style: Output? = null
private var thickness: Output? = null
/**
* @param value The color of a table border.
*/
@JvmName("ykqtbyafrcedssxx")
public suspend fun color(`value`: Output) {
this.color = value
}
/**
* @param value The style (none, solid) of a table border.
*/
@JvmName("lhodsenatjfsetje")
public suspend fun style(`value`: Output) {
this.style = value
}
/**
* @param value The thickness of a table border.
*/
@JvmName("tyetffexgwccskrc")
public suspend fun thickness(`value`: Output) {
this.thickness = value
}
/**
* @param value The color of a table border.
*/
@JvmName("gchwqdprnawxftmy")
public suspend fun color(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.color = mapped
}
/**
* @param value The style (none, solid) of a table border.
*/
@JvmName("aeangcnehktolpox")
public suspend fun style(`value`: TemplateTableBorderStyle?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.style = mapped
}
/**
* @param value The thickness of a table border.
*/
@JvmName("lxixdpcypuocyosg")
public suspend fun thickness(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.thickness = mapped
}
internal fun build(): TemplateTableBorderOptionsArgs = TemplateTableBorderOptionsArgs(
color = color,
style = style,
thickness = thickness,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy