com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisScatterPlotUnaggregatedFieldWellsArgs.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.AnalysisScatterPlotUnaggregatedFieldWellsArgs.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 AnalysisScatterPlotUnaggregatedFieldWellsArgs(
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.AnalysisScatterPlotUnaggregatedFieldWellsArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisScatterPlotUnaggregatedFieldWellsArgs.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 [AnalysisScatterPlotUnaggregatedFieldWellsArgs].
*/
@PulumiTagMarker
public class AnalysisScatterPlotUnaggregatedFieldWellsArgsBuilder 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("eivfnnmmvevaegpa")
public suspend fun category(`value`: Output>) {
this.category = value
}
@JvmName("fnriyjfrwyfswrhr")
public suspend fun category(vararg values: Output) {
this.category = Output.all(values.asList())
}
/**
* @param values The category field well of a scatter plot.
*/
@JvmName("vbwotftuisyooahh")
public suspend fun category(values: List