Class: Aws::Cloud9::Types::Tag

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

Overview

Metadata that is associated with Amazon Web Services resources. In particular, a name-value pair that can be associated with an Cloud9 development environment. There are two types of tags: user tags and system tags. A user tag is created by the user. A system tag is automatically created by Amazon Web Services services. A system tag is prefixed with "aws:" and cannot be modified by the user.

Constant Summary collapse

SENSITIVE =
[:key, :value]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name part of a tag.

Returns:

  • (String)


662
663
664
665
666
667
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 662

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

#valueString

The value part of a tag.

Returns:

  • (String)


662
663
664
665
666
667
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 662

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