Class: Aws::Comprehend::Types::ListTagsForResourceResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::ListTagsForResourceResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the given Amazon Comprehend resource you are querying.
-
#tags ⇒ Array<Types::Tag>
Tags associated with the Amazon Comprehend resource being queried.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the given Amazon Comprehend resource you are querying.
5872 5873 5874 5875 5876 5877 |
# File 'lib/aws-sdk-comprehend/types.rb', line 5872 class ListTagsForResourceResponse < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Tags associated with the Amazon Comprehend resource being queried. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with “Sales” as the key might be added to a resource to indicate its use by the sales department.
5872 5873 5874 5875 5876 5877 |
# File 'lib/aws-sdk-comprehend/types.rb', line 5872 class ListTagsForResourceResponse < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |