Class: Aws::ApplicationDiscoveryService::Types::Tag

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-applicationdiscoveryservice/types.rb

Overview

Note:

When making an API call, you may pass Tag data as a hash:

{
  key: "TagKey", # required
  value: "TagValue", # required
}

Metadata that help you categorize IT assets.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The type of tag on which to filter.

Returns:

  • (String)


1223
1224
1225
1226
1227
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1223

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

A value for a tag key on which to filter.

Returns:

  • (String)


1223
1224
1225
1226
1227
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1223

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end