
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateScatterPlotUnaggregatedFieldWellsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateScatterPlotUnaggregatedFieldWellsArgs.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 category The category field well of a scatter plot.
* @property label The label field well of a scatter plot.
* @property size The size field well of a scatter plot.
* @property xAxis The x-axis field well of a scatter plot.
* The x-axis is a dimension field and cannot be aggregated.
* @property yAxis The y-axis field well of a scatter plot.
* The y-axis is a dimension field and cannot be aggregated.
*/
public data class TemplateScatterPlotUnaggregatedFieldWellsArgs(
public val category: Output>? = null,
public val label: Output>? = null,
public val size: Output>? = null,
public val xAxis: Output>? = null,
public val yAxis: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateScatterPlotUnaggregatedFieldWellsArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateScatterPlotUnaggregatedFieldWellsArgs.builder()
.category(
category?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.label(label?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.size(size?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.xAxis(xAxis?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.yAxis(
yAxis?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [TemplateScatterPlotUnaggregatedFieldWellsArgs].
*/
@PulumiTagMarker
public class TemplateScatterPlotUnaggregatedFieldWellsArgsBuilder internal constructor() {
private var category: Output>? = null
private var label: Output>? = null
private var size: Output>? = null
private var xAxis: Output>? = null
private var yAxis: Output>? = null
/**
* @param value The category field well of a scatter plot.
*/
@JvmName("cahqswohclbhjmjs")
public suspend fun category(`value`: Output>) {
this.category = value
}
@JvmName("xmsmevwaqgvasyqn")
public suspend fun category(vararg values: Output) {
this.category = Output.all(values.asList())
}
/**
* @param values The category field well of a scatter plot.
*/
@JvmName("xhnhgnwsiaheyjhg")
public suspend fun category(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy