RegexValidationArgs

data class RegexValidationArgs(val regexes: Output<List<String>>) : ConvertibleToJava<RegexValidationArgs>

Validation based on regular expressions.

Constructors

Link copied to clipboard
fun RegexValidationArgs(regexes: Output<List<String>>)

Functions

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

Properties

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

RE2 regular expressions used to validate the parameter's value. The value must match the regex in its entirety (substring matches are not sufficient).