Interface CfnDashboard.DashboardErrorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DashboardErrorProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DashboardErrorProperty
extends software.amazon.jsii.JsiiSerializable
Dashboard error.
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.*;
DashboardErrorProperty dashboardErrorProperty = DashboardErrorProperty.builder()
.message("message")
.type("type")
.violatedEntities(List.of(EntityProperty.builder()
.path("path")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.DashboardErrorPropertystatic final classAn implementation forCfnDashboard.DashboardErrorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMessage
Message. -
getType
Type. -
getViolatedEntities
Lists the violated entities that caused the dashboard error. -
builder
-