interface DashboardErrorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DashboardErrorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DashboardErrorProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DashboardErrorProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.DashboardErrorProperty |
TypeScript | aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript