![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateAxisLinearScaleArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateAxisLinearScaleArgs.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 TemplateAxisLinearScaleArgs(
public val stepCount: Output? = null,
public val stepSize: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateAxisLinearScaleArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateAxisLinearScaleArgs.builder()
.stepCount(stepCount?.applyValue({ args0 -> args0 }))
.stepSize(stepSize?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TemplateAxisLinearScaleArgs].
*/
@PulumiTagMarker
public class TemplateAxisLinearScaleArgsBuilder internal constructor() {
private var stepCount: Output? = null
private var stepSize: Output? = null
/**
* @param value The step count setup of a linear axis.
*/
@JvmName("udhjecfimyuljcsm")
public suspend fun stepCount(`value`: Output) {
this.stepCount = value
}
/**
* @param value The step size setup of a linear axis.
*/
@JvmName("echtwcqelmitonvb")
public suspend fun stepSize(`value`: Output) {
this.stepSize = value
}
/**
* @param value The step count setup of a linear axis.
*/
@JvmName("linilccnexoyvjkl")
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("tcbnncracgvfqtev")
public suspend fun stepSize(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.stepSize = mapped
}
internal fun build(): TemplateAxisLinearScaleArgs = TemplateAxisLinearScaleArgs(
stepCount = stepCount,
stepSize = stepSize,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy