Invocation Config Args
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.
Properties
Link copied to clipboard
Optional. When set to true, any incremental tables will be fully refreshed.
Link copied to clipboard
Optional. The set of tags to include.
Link copied to clipboard
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.