![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateCustomParameterValuesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateCustomParameterValuesArgs.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.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property dateTimeValues A list of datetime-type parameter values.
* @property decimalValues A list of decimal-type parameter values.
* @property integerValues A list of integer-type parameter values.
* @property stringValues A list of string-type parameter values.
*/
public data class TemplateCustomParameterValuesArgs(
public val dateTimeValues: Output>? = null,
public val decimalValues: Output>? = null,
public val integerValues: Output>? = null,
public val stringValues: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateCustomParameterValuesArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateCustomParameterValuesArgs.builder()
.dateTimeValues(dateTimeValues?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.decimalValues(decimalValues?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.integerValues(integerValues?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.stringValues(stringValues?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [TemplateCustomParameterValuesArgs].
*/
@PulumiTagMarker
public class TemplateCustomParameterValuesArgsBuilder internal constructor() {
private var dateTimeValues: Output>? = null
private var decimalValues: Output>? = null
private var integerValues: Output>? = null
private var stringValues: Output>? = null
/**
* @param value A list of datetime-type parameter values.
*/
@JvmName("qkjswsbixqasryvh")
public suspend fun dateTimeValues(`value`: Output>) {
this.dateTimeValues = value
}
@JvmName("qwdrnwqbuljhtcso")
public suspend fun dateTimeValues(vararg values: Output) {
this.dateTimeValues = Output.all(values.asList())
}
/**
* @param values A list of datetime-type parameter values.
*/
@JvmName("wojxmtymvnksgttd")
public suspend fun dateTimeValues(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy