interface AnalysisErrorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.AnalysisErrorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_AnalysisErrorProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.AnalysisErrorProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.AnalysisErrorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » AnalysisErrorProperty |
Analysis error.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const analysisErrorProperty: quicksight_mixins.CfnAnalysisPropsMixin.AnalysisErrorProperty = {
message: 'message',
type: 'type',
violatedEntities: [{
path: 'path',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| message? | string | The message associated with the analysis error. |
| type? | string | The type of the analysis error. |
| violated | IResolvable | (IResolvable | Entity)[] | Lists the violated entities that caused the analysis error. |
message?
Type:
string
(optional)
The message associated with the analysis error.
type?
Type:
string
(optional)
The type of the analysis error.
violatedEntities?
Type:
IResolvable | (IResolvable | Entity)[]
(optional)
Lists the violated entities that caused the analysis error.

.NET
Go
Java
Python
TypeScript