![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateWaterfallChartOptionsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateWaterfallChartOptionsArgs.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
/**
*
* @property totalBarLabel This option determines the total bar label of a waterfall visual.
*/
public data class TemplateWaterfallChartOptionsArgs(
public val totalBarLabel: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateWaterfallChartOptionsArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateWaterfallChartOptionsArgs.builder()
.totalBarLabel(totalBarLabel?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TemplateWaterfallChartOptionsArgs].
*/
@PulumiTagMarker
public class TemplateWaterfallChartOptionsArgsBuilder internal constructor() {
private var totalBarLabel: Output? = null
/**
* @param value This option determines the total bar label of a waterfall visual.
*/
@JvmName("eoikqpxbyybhoydx")
public suspend fun totalBarLabel(`value`: Output) {
this.totalBarLabel = value
}
/**
* @param value This option determines the total bar label of a waterfall visual.
*/
@JvmName("lcoentyytoginycv")
public suspend fun totalBarLabel(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.totalBarLabel = mapped
}
internal fun build(): TemplateWaterfallChartOptionsArgs = TemplateWaterfallChartOptionsArgs(
totalBarLabel = totalBarLabel,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy