
com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardTableFieldCustomTextContent.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 DashboardTableFieldCustomTextContent(
public val fontConfiguration: DashboardFontConfiguration,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.DashboardTableFieldCustomTextContent): DashboardTableFieldCustomTextContent = DashboardTableFieldCustomTextContent(
fontConfiguration = javaType.fontConfiguration().let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardFontConfiguration.Companion.toKotlin(args0)
}),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy