package awsquicksight // 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 "github.com/aws/aws-cdk-go/awscdk" // // templateErrorProperty := &TemplateErrorProperty{ // Message: jsii.String("message"), // Type: jsii.String("type"), // ViolatedEntities: []interface{}{ // &EntityProperty{ // Path: jsii.String("path"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-templateerror.html // type CfnTemplate_TemplateErrorProperty struct { // Description of the error type. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-templateerror.html#cfn-quicksight-template-templateerror-message // Message *string `field:"optional" json:"message" yaml:"message"` // Type of error. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-templateerror.html#cfn-quicksight-template-templateerror-type // Type *string `field:"optional" json:"type" yaml:"type"` // An error path that shows which entities caused the template error. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-templateerror.html#cfn-quicksight-template-templateerror-violatedentities // ViolatedEntities interface{} `field:"optional" json:"violatedEntities" yaml:"violatedEntities"` }