@aws-sdk/client-kendra 3.279.0 → 3.281.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/README.md +483 -0
  2. package/dist-types/commands/AssociateEntitiesToExperienceCommand.d.ts +6 -0
  3. package/dist-types/commands/AssociatePersonasToEntitiesCommand.d.ts +6 -0
  4. package/dist-types/commands/BatchDeleteDocumentCommand.d.ts +6 -0
  5. package/dist-types/commands/BatchGetDocumentStatusCommand.d.ts +6 -0
  6. package/dist-types/commands/BatchPutDocumentCommand.d.ts +6 -0
  7. package/dist-types/commands/ClearQuerySuggestionsCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateAccessControlConfigurationCommand.d.ts +6 -0
  9. package/dist-types/commands/CreateDataSourceCommand.d.ts +6 -0
  10. package/dist-types/commands/CreateExperienceCommand.d.ts +6 -0
  11. package/dist-types/commands/CreateFaqCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateIndexCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateQuerySuggestionsBlockListCommand.d.ts +6 -0
  14. package/dist-types/commands/CreateThesaurusCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteAccessControlConfigurationCommand.d.ts +6 -0
  16. package/dist-types/commands/DeleteDataSourceCommand.d.ts +6 -0
  17. package/dist-types/commands/DeleteExperienceCommand.d.ts +6 -0
  18. package/dist-types/commands/DeleteFaqCommand.d.ts +6 -0
  19. package/dist-types/commands/DeleteIndexCommand.d.ts +6 -0
  20. package/dist-types/commands/DeletePrincipalMappingCommand.d.ts +6 -0
  21. package/dist-types/commands/DeleteQuerySuggestionsBlockListCommand.d.ts +6 -0
  22. package/dist-types/commands/DeleteThesaurusCommand.d.ts +6 -0
  23. package/dist-types/commands/DescribeAccessControlConfigurationCommand.d.ts +6 -0
  24. package/dist-types/commands/DescribeDataSourceCommand.d.ts +6 -0
  25. package/dist-types/commands/DescribeExperienceCommand.d.ts +6 -0
  26. package/dist-types/commands/DescribeFaqCommand.d.ts +6 -0
  27. package/dist-types/commands/DescribeIndexCommand.d.ts +6 -0
  28. package/dist-types/commands/DescribePrincipalMappingCommand.d.ts +6 -0
  29. package/dist-types/commands/DescribeQuerySuggestionsBlockListCommand.d.ts +6 -0
  30. package/dist-types/commands/DescribeQuerySuggestionsConfigCommand.d.ts +6 -0
  31. package/dist-types/commands/DescribeThesaurusCommand.d.ts +6 -0
  32. package/dist-types/commands/DisassociateEntitiesFromExperienceCommand.d.ts +6 -0
  33. package/dist-types/commands/DisassociatePersonasFromEntitiesCommand.d.ts +6 -0
  34. package/dist-types/commands/GetQuerySuggestionsCommand.d.ts +6 -0
  35. package/dist-types/commands/GetSnapshotsCommand.d.ts +6 -0
  36. package/dist-types/commands/ListAccessControlConfigurationsCommand.d.ts +6 -0
  37. package/dist-types/commands/ListDataSourceSyncJobsCommand.d.ts +6 -0
  38. package/dist-types/commands/ListDataSourcesCommand.d.ts +6 -0
  39. package/dist-types/commands/ListEntityPersonasCommand.d.ts +6 -0
  40. package/dist-types/commands/ListExperienceEntitiesCommand.d.ts +6 -0
  41. package/dist-types/commands/ListExperiencesCommand.d.ts +6 -0
  42. package/dist-types/commands/ListFaqsCommand.d.ts +6 -0
  43. package/dist-types/commands/ListGroupsOlderThanOrderingIdCommand.d.ts +6 -0
  44. package/dist-types/commands/ListIndicesCommand.d.ts +6 -0
  45. package/dist-types/commands/ListQuerySuggestionsBlockListsCommand.d.ts +6 -0
  46. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  47. package/dist-types/commands/ListThesauriCommand.d.ts +6 -0
  48. package/dist-types/commands/PutPrincipalMappingCommand.d.ts +6 -0
  49. package/dist-types/commands/QueryCommand.d.ts +6 -0
  50. package/dist-types/commands/StartDataSourceSyncJobCommand.d.ts +6 -0
  51. package/dist-types/commands/StopDataSourceSyncJobCommand.d.ts +6 -0
  52. package/dist-types/commands/SubmitFeedbackCommand.d.ts +6 -0
  53. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  54. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  55. package/dist-types/commands/UpdateAccessControlConfigurationCommand.d.ts +6 -0
  56. package/dist-types/commands/UpdateDataSourceCommand.d.ts +6 -0
  57. package/dist-types/commands/UpdateExperienceCommand.d.ts +6 -0
  58. package/dist-types/commands/UpdateIndexCommand.d.ts +6 -0
  59. package/dist-types/commands/UpdateQuerySuggestionsBlockListCommand.d.ts +6 -0
  60. package/dist-types/commands/UpdateQuerySuggestionsConfigCommand.d.ts +6 -0
  61. package/dist-types/commands/UpdateThesaurusCommand.d.ts +6 -0
  62. package/package.json +3 -3
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { CreateFaqRequest, CreateFaqResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateFaqCommand}.
8
+ */
6
9
  export interface CreateFaqCommandInput extends CreateFaqRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateFaqCommand}.
