Interface CfnDashboard.DashboardVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DashboardVersionProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DashboardVersionProperty
extends software.amazon.jsii.JsiiSerializable
Dashboard version.
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.*;
DashboardVersionProperty dashboardVersionProperty = DashboardVersionProperty.builder()
.arn("arn")
.createdTime("createdTime")
.dataSetArns(List.of("dataSetArns"))
.description("description")
.errors(List.of(DashboardErrorProperty.builder()
.message("message")
.type("type")
.violatedEntities(List.of(EntityProperty.builder()
.path("path")
.build()))
.build()))
.sheets(List.of(SheetProperty.builder()
.name("name")
.sheetId("sheetId")
.build()))
.sourceEntityArn("sourceEntityArn")
.status("status")
.themeArn("themeArn")
.versionNumber(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.DashboardVersionPropertystatic final classAn implementation forCfnDashboard.DashboardVersionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetArn()The Amazon Resource Name (ARN) of the resource.default StringThe time that this dashboard version was created.The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard.default StringDescription.default ObjectErrors associated with this dashboard version.default ObjectA list of the associated sheets with the unique identifier and name of each sheet.default StringSource entity ARN.default StringThe HTTP status of the request.default StringThe ARN of the theme associated with a version of the dashboard.default NumberVersion number for this version of the dashboard.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The Amazon Resource Name (ARN) of the resource. -
getCreatedTime
The time that this dashboard version was created. -
getDataSetArns
The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard. -
getDescription
Description. -
getErrors
Errors associated with this dashboard version. -
getSheets
A list of the associated sheets with the unique identifier and name of each sheet. -
getSourceEntityArn
Source entity ARN. -
getStatus
The HTTP status of the request. -
getThemeArn
The ARN of the theme associated with a version of the dashboard. -
getVersionNumber
Version number for this version of the dashboard. -
builder
-