Class: Aws::IAM::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb

Overview

A structure that represents user-provided metadata that can be associated with an IAM resource. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key name that can be used to look up or retrieve the associated value. For example, Department or Cost Center are common choices.

Returns:

  • (String)


11630
11631
11632
11633
11634
11635
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 11630

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

#valueString

The value associated with this tag. For example, tags with a key name of Department could have values such as Human Resources, Accounting, and Support. Tags with a key name of Cost Center might have values that consist of the number associated with the different cost centers in your company. Typically, many resources have tags with the same key name but with different values.

Returns:

  • (String)


11630
11631
11632
11633
11634
11635
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 11630

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