Workflow Template Parameter Args
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
Brief description of the parameter. Must not exceed 1024 characters.
Link copied to clipboard
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.