TAG_EXISTS
TAG_EXISTS:
name: { name } # required
tagsJson: { tagsJson } # optional
Description
The TAG_EXISTS operation checks if a tag with a specific name exists on a resource.
Parameters
name(Operation<Text|Bytes>, required):- The name of the tag to check for. Use
Textfor case-insensitive matching andBytesfor case-sensitive matching.
- The name of the tag to check for. Use
tagsJson(string, optional):- The name of the field containing the tags in JSON format.
- Defaults to
CA10__tagsJson__cif not specified.
Return Type
Example
Checking if a resource has an "Owner" tag (case-insensitive):
TAG_EXISTS:
name:
TEXT: "Owner"