interface DashboardErrorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DashboardErrorProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DashboardErrorProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.DashboardErrorProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » DashboardErrorProperty |
Dashboard error.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const dashboardErrorProperty: quicksight.CfnDashboard.DashboardErrorProperty = {
message: 'message',
type: 'type',
violatedEntities: [{
path: 'path',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| message? | string | Message. |
| type? | string | Type. |
| violated | IResolvable | IResolvable | Entity[] | Lists the violated entities that caused the dashboard error. |
message?
Type:
string
(optional)
Message.
type?
Type:
string
(optional)
Type.
violatedEntities?
Type:
IResolvable | IResolvable | Entity[]
(optional)
Lists the violated entities that caused the dashboard error.

.NET
Java
Python
TypeScript