
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateScatterPlotCategoricallyAggregatedFieldWells.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 aggregated by category.
* @property yAxis The y-axis field well of a scatter plot.
* The y-axis is aggregated by category.
*/
public data class TemplateScatterPlotCategoricallyAggregatedFieldWells(
public val category: List? = null,
public val label: List? = null,
public val size: List? = null,
public val xAxis: List? = null,
public val yAxis: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateScatterPlotCategoricallyAggregatedFieldWells): TemplateScatterPlotCategoricallyAggregatedFieldWells =
TemplateScatterPlotCategoricallyAggregatedFieldWells(
category = javaType.category().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateDimensionField.Companion.toKotlin(args0)
})
}),
label = javaType.label().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateDimensionField.Companion.toKotlin(args0)
})
}),
size = javaType.size().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateMeasureField.Companion.toKotlin(args0)
})
}),
xAxis = javaType.xAxis().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateMeasureField.Companion.toKotlin(args0)
})
}),
yAxis = javaType.yAxis().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateMeasureField.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy