SelectionConditionArgs

data class SelectionConditionArgs(val stringEquals: Output<List<SelectionConditionStringEqualArgs>>? = null, val stringLikes: Output<List<SelectionConditionStringLikeArgs>>? = null, val stringNotEquals: Output<List<SelectionConditionStringNotEqualArgs>>? = null, val stringNotLikes: Output<List<SelectionConditionStringNotLikeArgs>>? = null) : ConvertibleToJava<SelectionConditionArgs>

Constructors

Link copied to clipboard
constructor(stringEquals: Output<List<SelectionConditionStringEqualArgs>>? = null, stringLikes: Output<List<SelectionConditionStringLikeArgs>>? = null, stringNotEquals: Output<List<SelectionConditionStringNotEqualArgs>>? = null, stringNotLikes: Output<List<SelectionConditionStringNotLikeArgs>>? = null)

Properties

Link copied to clipboard

Filters the values of your tagged resources for only those resources that you tagged with the same value. Also called "exact matching". See below for details.

Link copied to clipboard

Filters the values of your tagged resources for matching tag values with the use of a wildcard character (*) anywhere in the string. For example, prod* or *rod* matches the tag value production. See below for details.

Link copied to clipboard

Filters the values of your tagged resources for only those resources that you tagged that do not have the same value. Also called "negated matching". See below for details.

Link copied to clipboard

Filters the values of your tagged resources for non-matching tag values with the use of a wildcard character (*) anywhere in the string. See below for details.

Functions

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