
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisArcAxisConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisArcAxisConfigurationArgs.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 AnalysisArcAxisConfigurationArgs(
public val range: Output? = null,
public val reserveRange: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisArcAxisConfigurationArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisArcAxisConfigurationArgs.builder()
.range(range?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.reserveRange(reserveRange?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AnalysisArcAxisConfigurationArgs].
*/
@PulumiTagMarker
public class AnalysisArcAxisConfigurationArgsBuilder internal constructor() {
private var range: Output? = null
private var reserveRange: Output? = null
/**
* @param value The arc axis range of a `GaugeChartVisual` .
*/
@JvmName("suvpqdxpleiekije")
public suspend fun range(`value`: Output) {
this.range = value
}
/**
* @param value The reserved range of the arc axis.
*/
@JvmName("hemqbaasooemkhrm")
public suspend fun reserveRange(`value`: Output) {
this.reserveRange = value
}
/**
* @param value The arc axis range of a `GaugeChartVisual` .
*/
@JvmName("grsbghvckulakbfi")
public suspend fun range(`value`: AnalysisArcAxisDisplayRangeArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.range = mapped
}
/**
* @param argument The arc axis range of a `GaugeChartVisual` .
*/
@JvmName("ckrdtevcfrbhheue")
public suspend fun range(argument: suspend AnalysisArcAxisDisplayRangeArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisArcAxisDisplayRangeArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.range = mapped
}
/**
* @param value The reserved range of the arc axis.
*/
@JvmName("scufusclcnjowkxk")
public suspend fun reserveRange(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.reserveRange = mapped
}
internal fun build(): AnalysisArcAxisConfigurationArgs = AnalysisArcAxisConfigurationArgs(
range = range,
reserveRange = reserveRange,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy