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

com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateSheetTextBox.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@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(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy