conditions

@JvmName(name = "kbwmrlorglrjbenf")
suspend fun conditions(value: Output<Map<String, String>>)
@JvmName(name = "eqtytucgwddyroaf")
suspend fun conditions(value: Map<String, String>?)

Parameters

value

Map of (K, V) -> (field, string condition to be evaluated on the field) E.g., ("age", "age 18 && age < 60") entry triggers validation of field age with the given condition. Map entries will be ANDed during validation.


@JvmName(name = "yqygplxknuoqgaxh")
fun conditions(vararg values: Pair<String, String>)

Parameters

values

Map of (K, V) -> (field, string condition to be evaluated on the field) E.g., ("age", "age 18 && age < 60") entry triggers validation of field age with the given condition. Map entries will be ANDed during validation.