@aws-sdk/client-kendra 3.300.0 → 3.301.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 (61) hide show
  1. package/dist-types/commands/AssociateEntitiesToExperienceCommand.d.ts +3 -3
  2. package/dist-types/commands/AssociatePersonasToEntitiesCommand.d.ts +3 -3
  3. package/dist-types/commands/BatchDeleteDocumentCommand.d.ts +3 -3
  4. package/dist-types/commands/BatchGetDocumentStatusCommand.d.ts +7 -7
  5. package/dist-types/commands/BatchPutDocumentCommand.d.ts +18 -18
  6. package/dist-types/commands/ClearQuerySuggestionsCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateAccessControlConfigurationCommand.d.ts +5 -5
  8. package/dist-types/commands/CreateDataSourceCommand.d.ts +168 -338
  9. package/dist-types/commands/CreateExperienceCommand.d.ts +6 -6
  10. package/dist-types/commands/CreateFaqCommand.d.ts +4 -4
  11. package/dist-types/commands/CreateIndexCommand.d.ts +9 -9
  12. package/dist-types/commands/CreateQuerySuggestionsBlockListCommand.d.ts +4 -4
  13. package/dist-types/commands/CreateThesaurusCommand.d.ts +4 -4
  14. package/dist-types/commands/DeleteAccessControlConfigurationCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteExperienceCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteFaqCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteIndexCommand.d.ts +1 -1
  19. package/dist-types/commands/DeletePrincipalMappingCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteQuerySuggestionsBlockListCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteThesaurusCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeAccessControlConfigurationCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeDataSourceCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeExperienceCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeFaqCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeIndexCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribePrincipalMappingCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeQuerySuggestionsBlockListCommand.d.ts +1 -1
  29. package/dist-types/commands/DescribeQuerySuggestionsConfigCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeThesaurusCommand.d.ts +1 -1
  31. package/dist-types/commands/DisassociateEntitiesFromExperienceCommand.d.ts +3 -3
  32. package/dist-types/commands/DisassociatePersonasFromEntitiesCommand.d.ts +2 -2
  33. package/dist-types/commands/GetQuerySuggestionsCommand.d.ts +1 -1
  34. package/dist-types/commands/GetSnapshotsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListAccessControlConfigurationsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListDataSourceSyncJobsCommand.d.ts +2 -2
  37. package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -1
  38. package/dist-types/commands/ListEntityPersonasCommand.d.ts +1 -1
  39. package/dist-types/commands/ListExperienceEntitiesCommand.d.ts +1 -1
  40. package/dist-types/commands/ListExperiencesCommand.d.ts +1 -1
  41. package/dist-types/commands/ListFaqsCommand.d.ts +1 -1
  42. package/dist-types/commands/ListGroupsOlderThanOrderingIdCommand.d.ts +1 -1
  43. package/dist-types/commands/ListIndicesCommand.d.ts +1 -1
  44. package/dist-types/commands/ListQuerySuggestionsBlockListsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  46. package/dist-types/commands/ListThesauriCommand.d.ts +1 -1
  47. package/dist-types/commands/PutPrincipalMappingCommand.d.ts +7 -7
  48. package/dist-types/commands/QueryCommand.d.ts +88 -213
  49. package/dist-types/commands/StartDataSourceSyncJobCommand.d.ts +1 -1
  50. package/dist-types/commands/StopDataSourceSyncJobCommand.d.ts +1 -1
  51. package/dist-types/commands/SubmitFeedbackCommand.d.ts +5 -5
  52. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  53. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  54. package/dist-types/commands/UpdateAccessControlConfigurationCommand.d.ts +5 -5
  55. package/dist-types/commands/UpdateDataSourceCommand.d.ts +166 -336
  56. package/dist-types/commands/UpdateExperienceCommand.d.ts +6 -6
  57. package/dist-types/commands/UpdateIndexCommand.d.ts +12 -12
  58. package/dist-types/commands/UpdateQuerySuggestionsBlockListCommand.d.ts +2 -2
  59. package/dist-types/commands/UpdateQuerySuggestionsConfigCommand.d.ts +1 -1
  60. package/dist-types/commands/UpdateThesaurusCommand.d.ts +2 -2
  61. package/package.json +3 -3
@@ -29,21 +29,21 @@ export interface CreateExperienceCommandOutput extends CreateExperienceResponse,
29
29
  * import { KendraClient, CreateExperienceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, CreateExperienceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // CreateExperienceRequest
33
33
  * Name: "STRING_VALUE", // required
34
34
  * IndexId: "STRING_VALUE", // required
35
35
  * RoleArn: "STRING_VALUE",
36
- * Configuration: {
37
- * ContentSourceConfiguration: {
38
- * DataSourceIds: [
36
+ * Configuration: { // ExperienceConfiguration
37
+ * ContentSourceConfiguration: { // ContentSourceConfiguration
38
+ * DataSourceIds: [ // DataSourceIdList
39
39
  * "STRING_VALUE",
40
40
  * ],
41
- * FaqIds: [
41
+ * FaqIds: [ // FaqIdsList
42
42
  * "STRING_VALUE",
43
43
  * ],
44
44
  * DirectPutContent: true || false,
45
45
  * },
46
- * UserIdentityConfiguration: {
46
+ * UserIdentityConfiguration: { // UserIdentityConfiguration
47
47
  * IdentityAttributeName: "STRING_VALUE",
48
48
  * },
49
49
  * },
@@ -30,17 +30,17 @@ export interface CreateFaqCommandOutput extends CreateFaqResponse, __MetadataBea
30
30
  * import { KendraClient, CreateFaqCommand } from "@aws-sdk/client-kendra"; // ES Modules import
31
31
  * // const { KendraClient, CreateFaqCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
32
32
  * const client = new KendraClient(config);
33
- * const input = {
33
+ * const input = { // CreateFaqRequest
34
34
  * IndexId: "STRING_VALUE", // required
35
35
  * Name: "STRING_VALUE", // required
36
36
  * Description: "STRING_VALUE",
37
- * S3Path: {
37
+ * S3Path: { // S3Path
38
38
  * Bucket: "STRING_VALUE", // required
39
39
  * Key: "STRING_VALUE", // required
40
40
  * },
41
41
  * RoleArn: "STRING_VALUE", // required
42
- * Tags: [
43
- * {
42
+ * Tags: [ // TagList
43
+ * { // Tag
44
44
  * Key: "STRING_VALUE", // required
45
45
  * Value: "STRING_VALUE", // required
46
46
  * },
@@ -35,24 +35,24 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat
35
35
  * import { KendraClient, CreateIndexCommand } from "@aws-sdk/client-kendra"; // ES Modules import
36
36
  * // const { KendraClient, CreateIndexCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
37
37
  * const client = new KendraClient(config);
38
- * const input = {
38
+ * const input = { // CreateIndexRequest
39
39
  * Name: "STRING_VALUE", // required
40
40
  * Edition: "DEVELOPER_EDITION" || "ENTERPRISE_EDITION",
41
41
  * RoleArn: "STRING_VALUE", // required
42
- * ServerSideEncryptionConfiguration: {
42
+ * ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
43
43
  * KmsKeyId: "STRING_VALUE",
44
44
  * },
45
45
  * Description: "STRING_VALUE",
46
46
  * ClientToken: "STRING_VALUE",
47
- * Tags: [
48
- * {
47
+ * Tags: [ // TagList
48
+ * { // Tag
49
49
  * Key: "STRING_VALUE", // required
50
50
  * Value: "STRING_VALUE", // required
51
51
  * },
52
52
  * ],
53
- * UserTokenConfigurations: [
54
- * {
55
- * JwtTokenTypeConfiguration: {
53
+ * UserTokenConfigurations: [ // UserTokenConfigurationList
54
+ * { // UserTokenConfiguration
55
+ * JwtTokenTypeConfiguration: { // JwtTokenTypeConfiguration
56
56
  * KeyLocation: "URL" || "SECRET_MANAGER", // required
57
57
  * URL: "STRING_VALUE",
58
58
  * SecretManagerArn: "STRING_VALUE",
@@ -61,14 +61,14 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat
61
61
  * Issuer: "STRING_VALUE",
62
62
  * ClaimRegex: "STRING_VALUE",
63
63
  * },
64
- * JsonTokenTypeConfiguration: {
64
+ * JsonTokenTypeConfiguration: { // JsonTokenTypeConfiguration
65
65
  * UserNameAttributeField: "STRING_VALUE", // required
66
66
  * GroupAttributeField: "STRING_VALUE", // required
67
67
  * },
68
68
  * },
69
69
  * ],
70
70
  * UserContextPolicy: "ATTRIBUTE_FILTER" || "USER_TOKEN",
71
- * UserGroupResolutionConfiguration: {
71
+ * UserGroupResolutionConfiguration: { // UserGroupResolutionConfiguration
72
72
  * UserGroupResolutionMode: "AWS_SSO" || "NONE", // required
73
73
  * },
74
74
  * };
@@ -40,18 +40,18 @@ export interface CreateQuerySuggestionsBlockListCommandOutput extends CreateQuer
40
40
  * import { KendraClient, CreateQuerySuggestionsBlockListCommand } from "@aws-sdk/client-kendra"; // ES Modules import
41
41
  * // const { KendraClient, CreateQuerySuggestionsBlockListCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
42
42
  * const client = new KendraClient(config);
43
- * const input = {
43
+ * const input = { // CreateQuerySuggestionsBlockListRequest
44
44
  * IndexId: "STRING_VALUE", // required
45
45
  * Name: "STRING_VALUE", // required
46
46
  * Description: "STRING_VALUE",
47
- * SourceS3Path: {
47
+ * SourceS3Path: { // S3Path
48
48
  * Bucket: "STRING_VALUE", // required
49
49
  * Key: "STRING_VALUE", // required
50
50
  * },
51
51
  * ClientToken: "STRING_VALUE",
52
52
  * RoleArn: "STRING_VALUE", // required
53
- * Tags: [
54
- * {
53
+ * Tags: [ // TagList
54
+ * { // Tag
55
55
  * Key: "STRING_VALUE", // required
56
56
  * Value: "STRING_VALUE", // required
57
57
  * },
@@ -30,18 +30,18 @@ export interface CreateThesaurusCommandOutput extends CreateThesaurusResponse, _
30
30
  * import { KendraClient, CreateThesaurusCommand } from "@aws-sdk/client-kendra"; // ES Modules import
31
31
  * // const { KendraClient, CreateThesaurusCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
32
32
  * const client = new KendraClient(config);
33
- * const input = {
33
+ * const input = { // CreateThesaurusRequest
34
34
  * IndexId: "STRING_VALUE", // required
35
35
  * Name: "STRING_VALUE", // required
36
36
  * Description: "STRING_VALUE",
37
37
  * RoleArn: "STRING_VALUE", // required
38
- * Tags: [
39
- * {
38
+ * Tags: [ // TagList
39
+ * { // Tag
40
40
  * Key: "STRING_VALUE", // required
41
41
  * Value: "STRING_VALUE", // required
42
42
  * },
43
43
  * ],
44
- * SourceS3Path: {
44
+ * SourceS3Path: { // S3Path
45
45
  * Bucket: "STRING_VALUE", // required
46
46
  * Key: "STRING_VALUE", // required
47
47
  * },
@@ -29,7 +29,7 @@ export interface DeleteAccessControlConfigurationCommandOutput extends DeleteAcc
29
29
  * import { KendraClient, DeleteAccessControlConfigurationCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, DeleteAccessControlConfigurationCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // DeleteAccessControlConfigurationRequest
33
33
  * IndexId: "STRING_VALUE", // required
34
34
  * Id: "STRING_VALUE", // required
35
35
  * };
@@ -29,7 +29,7 @@ export interface DeleteDataSourceCommandOutput extends __MetadataBearer {
29
29
  * import { KendraClient, DeleteDataSourceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, DeleteDataSourceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // DeleteDataSourceRequest
33
33
  * Id: "STRING_VALUE", // required
34
34
  * IndexId: "STRING_VALUE", // required
35
35
  * };
@@ -28,7 +28,7 @@ export interface DeleteExperienceCommandOutput extends DeleteExperienceResponse,
28
28
  * import { KendraClient, DeleteExperienceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
29
29
  * // const { KendraClient, DeleteExperienceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
30
30
  * const client = new KendraClient(config);
31
- * const input = {
31
+ * const input = { // DeleteExperienceRequest
32
32
  * Id: "STRING_VALUE", // required
33
33
  * IndexId: "STRING_VALUE", // required
34
34
  * };
@@ -26,7 +26,7 @@ export interface DeleteFaqCommandOutput extends __MetadataBearer {
26
26
  * import { KendraClient, DeleteFaqCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, DeleteFaqCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // DeleteFaqRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * IndexId: "STRING_VALUE", // required
32
32
  * };
@@ -29,7 +29,7 @@ export interface DeleteIndexCommandOutput extends __MetadataBearer {
29
29
  * import { KendraClient, DeleteIndexCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, DeleteIndexCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // DeleteIndexRequest
33
33
  * Id: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DeleteIndexCommand(input);
@@ -40,7 +40,7 @@ export interface DeletePrincipalMappingCommandOutput extends __MetadataBearer {
40
40
  * import { KendraClient, DeletePrincipalMappingCommand } from "@aws-sdk/client-kendra"; // ES Modules import
41
41
  * // const { KendraClient, DeletePrincipalMappingCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
42
42
  * const client = new KendraClient(config);
43
- * const input = {
43
+ * const input = { // DeletePrincipalMappingRequest
44
44
  * IndexId: "STRING_VALUE", // required
45
45
  * DataSourceId: "STRING_VALUE",
46
46
  * GroupId: "STRING_VALUE", // required
@@ -32,7 +32,7 @@ export interface DeleteQuerySuggestionsBlockListCommandOutput extends __Metadata
32
32
  * import { KendraClient, DeleteQuerySuggestionsBlockListCommand } from "@aws-sdk/client-kendra"; // ES Modules import
33
33
  * // const { KendraClient, DeleteQuerySuggestionsBlockListCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
34
34
  * const client = new KendraClient(config);
35
- * const input = {
35
+ * const input = { // DeleteQuerySuggestionsBlockListRequest
36
36
  * IndexId: "STRING_VALUE", // required
37
37
  * Id: "STRING_VALUE", // required
38
38
  * };
@@ -27,7 +27,7 @@ export interface DeleteThesaurusCommandOutput extends __MetadataBearer {
27
27
  * import { KendraClient, DeleteThesaurusCommand } from "@aws-sdk/client-kendra"; // ES Modules import
28
28
  * // const { KendraClient, DeleteThesaurusCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
29
29
  * const client = new KendraClient(config);
30
- * const input = {
30
+ * const input = { // DeleteThesaurusRequest
31
31
  * Id: "STRING_VALUE", // required
32
32
  * IndexId: "STRING_VALUE", // required
33
33
  * };
@@ -29,7 +29,7 @@ export interface DescribeAccessControlConfigurationCommandOutput extends Describ
29
29
  * import { KendraClient, DescribeAccessControlConfigurationCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, DescribeAccessControlConfigurationCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // DescribeAccessControlConfigurationRequest
33
33
  * IndexId: "STRING_VALUE", // required
34
34
  * Id: "STRING_VALUE", // required
35
35
  * };
@@ -26,7 +26,7 @@ export interface DescribeDataSourceCommandOutput extends DescribeDataSourceRespo
26
26
  * import { KendraClient, DescribeDataSourceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, DescribeDataSourceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // DescribeDataSourceRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * IndexId: "STRING_VALUE", // required
32
32
  * };
@@ -29,7 +29,7 @@ export interface DescribeExperienceCommandOutput extends DescribeExperienceRespo
29
29
  * import { KendraClient, DescribeExperienceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, DescribeExperienceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // DescribeExperienceRequest
33
33
  * Id: "STRING_VALUE", // required
34
34
  * IndexId: "STRING_VALUE", // required
35
35
  * };
@@ -26,7 +26,7 @@ export interface DescribeFaqCommandOutput extends DescribeFaqResponse, __Metadat
26
26
  * import { KendraClient, DescribeFaqCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, DescribeFaqCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // DescribeFaqRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * IndexId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DescribeIndexCommandOutput extends DescribeIndexResponse, __Met
26
26
  * import { KendraClient, DescribeIndexCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, DescribeIndexCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // DescribeIndexRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeIndexCommand(input);
@@ -34,7 +34,7 @@ export interface DescribePrincipalMappingCommandOutput extends DescribePrincipal
34
34
  * import { KendraClient, DescribePrincipalMappingCommand } from "@aws-sdk/client-kendra"; // ES Modules import
35
35
  * // const { KendraClient, DescribePrincipalMappingCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
36
36
  * const client = new KendraClient(config);
37
- * const input = {
37
+ * const input = { // DescribePrincipalMappingRequest
38
38
  * IndexId: "STRING_VALUE", // required
39
39
  * DataSourceId: "STRING_VALUE",
40
40
  * GroupId: "STRING_VALUE", // required
@@ -32,7 +32,7 @@ export interface DescribeQuerySuggestionsBlockListCommandOutput extends Describe
32
32
  * import { KendraClient, DescribeQuerySuggestionsBlockListCommand } from "@aws-sdk/client-kendra"; // ES Modules import
33
33
  * // const { KendraClient, DescribeQuerySuggestionsBlockListCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
34
34
  * const client = new KendraClient(config);
35
- * const input = {
35
+ * const input = { // DescribeQuerySuggestionsBlockListRequest
36
36
  * IndexId: "STRING_VALUE", // required
37
37
  * Id: "STRING_VALUE", // required
38
38
  * };
@@ -31,7 +31,7 @@ export interface DescribeQuerySuggestionsConfigCommandOutput extends DescribeQue
31
31
  * import { KendraClient, DescribeQuerySuggestionsConfigCommand } from "@aws-sdk/client-kendra"; // ES Modules import
32
32
  * // const { KendraClient, DescribeQuerySuggestionsConfigCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
33
33
  * const client = new KendraClient(config);
34
- * const input = {
34
+ * const input = { // DescribeQuerySuggestionsConfigRequest
35
35
  * IndexId: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new DescribeQuerySuggestionsConfigCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeThesaurusCommandOutput extends DescribeThesaurusRespons
26
26
  * import { KendraClient, DescribeThesaurusCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, DescribeThesaurusCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // DescribeThesaurusRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * IndexId: "STRING_VALUE", // required
32
32
  * };
@@ -30,11 +30,11 @@ export interface DisassociateEntitiesFromExperienceCommandOutput extends Disasso
30
30
  * import { KendraClient, DisassociateEntitiesFromExperienceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
31
31
  * // const { KendraClient, DisassociateEntitiesFromExperienceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
32
32
  * const client = new KendraClient(config);
33
- * const input = {
33
+ * const input = { // DisassociateEntitiesFromExperienceRequest
34
34
  * Id: "STRING_VALUE", // required
35
35
  * IndexId: "STRING_VALUE", // required
36
- * EntityList: [ // required
37
- * {
36
+ * EntityList: [ // DisassociateEntityList // required
37
+ * { // EntityConfiguration
38
38
  * EntityId: "STRING_VALUE", // required
39
39
  * EntityType: "USER" || "GROUP", // required
40
40
  * },
@@ -30,10 +30,10 @@ export interface DisassociatePersonasFromEntitiesCommandOutput extends Disassoci
30
30
  * import { KendraClient, DisassociatePersonasFromEntitiesCommand } from "@aws-sdk/client-kendra"; // ES Modules import
31
31
  * // const { KendraClient, DisassociatePersonasFromEntitiesCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
32
32
  * const client = new KendraClient(config);
33
- * const input = {
33
+ * const input = { // DisassociatePersonasFromEntitiesRequest
34
34
  * Id: "STRING_VALUE", // required
35
35
  * IndexId: "STRING_VALUE", // required
36
- * EntityIds: [ // required
36
+ * EntityIds: [ // EntityIdsList // required
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * };
@@ -29,7 +29,7 @@ export interface GetQuerySuggestionsCommandOutput extends GetQuerySuggestionsRes
29
29
  * import { KendraClient, GetQuerySuggestionsCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, GetQuerySuggestionsCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // GetQuerySuggestionsRequest
33
33
  * IndexId: "STRING_VALUE", // required
34
34
  * QueryText: "STRING_VALUE", // required
35
35
  * MaxSuggestionsCount: Number("int"),
@@ -28,7 +28,7 @@ export interface GetSnapshotsCommandOutput extends GetSnapshotsResponse, __Metad
28
28
  * import { KendraClient, GetSnapshotsCommand } from "@aws-sdk/client-kendra"; // ES Modules import
29
29
  * // const { KendraClient, GetSnapshotsCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
30
30
  * const client = new KendraClient(config);
31
- * const input = {
31
+ * const input = { // GetSnapshotsRequest
32
32
  * IndexId: "STRING_VALUE", // required
33
33
  * Interval: "THIS_MONTH" || "THIS_WEEK" || "ONE_WEEK_AGO" || "TWO_WEEKS_AGO" || "ONE_MONTH_AGO" || "TWO_MONTHS_AGO", // required
34
34
  * MetricType: "QUERIES_BY_COUNT" || "QUERIES_BY_ZERO_CLICK_RATE" || "QUERIES_BY_ZERO_RESULT_RATE" || "DOCS_BY_CLICK_COUNT" || "AGG_QUERY_DOC_METRICS" || "TREND_QUERY_DOC_METRICS", // required
@@ -29,7 +29,7 @@ export interface ListAccessControlConfigurationsCommandOutput extends ListAccess
29
29
  * import { KendraClient, ListAccessControlConfigurationsCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, ListAccessControlConfigurationsCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // ListAccessControlConfigurationsRequest
33
33
  * IndexId: "STRING_VALUE", // required
34
34
  * NextToken: "STRING_VALUE",
35
35
  * MaxResults: Number("int"),
@@ -26,12 +26,12 @@ export interface ListDataSourceSyncJobsCommandOutput extends ListDataSourceSyncJ
26
26
  * import { KendraClient, ListDataSourceSyncJobsCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, ListDataSourceSyncJobsCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // ListDataSourceSyncJobsRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * IndexId: "STRING_VALUE", // required
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
- * StartTimeFilter: {
34
+ * StartTimeFilter: { // TimeRange
35
35
  * StartTime: new Date("TIMESTAMP"),
36
36
  * EndTime: new Date("TIMESTAMP"),
37
37
  * },
@@ -26,7 +26,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _
26
26
  * import { KendraClient, ListDataSourcesCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, ListDataSourcesCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // ListDataSourcesRequest
30
30
  * IndexId: "STRING_VALUE", // required
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListEntityPersonasCommandOutput extends ListEntityPersonasRespo
27
27
  * import { KendraClient, ListEntityPersonasCommand } from "@aws-sdk/client-kendra"; // ES Modules import
28
28
  * // const { KendraClient, ListEntityPersonasCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
29
29
  * const client = new KendraClient(config);
30
- * const input = {
30
+ * const input = { // ListEntityPersonasRequest
31
31
  * Id: "STRING_VALUE", // required
32
32
  * IndexId: "STRING_VALUE", // required
33
33
  * NextToken: "STRING_VALUE",
@@ -30,7 +30,7 @@ export interface ListExperienceEntitiesCommandOutput extends ListExperienceEntit
30
30
  * import { KendraClient, ListExperienceEntitiesCommand } from "@aws-sdk/client-kendra"; // ES Modules import
31
31
  * // const { KendraClient, ListExperienceEntitiesCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
32
32
  * const client = new KendraClient(config);
33
- * const input = {
33
+ * const input = { // ListExperienceEntitiesRequest
34
34
  * Id: "STRING_VALUE", // required
35
35
  * IndexId: "STRING_VALUE", // required
36
36
  * NextToken: "STRING_VALUE",
@@ -29,7 +29,7 @@ export interface ListExperiencesCommandOutput extends ListExperiencesResponse, _
29
29
  * import { KendraClient, ListExperiencesCommand } from "@aws-sdk/client-kendra"; // ES Modules import
30
30
  * // const { KendraClient, ListExperiencesCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
31
31
  * const client = new KendraClient(config);
32
- * const input = {
32
+ * const input = { // ListExperiencesRequest
33
33
  * IndexId: "STRING_VALUE", // required
34
34
  * NextToken: "STRING_VALUE",
35
35
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListFaqsCommandOutput extends ListFaqsResponse, __MetadataBeare
26
26
  * import { KendraClient, ListFaqsCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, ListFaqsCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // ListFaqsRequest
30
30
  * IndexId: "STRING_VALUE", // required
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
@@ -30,7 +30,7 @@ export interface ListGroupsOlderThanOrderingIdCommandOutput extends ListGroupsOl
30
30
  * import { KendraClient, ListGroupsOlderThanOrderingIdCommand } from "@aws-sdk/client-kendra"; // ES Modules import
31
31
  * // const { KendraClient, ListGroupsOlderThanOrderingIdCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
32
32
  * const client = new KendraClient(config);
33
- * const input = {
33
+ * const input = { // ListGroupsOlderThanOrderingIdRequest
34
34
  * IndexId: "STRING_VALUE", // required
35
35
  * DataSourceId: "STRING_VALUE",
36
36
  * OrderingId: Number("long"), // required
@@ -26,7 +26,7 @@ export interface ListIndicesCommandOutput extends ListIndicesResponse, __Metadat
26
26
  * import { KendraClient, ListIndicesCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, ListIndicesCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // ListIndicesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
32
  * };
@@ -32,7 +32,7 @@ export interface ListQuerySuggestionsBlockListsCommandOutput extends ListQuerySu
32
32
  * import { KendraClient, ListQuerySuggestionsBlockListsCommand } from "@aws-sdk/client-kendra"; // ES Modules import
33
33
  * // const { KendraClient, ListQuerySuggestionsBlockListsCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
34
34
  * const client = new KendraClient(config);
35
- * const input = {
35
+ * const input = { // ListQuerySuggestionsBlockListsRequest
36
36
  * IndexId: "STRING_VALUE", // required
37
37
  * NextToken: "STRING_VALUE",
38
38
  * MaxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
27
27
  * import { KendraClient, ListTagsForResourceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
28
28
  * // const { KendraClient, ListTagsForResourceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
29
29
  * const client = new KendraClient(config);
30
- * const input = {
30
+ * const input = { // ListTagsForResourceRequest
31
31
  * ResourceARN: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface ListThesauriCommandOutput extends ListThesauriResponse, __Metad
26
26
  * import { KendraClient, ListThesauriCommand } from "@aws-sdk/client-kendra"; // ES Modules import
27
27
  * // const { KendraClient, ListThesauriCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
28
28
  * const client = new KendraClient(config);
29
- * const input = {
29
+ * const input = { // ListThesauriRequest
30
30
  * IndexId: "STRING_VALUE", // required
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
@@ -44,23 +44,23 @@ export interface PutPrincipalMappingCommandOutput extends __MetadataBearer {
44
44
  * import { KendraClient, PutPrincipalMappingCommand } from "@aws-sdk/client-kendra"; // ES Modules import
45
45
  * // const { KendraClient, PutPrincipalMappingCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
46
46
  * const client = new KendraClient(config);
47
- * const input = {
47
+ * const input = { // PutPrincipalMappingRequest
48
48
  * IndexId: "STRING_VALUE", // required
49
49
  * DataSourceId: "STRING_VALUE",
50
50
  * GroupId: "STRING_VALUE", // required
51
- * GroupMembers: {
52
- * MemberGroups: [
53
- * {
51
+ * GroupMembers: { // GroupMembers
52
+ * MemberGroups: [ // MemberGroups
53
+ * { // MemberGroup
54
54
  * GroupId: "STRING_VALUE", // required
55
55
  * DataSourceId: "STRING_VALUE",
56
56
  * },
57
57
  * ],
58
- * MemberUsers: [
59
- * {
58
+ * MemberUsers: [ // MemberUsers
59
+ * { // MemberUser
60
60
  * UserId: "STRING_VALUE", // required
61
61
  * },
62
62
  * ],
63
- * S3PathforGroupMembers: {
63
+ * S3PathforGroupMembers: { // S3Path
64
64
  * Bucket: "STRING_VALUE", // required
65
65
  * Key: "STRING_VALUE", // required
66
66
  * },