Class: Aws::Kendra::Types::DeleteThesaurusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::DeleteThesaurusRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass DeleteThesaurusRequest data as a hash:
{
id: "ThesaurusId", # required
index_id: "IndexId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier of the thesaurus to delete.
-
#index_id ⇒ String
The identifier of the index associated with the thesaurus to delete.
Instance Attribute Details
#id ⇒ String
The identifier of the thesaurus to delete.
2792 2793 2794 2795 2796 2797 |
# File 'lib/aws-sdk-kendra/types.rb', line 2792 class DeleteThesaurusRequest < Struct.new( :id, :index_id) SENSITIVE = [] include Aws::Structure end |
#index_id ⇒ String
The identifier of the index associated with the thesaurus to delete.
2792 2793 2794 2795 2796 2797 |
# File 'lib/aws-sdk-kendra/types.rb', line 2792 class DeleteThesaurusRequest < Struct.new( :id, :index_id) SENSITIVE = [] include Aws::Structure end |