WorkflowTemplateParameterArgs

data class WorkflowTemplateParameterArgs(val description: Output<String>? = null, val fields: Output<List<String>>, val name: Output<String>, val validation: Output<WorkflowTemplateParameterValidationArgs>? = null) : ConvertibleToJava<WorkflowTemplateParameterArgs>

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, fields: Output<List<String>>, name: Output<String>, validation: Output<WorkflowTemplateParameterValidationArgs>? = null)

Properties

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

Brief description of the parameter. Must not exceed 1024 characters.

Link copied to clipboard
val fields: Output<List<String>>

Required. Paths to all fields that the parameter replaces. A field is allowed to appear in at most one parameter's list of field paths. A field path is similar in syntax to a .sparkJob.args

Link copied to clipboard
val name: Output<String>

Required. Parameter name. The parameter name is used as the key, and paired with the parameter value, which are passed to the template when the template is instantiated. The name must contain only capital letters (A-Z), numbers (0-9), and underscores (_), and must not start with a number. The maximum length is 40 characters.

Link copied to clipboard

Validation rules to be applied to this parameter's value.

Functions

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