![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisBinWidthOptionsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisBinWidthOptionsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property binCountLimit The options that determine the bin count limit.
* @property value The options that determine the bin width value.
*/
public data class AnalysisBinWidthOptionsArgs(
public val binCountLimit: Output? = null,
public val `value`: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisBinWidthOptionsArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisBinWidthOptionsArgs.builder()
.binCountLimit(binCountLimit?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AnalysisBinWidthOptionsArgs].
*/
@PulumiTagMarker
public class AnalysisBinWidthOptionsArgsBuilder internal constructor() {
private var binCountLimit: Output? = null
private var `value`: Output? = null
/**
* @param value The options that determine the bin count limit.
*/
@JvmName("ymdjwkipnbinikjc")
public suspend fun binCountLimit(`value`: Output) {
this.binCountLimit = value
}
/**
* @param value The options that determine the bin width value.
*/
@JvmName("swtpobgbpeuhsuym")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The options that determine the bin count limit.
*/
@JvmName("secenksylhvofbbd")
public suspend fun binCountLimit(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.binCountLimit = mapped
}
/**
* @param value The options that determine the bin width value.
*/
@JvmName("nmxaahranhhqwbkb")
public suspend fun `value`(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): AnalysisBinWidthOptionsArgs = AnalysisBinWidthOptionsArgs(
binCountLimit = binCountLimit,
`value` = `value`,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy