com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisPivotTableCellConditionalFormattingArgs.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.AnalysisPivotTableCellConditionalFormattingArgs.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 fieldId The field ID of the cell for conditional formatting.
* @property scope The scope of the cell for conditional formatting.
* @property scopes A list of cell scopes for conditional formatting.
* @property textFormat The text format of the cell for conditional formatting.
*/
public data class AnalysisPivotTableCellConditionalFormattingArgs(
public val fieldId: Output,
public val scope: Output? = null,
public val scopes: Output>? = null,
public val textFormat: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisPivotTableCellConditionalFormattingArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisPivotTableCellConditionalFormattingArgs.builder()
.fieldId(fieldId.applyValue({ args0 -> args0 }))
.scope(scope?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.scopes(scopes?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.textFormat(textFormat?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AnalysisPivotTableCellConditionalFormattingArgs].
*/
@PulumiTagMarker
public class AnalysisPivotTableCellConditionalFormattingArgsBuilder internal constructor() {
private var fieldId: Output? = null
private var scope: Output? = null
private var scopes: Output>? = null
private var textFormat: Output? = null
/**
* @param value The field ID of the cell for conditional formatting.
*/
@JvmName("xskhxndxpawrynra")
public suspend fun fieldId(`value`: Output) {
this.fieldId = value
}
/**
* @param value The scope of the cell for conditional formatting.
*/
@JvmName("edyhdmsgricxdupe")
public suspend fun scope(`value`: Output) {
this.scope = value
}
/**
* @param value A list of cell scopes for conditional formatting.
*/
@JvmName("nmqatvmnqvtwsveh")
public suspend fun scopes(`value`: Output>) {
this.scopes = value
}
@JvmName("xkdtjehgcucsewtn")
public suspend fun scopes(vararg values: Output) {
this.scopes = Output.all(values.asList())
}
/**
* @param values A list of cell scopes for conditional formatting.
*/
@JvmName("qimnvmbwtxkaoqcy")
public suspend fun scopes(values: List