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

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

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

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

/**
 * Builder for [AnalysisAxisLogarithmicScaleArgs].
 */
@PulumiTagMarker
public class AnalysisAxisLogarithmicScaleArgsBuilder internal constructor() {
    private var base: Output? = null

    /**
     * @param value The base setup of a logarithmic axis scale.
     */
    @JvmName("kpcdwtpismpiavmn")
    public suspend fun base(`value`: Output) {
        this.base = value
    }

    /**
     * @param value The base setup of a logarithmic axis scale.
     */
    @JvmName("sclbfelupyniancs")
    public suspend fun base(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.base = mapped
    }

    internal fun build(): AnalysisAxisLogarithmicScaleArgs = AnalysisAxisLogarithmicScaleArgs(
        base = base,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy