interface TemplateErrorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.TemplateErrorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_TemplateErrorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.TemplateErrorProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.TemplateErrorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » TemplateErrorProperty |
List of errors that occurred when the template version creation failed.
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/cfn-property-mixins';
const templateErrorProperty: quicksight.CfnTemplatePropsMixin.TemplateErrorProperty = {
message: 'message',
type: 'type',
violatedEntities: [{
path: 'path',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| message? | string | Description of the error type. |
| type? | string | Type of error. |
| violated | IResolvable | (IResolvable | Entity)[] | An error path that shows which entities caused the template error. |
message?
Type:
string
(optional)
Description of the error type.
type?
Type:
string
(optional)
Type of error.
violatedEntities?
Type:
IResolvable | (IResolvable | Entity)[]
(optional)
An error path that shows which entities caused the template error.

.NET
Go
Java
Python
TypeScript