
com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardTableBorderOptionsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.DashboardTableBorderOptionsArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.DashboardTableBorderStyle
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 DashboardTableBorderOptionsArgs(
public val color: Output? = null,
public val style: Output? = null,
public val thickness: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardTableBorderOptionsArgs =
com.pulumi.awsnative.quicksight.inputs.DashboardTableBorderOptionsArgs.builder()
.color(color?.applyValue({ args0 -> args0 }))
.style(style?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.thickness(thickness?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DashboardTableBorderOptionsArgs].
*/
@PulumiTagMarker
public class DashboardTableBorderOptionsArgsBuilder 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("rirtmheedmxnrvgs")
public suspend fun color(`value`: Output) {
this.color = value
}
/**
* @param value The style (none, solid) of a table border.
*/
@JvmName("jpmqcruudawglcet")
public suspend fun style(`value`: Output) {
this.style = value
}
/**
* @param value The thickness of a table border.
*/
@JvmName("mobvfhkfafbkeost")
public suspend fun thickness(`value`: Output) {
this.thickness = value
}
/**
* @param value The color of a table border.
*/
@JvmName("duvxirpffskcbddq")
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("yqclawekvxfhyjkh")
public suspend fun style(`value`: DashboardTableBorderStyle?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.style = mapped
}
/**
* @param value The thickness of a table border.
*/
@JvmName("wapafvybkbyieovd")
public suspend fun thickness(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.thickness = mapped
}
internal fun build(): DashboardTableBorderOptionsArgs = DashboardTableBorderOptionsArgs(
color = color,
style = style,
thickness = thickness,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy