com.pulumi.awsnative.quicksight.kotlin.inputs.ThemeFontArgs.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.ThemeFontArgs.builder
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 fontFamily Determines the font family settings.
*/
public data class ThemeFontArgs(
public val fontFamily: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.ThemeFontArgs =
com.pulumi.awsnative.quicksight.inputs.ThemeFontArgs.builder()
.fontFamily(fontFamily?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ThemeFontArgs].
*/
@PulumiTagMarker
public class ThemeFontArgsBuilder internal constructor() {
private var fontFamily: Output? = null
/**
* @param value Determines the font family settings.
*/
@JvmName("diqentenawwmjamk")
public suspend fun fontFamily(`value`: Output) {
this.fontFamily = value
}
/**
* @param value Determines the font family settings.
*/
@JvmName("livqsbocugsbunsf")
public suspend fun fontFamily(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fontFamily = mapped
}
internal fun build(): ThemeFontArgs = ThemeFontArgs(
fontFamily = fontFamily,
)
}