
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisWordCloudChartConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisWordCloudChartConfigurationArgs.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 categoryLabelOptions The label options (label text, label visibility, and sort icon visibility) for the word cloud category.
* @property fieldWells The field wells of the visual.
* @property sortConfiguration The sort configuration of a word cloud visual.
* @property wordCloudOptions The options for a word cloud visual.
*/
public data class AnalysisWordCloudChartConfigurationArgs(
public val categoryLabelOptions: Output? = null,
public val fieldWells: Output? = null,
public val sortConfiguration: Output? = null,
public val wordCloudOptions: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisWordCloudChartConfigurationArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisWordCloudChartConfigurationArgs.builder()
.categoryLabelOptions(
categoryLabelOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.fieldWells(fieldWells?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.sortConfiguration(sortConfiguration?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.wordCloudOptions(
wordCloudOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [AnalysisWordCloudChartConfigurationArgs].
*/
@PulumiTagMarker
public class AnalysisWordCloudChartConfigurationArgsBuilder internal constructor() {
private var categoryLabelOptions: Output? = null
private var fieldWells: Output? = null
private var sortConfiguration: Output? = null
private var wordCloudOptions: Output? = null
/**
* @param value The label options (label text, label visibility, and sort icon visibility) for the word cloud category.
*/
@JvmName("plcwwaoeseivcrdq")
public suspend fun categoryLabelOptions(`value`: Output) {
this.categoryLabelOptions = value
}
/**
* @param value The field wells of the visual.
*/
@JvmName("takotmieyvamakkw")
public suspend fun fieldWells(`value`: Output) {
this.fieldWells = value
}
/**
* @param value The sort configuration of a word cloud visual.
*/
@JvmName("gagxmpyntuberorq")
public suspend fun sortConfiguration(`value`: Output) {
this.sortConfiguration = value
}
/**
* @param value The options for a word cloud visual.
*/
@JvmName("kmuuasajsotufxsc")
public suspend fun wordCloudOptions(`value`: Output) {
this.wordCloudOptions = value
}
/**
* @param value The label options (label text, label visibility, and sort icon visibility) for the word cloud category.
*/
@JvmName("hkbktvxvcifjjhxe")
public suspend fun categoryLabelOptions(`value`: AnalysisChartAxisLabelOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.categoryLabelOptions = mapped
}
/**
* @param argument The label options (label text, label visibility, and sort icon visibility) for the word cloud category.
*/
@JvmName("hradjipphgvuwyfp")
public suspend fun categoryLabelOptions(argument: suspend AnalysisChartAxisLabelOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisChartAxisLabelOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.categoryLabelOptions = mapped
}
/**
* @param value The field wells of the visual.
*/
@JvmName("bynsypbbbqplpqqf")
public suspend fun fieldWells(`value`: AnalysisWordCloudFieldWellsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fieldWells = mapped
}
/**
* @param argument The field wells of the visual.
*/
@JvmName("pgivxrehduqhtsrg")
public suspend fun fieldWells(argument: suspend AnalysisWordCloudFieldWellsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisWordCloudFieldWellsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.fieldWells = mapped
}
/**
* @param value The sort configuration of a word cloud visual.
*/
@JvmName("rxrhiwjmacapnbpj")
public suspend fun sortConfiguration(`value`: AnalysisWordCloudSortConfigurationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sortConfiguration = mapped
}
/**
* @param argument The sort configuration of a word cloud visual.
*/
@JvmName("rqvbycstibpcpyid")
public suspend fun sortConfiguration(argument: suspend AnalysisWordCloudSortConfigurationArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisWordCloudSortConfigurationArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.sortConfiguration = mapped
}
/**
* @param value The options for a word cloud visual.
*/
@JvmName("dehxvwojmdkfubwm")
public suspend fun wordCloudOptions(`value`: AnalysisWordCloudOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.wordCloudOptions = mapped
}
/**
* @param argument The options for a word cloud visual.
*/
@JvmName("ciojcpicwmhwvwor")
public suspend fun wordCloudOptions(argument: suspend AnalysisWordCloudOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisWordCloudOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.wordCloudOptions = mapped
}
internal fun build(): AnalysisWordCloudChartConfigurationArgs =
AnalysisWordCloudChartConfigurationArgs(
categoryLabelOptions = categoryLabelOptions,
fieldWells = fieldWells,
sortConfiguration = sortConfiguration,
wordCloudOptions = wordCloudOptions,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy