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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardArcAxisConfigurationArgs.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.Double
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property range The arc axis range of a `GaugeChartVisual` .
 * @property reserveRange The reserved range of the arc axis.
 */
public data class DashboardArcAxisConfigurationArgs(
    public val range: Output? = null,
    public val reserveRange: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardArcAxisConfigurationArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardArcAxisConfigurationArgs.builder()
            .range(range?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .reserveRange(reserveRange?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DashboardArcAxisConfigurationArgs].
 */
@PulumiTagMarker
public class DashboardArcAxisConfigurationArgsBuilder internal constructor() {
    private var range: Output? = null

    private var reserveRange: Output? = null

    /**
     * @param value The arc axis range of a `GaugeChartVisual` .
     */
    @JvmName("enimnvnjhrfkjhtk")
    public suspend fun range(`value`: Output) {
        this.range = value
    }

    /**
     * @param value The reserved range of the arc axis.
     */
    @JvmName("sqawxorvjkekflah")
    public suspend fun reserveRange(`value`: Output) {
        this.reserveRange = value
    }

    /**
     * @param value The arc axis range of a `GaugeChartVisual` .
     */
    @JvmName("vmmidcdfjgknhqkm")
    public suspend fun range(`value`: DashboardArcAxisDisplayRangeArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.range = mapped
    }

    /**
     * @param argument The arc axis range of a `GaugeChartVisual` .
     */
    @JvmName("rawkbcbleljkftgf")
    public suspend fun range(argument: suspend DashboardArcAxisDisplayRangeArgsBuilder.() -> Unit) {
        val toBeMapped = DashboardArcAxisDisplayRangeArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.range = mapped
    }

    /**
     * @param value The reserved range of the arc axis.
     */
    @JvmName("jrsvdgeifnalsgfe")
    public suspend fun reserveRange(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.reserveRange = mapped
    }

    internal fun build(): DashboardArcAxisConfigurationArgs = DashboardArcAxisConfigurationArgs(
        range = range,
        reserveRange = reserveRange,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy