Class: Aws::VoiceID::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::Tag
- Defined in:
- gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb
Overview
The tags used to organize, track, or control access for this resource. For example, { "tags": "key2":"value2" }.
Constant Summary collapse
- SENSITIVE =
[:key, :value]
Instance Attribute Summary collapse
-
#key ⇒ String
The first part of a key:value pair that forms a tag associated with a given resource.
-
#value ⇒ String
The second part of a key:value pair that forms a tag associated with a given resource.
Instance Attribute Details
#key ⇒ String
The first part of a key:value pair that forms a tag associated with a given resource. For example, in the tag 'Department':'Sales', the key is 'Department'.
2115 2116 2117 2118 2119 2120 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 2115 class Tag < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end |
#value ⇒ String
The second part of a key:value pair that forms a tag associated with a given resource. For example, in the tag 'Department':'Sales', the value is 'Sales'.
2115 2116 2117 2118 2119 2120 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 2115 class Tag < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end |