Class: Aws::Comprehend::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::TagResourceRequest
- 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 to which you want to associate the tags.
-
#tags ⇒ Array<Types::Tag>
Tags being associated with a specific Amazon Comprehend resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the given Amazon Comprehend resource to which you want to associate the tags.
8081 8082 8083 8084 8085 8086 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8081 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Tags being associated with a specific Amazon Comprehend resource. There can be a maximum of 50 tags (both existing and pending) associated with a specific resource.
8081 8082 8083 8084 8085 8086 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8081 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |