TemplateContentsArgs

data class TemplateContentsArgs(val imports: Output<List<ImportFileArgs>>? = null, val interpreter: Output<TemplateContentsInterpreter>? = null, val mainTemplate: Output<String>? = null, val schema: Output<String>? = null, val template: Output<String>? = null) : ConvertibleToJava<TemplateContentsArgs>

Files that make up the template contents of a template type.

Constructors

Link copied to clipboard
fun TemplateContentsArgs(imports: Output<List<ImportFileArgs>>? = null, interpreter: Output<TemplateContentsInterpreter>? = null, mainTemplate: Output<String>? = null, schema: Output<String>? = null, template: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TemplateContentsArgs

Properties

Link copied to clipboard
val imports: Output<List<ImportFileArgs>>? = null

Import files referenced by the main template.

Link copied to clipboard

Which interpreter (python or jinja) should be used during expansion.

Link copied to clipboard
val mainTemplate: Output<String>? = null

The filename of the mainTemplate

Link copied to clipboard
val schema: Output<String>? = null

The contents of the template schema.

Link copied to clipboard
val template: Output<String>? = null

The contents of the main template file.