Class: Aws::Comprehend::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::Tag
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
When making an API call, you may pass Tag data as a hash:
{
key: "TagKey", # required
value: "TagValue",
}
A key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with the key-value pair ‘Department’:’Sales’ might be added to a resource to indicate its use by a particular department.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The initial 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 initial part of a key-value pair that forms a tag associated with a given resource. For instance, if you want to show which resources are used by which departments, you might use “Department” as the key portion of the pair, with multiple possible values such as “sales,” “legal,” and “administration.”
7400 7401 7402 7403 7404 7405 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 7400 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The second part of a key-value pair that forms a tag associated with a given resource. For instance, if you want to show which resources are used by which departments, you might use “Department” as the initial (key) portion of the pair, with a value of “sales” to indicate the sales department.
7400 7401 7402 7403 7404 7405 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 7400 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |