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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.AnalysisPeriodToDateComputationArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisTimeGranularity
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.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 periodTimeGranularity The time granularity setup of period to date computation. Choose from the following options:
 * - YEAR: Year to date.
 * - MONTH: Month to date.
 * @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 AnalysisPeriodToDateComputationArgs(
    public val computationId: Output,
    public val name: Output? = null,
    public val periodTimeGranularity: Output? = null,
    public val time: Output? = null,
    public val `value`: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisPeriodToDateComputationArgs = com.pulumi.awsnative.quicksight.inputs.AnalysisPeriodToDateComputationArgs.builder()
        .computationId(computationId.applyValue({ args0 -> args0 }))
        .name(name?.applyValue({ args0 -> args0 }))
        .periodTimeGranularity(
            periodTimeGranularity?.applyValue({ args0 ->
                args0.let({ args0 ->
                    args0.toJava()
                })
            }),
        )
        .time(time?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
        .`value`(`value`?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

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

    private var name: Output? = null

    private var periodTimeGranularity: Output? = null

    private var time: Output? = null

    private var `value`: Output? = null

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

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

    /**
     * @param value The time granularity setup of period to date computation. Choose from the following options:
     * - YEAR: Year to date.
     * - MONTH: Month to date.
     */
    @JvmName("hmvkcnxcxdpbqpga")
    public suspend fun periodTimeGranularity(`value`: Output) {
        this.periodTimeGranularity = value
    }

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

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

    /**
     * @param value The ID for a computation.
     */
    @JvmName("yrfxjfvxwabnsimx")
    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("bujywiylsxcwawsi")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The time granularity setup of period to date computation. Choose from the following options:
     * - YEAR: Year to date.
     * - MONTH: Month to date.
     */
    @JvmName("elarevqtgxvprxth")
    public suspend fun periodTimeGranularity(`value`: AnalysisTimeGranularity?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.periodTimeGranularity = mapped
    }

    /**
     * @param value The time field that is used in a computation.
     */
    @JvmName("reynedgyjhsviohj")
    public suspend fun time(`value`: AnalysisDimensionFieldArgs?) {
        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("oxlarbxytlyjcctl")
    public suspend fun time(argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = AnalysisDimensionFieldArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.time = mapped
    }

    /**
     * @param value The value field that is used in a computation.
     */
    @JvmName("pwjylrrwtuddsiud")
    public suspend fun `value`(`value`: AnalysisMeasureFieldArgs?) {
        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("tlvpdqicfibenclg")
    public suspend fun `value`(argument: suspend AnalysisMeasureFieldArgsBuilder.() -> Unit) {
        val toBeMapped = AnalysisMeasureFieldArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.`value` = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy