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