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: