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();
- See Also:
-
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.- See Also:
-
getCreatedTime
The time that this dashboard version was created.- See Also:
-
getDataSetArns
The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard.- See Also:
-
getDescription
Description.- See Also:
-
getErrors
Errors associated with this dashboard version.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.DashboardErrorProperty>- See Also:
-
getSheets
A list of the associated sheets with the unique identifier and name of each sheet.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.SheetProperty>- See Also:
-
getSourceEntityArn
Source entity ARN.- See Also:
-
getStatus
The HTTP status of the request.- See Also:
-
getThemeArn
The ARN of the theme associated with a version of the dashboard.- See Also:
-
getVersionNumber
Version number for this version of the dashboard.- See Also:
-
builder
-