![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisScatterPlotConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisScatterPlotConfigurationArgs.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 dataLabels The options that determine if visual data labels are displayed.
* @property fieldWells The field wells of the visual.
* @property legend The legend display setup of the visual.
* @property tooltip The legend display setup of the visual.
* @property visualPalette The palette (chart color) display setup of the visual.
* @property xAxisDisplayOptions The label display options (grid line, range, scale, and axis step) of the scatter plot's x-axis.
* @property xAxisLabelOptions The label options (label text, label visibility, and sort icon visibility) of the scatter plot's x-axis.
* @property yAxisDisplayOptions The label display options (grid line, range, scale, and axis step) of the scatter plot's y-axis.
* @property yAxisLabelOptions The label options (label text, label visibility, and sort icon visibility) of the scatter plot's y-axis.
*/
public data class AnalysisScatterPlotConfigurationArgs(
public val dataLabels: Output? = null,
public val fieldWells: Output? = null,
public val legend: Output? = null,
public val tooltip: Output? = null,
public val visualPalette: Output? = null,
public val xAxisDisplayOptions: Output? = null,
public val xAxisLabelOptions: Output? = null,
public val yAxisDisplayOptions: Output? = null,
public val yAxisLabelOptions: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisScatterPlotConfigurationArgs = com.pulumi.awsnative.quicksight.inputs.AnalysisScatterPlotConfigurationArgs.builder()
.dataLabels(dataLabels?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.fieldWells(fieldWells?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.legend(legend?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.tooltip(tooltip?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.visualPalette(visualPalette?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.xAxisDisplayOptions(
xAxisDisplayOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.xAxisLabelOptions(xAxisLabelOptions?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.yAxisDisplayOptions(
yAxisDisplayOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.yAxisLabelOptions(
yAxisLabelOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [AnalysisScatterPlotConfigurationArgs].
*/
@PulumiTagMarker
public class AnalysisScatterPlotConfigurationArgsBuilder internal constructor() {
private var dataLabels: Output? = null
private var fieldWells: Output? = null
private var legend: Output? = null
private var tooltip: Output? = null
private var visualPalette: Output? = null
private var xAxisDisplayOptions: Output? = null
private var xAxisLabelOptions: Output? = null
private var yAxisDisplayOptions: Output? = null
private var yAxisLabelOptions: Output? = null
/**
* @param value The options that determine if visual data labels are displayed.
*/
@JvmName("kqvbtkdwxakhvjtj")
public suspend fun dataLabels(`value`: Output) {
this.dataLabels = value
}
/**
* @param value The field wells of the visual.
*/
@JvmName("ngbaicrarscqdmoy")
public suspend fun fieldWells(`value`: Output) {
this.fieldWells = value
}
/**
* @param value The legend display setup of the visual.
*/
@JvmName("vslqxgttjmtlqrti")
public suspend fun legend(`value`: Output) {
this.legend = value
}
/**
* @param value The legend display setup of the visual.
*/
@JvmName("fyonspuxyuqfichs")
public suspend fun tooltip(`value`: Output) {
this.tooltip = value
}
/**
* @param value The palette (chart color) display setup of the visual.
*/
@JvmName("sgnxkdpkshivkouc")
public suspend fun visualPalette(`value`: Output) {
this.visualPalette = value
}
/**
* @param value The label display options (grid line, range, scale, and axis step) of the scatter plot's x-axis.
*/
@JvmName("kivmqrglqqwrjmpe")
public suspend fun xAxisDisplayOptions(`value`: Output) {
this.xAxisDisplayOptions = value
}
/**
* @param value The label options (label text, label visibility, and sort icon visibility) of the scatter plot's x-axis.
*/
@JvmName("gsgndrmjktyytfwj")
public suspend fun xAxisLabelOptions(`value`: Output) {
this.xAxisLabelOptions = value
}
/**
* @param value The label display options (grid line, range, scale, and axis step) of the scatter plot's y-axis.
*/
@JvmName("dmflikujapqpqqnw")
public suspend fun yAxisDisplayOptions(`value`: Output) {
this.yAxisDisplayOptions = value
}
/**
* @param value The label options (label text, label visibility, and sort icon visibility) of the scatter plot's y-axis.
*/
@JvmName("aperfbuarobxpkoc")
public suspend fun yAxisLabelOptions(`value`: Output) {
this.yAxisLabelOptions = value
}
/**
* @param value The options that determine if visual data labels are displayed.
*/
@JvmName("mkovylpqqrxeigiu")
public suspend fun dataLabels(`value`: AnalysisDataLabelOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dataLabels = mapped
}
/**
* @param argument The options that determine if visual data labels are displayed.
*/
@JvmName("bkcqhwvxplctdjns")
public suspend fun dataLabels(argument: suspend AnalysisDataLabelOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisDataLabelOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.dataLabels = mapped
}
/**
* @param value The field wells of the visual.
*/
@JvmName("budsbbghwipndqal")
public suspend fun fieldWells(`value`: AnalysisScatterPlotFieldWellsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fieldWells = mapped
}
/**
* @param argument The field wells of the visual.
*/
@JvmName("ysvdgipshhxyertl")
public suspend fun fieldWells(argument: suspend AnalysisScatterPlotFieldWellsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisScatterPlotFieldWellsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.fieldWells = mapped
}
/**
* @param value The legend display setup of the visual.
*/
@JvmName("fmmddambpsacgmnu")
public suspend fun legend(`value`: AnalysisLegendOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.legend = mapped
}
/**
* @param argument The legend display setup of the visual.
*/
@JvmName("ulsfijmkamdwnohx")
public suspend fun legend(argument: suspend AnalysisLegendOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisLegendOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.legend = mapped
}
/**
* @param value The legend display setup of the visual.
*/
@JvmName("qnverifocqgcqkvf")
public suspend fun tooltip(`value`: AnalysisTooltipOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tooltip = mapped
}
/**
* @param argument The legend display setup of the visual.
*/
@JvmName("fgmllufiuhtungse")
public suspend fun tooltip(argument: suspend AnalysisTooltipOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisTooltipOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.tooltip = mapped
}
/**
* @param value The palette (chart color) display setup of the visual.
*/
@JvmName("sfiycthqpafftaha")
public suspend fun visualPalette(`value`: AnalysisVisualPaletteArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.visualPalette = mapped
}
/**
* @param argument The palette (chart color) display setup of the visual.
*/
@JvmName("bhvjsexaamlkaboe")
public suspend fun visualPalette(argument: suspend AnalysisVisualPaletteArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisVisualPaletteArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.visualPalette = mapped
}
/**
* @param value The label display options (grid line, range, scale, and axis step) of the scatter plot's x-axis.
*/
@JvmName("tssemhiugbgrcfga")
public suspend fun xAxisDisplayOptions(`value`: AnalysisAxisDisplayOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.xAxisDisplayOptions = mapped
}
/**
* @param argument The label display options (grid line, range, scale, and axis step) of the scatter plot's x-axis.
*/
@JvmName("kpmwsmfdbkfmbncp")
public suspend fun xAxisDisplayOptions(argument: suspend AnalysisAxisDisplayOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisAxisDisplayOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.xAxisDisplayOptions = mapped
}
/**
* @param value The label options (label text, label visibility, and sort icon visibility) of the scatter plot's x-axis.
*/
@JvmName("swfbjlgoaxjsvywf")
public suspend fun xAxisLabelOptions(`value`: AnalysisChartAxisLabelOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.xAxisLabelOptions = mapped
}
/**
* @param argument The label options (label text, label visibility, and sort icon visibility) of the scatter plot's x-axis.
*/
@JvmName("rfijudyopciyeghu")
public suspend fun xAxisLabelOptions(argument: suspend AnalysisChartAxisLabelOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisChartAxisLabelOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.xAxisLabelOptions = mapped
}
/**
* @param value The label display options (grid line, range, scale, and axis step) of the scatter plot's y-axis.
*/
@JvmName("oikhkpysngpoffqy")
public suspend fun yAxisDisplayOptions(`value`: AnalysisAxisDisplayOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.yAxisDisplayOptions = mapped
}
/**
* @param argument The label display options (grid line, range, scale, and axis step) of the scatter plot's y-axis.
*/
@JvmName("fplubkoterufmyqu")
public suspend fun yAxisDisplayOptions(argument: suspend AnalysisAxisDisplayOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisAxisDisplayOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.yAxisDisplayOptions = mapped
}
/**
* @param value The label options (label text, label visibility, and sort icon visibility) of the scatter plot's y-axis.
*/
@JvmName("uhqqfxxdgjcntgws")
public suspend fun yAxisLabelOptions(`value`: AnalysisChartAxisLabelOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.yAxisLabelOptions = mapped
}
/**
* @param argument The label options (label text, label visibility, and sort icon visibility) of the scatter plot's y-axis.
*/
@JvmName("gvyvlyryjwxnvqaa")
public suspend fun yAxisLabelOptions(argument: suspend AnalysisChartAxisLabelOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisChartAxisLabelOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.yAxisLabelOptions = mapped
}
internal fun build(): AnalysisScatterPlotConfigurationArgs = AnalysisScatterPlotConfigurationArgs(
dataLabels = dataLabels,
fieldWells = fieldWells,
legend = legend,
tooltip = tooltip,
visualPalette = visualPalette,
xAxisDisplayOptions = xAxisDisplayOptions,
xAxisLabelOptions = xAxisLabelOptions,
yAxisDisplayOptions = yAxisDisplayOptions,
yAxisLabelOptions = yAxisLabelOptions,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy