![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateSheetControlInfoIconLabelOptionsArgs.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.TemplateSheetControlInfoIconLabelOptionsArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.TemplateVisibility
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property infoIconText The text content of info icon.
* @property visibility The visibility configuration of info icon label options.
*/
public data class TemplateSheetControlInfoIconLabelOptionsArgs(
public val infoIconText: Output? = null,
public val visibility: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateSheetControlInfoIconLabelOptionsArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateSheetControlInfoIconLabelOptionsArgs.builder()
.infoIconText(infoIconText?.applyValue({ args0 -> args0 }))
.visibility(visibility?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [TemplateSheetControlInfoIconLabelOptionsArgs].
*/
@PulumiTagMarker
public class TemplateSheetControlInfoIconLabelOptionsArgsBuilder internal constructor() {
private var infoIconText: Output? = null
private var visibility: Output? = null
/**
* @param value The text content of info icon.
*/
@JvmName("bithomjlkvfcpfmv")
public suspend fun infoIconText(`value`: Output) {
this.infoIconText = value
}
/**
* @param value The visibility configuration of info icon label options.
*/
@JvmName("tosctycwycpxsgrx")
public suspend fun visibility(`value`: Output) {
this.visibility = value
}
/**
* @param value The text content of info icon.
*/
@JvmName("ubomsyronxhivput")
public suspend fun infoIconText(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.infoIconText = mapped
}
/**
* @param value The visibility configuration of info icon label options.
*/
@JvmName("ffjgifuoychgbjrl")
public suspend fun visibility(`value`: TemplateVisibility?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.visibility = mapped
}
internal fun build(): TemplateSheetControlInfoIconLabelOptionsArgs =
TemplateSheetControlInfoIconLabelOptionsArgs(
infoIconText = infoIconText,
visibility = visibility,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy