
com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardPivotTableFieldOptionsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.DashboardPivotTableFieldOptionsArgs.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.collections.List
import kotlin.jvm.JvmName
/**
*
* @property collapseStateOptions The collapse state options for the pivot table field options.
* @property dataPathOptions The data path options for the pivot table field options.
* @property selectedFieldOptions The selected field options for the pivot table field options.
*/
public data class DashboardPivotTableFieldOptionsArgs(
public val collapseStateOptions: Output>? =
null,
public val dataPathOptions: Output>? = null,
public val selectedFieldOptions: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardPivotTableFieldOptionsArgs = com.pulumi.awsnative.quicksight.inputs.DashboardPivotTableFieldOptionsArgs.builder()
.collapseStateOptions(
collapseStateOptions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.dataPathOptions(
dataPathOptions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.selectedFieldOptions(
selectedFieldOptions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [DashboardPivotTableFieldOptionsArgs].
*/
@PulumiTagMarker
public class DashboardPivotTableFieldOptionsArgsBuilder internal constructor() {
private var collapseStateOptions: Output>? =
null
private var dataPathOptions: Output>? = null
private var selectedFieldOptions: Output>? = null
/**
* @param value The collapse state options for the pivot table field options.
*/
@JvmName("wvnohpmqjtypsomw")
public suspend fun collapseStateOptions(`value`: Output>) {
this.collapseStateOptions = value
}
@JvmName("yvuucwwuixciuxfk")
public suspend fun collapseStateOptions(vararg values: Output) {
this.collapseStateOptions = Output.all(values.asList())
}
/**
* @param values The collapse state options for the pivot table field options.
*/
@JvmName("gygjmoamfasygeak")
public suspend fun collapseStateOptions(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy