Class TagFilterBuilder


  • public class TagFilterBuilder
    extends com.google.common.collect.ImmutableMultimap.Builder<String,​String>
    You can use filters to limit the results when describing tags. For example, you could get only the tags for a particular resource type. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results. You can specify multiple filters (for example, limit the results to a specific resource type, and get only tags with values that contain the string database). The result includes information for a particular tag only if it matches all your filters. If there's no match, no special message is returned; the response is simply empty.

    Wildcards

    You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly one character. You can escape special characters using a backslash before the character. For example, a value of \*amazon\?\\ searches for the literal string *amazon?\.
    See Also:
    TagApi