View Source aws_kendra (aws v0.3.1)
Link to this section Summary
Functions
Removes one or more documents from an index.
Adds one or more documents to an index.
Creates a data source that you use to with an Amazon Kendra index.
Creates a new Amazon Kendra index.
Creates a thesaurus for an index.
Deletes an Amazon Kendra data source.
Deletes an existing Amazon Kendra index.
Gets a list of tags associated with a specified resource.
Searches an active index.
Starts a synchronization job for a data source.
Stops a running synchronization job.
Adds the specified tag to the specified index, FAQ, or data source resource.
Link to this section Functions
Removes one or more documents from an index.
The documents must have been added with the BatchPutDocument
operation.
Adds one or more documents to an index.
The BatchPutDocument
operation enables you to ingest inline documents or a set of documents stored in an Amazon S3 bucket. Use this operation to ingest your text and unstructured text into an index, add custom attributes to the documents, and to attach an access control list to the documents added to the index.
Creates a data source that you use to with an Amazon Kendra index.
You specify a name, data source connector type and description for your data source. You also specify configuration information such as document metadata (author, source URI, and so on) and user context information.
CreateDataSource
is a synchronous operation. The operation returns 200 if the data source was successfully created. Otherwise, an exception is raised.
Creates a new Amazon Kendra index.
Index creation is an asynchronous operation. To determine if index creation has completed, check the Status
field returned from a call to . The Status
field is set to ACTIVE
when the index is ready to use.
Creates a thesaurus for an index.
The thesaurus contains a list of synonyms in Solr format.Deletes an Amazon Kendra data source.
An exception is not thrown if the data source is already being deleted. While the data source is being deleted, theStatus
field returned by a call to the operation is set to DELETING
. For more information, see Deleting Data Sources.
Deletes an existing Amazon Kendra index.
An exception is not thrown if the index is already being deleted. While the index is being deleted, theStatus
field returned by a call to the DescribeIndex
operation is set to DELETING
.
Gets a list of tags associated with a specified resource.
Indexes, FAQs, and data sources can have tags associated with them.Searches an active index.
Use this API to search your documents using query. The Query
operation enables to do faceted search and to filter results based on document attributes.
It also enables you to provide user context that Amazon Kendra uses to enforce document access control in the search results.
Amazon Kendra searches your index for text content and question and answer (FAQ) content. By default the response contains three types of results.
Relevant passages
Matching FAQs
Relevant documents
You can specify that the query return only one type of result using the QueryResultTypeConfig
parameter.
Starts a synchronization job for a data source.
If a synchronization job is already in progress, Amazon Kendra returns aResourceInUseException
exception.
Stops a running synchronization job.
You can't stop a scheduled synchronization job.Adds the specified tag to the specified index, FAQ, or data source resource.
If the tag already exists, the existing value is replaced with the new value.