com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardFontWeightArgs.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.DashboardFontWeightArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.DashboardFontWeightName
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property name The lexical name for the level of boldness of the text display.
*/
public data class DashboardFontWeightArgs(
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardFontWeightArgs =
com.pulumi.awsnative.quicksight.inputs.DashboardFontWeightArgs.builder()
.name(name?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [DashboardFontWeightArgs].
*/
@PulumiTagMarker
public class DashboardFontWeightArgsBuilder internal constructor() {
private var name: Output? = null
/**
* @param value The lexical name for the level of boldness of the text display.
*/
@JvmName("fvsytxoeqtancovc")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The lexical name for the level of boldness of the text display.
*/
@JvmName("olwcyvbpiugeorhj")
public suspend fun name(`value`: DashboardFontWeightName?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): DashboardFontWeightArgs = DashboardFontWeightArgs(
name = name,
)
}