Class: Aws::ResourceGroupsTaggingAPI::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroupsTaggingAPI::Types::Tag
- Defined in:
- gems/aws-sdk-resourcegroupstaggingapi/lib/aws-sdk-resourcegroupstaggingapi/types.rb
Overview
The metadata that you apply to Amazon Web Services resources to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. For more information, see Tagging Amazon Web Services Resources in the Amazon Web Services General Reference.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
One part of a key-value pair that makes up a tag.
-
#value ⇒ String
One part of a key-value pair that make up a tag.
Instance Attribute Details
#key ⇒ String
One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.
723 724 725 726 727 728 |
# File 'gems/aws-sdk-resourcegroupstaggingapi/lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 723 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
One part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). The value can be empty or null.
723 724 725 726 727 728 |
# File 'gems/aws-sdk-resourcegroupstaggingapi/lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 723 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |