Skip to content

Commit 23658e5

Browse files
author
awstools
committed
feat(client-kendra): Amazon Kendra now provides a data source connector for Box. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-box.html
1 parent aeba101 commit 23658e5

File tree

6 files changed

+449
-99
lines changed

6 files changed

+449
-99
lines changed

clients/client-kendra/src/Kendra.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ export class Kendra extends KendraClient {
10221022
}
10231023

10241024
/**
1025-
* <p>Describes an existing Amazon Kendra index</p>
1025+
* <p>Describes an existing Amazon Kendra index.</p>
10261026
*/
10271027
public describeIndex(
10281028
args: DescribeIndexCommandInput,
@@ -1569,7 +1569,7 @@ export class Kendra extends KendraClient {
15691569
}
15701570

15711571
/**
1572-
* <p>Lists the Amazon Kendra indexes that you have created.</p>
1572+
* <p>Lists the Amazon Kendra indexes that you created.</p>
15731573
*/
15741574
public listIndices(args: ListIndicesCommandInput, options?: __HttpHandlerOptions): Promise<ListIndicesCommandOutput>;
15751575
public listIndices(args: ListIndicesCommandInput, cb: (err: any, data?: ListIndicesCommandOutput) => void): void;

clients/client-kendra/src/commands/DescribeIndexCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface DescribeIndexCommandInput extends DescribeIndexRequest {}
2222
export interface DescribeIndexCommandOutput extends DescribeIndexResponse, __MetadataBearer {}
2323

2424
/**
25-
* <p>Describes an existing Amazon Kendra index</p>
25+
* <p>Describes an existing Amazon Kendra index.</p>
2626
* @example
2727
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript

clients/client-kendra/src/commands/ListIndicesCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface ListIndicesCommandInput extends ListIndicesRequest {}
2222
export interface ListIndicesCommandOutput extends ListIndicesResponse, __MetadataBearer {}
2323

2424
/**
25-
* <p>Lists the Amazon Kendra indexes that you have created.</p>
25+
* <p>Lists the Amazon Kendra indexes that you created.</p>
2626
* @example
2727
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript

0 commit comments

Comments
 (0)