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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardTableFieldCustomTextContentArgs.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 DashboardTableFieldCustomTextContentArgs(
    public val fontConfiguration: Output,
    public val `value`: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardTableFieldCustomTextContentArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardTableFieldCustomTextContentArgs.builder()
            .fontConfiguration(fontConfiguration.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DashboardTableFieldCustomTextContentArgs].
 */
@PulumiTagMarker
public class DashboardTableFieldCustomTextContentArgsBuilder 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("bdaqaepivyrugcqp")
    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("tyydysjtltdmgrrf")
    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("jcfkwoghmmfooaqk")
    public suspend fun fontConfiguration(`value`: DashboardFontConfigurationArgs) {
        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("vbtyipcvxibbjhdi")
    public suspend fun fontConfiguration(argument: suspend DashboardFontConfigurationArgsBuilder.() -> Unit) {
        val toBeMapped = DashboardFontConfigurationArgsBuilder().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("tuvkqpfmahodpynu")
    public suspend fun `value`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy