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

com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardGrowthRateComputationArgs.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.DashboardGrowthRateComputationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Double
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property computationId The ID for a computation.
 * @property name The name of a computation.
 * @property periodSize The period size setup of a growth rate computation.
 * @property time The time field that is used in a computation.
 * @property value The value field that is used in a computation.
 */
public data class DashboardGrowthRateComputationArgs(
    public val computationId: Output,
    public val name: Output? = null,
    public val periodSize: Output? = null,
    public val time: Output? = null,
    public val `value`: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardGrowthRateComputationArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardGrowthRateComputationArgs.builder()
            .computationId(computationId.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .periodSize(periodSize?.applyValue({ args0 -> args0 }))
            .time(time?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .`value`(`value`?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [DashboardGrowthRateComputationArgs].
 */
@PulumiTagMarker
public class DashboardGrowthRateComputationArgsBuilder internal constructor() {
    private var computationId: Output? = null

    private var name: Output? = null

    private var periodSize: Output? = null

    private var time: Output? = null

    private var `value`: Output? = null

    /**
     * @param value The ID for a computation.
     */
    @JvmName("bmsfywikgksossfs")
    public suspend fun computationId(`value`: Output) {
        this.computationId = value
    }

    /**
     * @param value The name of a computation.
     */
    @JvmName("wdmvmaaofuwxshcc")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The period size setup of a growth rate computation.
     */
    @JvmName("oainbwpmruyrcgvi")
    public suspend fun periodSize(`value`: Output) {
        this.periodSize = value
    }

    /**
     * @param value The time field that is used in a computation.
     */
    @JvmName("vqgpkbmqblmigbrs")
    public suspend fun time(`value`: Output) {
        this.time = value
    }

    /**
     * @param value The value field that is used in a computation.
     */
    @JvmName("fmmkfsgagaquybkv")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value The ID for a computation.
     */
    @JvmName("ngjxllmyinfqjtwu")
    public suspend fun computationId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.computationId = mapped
    }

    /**
     * @param value The name of a computation.
     */
    @JvmName("fmbtamnrcviligfj")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The period size setup of a growth rate computation.
     */
    @JvmName("slqfoyffafryrnev")
    public suspend fun periodSize(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.periodSize = mapped
    }

    /**
     * @param value The time field that is used in a computation.
     */
    @JvmName("vdwncqlbexuagniy")
    public suspend fun time(`value`: DashboardDimensionFieldArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.time = mapped
    }

    /**
     * @param argument The time field that is used in a computation.
     */
    @JvmName("graexxfqoueqgfdo")
    public suspend fun time(argument: suspend DashboardDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = DashboardDimensionFieldArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.time = mapped
    }

    /**
     * @param value The value field that is used in a computation.
     */
    @JvmName("ulyrxtaujyshldge")
    public suspend fun `value`(`value`: DashboardMeasureFieldArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    /**
     * @param argument The value field that is used in a computation.
     */
    @JvmName("pqexwupxlasmnlnt")
    public suspend fun `value`(argument: suspend DashboardMeasureFieldArgsBuilder.() -> Unit) {
        val toBeMapped = DashboardMeasureFieldArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.`value` = mapped
    }

    internal fun build(): DashboardGrowthRateComputationArgs = DashboardGrowthRateComputationArgs(
        computationId = computationId ?: throw PulumiNullFieldException("computationId"),
        name = name,
        periodSize = periodSize,
        time = time,
        `value` = `value`,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy