Class: Aws::Kendra::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the index, FAQ, or data source to remove the tag from.
-
#tag_keys ⇒ Array<String>
A list of tag keys to remove from 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 remove the tag from.
9824 9825 9826 9827 9828 9829 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9824 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of tag keys to remove from the index, FAQ, or data source. If a tag key does not exist on the resource, it is ignored.
9824 9825 9826 9827 9828 9829 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9824 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |