@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.
@@ -148,6 +148,186 @@ export declare namespace AdditionalResultAttribute {
148
148
  */
149
149
  const filterSensitiveLog: (obj: AdditionalResultAttribute) => any;
150
150
  }
151
+ /**
152
+ * <p>Maps a column or attribute in the data source to an index field.
153
+ * You must first create the fields in the index using the
154
+ * <code>UpdateIndex</code> API.</p>
155
+ */
156
+ export interface DataSourceToIndexFieldMapping {
157
+ /**
158
+ * <p>The name of the column or attribute in the data source.</p>
159
+ */
160
+ DataSourceFieldName: string | undefined;
161
+ /**
162
+ * <p>The type of data stored in the column or attribute.</p>
163
+ */
164
+ DateFieldFormat?: string;
165
+ /**
166
+ * <p>The name of the field in the index.</p>
167
+ */
168
+ IndexFieldName: string | undefined;
169
+ }
170
+ export declare namespace DataSourceToIndexFieldMapping {
171
+ /**
172
+ * @internal
173
+ */
174
+ const filterSensitiveLog: (obj: DataSourceToIndexFieldMapping) => any;
175
+ }
176
+ export declare enum AlfrescoEntity {
177
+ blog = "blog",
178
+ documentLibrary = "documentLibrary",
179
+ wiki = "wiki"
180
+ }
181
+ /**
182
+ * <p>Information required to find a specific file in an Amazon S3
183
+ * bucket.</p>
184
+ */
185
+ export interface S3Path {
186
+ /**
187
+ * <p>The name of the S3 bucket that contains the file.</p>
188
+ */
189
+ Bucket: string | undefined;
190
+ /**
191
+ * <p>The name of the file.</p>
192
+ */
193
+ Key: string | undefined;
194
+ }
195
+ export declare namespace S3Path {
196
+ /**
197
+ * @internal
198
+ */
199
+ const filterSensitiveLog: (obj: S3Path) => any;
200
+ }
201
+ /**
202
+ * <p>Provides the configuration information to connect to an Amazon VPC.</p>
203
+ */
204
+ export interface DataSourceVpcConfiguration {
205
+ /**
206
+ * <p>A list of identifiers for subnets within your Amazon VPC. The
207
+ * subnets should be able to connect to each other in the VPC, and they
208
+ * should have outgoing access to the Internet through a NAT
209
+ * device.</p>
210
+ */
211
+ SubnetIds: string[] | undefined;
212
+ /**
213
+ * <p>A list of identifiers of security groups within your Amazon VPC.
214
+ * The security groups should enable Amazon Kendra to connect to the data
215
+ * source.</p>
216
+ */
217
+ SecurityGroupIds: string[] | undefined;
218
+ }
219
+ export declare namespace DataSourceVpcConfiguration {
220
+ /**
221
+ * @internal
222
+ */
223
+ const filterSensitiveLog: (obj: DataSourceVpcConfiguration) => any;
224
+ }
225
+ /**
226
+ * <p>Provides the configuration information to connect to Alfresco as your
227
+ * data source.</p>
228
+ */
229
+ export interface AlfrescoConfiguration {
230
+ /**
231
+ * <p>The URL of the Alfresco site. For example, <i>https://hostname:8080</i>.</p>
232
+ */
233
+ SiteUrl: string | undefined;
234
+ /**
235
+ * <p>The identifier of the Alfresco site. For example, <i>my-site</i>.</p>
236
+ */
237
+ SiteId: string | undefined;
238
+ /**
239
+ * <p>The Amazon Resource Name (ARN) of an Secrets Manager secret that
240
+ * contains the key-value pairs required to connect to your Alfresco
241
+ * data source. The secret must contain a JSON structure with the following keys:</p>
242
+ * <ul>
243
+ * <li>
244
+ * <p>username—The user name of the Alfresco account.</p>
245
+ * </li>
246
+ * <li>
247
+ * <p>password—The password of the Alfresco account.</p>
248
+ * </li>
249
+ * </ul>
250
+ */
251
+ SecretArn: string | undefined;
252
+ /**
253
+ * <p>The path to the SSL certificate stored in an Amazon S3 bucket. You
254
+ * use this to connect to Alfresco.</p>
255
+ */
256
+ SslCertificateS3Path: S3Path | undefined;
257
+ /**
258
+ * <p>
259
+ * <code>TRUE</code> to index shared files.</p>
260
+ */
261
+ CrawlSystemFolders?: boolean;
262
+ /**
263
+ * <p>
264
+ * <code>TRUE</code> to index comments of wikis and blogs.</p>
265
+ */
266
+ CrawlComments?: boolean;
267
+ /**
268
+ * <p>Specify whether to index document libraries, wikis,
269
+ * or blogs. You can specify one or more of these options.</p>
270
+ */
271
+ EntityFilter?: (AlfrescoEntity | string)[];
272
+ /**
273
+ * <p>A list of <code>DataSourceToIndexFieldMapping</code> objects that map attributes
274
+ * or field names of Alfresco document libraries to Amazon Kendra index field names.
275
+ * To create custom fields, use the <code>UpdateIndex</code> API before you map to Alfresco
276
+ * fields. For more information, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html">
277
+ * Mapping data source fields</a>. The Alfresco data source field names
278
+ * must exist in your Alfresco custom metadata.</p>
279
+ */
280
+ DocumentLibraryFieldMappings?: DataSourceToIndexFieldMapping[];
281
+ /**
282
+ * <p>A list of <code>DataSourceToIndexFieldMapping</code> objects that map attributes
283
+ * or field names of Alfresco blogs to Amazon Kendra index field names.
284
+ * To create custom fields, use the <code>UpdateIndex</code> API before you map to Alfresco
285
+ * fields. For more information, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html">
286
+ * Mapping data source fields</a>. The Alfresco data source field names
287
+ * must exist in your Alfresco custom metadata.</p>
288
+ */
289
+ BlogFieldMappings?: DataSourceToIndexFieldMapping[];
290
+ /**
291
+ * <p>A list of <code>DataSourceToIndexFieldMapping</code> objects that map attributes
292
+ * or field names of Alfresco wikis to Amazon Kendra index field names.
293
+ * To create custom fields, use the <code>UpdateIndex</code> API before you map to Alfresco
294
+ * fields. For more information, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html">
295
+ * Mapping data source fields</a>. The Alfresco data source field names
296
+ * must exist in your Alfresco custom metadata.</p>
297
+ */
298
+ WikiFieldMappings?: DataSourceToIndexFieldMapping[];
299
+ /**
300
+ * <p>A list of regular expression patterns to include certain files
301
+ * in your Alfresco data source. Files that match
302
+ * the patterns are included in the index. Files that don't match the patterns
303
+ * are excluded from the index. If a file matches both an inclusion pattern
304
+ * and an exclusion pattern, the exclusion pattern takes precedence and the
305
+ * file isn't included in the index.</p>
306
+ */
307
+ InclusionPatterns?: string[];
308
+ /**
309
+ * <p>A list of regular expression patterns to exclude certain files
310
+ * in your Alfresco data source. Files that
311
+ * match the patterns are excluded from the index. Files that don't match
312
+ * the patterns are included in the index. If a file matches both an inclusion
313
+ * pattern and an exclusion pattern, the exclusion pattern takes precedence
314
+ * and the file isn't included in the index.</p>
315
+ */
316
+ ExclusionPatterns?: string[];
317
+ /**
318
+ * <p>Configuration information for an
319
+ * Amazon Virtual Private Cloud to connect to your Alfresco. For more information,
320
+ * see <a href="https://docs.aws.amazon.com/kendra/latest/dg/vpc-configuration.html">Configuring
321
+ * a VPC</a>.</p>
322
+ */
323
+ VpcConfiguration?: DataSourceVpcConfiguration;
324
+ }
325
+ export declare namespace AlfrescoConfiguration {
326
+ /**
327
+ * @internal
328
+ */
329
+ const filterSensitiveLog: (obj: AlfrescoConfiguration) => any;
330
+ }
151
331
  export declare enum EntityType {
152
332
  GROUP = "GROUP",
153
333
  USER = "USER"
@@ -999,26 +1179,6 @@ export declare namespace HierarchicalPrincipal {
999
1179
  */
1000
1180
  const filterSensitiveLog: (obj: HierarchicalPrincipal) => any;
1001
1181
  }
1002
- /**
1003
- * <p>Information required to find a specific file in an Amazon S3
1004
- * bucket.</p>
1005
- */
1006
- export interface S3Path {
1007
- /**
1008
- * <p>The name of the S3 bucket that contains the file.</p>
1009
- */
1010
- Bucket: string | undefined;
1011
- /**
1012
- * <p>The name of the file.</p>
1013
- */
1014
- Key: string | undefined;
1015
- }
1016
- export declare namespace S3Path {
1017
- /**
1018
- * @internal
1019
- */
1020
- const filterSensitiveLog: (obj: S3Path) => any;
1021
- }
1022
1182
  /**
1023
1183
  * <p>A document in an index.</p>
1024
1184
  */
@@ -1202,55 +1362,6 @@ export declare namespace ClearQuerySuggestionsRequest {
1202
1362
  */
1203
1363
  const filterSensitiveLog: (obj: ClearQuerySuggestionsRequest) => any;
1204
1364
  }
1205
- /**
1206
- * <p>Maps a column or attribute in the data source to an index field.
1207
- * You must first create the fields in the index using the
1208
- * <code>UpdateIndex</code> API.</p>
1209
- */
1210
- export interface DataSourceToIndexFieldMapping {
1211
- /**
1212
- * <p>The name of the column or attribute in the data source.</p>
1213
- */
1214
- DataSourceFieldName: string | undefined;
1215
- /**
1216
- * <p>The type of data stored in the column or attribute.</p>
1217
- */
1218
- DateFieldFormat?: string;
1219
- /**
1220
- * <p>The name of the field in the index.</p>
1221
- */
1222
- IndexFieldName: string | undefined;
1223
- }
1224
- export declare namespace DataSourceToIndexFieldMapping {
1225
- /**
1226
- * @internal
1227
- */
1228
- const filterSensitiveLog: (obj: DataSourceToIndexFieldMapping) => any;
1229
- }
1230
- /**
1231
- * <p>Provides the configuration information to connect to an Amazon VPC.</p>
1232
- */
1233
- export interface DataSourceVpcConfiguration {
1234
- /**
1235
- * <p>A list of identifiers for subnets within your Amazon VPC. The
1236
- * subnets should be able to connect to each other in the VPC, and they
1237
- * should have outgoing access to the Internet through a NAT
1238
- * device.</p>
1239
- */
1240
- SubnetIds: string[] | undefined;
1241
- /**
1242
- * <p>A list of identifiers of security groups within your Amazon VPC.
1243
- * The security groups should enable Amazon Kendra to connect to the data
1244
- * source.</p>
1245
- */
1246
- SecurityGroupIds: string[] | undefined;
1247
- }
1248
- export declare namespace DataSourceVpcConfiguration {
1249
- /**
1250
- * @internal
1251
- */
1252
- const filterSensitiveLog: (obj: DataSourceVpcConfiguration) => any;
1253
- }
1254
1365
  /**
1255
1366
  * <p>Provides the configuration information to connect to Box as
1256
1367
  * your data source.</p>
@@ -1429,8 +1540,8 @@ export declare namespace ConfluenceAttachmentToIndexFieldMapping {
1429
1540
  */
1430
1541
  export interface ConfluenceAttachmentConfiguration {
1431
1542
  /**
1432
- * <p>Indicates whether Amazon Kendra indexes attachments to the pages and blogs
1433
- * in the Confluence data source. </p>
1543
+ * <p>
1544
+ * <code>TRUE</code> to index attachments of pages and blogs in Confluence.</p>
1434
1545
  */
1435
1546
  CrawlAttachments?: boolean;
1436
1547
  /**
@@ -1568,7 +1679,7 @@ export declare namespace ConfluencePageToIndexFieldMapping {
1568
1679
  */
1569
1680
  export interface ConfluencePageConfiguration {
1570
1681
  /**
1571
- * <p>>Maps attributes or field names of Confluence pages to Amazon Kendra index field
1682
+ * <p>Maps attributes or field names of Confluence pages to Amazon Kendra index field
1572
1683
  * names. To create custom fields, use the <code>UpdateIndex</code> API before
1573
1684
  * you map to Confluence fields.
1574
1685
  * For more information, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html">Mapping data source fields</a>.
@@ -1627,7 +1738,8 @@ export declare namespace ConfluenceSpaceToIndexFieldMapping {
1627
1738
  */
1628
1739
  export interface ConfluenceSpaceConfiguration {
1629
1740
  /**
1630
- * <p>Specifies whether Amazon Kendra should index personal spaces. Users can
1741
+ * <p>
1742
+ * <code>TRUE</code> to index personal spaces. You can
1631
1743
  * add restrictions to items in personal spaces. If personal spaces are
1632
1744
  * indexed, queries without user context information may return
1633
1745
  * restricted items from a personal space in their results. For more
@@ -1636,7 +1748,8 @@ export interface ConfluenceSpaceConfiguration {
1636
1748
  */
1637
1749
  CrawlPersonalSpaces?: boolean;
1638
1750
  /**
1639
- * <p>Specifies whether Amazon Kendra should index archived spaces.</p>
1751
+ * <p>
1752
+ * <code>TRUE</code> to index archived spaces.</p>
1640
1753
  */
1641
1754
  CrawlArchivedSpaces?: boolean;
1642
1755
  /**
@@ -1691,24 +1804,15 @@ export interface ConfluenceConfiguration {
1691
1804
  ServerUrl: string | undefined;
1692
1805
  /**
1693
1806
  * <p>The Amazon Resource Name (ARN) of an Secrets Manager secret
1694
- * that contains the key-value pairs required to connect to your
1695
- * Confluence server. The secret must contain a JSON structure with the
1696
- * following keys:</p>
1697
- * <ul>
1698
- * <li>
1699
- * <p>username—The user name or email address of a user with
1700
- * administrative privileges for the Confluence server.</p>
1701
- * </li>
1702
- * <li>
1703
- * <p>password—The password associated with the user logging
1704
- * in to the Confluence server.</p>
1705
- * </li>
1706
- * </ul>
1807
+ * that contains the user name and password required to connect to the
1808
+ * Confluence instance. If you use Confluence cloud, you use a
1809
+ * generated API token as the password. For more information, see
1810
+ * <a href="https://docs.aws.amazon.com/kendra/latest/dg/data-source-confluence.html">Using a
1811
+ * Confluemce data source</a>.</p>
1707
1812
  */
1708
1813
  SecretArn: string | undefined;
1709
1814
  /**
1710
- * <p>Specifies the version of the Confluence installation that you are
1711
- * connecting to.</p>
1815
+ * <p>The version or the type of the Confluence installation to connect to.</p>
1712
1816
  */
1713
1817
  Version: ConfluenceVersion | string | undefined;
1714
1818
  /**
@@ -1742,7 +1846,7 @@ export interface ConfluenceConfiguration {
1742
1846
  */
1743
1847
  InclusionPatterns?: string[];
1744
1848
  /**
1745
- * <p>>A list of regular expression patterns to exclude certain blog posts, pages,
1849
+ * <p>A list of regular expression patterns to exclude certain blog posts, pages,
1746
1850
  * spaces, or attachments in your Confluence. Content that matches the patterns are
1747
1851
  * excluded from the index. Content that doesn't match the patterns is included in
1748
1852
  * the index. If content matches both an inclusion and exclusion pattern, the
@@ -2054,7 +2158,8 @@ export interface OnPremiseConfiguration {
2054
2158
  */
2055
2159
  OrganizationName: string | undefined;
2056
2160
  /**
2057
- * <p>Information required to find a specific file in an Amazon S3 bucket.</p>
2161
+ * <p>The path to the SSL certificate stored in an Amazon S3 bucket.
2162
+ * You use this to connect to GitHub. </p>
2058
2163
  */
2059
2164
  SslCertificateS3Path: S3Path | undefined;
2060
2165
  }
@@ -2338,28 +2443,29 @@ export declare enum IssueSubEntity {
2338
2443
  */
2339
2444
  export interface JiraConfiguration {
2340
2445
  /**
2341
- * <p>The URL of the Jira account. For example, company.attlassian.net or
2342
- * https://jira.company.com. You can find your Jira account URL in the URL of
2343
- * your profile page for Jira desktop.</p>
2446
+ * <p>The URL of the Jira account. For example, <i>company.atlassian.net</i>
2447
+ * or <i>https://jira.company.com</i>. You can find your Jira account URL in
2448
+ * the URL of your profile page for Jira desktop.</p>
2344
2449
  */
2345
2450
  JiraAccountUrl: string | undefined;
2346
2451
  /**
2347
- * <p>The Amazon Resource Name (ARN) of an Secrets Manager secret that
2348
- * contains the key-value pairs required to connect to your Jira
2349
- * data source. The secret must
2350
- * contain a JSON structure with the following keys:</p>
2452
+ * <p>The Amazon Resource Name (ARN) of a secret in Secrets Manager contains the
2453
+ * key-value pairs required to connect to your Jira data source. The secret must contain a
2454
+ * JSON structure with the following keys:</p>
2351
2455
  * <ul>
2352
2456
  * <li>
2353
- * <p>jira-id—The ID of the Jira account.</p>
2457
+ * <p>jiraId—The Jira username.</p>
2354
2458
  * </li>
2355
2459
  * <li>
2356
- * <p>jiraCredentials—The password of the Jira account user.</p>
2460
+ * <p>jiraCredentials—The Jira API token. For more information on creating an
2461
+ * API token in Jira, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/data-source-jira.html#jira-authentication"> Authentication for a Jira data source</a>.</p>
2357
2462
  * </li>
2358
2463
  * </ul>
2359
2464
  */
2360
2465
  SecretArn: string | undefined;
2361
2466
  /**
2362
- * <p>Specify to use the change log option to update your index.</p>
2467
+ * <p>
2468
+ * <code>TRUE</code> to use the Jira change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in Jira.</p>
2363
2469
  */
2364
2470
  UseChangeLog?: boolean;
2365
2471
  /**
@@ -2541,9 +2647,8 @@ export interface OneDriveConfiguration {
2541
2647
  */
2542
2648
  FieldMappings?: DataSourceToIndexFieldMapping[];
2543
2649
  /**
2544
- * <p>A Boolean value that specifies whether local
2545
- * groups are disabled (<code>True</code>) or enabled (<code>False</code>).
2546
- * </p>
2650
+ * <p>
2651
+ * <code>TRUE</code> to disable local groups information.</p>
2547
2652
  */
2548
2653
  DisableLocalGroups?: boolean;
2549
2654
  }
@@ -2575,22 +2680,22 @@ export interface QuipConfiguration {
2575
2680
  */
2576
2681
  SecretArn: string | undefined;
2577
2682
  /**
2578
- * <p>Specify whether to crawl file comments in Quip.
2579
- * You can specify one or more of these options.</p>
2683
+ * <p>
2684
+ * <code>TRUE</code> to index file comments.</p>
2580
2685
  */
2581
2686
  CrawlFileComments?: boolean;
2582
2687
  /**
2583
- * <p>Specify whether to crawl chat rooms in Quip.
2584
- * You can specify one or more of these options.</p>
2688
+ * <p>
2689
+ * <code>TRUE</code> to index the contents of chat rooms.</p>
2585
2690
  */
2586
2691
  CrawlChatRooms?: boolean;
2587
2692
  /**
2588
- * <p>Specify whether to crawl attachments in Quip.
2589
- * You can specify one or more of these options.</p>
2693
+ * <p>
2694
+ * <code>TRUE</code> to index attachments.</p>
2590
2695
  */
2591
2696
  CrawlAttachments?: boolean;
2592
2697
  /**
2593
- * <p>The identifier of the Quip folder IDs to index.</p>
2698
+ * <p>The identifier of the Quip folders you want to index.</p>
2594
2699
  */
2595
2700
  FolderIds?: string[];
2596
2701
  /**
@@ -3210,7 +3315,10 @@ export interface ServiceNowConfiguration {
3210
3315
  /**
3211
3316
  * <p>The Amazon Resource Name (ARN) of the Secrets Manager secret
3212
3317
  * that contains the user name and password required to connect to the
3213
- * ServiceNow instance.</p>
3318
+ * ServiceNow instance. You can also provide OAuth authentication credentials
3319
+ * of user name, password, client ID, and client secret. For more information,
3320
+ * see <a href="https://docs.aws.amazon.com/kendra/latest/dg/data-source-servicenow.html#servicenow-authentication">Authentication
3321
+ * for a ServiceNow data source</a>.</p>
3214
3322
  */
3215
3323
  SecretArn: string | undefined;
3216
3324
  /**
@@ -3262,32 +3370,26 @@ export declare enum SharePointVersion {
3262
3370
  */
3263
3371
  export interface SharePointConfiguration {
3264
3372
  /**
3265
- * <p>The version of Microsoft SharePoint that you are using as a data
3266
- * source.</p>
3373
+ * <p>The version of Microsoft SharePoint that you use.</p>
3267
3374
  */
3268
3375
  SharePointVersion: SharePointVersion | string | undefined;
3269
3376
  /**
3270
- * <p>The URLs of the Microsoft SharePoint site that contains the
3271
- * documents that should be indexed.</p>
3377
+ * <p>The Microsoft SharePoint site URLs for the documents you want to indext.</p>
3272
3378
  */
3273
3379
  Urls: string[] | undefined;
3274
3380
  /**
3275
- * <p>The Amazon Resource Name (ARN) of credentials stored in
3276
- * Secrets Manager. The credentials should be a user/password pair.
3381
+ * <p>The Amazon Resource Name (ARN) of an Secrets Manager
3382
+ * secret that contains the user name and password required to
3383
+ * connect to the SharePoint instance.
3277
3384
  * If you use SharePoint Server, you also need to provide the sever
3278
3385
  * domain name as part of the credentials. For
3279
3386
  * more information, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/data-source-sharepoint.html">Using a
3280
- * Microsoft SharePoint Data Source</a>. For more information
3281
- * about Secrets Manager see <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html"> What Is
3282
- * Secrets Manager</a> in the <i>Secrets Manager
3283
- * </i> user guide.</p>
3387
+ * Microsoft SharePoint Data Source</a>.</p>
3284
3388
  */
3285
3389
  SecretArn: string | undefined;
3286
3390
  /**
3287
3391
  * <p>
3288
- * <code>TRUE</code> to include attachments to documents stored in
3289
- * your Microsoft SharePoint site in the index; otherwise,
3290
- * <code>FALSE</code>.</p>
3392
+ * <code>TRUE</code> to index document attachments.</p>
3291
3393
  */
3292
3394
  CrawlAttachments?: boolean;
3293
3395
  /**
@@ -3304,7 +3406,7 @@ export interface SharePointConfiguration {
3304
3406
  * don't match the patterns are excluded from the index. If a document matches both
3305
3407
  * an inclusion and exclusion pattern, the exclusion pattern takes precedence and the
3306
3408
  * document isn't included in the index.</p>
3307
- * <p>The regex is applied to the display URL of the SharePoint
3409
+ * <p>The regex applies to the display URL of the SharePoint
3308
3410
  * document.</p>
3309
3411
  */
3310
3412
  InclusionPatterns?: string[];
@@ -3314,12 +3416,15 @@ export interface SharePointConfiguration {
3314
3416
  * don't match the patterns are included in the index. If a document matches both
3315
3417
  * an inclusion and exclusion pattern, the exclusion pattern takes precedence and the
3316
3418
  * document isn't included in the index.</p>
3317
- * <p>The regex is applied to the display URL of the SharePoint
3419
+ * <p>The regex applies to the display URL of the SharePoint
3318
3420
  * document.</p>
3319
3421
  */
3320
3422
  ExclusionPatterns?: string[];
3321
3423
  /**
3322
- * <p>Provides the configuration information to connect to an Amazon VPC.</p>
3424
+ * <p>Configuration information for an Amazon Virtual Private Cloud to connect
3425
+ * to your Microsoft SharePoint. For more information, see
3426
+ * <a href="https://docs.aws.amazon.com/kendra/latest/dg/vpc-configuration.html">Configuring
3427
+ * a VPC</a>.</p>
3323
3428
  */
3324
3429
  VpcConfiguration?: DataSourceVpcConfiguration;
3325
3430
  /**
@@ -3336,14 +3441,13 @@ export interface SharePointConfiguration {
3336
3441
  */
3337
3442
  DocumentTitleFieldName?: string;
3338
3443
  /**
3339
- * <p>A Boolean value that specifies whether local
3340
- * groups are disabled (<code>True</code>) or enabled (<code>False</code>).
3341
- * </p>
3444
+ * <p>
3445
+ * <code>TRUE</code> to disable local groups information.</p>
3342
3446
  */
3343
3447
  DisableLocalGroups?: boolean;
3344
3448
  /**
3345
- * <p>Information required to find a specific file in an Amazon S3
3346
- * bucket.</p>
3449
+ * <p>The path to the SSL certificate stored in an Amazon S3 bucket. You use
3450
+ * this to connect to SharePoint.</p>
3347
3451
  */
3348
3452
  SslCertificateS3Path?: S3Path;
3349
3453
  }
@@ -3869,6 +3973,11 @@ export interface DataSourceConfiguration {
3869
3973
  * your data source.</p>
3870
3974
  */
3871
3975
  GitHubConfiguration?: GitHubConfiguration;
3976
+ /**
3977
+ * <p>Provides the configuration information to connect to Alfresco as your
3978
+ * data source.</p>
3979
+ */
3980
+ AlfrescoConfiguration?: AlfrescoConfiguration;
3872
3981
  }
3873
3982
  export declare namespace DataSourceConfiguration {
3874
3983
  /**
@@ -3900,6 +4009,7 @@ export declare namespace Tag {
3900
4009
  const filterSensitiveLog: (obj: Tag) => any;
3901
4010
  }
3902
4011
  export declare enum DataSourceType {
4012
+ ALFRESCO = "ALFRESCO",
3903
4013
  BOX = "BOX",
3904
4014
  CONFLUENCE = "CONFLUENCE",
3905
4015
  CUSTOM = "CUSTOM",
@@ -5051,7 +5161,7 @@ export interface CapacityUnitsConfiguration {
5051
5161
  /**
5052
5162
  * <p>The amount of extra storage capacity for an index.
5053
5163
  * A single capacity unit provides 30 GB of storage space or 100,000 documents,
5054
- * whichever is reached first.</p>
5164
+ * whichever is reached first. You can add up to 100 extra capacity units.</p>
5055
5165
  */
5056
5166
  StorageCapacityUnits: number | undefined;
5057
5167
  /**
@@ -5059,7 +5169,7 @@ export interface CapacityUnitsConfiguration {
5059
5169
  * <a href="https://docs.aws.amazon.com/kendra/latest/dg/API_GetQuerySuggestions.html">GetQuerySuggestions</a>
5060
5170
  * capacity.</p>
5061
5171
  * <p>A single extra capacity unit for an index provides 0.1 queries per second or approximately
5062
- * 8,000 queries per day.</p>
5172
+ * 8,000 queries per day. You can add up to 100 extra capacity units.</p>
5063
5173
  * <p>
5064
5174
  * <code>GetQuerySuggestions</code> capacity is five times the
5065
5175
  * provisioned query capacity for an index, or the base capacity of 2.5 calls per second,