InvocationConfigArgs

data class InvocationConfigArgs(val fullyRefreshIncrementalTablesEnabled: Output<Boolean>? = null, val includedTags: Output<List<String>>? = null, val includedTargets: Output<List<TargetArgs>>? = null, val transitiveDependenciesIncluded: Output<Boolean>? = null, val transitiveDependentsIncluded: Output<Boolean>? = null) : ConvertibleToJava<InvocationConfigArgs>

Includes various configuration options for a workflow invocation. If both included_targets and included_tags are unset, all actions will be included.

Constructors

Link copied to clipboard
fun InvocationConfigArgs(fullyRefreshIncrementalTablesEnabled: Output<Boolean>? = null, includedTags: Output<List<String>>? = null, includedTargets: Output<List<TargetArgs>>? = null, transitiveDependenciesIncluded: Output<Boolean>? = null, transitiveDependentsIncluded: Output<Boolean>? = null)

Functions

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

Properties

Link copied to clipboard

Optional. When set to true, any incremental tables will be fully refreshed.

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

Optional. The set of tags to include.

Link copied to clipboard
val includedTargets: Output<List<TargetArgs>>? = null

Optional. The set of action identifiers to include.

Link copied to clipboard

Optional. When set to true, transitive dependencies of included actions will be executed.

Link copied to clipboard

Optional. When set to true, transitive dependents of included actions will be executed.