Class: Aws::Comprehend::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_arn: "ComprehendArn", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue",
},
],
}
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.
7433 7434 7435 7436 7437 7438 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 7433 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.
7433 7434 7435 7436 7437 7438 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 7433 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |