com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisPivotTableFieldWellsArgs.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.AnalysisPivotTableFieldWellsArgs.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 pivotTableAggregatedFieldWells The aggregated field well for the pivot table.
*/
public data class AnalysisPivotTableFieldWellsArgs(
public val pivotTableAggregatedFieldWells: Output? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisPivotTableFieldWellsArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisPivotTableFieldWellsArgs.builder()
.pivotTableAggregatedFieldWells(
pivotTableAggregatedFieldWells?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
).build()
}
/**
* Builder for [AnalysisPivotTableFieldWellsArgs].
*/
@PulumiTagMarker
public class AnalysisPivotTableFieldWellsArgsBuilder internal constructor() {
private var pivotTableAggregatedFieldWells: Output? =
null
/**
* @param value The aggregated field well for the pivot table.
*/
@JvmName("bnrehkstwcisgdda")
public suspend fun pivotTableAggregatedFieldWells(`value`: Output) {
this.pivotTableAggregatedFieldWells = value
}
/**
* @param value The aggregated field well for the pivot table.
*/
@JvmName("fwwknbknxsxbkuuj")
public suspend fun pivotTableAggregatedFieldWells(`value`: AnalysisPivotTableAggregatedFieldWellsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.pivotTableAggregatedFieldWells = mapped
}
/**
* @param argument The aggregated field well for the pivot table.
*/
@JvmName("iremhfvjujmqooou")
public suspend fun pivotTableAggregatedFieldWells(argument: suspend AnalysisPivotTableAggregatedFieldWellsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisPivotTableAggregatedFieldWellsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.pivotTableAggregatedFieldWells = mapped
}
internal fun build(): AnalysisPivotTableFieldWellsArgs = AnalysisPivotTableFieldWellsArgs(
pivotTableAggregatedFieldWells = pivotTableAggregatedFieldWells,
)
}