Class: Aws::ServiceDiscovery::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::Tag
- Defined in:
- gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb
Overview
A custom key-value pair that's associated with a resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key identifier, or name, of the tag.
-
#value ⇒ String
The string value that's associated with the key of the tag.
Instance Attribute Details
#key ⇒ String
The key identifier, or name, of the tag.
3063 3064 3065 3066 3067 3068 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3063 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The string value that's associated with the key of the tag. You can set the value of a tag to an empty string, but you can't set the value of a tag to null.
3063 3064 3065 3066 3067 3068 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3063 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |