com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateEmptyVisualArgs.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.TemplateEmptyVisualArgs.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.collections.List
import kotlin.jvm.JvmName
/**
*
* @property actions The list of custom actions that are configured for a visual.
* @property dataSetIdentifier The data set that is used in the empty visual. Every visual requires a dataset to render.
* @property visualId The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.
*/
public data class TemplateEmptyVisualArgs(
public val actions: Output>? = null,
public val dataSetIdentifier: Output,
public val visualId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateEmptyVisualArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateEmptyVisualArgs.builder()
.actions(
actions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.dataSetIdentifier(dataSetIdentifier.applyValue({ args0 -> args0 }))
.visualId(visualId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TemplateEmptyVisualArgs].
*/
@PulumiTagMarker
public class TemplateEmptyVisualArgsBuilder internal constructor() {
private var actions: Output>? = null
private var dataSetIdentifier: Output? = null
private var visualId: Output? = null
/**
* @param value The list of custom actions that are configured for a visual.
*/
@JvmName("drkcriyuwaewhjjg")
public suspend fun actions(`value`: Output>) {
this.actions = value
}
@JvmName("gncicdemjcpndipy")
public suspend fun actions(vararg values: Output) {
this.actions = Output.all(values.asList())
}
/**
* @param values The list of custom actions that are configured for a visual.
*/
@JvmName("spytwaautancjxop")
public suspend fun actions(values: List