Interface CfnTemplate.SheetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.SheetProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.SheetProperty
extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; SheetProperty sheetProperty = SheetProperty.builder() .name("name") .sheetId("sheetId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.SheetProperty
static final class
An implementation forCfnTemplate.SheetProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of a sheet.This name is displayed on the sheet's tab in the Amazon QuickSight console.
-
getSheetId
The unique identifier associated with a sheet. -
builder
- Returns:
- a
CfnTemplate.SheetProperty.Builder
ofCfnTemplate.SheetProperty
-