com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardAxisLogarithmicScaleArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.DashboardAxisLogarithmicScaleArgs.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 base The base setup of a logarithmic axis scale.
*/
public data class DashboardAxisLogarithmicScaleArgs(
public val base: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardAxisLogarithmicScaleArgs =
com.pulumi.awsnative.quicksight.inputs.DashboardAxisLogarithmicScaleArgs.builder()
.base(base?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DashboardAxisLogarithmicScaleArgs].
*/
@PulumiTagMarker
public class DashboardAxisLogarithmicScaleArgsBuilder internal constructor() {
private var base: Output? = null
/**
* @param value The base setup of a logarithmic axis scale.
*/
@JvmName("pehblishwmwblbls")
public suspend fun base(`value`: Output) {
this.base = value
}
/**
* @param value The base setup of a logarithmic axis scale.
*/
@JvmName("qvyvlwpdxoqtauny")
public suspend fun base(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.base = mapped
}
internal fun build(): DashboardAxisLogarithmicScaleArgs = DashboardAxisLogarithmicScaleArgs(
base = base,
)
}