com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateSheetTextBox.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property content The content that is displayed in the text box.
* @property sheetTextBoxId The unique identifier for a text box. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.
*/
public data class TemplateSheetTextBox(
public val content: String? = null,
public val sheetTextBoxId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateSheetTextBox): TemplateSheetTextBox = TemplateSheetTextBox(
content = javaType.content().map({ args0 -> args0 }).orElse(null),
sheetTextBoxId = javaType.sheetTextBoxId(),
)
}
}