SelectionCondition class

Constructors

SelectionCondition({Input<List<SelectionConditionStringEqual>?>? stringEquals, Input<List<SelectionConditionStringLike>?>? stringLikes, Input<List<SelectionConditionStringNotEqual>?>? stringNotEquals, Input<List<SelectionConditionStringNotLike>?>? stringNotLikes})
Creates a new SelectionCondition. stringEquals 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. stringLikes 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. stringNotEquals 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. stringNotLikes 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.
const
SelectionCondition.fromMap(Map<String, dynamic> map)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringEquals → Input<List<SelectionConditionStringEqual>?>?
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.
final
stringLikes → Input<List<SelectionConditionStringLike>?>?
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.
final
stringNotEquals → Input<List<SelectionConditionStringNotEqual>?>?
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.
final
stringNotLikes → Input<List<SelectionConditionStringNotLike>?>?
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.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited