com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisPivotTableFieldCollapseStateTargetArgs.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.AnalysisPivotTableFieldCollapseStateTargetArgs.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property fieldDataPathValues The data path of the pivot table's header. Used to set the collapse state.
* @property fieldId The field ID of the pivot table that the collapse state needs to be set to.
*/
public data class AnalysisPivotTableFieldCollapseStateTargetArgs(
public val fieldDataPathValues: Output>? = null,
public val fieldId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisPivotTableFieldCollapseStateTargetArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisPivotTableFieldCollapseStateTargetArgs.builder()
.fieldDataPathValues(
fieldDataPathValues?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.fieldId(fieldId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AnalysisPivotTableFieldCollapseStateTargetArgs].
*/
@PulumiTagMarker
public class AnalysisPivotTableFieldCollapseStateTargetArgsBuilder internal constructor() {
private var fieldDataPathValues: Output>? = null
private var fieldId: Output? = null
/**
* @param value The data path of the pivot table's header. Used to set the collapse state.
*/
@JvmName("xqshdulwdinvedcm")
public suspend fun fieldDataPathValues(`value`: Output>) {
this.fieldDataPathValues = value
}
@JvmName("kamukrqnjnyvqerh")
public suspend fun fieldDataPathValues(vararg values: Output) {
this.fieldDataPathValues = Output.all(values.asList())
}
/**
* @param values The data path of the pivot table's header. Used to set the collapse state.
*/
@JvmName("lphuugpeohclreno")
public suspend fun fieldDataPathValues(values: List