13
+ */
8
14
  export interface CreateFaqCommandOutput extends CreateFaqResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { CreateIndexRequest, CreateIndexResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateIndexCommand}.
8
+ */
6
9
  export interface CreateIndexCommandInput extends CreateIndexRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateIndexCommand}.
13
+ */
8
14
  export interface CreateIndexCommandOutput extends CreateIndexResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { CreateQuerySuggestionsBlockListRequest, CreateQuerySuggestionsBlockListResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateQuerySuggestionsBlockListCommand}.
8
+ */
6
9
  export interface CreateQuerySuggestionsBlockListCommandInput extends CreateQuerySuggestionsBlockListRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateQuerySuggestionsBlockListCommand}.
13
+ */
8
14
  export interface CreateQuerySuggestionsBlockListCommandOutput extends CreateQuerySuggestionsBlockListResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { CreateThesaurusRequest, CreateThesaurusResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateThesaurusCommand}.
8
+ */
6
9
  export interface CreateThesaurusCommandInput extends CreateThesaurusRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateThesaurusCommand}.
13
+ */
8
14
  export interface CreateThesaurusCommandOutput extends CreateThesaurusResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeleteAccessControlConfigurationRequest, DeleteAccessControlConfigurationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteAccessControlConfigurationCommand}.
8
+ */
6
9
  export interface DeleteAccessControlConfigurationCommandInput extends DeleteAccessControlConfigurationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteAccessControlConfigurationCommand}.
13
+ */
8
14
  export interface DeleteAccessControlConfigurationCommandOutput extends DeleteAccessControlConfigurationResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeleteDataSourceRequest } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteDataSourceCommand}.
8
+ */
6
9
  export interface DeleteDataSourceCommandInput extends DeleteDataSourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteDataSourceCommand}.
13
+ */
8
14
  export interface DeleteDataSourceCommandOutput extends __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeleteExperienceRequest, DeleteExperienceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteExperienceCommand}.
8
+ */
6
9
  export interface DeleteExperienceCommandInput extends DeleteExperienceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteExperienceCommand}.
13
+ */
8
14
  export interface DeleteExperienceCommandOutput extends DeleteExperienceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeleteFaqRequest } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteFaqCommand}.
8
+ */
6
9
  export interface DeleteFaqCommandInput extends DeleteFaqRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteFaqCommand}.
13
+ */
8
14
  export interface DeleteFaqCommandOutput extends __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeleteIndexRequest } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteIndexCommand}.
8
+ */
6
9
  export interface DeleteIndexCommandInput extends DeleteIndexRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteIndexCommand}.
13
+ */
8
14
  export interface DeleteIndexCommandOutput extends __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeletePrincipalMappingRequest } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeletePrincipalMappingCommand}.
8
+ */
6
9
  export interface DeletePrincipalMappingCommandInput extends DeletePrincipalMappingRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeletePrincipalMappingCommand}.
13
+ */
8
14
  export interface DeletePrincipalMappingCommandOutput extends __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeleteQuerySuggestionsBlockListRequest } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteQuerySuggestionsBlockListCommand}.
8
+ */
6
9
  export interface DeleteQuerySuggestionsBlockListCommandInput extends DeleteQuerySuggestionsBlockListRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteQuerySuggestionsBlockListCommand}.
13
+ */
8
14
  export interface DeleteQuerySuggestionsBlockListCommandOutput extends __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DeleteThesaurusRequest } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteThesaurusCommand}.
8
+ */
6
9
  export interface DeleteThesaurusCommandInput extends DeleteThesaurusRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteThesaurusCommand}.
13
+ */
8
14
  export interface DeleteThesaurusCommandOutput extends __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeAccessControlConfigurationRequest, DescribeAccessControlConfigurationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeAccessControlConfigurationCommand}.
8
+ */
6
9
  export interface DescribeAccessControlConfigurationCommandInput extends DescribeAccessControlConfigurationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeAccessControlConfigurationCommand}.
