com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisPeriodOverPeriodComputationArgs.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.AnalysisPeriodOverPeriodComputationArgs.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.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 time The time field that is used in a computation.
* @property value The value field that is used in a computation.
*/
public data class AnalysisPeriodOverPeriodComputationArgs(
public val computationId: Output,
public val name: Output? = null,
public val time: Output? = null,
public val `value`: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisPeriodOverPeriodComputationArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisPeriodOverPeriodComputationArgs.builder()
.computationId(computationId.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.time(time?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.`value`(`value`?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AnalysisPeriodOverPeriodComputationArgs].
*/
@PulumiTagMarker
public class AnalysisPeriodOverPeriodComputationArgsBuilder internal constructor() {
private var computationId: Output? = null
private var name: Output? = null
private var time: Output? = null
private var `value`: Output? = null
/**
* @param value The ID for a computation.
*/
@JvmName("uayqicxrlaikkvrg")
public suspend fun computationId(`value`: Output) {
this.computationId = value
}
/**
* @param value The name of a computation.
*/
@JvmName("imfvvxbwmjnflmse")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The time field that is used in a computation.
*/
@JvmName("nrijmedurxmfnbik")
public suspend fun time(`value`: Output) {
this.time = value
}
/**
* @param value The value field that is used in a computation.
*/
@JvmName("cbafvnekjquwnjcw")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The ID for a computation.
*/
@JvmName("wlwantbfhriscigj")
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("jmyodblartbuesgf")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The time field that is used in a computation.
*/
@JvmName("jsyrsnhkxqcctctw")
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("qcldesjiaybgyncw")
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("hngtcoxrjgpiykkb")
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("mjqhyuvprsgdxiqf")
public suspend fun `value`(argument: suspend AnalysisMeasureFieldArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisMeasureFieldArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.`value` = mapped
}
internal fun build(): AnalysisPeriodOverPeriodComputationArgs =
AnalysisPeriodOverPeriodComputationArgs(
computationId = computationId ?: throw PulumiNullFieldException("computationId"),
name = name,
time = time,
`value` = `value`,
)
}