com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisAxisLinearScaleArgs.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.AnalysisAxisLinearScaleArgs.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 AnalysisAxisLinearScaleArgs(
public val stepCount: Output? = null,
public val stepSize: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisAxisLinearScaleArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisAxisLinearScaleArgs.builder()
.stepCount(stepCount?.applyValue({ args0 -> args0 }))
.stepSize(stepSize?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AnalysisAxisLinearScaleArgs].
*/
@PulumiTagMarker
public class AnalysisAxisLinearScaleArgsBuilder internal constructor() {
private var stepCount: Output? = null
private var stepSize: Output? = null
/**
* @param value The step count setup of a linear axis.
*/
@JvmName("nnotnuurbplhimlt")
public suspend fun stepCount(`value`: Output) {
this.stepCount = value
}
/**
* @param value The step size setup of a linear axis.
*/
@JvmName("fkkfwfhrwvokmdto")
public suspend fun stepSize(`value`: Output) {
this.stepSize = value
}
/**
* @param value The step count setup of a linear axis.
*/
@JvmName("sklurllcckkknlpi")
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("uwroxsdndsmwwhem")
public suspend fun stepSize(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.stepSize = mapped
}
internal fun build(): AnalysisAxisLinearScaleArgs = AnalysisAxisLinearScaleArgs(
stepCount = stepCount,
stepSize = stepSize,
)
}