![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplatePivotTableFieldWellsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplatePivotTableFieldWellsArgs.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 TemplatePivotTableFieldWellsArgs(
public val pivotTableAggregatedFieldWells: Output? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplatePivotTableFieldWellsArgs =
com.pulumi.awsnative.quicksight.inputs.TemplatePivotTableFieldWellsArgs.builder()
.pivotTableAggregatedFieldWells(
pivotTableAggregatedFieldWells?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
).build()
}
/**
* Builder for [TemplatePivotTableFieldWellsArgs].
*/
@PulumiTagMarker
public class TemplatePivotTableFieldWellsArgsBuilder internal constructor() {
private var pivotTableAggregatedFieldWells: Output? =
null
/**
* @param value The aggregated field well for the pivot table.
*/
@JvmName("xhwbfstgylqehejl")
public suspend fun pivotTableAggregatedFieldWells(`value`: Output) {
this.pivotTableAggregatedFieldWells = value
}
/**
* @param value The aggregated field well for the pivot table.
*/
@JvmName("bsfpkoxrffrweryg")
public suspend fun pivotTableAggregatedFieldWells(`value`: TemplatePivotTableAggregatedFieldWellsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.pivotTableAggregatedFieldWells = mapped
}
/**
* @param argument The aggregated field well for the pivot table.
*/
@JvmName("juqimapgfeqlcuki")
public suspend fun pivotTableAggregatedFieldWells(argument: suspend TemplatePivotTableAggregatedFieldWellsArgsBuilder.() -> Unit) {
val toBeMapped = TemplatePivotTableAggregatedFieldWellsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.pivotTableAggregatedFieldWells = mapped
}
internal fun build(): TemplatePivotTableFieldWellsArgs = TemplatePivotTableFieldWellsArgs(
pivotTableAggregatedFieldWells = pivotTableAggregatedFieldWells,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy