All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.quicksight.kotlin.inputs.ThemeFontArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy