You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CostExplorer::Types::TagValues

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TagValues as input to an Aws::Client method, you can use a vanilla Hash:

{
  key: "TagKey",
  values: ["Value"],
  match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
}

The values that are available for a tag.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag.

Returns:

  • (String)

    The key for the tag.

#match_optionsArray<String>

The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions are EQUALS and CASE_SENSITIVE.

Returns:

  • (Array<String>)

    The match options that you can use to filter your results.

#valuesArray<String>

The specific value of the tag.

Returns:

  • (Array<String>)

    The specific value of the tag.