com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisKpiVisualLayoutOptionsArgs.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.AnalysisKpiVisualLayoutOptionsArgs.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 standardLayout The standard layout of the KPI visual.
*/
public data class AnalysisKpiVisualLayoutOptionsArgs(
public val standardLayout: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisKpiVisualLayoutOptionsArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisKpiVisualLayoutOptionsArgs.builder()
.standardLayout(
standardLayout?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [AnalysisKpiVisualLayoutOptionsArgs].
*/
@PulumiTagMarker
public class AnalysisKpiVisualLayoutOptionsArgsBuilder internal constructor() {
private var standardLayout: Output? = null
/**
* @param value The standard layout of the KPI visual.
*/
@JvmName("hrjcoohofeewmskl")
public suspend fun standardLayout(`value`: Output) {
this.standardLayout = value
}
/**
* @param value The standard layout of the KPI visual.
*/
@JvmName("pbymxiauxykexapk")
public suspend fun standardLayout(`value`: AnalysisKpiVisualStandardLayoutArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.standardLayout = mapped
}
/**
* @param argument The standard layout of the KPI visual.
*/
@JvmName("rntfidmarslbqbhn")
public suspend fun standardLayout(argument: suspend AnalysisKpiVisualStandardLayoutArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisKpiVisualStandardLayoutArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.standardLayout = mapped
}
internal fun build(): AnalysisKpiVisualLayoutOptionsArgs = AnalysisKpiVisualLayoutOptionsArgs(
standardLayout = standardLayout,
)
}