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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.AnalysisPercentVisibleRangeArgs.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 from The lower bound of the range.
 * @property to The top bound of the range.
 */
public data class AnalysisPercentVisibleRangeArgs(
    public val from: Output? = null,
    public val to: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisPercentVisibleRangeArgs =
        com.pulumi.awsnative.quicksight.inputs.AnalysisPercentVisibleRangeArgs.builder()
            .from(from?.applyValue({ args0 -> args0 }))
            .to(to?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AnalysisPercentVisibleRangeArgs].
 */
@PulumiTagMarker
public class AnalysisPercentVisibleRangeArgsBuilder internal constructor() {
    private var from: Output? = null

    private var to: Output? = null

    /**
     * @param value The lower bound of the range.
     */
    @JvmName("petwxwascguvmceh")
    public suspend fun from(`value`: Output) {
        this.from = value
    }

    /**
     * @param value The top bound of the range.
     */
    @JvmName("bqmdjjapjicmqqeu")
    public suspend fun to(`value`: Output) {
        this.to = value
    }

    /**
     * @param value The lower bound of the range.
     */
    @JvmName("ybanpkkhfhstjfgd")
    public suspend fun from(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.from = mapped
    }

    /**
     * @param value The top bound of the range.
     */
    @JvmName("ruxskfurdammtret")
    public suspend fun to(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.to = mapped
    }

    internal fun build(): AnalysisPercentVisibleRangeArgs = AnalysisPercentVisibleRangeArgs(
        from = from,
        to = to,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy