
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisTableFieldCustomTextContent.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 AnalysisTableFieldCustomTextContent(
public val fontConfiguration: AnalysisFontConfiguration,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.AnalysisTableFieldCustomTextContent): AnalysisTableFieldCustomTextContent = AnalysisTableFieldCustomTextContent(
fontConfiguration = javaType.fontConfiguration().let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisFontConfiguration.Companion.toKotlin(args0)
}),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy