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();
- See Also:
-
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.- See Also:
-
getType
Type.- See Also:
-
getViolatedEntities
Lists the violated entities that caused the dashboard error.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.EntityProperty>- See Also:
-
builder
-