@aws-sdk/client-kendra 3.112.0 → 3.121.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.
@@ -81,6 +81,79 @@ export declare namespace AdditionalResultAttribute {
81
81
 
82
82
  const filterSensitiveLog: (obj: AdditionalResultAttribute) => any;
83
83
  }
84
+
85
+ export interface DataSourceToIndexFieldMapping {
86
+
87
+ DataSourceFieldName: string | undefined;
88
+
89
+ DateFieldFormat?: string;
90
+
91
+ IndexFieldName: string | undefined;
92
+ }
93
+ export declare namespace DataSourceToIndexFieldMapping {
94
+
95
+ const filterSensitiveLog: (obj: DataSourceToIndexFieldMapping) => any;
96
+ }
97
+ export declare enum AlfrescoEntity {
98
+ blog = "blog",
99
+ documentLibrary = "documentLibrary",
100
+ wiki = "wiki"
101
+ }
102
+
103
+ export interface S3Path {
104
+
105
+ Bucket: string | undefined;
106
+
107
+ Key: string | undefined;
108
+ }
109
+ export declare namespace S3Path {
110
+
111
+ const filterSensitiveLog: (obj: S3Path) => any;
112
+ }
113
+
114
+ export interface DataSourceVpcConfiguration {
115
+
116
+ SubnetIds: string[] | undefined;
117
+
118
+ SecurityGroupIds: string[] | undefined;
119
+ }
120
+ export declare namespace DataSourceVpcConfiguration {
121
+
122
+ const filterSensitiveLog: (obj: DataSourceVpcConfiguration) => any;
123
+ }
124
+
125
+ export interface AlfrescoConfiguration {
126
+
127
+ SiteUrl: string | undefined;
128
+
129
+ SiteId: string | undefined;
130
+
131
+ SecretArn: string | undefined;
132
+
133
+ SslCertificateS3Path: S3Path | undefined;
134
+
135
+ CrawlSystemFolders?: boolean;
136
+
137
+ CrawlComments?: boolean;
138
+
139
+ EntityFilter?: (AlfrescoEntity | string)[];
140
+
141
+ DocumentLibraryFieldMappings?: DataSourceToIndexFieldMapping[];
142
+
143
+ BlogFieldMappings?: DataSourceToIndexFieldMapping[];
144
+
145
+ WikiFieldMappings?: DataSourceToIndexFieldMapping[];
146
+
147
+ InclusionPatterns?: string[];
148
+
149
+ ExclusionPatterns?: string[];
150
+
151
+ VpcConfiguration?: DataSourceVpcConfiguration;
152
+ }
153
+ export declare namespace AlfrescoConfiguration {
154
+
155
+ const filterSensitiveLog: (obj: AlfrescoConfiguration) => any;
156
+ }
84
157
  export declare enum EntityType {
85
158
  GROUP = "GROUP",
86
159
  USER = "USER"
@@ -493,17 +566,6 @@ export declare namespace HierarchicalPrincipal {
493
566
  const filterSensitiveLog: (obj: HierarchicalPrincipal) => any;
494
567
  }
495
568
 
496
- export interface S3Path {
497
-
498
- Bucket: string | undefined;
499
-
500
- Key: string | undefined;
501
- }
502
- export declare namespace S3Path {
503
-
504
- const filterSensitiveLog: (obj: S3Path) => any;
505
- }
506
-
507
569
  export interface Document {
508
570
 
509
571
  Id: string | undefined;
@@ -578,30 +640,6 @@ export declare namespace ClearQuerySuggestionsRequest {
578
640
  const filterSensitiveLog: (obj: ClearQuerySuggestionsRequest) => any;
579
641
  }
580
642
 
581
- export interface DataSourceToIndexFieldMapping {
582
-
583
- DataSourceFieldName: string | undefined;
584
-
585
- DateFieldFormat?: string;
586
-
587
- IndexFieldName: string | undefined;
588
- }
589
- export declare namespace DataSourceToIndexFieldMapping {
590
-
591
- const filterSensitiveLog: (obj: DataSourceToIndexFieldMapping) => any;
592
- }
593
-
594
- export interface DataSourceVpcConfiguration {
595
-
596
- SubnetIds: string[] | undefined;
597
-
598
- SecurityGroupIds: string[] | undefined;
599
- }
600
- export declare namespace DataSourceVpcConfiguration {
601
-
602
- const filterSensitiveLog: (obj: DataSourceVpcConfiguration) => any;
603
- }
604
-
605
643
  export interface BoxConfiguration {
606
644
 
607
645
  EnterpriseId: string | undefined;
@@ -1563,6 +1601,8 @@ export interface DataSourceConfiguration {
1563
1601
  JiraConfiguration?: JiraConfiguration;
1564
1602
 
1565
1603
  GitHubConfiguration?: GitHubConfiguration;
1604
+
1605
+ AlfrescoConfiguration?: AlfrescoConfiguration;
1566
1606
  }
1567
1607
  export declare namespace DataSourceConfiguration {
1568
1608
 
@@ -1580,6 +1620,7 @@ export declare namespace Tag {
1580
1620
  const filterSensitiveLog: (obj: Tag) => any;
1581
1621
  }
1582
1622
  export declare enum DataSourceType {
1623
+ ALFRESCO = "ALFRESCO",
1583
1624
  BOX = "BOX",
1584
1625
  CONFLUENCE = "CONFLUENCE",
1585
1626
  CUSTOM = "CUSTOM",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kendra",
3
3
  "description": "AWS SDK for JavaScript Kendra Client for Node.js, Browser and React Native",
4
- "version": "3.112.0",
4
+ "version": "3.121.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.112.0",
21
+ "@aws-sdk/client-sts": "3.121.0",
22
22
  "@aws-sdk/config-resolver": "3.110.0",
23
- "@aws-sdk/credential-provider-node": "3.112.0",
23
+ "@aws-sdk/credential-provider-node": "3.121.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.110.0",
25
25
  "@aws-sdk/hash-node": "3.110.0",
26
26
  "@aws-sdk/invalid-dependency": "3.110.0",
@@ -28,13 +28,13 @@
28
28
  "@aws-sdk/middleware-host-header": "3.110.0",
29
29
  "@aws-sdk/middleware-logger": "3.110.0",
30
30
  "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
- "@aws-sdk/middleware-retry": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.118.1",
32
32
  "@aws-sdk/middleware-serde": "3.110.0",
33
33
  "@aws-sdk/middleware-signing": "3.110.0",
34
34
  "@aws-sdk/middleware-stack": "3.110.0",
35
35
  "@aws-sdk/middleware-user-agent": "3.110.0",
36
36
  "@aws-sdk/node-config-provider": "3.110.0",
37
- "@aws-sdk/node-http-handler": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.118.1",
38
38
  "@aws-sdk/protocol-http": "3.110.0",
39
39
  "@aws-sdk/smithy-client": "3.110.0",
40
40
  "@aws-sdk/types": "3.110.0",
@@ -46,7 +46,7 @@
46
46
  "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
47
  "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.110.0",
49
- "@aws-sdk/util-user-agent-node": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.118.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
51
51
  "@aws-sdk/util-utf8-node": "3.109.0",
52
52
  "tslib": "^2.3.1",