All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardBinWidthOptionsArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.inputs

import com.pulumi.awsnative.quicksight.inputs.DashboardBinWidthOptionsArgs.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 DashboardBinWidthOptionsArgs(
    public val binCountLimit: Output? = null,
    public val `value`: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardBinWidthOptionsArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardBinWidthOptionsArgs.builder()
            .binCountLimit(binCountLimit?.applyValue({ args0 -> args0 }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DashboardBinWidthOptionsArgs].
 */
@PulumiTagMarker
public class DashboardBinWidthOptionsArgsBuilder internal constructor() {
    private var binCountLimit: Output? = null

    private var `value`: Output? = null

    /**
     * @param value The options that determine the bin count limit.
     */
    @JvmName("cvebfliiwlerlsrl")
    public suspend fun binCountLimit(`value`: Output) {
        this.binCountLimit = value
    }

    /**
     * @param value The options that determine the bin width value.
     */
    @JvmName("lbllaqvqidapdqaa")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value The options that determine the bin count limit.
     */
    @JvmName("uwulddidmteksbrh")
    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("ufrjqxkailwxrmei")
    public suspend fun `value`(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): DashboardBinWidthOptionsArgs = DashboardBinWidthOptionsArgs(
        binCountLimit = binCountLimit,
        `value` = `value`,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy