Interface CfnTemplate.TemplateErrorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.TemplateErrorProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.TemplateErrorProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 TemplateErrorProperty templateErrorProperty = TemplateErrorProperty.builder()
         .message("message")
         .type("type")
         .violatedEntities(List.of(EntityProperty.builder()
                 .path("path")
                 .build()))
         .build();
 

See Also: