All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisTableBorderOptionsArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.inputs

import com.pulumi.awsnative.quicksight.inputs.AnalysisTableBorderOptionsArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisTableBorderStyle
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 AnalysisTableBorderOptionsArgs(
    public val color: Output? = null,
    public val style: Output? = null,
    public val thickness: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisTableBorderOptionsArgs =
        com.pulumi.awsnative.quicksight.inputs.AnalysisTableBorderOptionsArgs.builder()
            .color(color?.applyValue({ args0 -> args0 }))
            .style(style?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .thickness(thickness?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AnalysisTableBorderOptionsArgs].
 */
@PulumiTagMarker
public class AnalysisTableBorderOptionsArgsBuilder 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("javbxughgfwgwbbc")
    public suspend fun color(`value`: Output) {
        this.color = value
    }

    /**
     * @param value The style (none, solid) of a table border.
     */
    @JvmName("frhhosiuqhibkfgs")
    public suspend fun style(`value`: Output) {
        this.style = value
    }

    /**
     * @param value The thickness of a table border.
     */
    @JvmName("wgifavrgioisssff")
    public suspend fun thickness(`value`: Output) {
        this.thickness = value
    }

    /**
     * @param value The color of a table border.
     */
    @JvmName("shyagdwlvgrposto")
    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("gqielqgifburroct")
    public suspend fun style(`value`: AnalysisTableBorderStyle?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.style = mapped
    }

    /**
     * @param value The thickness of a table border.
     */
    @JvmName("ehknpxynpowqkaxh")
    public suspend fun thickness(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.thickness = mapped
    }

    internal fun build(): AnalysisTableBorderOptionsArgs = AnalysisTableBorderOptionsArgs(
        color = color,
        style = style,
        thickness = thickness,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy