![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateCustomParameterValues.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 TemplateCustomParameterValues(
public val dateTimeValues: List? = null,
public val decimalValues: List? = null,
public val integerValues: List? = null,
public val stringValues: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateCustomParameterValues): TemplateCustomParameterValues = TemplateCustomParameterValues(
dateTimeValues = javaType.dateTimeValues().map({ args0 -> args0 }),
decimalValues = javaType.decimalValues().map({ args0 -> args0 }),
integerValues = javaType.integerValues().map({ args0 -> args0 }),
stringValues = javaType.stringValues().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy