![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardKpiConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.DashboardKpiConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property fieldWells The field well configuration of a KPI visual.
* @property kpiOptions The options that determine the presentation of a KPI visual.
* @property sortConfiguration The sort configuration of a KPI visual.
*/
public data class DashboardKpiConfigurationArgs(
public val fieldWells: Output? = null,
public val kpiOptions: Output? = null,
public val sortConfiguration: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardKpiConfigurationArgs =
com.pulumi.awsnative.quicksight.inputs.DashboardKpiConfigurationArgs.builder()
.fieldWells(fieldWells?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.kpiOptions(kpiOptions?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.sortConfiguration(
sortConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [DashboardKpiConfigurationArgs].
*/
@PulumiTagMarker
public class DashboardKpiConfigurationArgsBuilder internal constructor() {
private var fieldWells: Output? = null
private var kpiOptions: Output? = null
private var sortConfiguration: Output? = null
/**
* @param value The field well configuration of a KPI visual.
*/
@JvmName("wbnbrwulcjrnaeyj")
public suspend fun fieldWells(`value`: Output) {
this.fieldWells = value
}
/**
* @param value The options that determine the presentation of a KPI visual.
*/
@JvmName("uldtdwtvnqdvdrsk")
public suspend fun kpiOptions(`value`: Output) {
this.kpiOptions = value
}
/**
* @param value The sort configuration of a KPI visual.
*/
@JvmName("rdsgionooytjngau")
public suspend fun sortConfiguration(`value`: Output) {
this.sortConfiguration = value
}
/**
* @param value The field well configuration of a KPI visual.
*/
@JvmName("kurlpihjnxfrrhlh")
public suspend fun fieldWells(`value`: DashboardKpiFieldWellsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fieldWells = mapped
}
/**
* @param argument The field well configuration of a KPI visual.
*/
@JvmName("upkllbvwqsysyilq")
public suspend fun fieldWells(argument: suspend DashboardKpiFieldWellsArgsBuilder.() -> Unit) {
val toBeMapped = DashboardKpiFieldWellsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.fieldWells = mapped
}
/**
* @param value The options that determine the presentation of a KPI visual.
*/
@JvmName("itqyttdkunncrqrx")
public suspend fun kpiOptions(`value`: DashboardKpiOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.kpiOptions = mapped
}
/**
* @param argument The options that determine the presentation of a KPI visual.
*/
@JvmName("tjmdviigasfuacfo")
public suspend fun kpiOptions(argument: suspend DashboardKpiOptionsArgsBuilder.() -> Unit) {
val toBeMapped = DashboardKpiOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.kpiOptions = mapped
}
/**
* @param value The sort configuration of a KPI visual.
*/
@JvmName("ojwfnkxgauhojegg")
public suspend fun sortConfiguration(`value`: DashboardKpiSortConfigurationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sortConfiguration = mapped
}
/**
* @param argument The sort configuration of a KPI visual.
*/
@JvmName("jfkvlrgkdpkqdoxs")
public suspend fun sortConfiguration(argument: suspend DashboardKpiSortConfigurationArgsBuilder.() -> Unit) {
val toBeMapped = DashboardKpiSortConfigurationArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.sortConfiguration = mapped
}
internal fun build(): DashboardKpiConfigurationArgs = DashboardKpiConfigurationArgs(
fieldWells = fieldWells,
kpiOptions = kpiOptions,
sortConfiguration = sortConfiguration,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy