com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardDateTimeParameterArgs.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.DashboardDateTimeParameterArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* A date-time parameter.
* @property name A display name for the date-time parameter.
* @property values The values for the date-time parameter.
*/
public data class DashboardDateTimeParameterArgs(
public val name: Output,
public val values: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardDateTimeParameterArgs =
com.pulumi.awsnative.quicksight.inputs.DashboardDateTimeParameterArgs.builder()
.name(name.applyValue({ args0 -> args0 }))
.values(values.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [DashboardDateTimeParameterArgs].
*/
@PulumiTagMarker
public class DashboardDateTimeParameterArgsBuilder internal constructor() {
private var name: Output? = null
private var values: Output>? = null
/**
* @param value A display name for the date-time parameter.
*/
@JvmName("mgjnhyqnffkaentl")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The values for the date-time parameter.
*/
@JvmName("fdgarvdstapoovvo")
public suspend fun values(`value`: Output>) {
this.values = value
}
@JvmName("lwiipayslnulstoj")
public suspend fun values(vararg values: Output) {
this.values = Output.all(values.asList())
}
/**
* @param values The values for the date-time parameter.
*/
@JvmName("boaqotfofkewmklp")
public suspend fun values(values: List