13
+ */
8
14
  export interface DescribeAccessControlConfigurationCommandOutput extends DescribeAccessControlConfigurationResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeDataSourceRequest, DescribeDataSourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeDataSourceCommand}.
8
+ */
6
9
  export interface DescribeDataSourceCommandInput extends DescribeDataSourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeDataSourceCommand}.
13
+ */
8
14
  export interface DescribeDataSourceCommandOutput extends DescribeDataSourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeExperienceRequest, DescribeExperienceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeExperienceCommand}.
8
+ */
6
9
  export interface DescribeExperienceCommandInput extends DescribeExperienceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeExperienceCommand}.
13
+ */
8
14
  export interface DescribeExperienceCommandOutput extends DescribeExperienceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeFaqRequest, DescribeFaqResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeFaqCommand}.
8
+ */
6
9
  export interface DescribeFaqCommandInput extends DescribeFaqRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeFaqCommand}.
13
+ */
8
14
  export interface DescribeFaqCommandOutput extends DescribeFaqResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeIndexRequest, DescribeIndexResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeIndexCommand}.
8
+ */
6
9
  export interface DescribeIndexCommandInput extends DescribeIndexRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeIndexCommand}.
13
+ */
8
14
  export interface DescribeIndexCommandOutput extends DescribeIndexResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribePrincipalMappingRequest, DescribePrincipalMappingResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribePrincipalMappingCommand}.
8
+ */
6
9
  export interface DescribePrincipalMappingCommandInput extends DescribePrincipalMappingRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribePrincipalMappingCommand}.
13
+ */
8
14
  export interface DescribePrincipalMappingCommandOutput extends DescribePrincipalMappingResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeQuerySuggestionsBlockListRequest, DescribeQuerySuggestionsBlockListResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeQuerySuggestionsBlockListCommand}.
8
+ */
6
9
  export interface DescribeQuerySuggestionsBlockListCommandInput extends DescribeQuerySuggestionsBlockListRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeQuerySuggestionsBlockListCommand}.
13
+ */
8
14
  export interface DescribeQuerySuggestionsBlockListCommandOutput extends DescribeQuerySuggestionsBlockListResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeQuerySuggestionsConfigRequest, DescribeQuerySuggestionsConfigResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeQuerySuggestionsConfigCommand}.
8
+ */
6
9
  export interface DescribeQuerySuggestionsConfigCommandInput extends DescribeQuerySuggestionsConfigRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeQuerySuggestionsConfigCommand}.
13
+ */
8
14
  export interface DescribeQuerySuggestionsConfigCommandOutput extends DescribeQuerySuggestionsConfigResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DescribeThesaurusRequest, DescribeThesaurusResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeThesaurusCommand}.
8
+ */
6
9
  export interface DescribeThesaurusCommandInput extends DescribeThesaurusRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeThesaurusCommand}.
13
+ */
8
14
  export interface DescribeThesaurusCommandOutput extends DescribeThesaurusResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DisassociateEntitiesFromExperienceRequest, DisassociateEntitiesFromExperienceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DisassociateEntitiesFromExperienceCommand}.
8
+ */
6
9
  export interface DisassociateEntitiesFromExperienceCommandInput extends DisassociateEntitiesFromExperienceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DisassociateEntitiesFromExperienceCommand}.
13
+ */
8
14
  export interface DisassociateEntitiesFromExperienceCommandOutput extends DisassociateEntitiesFromExperienceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { DisassociatePersonasFromEntitiesRequest, DisassociatePersonasFromEntitiesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DisassociatePersonasFromEntitiesCommand}.
8
+ */
6
9
  export interface DisassociatePersonasFromEntitiesCommandInput extends DisassociatePersonasFromEntitiesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DisassociatePersonasFromEntitiesCommand}.
13
+ */
8
14
  export interface DisassociatePersonasFromEntitiesCommandOutput extends DisassociatePersonasFromEntitiesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { GetQuerySuggestionsRequest, GetQuerySuggestionsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetQuerySuggestionsCommand}.
8
+ */
6
9
  export interface GetQuerySuggestionsCommandInput extends GetQuerySuggestionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetQuerySuggestionsCommand}.
13
+ */
8
14
  export interface GetQuerySuggestionsCommandOutput extends GetQuerySuggestionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { GetSnapshotsRequest, GetSnapshotsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetSnapshotsCommand}.
8
+ */
6
9
  export interface GetSnapshotsCommandInput extends GetSnapshotsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetSnapshotsCommand}.
13
+ */
8
14
  export interface GetSnapshotsCommandOutput extends GetSnapshotsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListAccessControlConfigurationsRequest, ListAccessControlConfigurationsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListAccessControlConfigurationsCommand}.
