You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/client-kendra/src/Kendra.ts
+23-2Lines changed: 23 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -404,6 +404,9 @@ export class Kendra extends KendraClient {
404
404
* <p>The documents are indexed asynchronously. You can see the progress of
405
405
* the batch using Amazon Web Services CloudWatch. Any error messages related to processing
406
406
* the batch are sent to your Amazon Web Services CloudWatch log.</p>
407
+
* <p>For an example of ingesting inline documents using Python and Java SDKs,
408
+
* see <a href="https://docs.aws.amazon.com/kendra/latest/dg/in-adding-binary-doc.html">Adding
409
+
* files directly to an index</a>.</p>
407
410
*/
408
411
publicbatchPutDocument(
409
412
args: BatchPutDocumentCommandInput,
@@ -486,6 +489,10 @@ export class Kendra extends KendraClient {
486
489
* Otherwise, an exception is raised.</p>
487
490
* <p>Amazon S3 and <a href="https://docs.aws.amazon.com/kendra/latest/dg/data-source-custom.html">custom</a> data sources are
488
491
* the only supported data sources in the Amazon Web Services GovCloud (US-West) region.</p>
492
+
* <p>For an example of creating an index and data source using the Python SDK,
493
+
* see <a href="https://docs.aws.amazon.com/kendra/latest/dg/gs-python.html">Getting
494
+
* started with Python SDK</a>. For an example of creating an index and data
495
+
* source using the Java SDK, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/gs-java.html">Getting started with Java SDK</a>.</p>
489
496
*/
490
497
publiccreateDataSource(
491
498
args: CreateDataSourceCommandInput,
@@ -518,7 +525,8 @@ export class Kendra extends KendraClient {
518
525
519
526
/**
520
527
* <p>Creates an Amazon Kendra experience such as a search application. For more information
521
-
* on creating a search application experience, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/deploying-search-experience-no-code.html">Building a
528
+
* on creating a search application experience, including using the Python and Java SDKs,
529
+
* see <a href="https://docs.aws.amazon.com/kendra/latest/dg/deploying-search-experience-no-code.html">Building a
522
530
* search experience with no code</a>.</p>
523
531
*/
524
532
publiccreateExperience(
@@ -553,6 +561,9 @@ export class Kendra extends KendraClient {
553
561
/**
554
562
* <p>Creates an new set of frequently asked question (FAQ) questions and answers.</p>
555
563
* <p>Adding FAQs to an index is an asynchronous operation.</p>
564
+
* <p>For an example of adding an FAQ to an index using Python and Java SDKs,
565
+
* see <a href="https://docs.aws.amazon.com/kendra/latest/dg/in-creating-faq.html#using-faq-file">Using you
* <p>Creates an Amazon Kendra experience such as a search application. For more information
27
-
* on creating a search application experience, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/deploying-search-experience-no-code.html">Building a
27
+
* on creating a search application experience, including using the Python and Java SDKs,
28
+
* see <a href="https://docs.aws.amazon.com/kendra/latest/dg/deploying-search-experience-no-code.html">Building a
28
29
* search experience with no code</a>.</p>
29
30
* @example
30
31
* Use a bare-bones client and the command you need to make an API call.
0 commit comments