Class: Aws::Kendra::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::TagResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_arn: "AmazonResourceName", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the index, FAQ, or data source to tag.
-
#tags ⇒ Array<Types::Tag>
A list of tag keys to add to the index, FAQ, or data source.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the index, FAQ, or data source to tag.
6079 6080 6081 6082 6083 6084 |
# File 'lib/aws-sdk-kendra/types.rb', line 6079 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tag keys to add to the index, FAQ, or data source. If a tag already exists, the existing value is replaced with the new value.
6079 6080 6081 6082 6083 6084 |
# File 'lib/aws-sdk-kendra/types.rb', line 6079 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |