Class: Aws::ApplicationSignals::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::Tag
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
A key-value pair associated with a resource. Tags can help you organize and categorize your resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A string that you can use to assign a value.
-
#value ⇒ String
The value for the specified tag key.
Instance Attribute Details
#key ⇒ String
A string that you can use to assign a value. The combination of tag keys and values can help you organize and categorize your resources.
2335 2336 2337 2338 2339 2340 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2335 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |