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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardAxisLinearScaleArgs.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 stepCount The step count setup of a linear axis.
 * @property stepSize The step size setup of a linear axis.
 */
public data class DashboardAxisLinearScaleArgs(
    public val stepCount: Output? = null,
    public val stepSize: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardAxisLinearScaleArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardAxisLinearScaleArgs.builder()
            .stepCount(stepCount?.applyValue({ args0 -> args0 }))
            .stepSize(stepSize?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DashboardAxisLinearScaleArgs].
 */
@PulumiTagMarker
public class DashboardAxisLinearScaleArgsBuilder internal constructor() {
    private var stepCount: Output? = null

    private var stepSize: Output? = null

    /**
     * @param value The step count setup of a linear axis.
     */
    @JvmName("njtsvtmomjexleyg")
    public suspend fun stepCount(`value`: Output) {
        this.stepCount = value
    }

    /**
     * @param value The step size setup of a linear axis.
     */
    @JvmName("xvpiprhcmcybrdmc")
    public suspend fun stepSize(`value`: Output) {
        this.stepSize = value
    }

    /**
     * @param value The step count setup of a linear axis.
     */
    @JvmName("bkruspjqjnsfamyb")
    public suspend fun stepCount(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.stepCount = mapped
    }

    /**
     * @param value The step size setup of a linear axis.
     */
    @JvmName("twubkcymtajrbwlc")
    public suspend fun stepSize(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.stepSize = mapped
    }

    internal fun build(): DashboardAxisLinearScaleArgs = DashboardAxisLinearScaleArgs(
        stepCount = stepCount,
        stepSize = stepSize,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy