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

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

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

package com.pulumi.awsnative.quicksight.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * 

A sheet, which is an object that contains a set of visuals that * are viewed together on one page in Amazon QuickSight. Every analysis and dashboard * contains at least one sheet. Each sheet contains at least one visualization widget, for * example a chart, pivot table, or narrative insight. Sheets can be associated with other * components, such as controls, filters, and so on.

* @property name

The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight * console.

* @property sheetId

The unique identifier associated with a sheet.

*/ public data class AnalysisSheet( public val name: String? = null, public val sheetId: String? = null, ) { public companion object { public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.AnalysisSheet): AnalysisSheet = AnalysisSheet( name = javaType.name().map({ args0 -> args0 }).orElse(null), sheetId = javaType.sheetId().map({ args0 -> args0 }).orElse(null), ) } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy