Interface CfnTemplate.TemplateSourceEntityProperty

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

@Stability(Stable) public static interface CfnTemplate.TemplateSourceEntityProperty extends software.amazon.jsii.JsiiSerializable
The source entity of the template.

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.*;
 TemplateSourceEntityProperty templateSourceEntityProperty = TemplateSourceEntityProperty.builder()
         .sourceAnalysis(TemplateSourceAnalysisProperty.builder()
                 .arn("arn")
                 .dataSetReferences(List.of(DataSetReferenceProperty.builder()
                         .dataSetArn("dataSetArn")
                         .dataSetPlaceholder("dataSetPlaceholder")
                         .build()))
                 .build())
         .sourceTemplate(TemplateSourceTemplateProperty.builder()
                 .arn("arn")
                 .build())
         .build();