8
+ */
6
9
  export interface ListAccessControlConfigurationsCommandInput extends ListAccessControlConfigurationsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListAccessControlConfigurationsCommand}.
13
+ */
8
14
  export interface ListAccessControlConfigurationsCommandOutput extends ListAccessControlConfigurationsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListDataSourceSyncJobsRequest, ListDataSourceSyncJobsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListDataSourceSyncJobsCommand}.
8
+ */
6
9
  export interface ListDataSourceSyncJobsCommandInput extends ListDataSourceSyncJobsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListDataSourceSyncJobsCommand}.
13
+ */
8
14
  export interface ListDataSourceSyncJobsCommandOutput extends ListDataSourceSyncJobsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListDataSourcesCommand}.
8
+ */
6
9
  export interface ListDataSourcesCommandInput extends ListDataSourcesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListDataSourcesCommand}.
13
+ */
8
14
  export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListEntityPersonasRequest, ListEntityPersonasResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListEntityPersonasCommand}.
8
+ */
6
9
  export interface ListEntityPersonasCommandInput extends ListEntityPersonasRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListEntityPersonasCommand}.
13
+ */
8
14
  export interface ListEntityPersonasCommandOutput extends ListEntityPersonasResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListExperienceEntitiesRequest, ListExperienceEntitiesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListExperienceEntitiesCommand}.
8
+ */
6
9
  export interface ListExperienceEntitiesCommandInput extends ListExperienceEntitiesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListExperienceEntitiesCommand}.
13
+ */
8
14
  export interface ListExperienceEntitiesCommandOutput extends ListExperienceEntitiesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListExperiencesRequest, ListExperiencesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListExperiencesCommand}.
8
+ */
6
9
  export interface ListExperiencesCommandInput extends ListExperiencesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListExperiencesCommand}.
13
+ */
8
14
  export interface ListExperiencesCommandOutput extends ListExperiencesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListFaqsRequest, ListFaqsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListFaqsCommand}.
8
+ */
6
9
  export interface ListFaqsCommandInput extends ListFaqsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListFaqsCommand}.
13
+ */
8
14
  export interface ListFaqsCommandOutput extends ListFaqsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListGroupsOlderThanOrderingIdRequest, ListGroupsOlderThanOrderingIdResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListGroupsOlderThanOrderingIdCommand}.
8
+ */
6
9
  export interface ListGroupsOlderThanOrderingIdCommandInput extends ListGroupsOlderThanOrderingIdRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListGroupsOlderThanOrderingIdCommand}.
13
+ */
8
14
  export interface ListGroupsOlderThanOrderingIdCommandOutput extends ListGroupsOlderThanOrderingIdResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListIndicesRequest, ListIndicesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListIndicesCommand}.
8
+ */
6
9
  export interface ListIndicesCommandInput extends ListIndicesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListIndicesCommand}.
13
+ */
8
14
  export interface ListIndicesCommandOutput extends ListIndicesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListQuerySuggestionsBlockListsRequest, ListQuerySuggestionsBlockListsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListQuerySuggestionsBlockListsCommand}.
8
+ */
6
9
  export interface ListQuerySuggestionsBlockListsCommandInput extends ListQuerySuggestionsBlockListsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListQuerySuggestionsBlockListsCommand}.
13
+ */
8
14
  export interface ListQuerySuggestionsBlockListsCommandOutput extends ListQuerySuggestionsBlockListsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListTagsForResourceCommand}.
8
+ */
6
9
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListTagsForResourceCommand}.
13
+ */
8
14
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { ListThesauriRequest, ListThesauriResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListThesauriCommand}.
8
+ */
6
9
  export interface ListThesauriCommandInput extends ListThesauriRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListThesauriCommand}.
13
+ */
8
14
  export interface ListThesauriCommandOutput extends ListThesauriResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { PutPrincipalMappingRequest } from "../models/models_0";
6
+ /**
7
+ * The input for {@link PutPrincipalMappingCommand}.
8
+ */
6
9
  export interface PutPrincipalMappingCommandInput extends PutPrincipalMappingRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link PutPrincipalMappingCommand}.
13
+ */
8
14
  export interface PutPrincipalMappingCommandOutput extends __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
5
5
  import { QueryRequest, QueryResult } from "../models/models_1";
6
+ /**
7
+ * The input for {@link QueryCommand}.
8
+ */
6
9
  export interface QueryCommandInput extends QueryRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link QueryCommand}.
13
+ */
8
14
  export interface QueryCommandOutput extends QueryResult, __MetadataBearer {
9
15
  }
10
16
  /**