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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.DashboardVersionProperty
static final class
An implementation forCfnDashboard.DashboardVersionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
getArn()
The Amazon Resource Name (ARN) of the resource.default String
The 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 String
Description.default Object
Errors associated with this dashboard version.default Object
A list of the associated sheets with the unique identifier and name of each sheet.default String
Source entity ARN.default String
The HTTP status of the request.default String
The ARN of the theme associated with a version of the dashboard.default Number
Version 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.- See Also:
-
getSheets
A list of the associated sheets with the unique identifier and name of each sheet.- 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
-