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

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

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.inputs

import com.pulumi.awsnative.quicksight.inputs.TemplateTableFieldCustomTextContentArgs.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.jvm.JvmName

/**
 *
 * @property fontConfiguration The font configuration of the custom text content for the table URL link content.
 * @property value The string value of the custom text content for the table URL link content.
 */
public data class TemplateTableFieldCustomTextContentArgs(
    public val fontConfiguration: Output,
    public val `value`: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateTableFieldCustomTextContentArgs =
        com.pulumi.awsnative.quicksight.inputs.TemplateTableFieldCustomTextContentArgs.builder()
            .fontConfiguration(fontConfiguration.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TemplateTableFieldCustomTextContentArgs].
 */
@PulumiTagMarker
public class TemplateTableFieldCustomTextContentArgsBuilder internal constructor() {
    private var fontConfiguration: Output? = null

    private var `value`: Output? = null

    /**
     * @param value The font configuration of the custom text content for the table URL link content.
     */
    @JvmName("wcjyxsrgifjkfkux")
    public suspend fun fontConfiguration(`value`: Output) {
        this.fontConfiguration = value
    }

    /**
     * @param value The string value of the custom text content for the table URL link content.
     */
    @JvmName("huqhbqbetgkjdkiy")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value The font configuration of the custom text content for the table URL link content.
     */
    @JvmName("mrgrehrtfqldgnrt")
    public suspend fun fontConfiguration(`value`: TemplateFontConfigurationArgs) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.fontConfiguration = mapped
    }

    /**
     * @param argument The font configuration of the custom text content for the table URL link content.
     */
    @JvmName("bmtddiewpqowwcca")
    public suspend fun fontConfiguration(argument: suspend TemplateFontConfigurationArgsBuilder.() -> Unit) {
        val toBeMapped = TemplateFontConfigurationArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.fontConfiguration = mapped
    }

    /**
     * @param value The string value of the custom text content for the table URL link content.
     */
    @JvmName("yvkekumuvxwymash")
    public suspend fun `value`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): TemplateTableFieldCustomTextContentArgs =
        TemplateTableFieldCustomTextContentArgs(
            fontConfiguration = fontConfiguration ?: throw PulumiNullFieldException("fontConfiguration"),
            `value` = `value`,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy