
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateCustomValuesConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property customValues
* @property includeNullValue Includes the null value in custom action parameter values.
*/
public data class TemplateCustomValuesConfiguration(
public val customValues: TemplateCustomParameterValues,
public val includeNullValue: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateCustomValuesConfiguration): TemplateCustomValuesConfiguration = TemplateCustomValuesConfiguration(
customValues = javaType.customValues().let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateCustomParameterValues.Companion.toKotlin(args0)
}),
includeNullValue = javaType.includeNullValue().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy