Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.TemplateWaterfallVisualArgs.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 chartConfiguration The configuration for a waterfall visual.
* @property columnHierarchies The column hierarchy that is used during drill-downs and drill-ups.
* @property subtitle The subtitle that is displayed on the visual.
* @property title The title that is displayed on the visual.
* @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 TemplateWaterfallVisualArgs(
public val actions: Output>? = null,
public val chartConfiguration: Output? = null,
public val columnHierarchies: Output>? = null,
public val subtitle: Output? = null,
public val title: Output? = null,
public val visualId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateWaterfallVisualArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateWaterfallVisualArgs.builder()
.actions(
actions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.chartConfiguration(
chartConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.columnHierarchies(
columnHierarchies?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.subtitle(subtitle?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.title(title?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.visualId(visualId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TemplateWaterfallVisualArgs].
*/
@PulumiTagMarker
public class TemplateWaterfallVisualArgsBuilder internal constructor() {
private var actions: Output>? = null
private var chartConfiguration: Output? = null
private var columnHierarchies: Output>? = null
private var subtitle: Output? = null
private var title: Output? = null
private var visualId: Output? = null
/**
* @param value The list of custom actions that are configured for a visual.
*/
@JvmName("etpkoidnhtjrarqc")
public suspend fun actions(`value`: Output>) {
this.actions = value
}
@JvmName("bxcaawldskrqkfua")
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("vgbubbwbfdurbqjp")
public suspend fun actions(values: List