Class: Aws::Chime::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::Tag
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chime/types.rb
Overview
Describes a tag applied to a resource.
Constant Summary collapse
- SENSITIVE =
[:key, :value]
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the tag.
-
#value ⇒ String
The value of the tag.
Instance Attribute Details
#key ⇒ String
The key of the tag.
7913 7914 7915 7916 7917 7918 |
# File 'lib/aws-sdk-chime/types.rb', line 7913 class Tag < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end |
#value ⇒ String
The value of the tag.
7913 7914 7915 7916 7917 7918 |
# File 'lib/aws-sdk-chime/types.rb', line 7913 class Tag < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end |