aws-sdk 2.776.0 → 2.780.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.
@@ -398,6 +398,159 @@ declare namespace Kendra {
398
398
  ChangeDetectingColumns: ChangeDetectingColumns;
399
399
  }
400
400
  export type ColumnName = string;
401
+ export interface ConfluenceAttachmentConfiguration {
402
+ /**
403
+ * Indicates whether Amazon Kendra indexes attachments to the pages and blogs in the Confluence data source.
404
+ */
405
+ CrawlAttachments?: Boolean;
406
+ /**
407
+ * Defines how attachment metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation. If you specify the AttachentFieldMappings parameter, you must specify at least one field mapping.
408
+ */
409
+ AttachmentFieldMappings?: ConfluenceAttachmentFieldMappingsList;
410
+ }
411
+ export type ConfluenceAttachmentFieldMappingsList = ConfluenceAttachmentToIndexFieldMapping[];
412
+ export type ConfluenceAttachmentFieldName = "AUTHOR"|"CONTENT_TYPE"|"CREATED_DATE"|"DISPLAY_URL"|"FILE_SIZE"|"ITEM_TYPE"|"PARENT_ID"|"SPACE_KEY"|"SPACE_NAME"|"URL"|"VERSION"|string;
413
+ export interface ConfluenceAttachmentToIndexFieldMapping {
414
+ /**
415
+ * The name of the field in the data source. You must first create the index field using the operation.
416
+ */
417
+ DataSourceFieldName?: ConfluenceAttachmentFieldName;
418
+ /**
419
+ * The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.
420
+ */
421
+ DateFieldFormat?: DataSourceDateFieldFormat;
422
+ /**
423
+ * The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.
424
+ */
425
+ IndexFieldName?: IndexFieldName;
426
+ }
427
+ export interface ConfluenceBlogConfiguration {
428
+ /**
429
+ * Defines how blog metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation. If you specify the BlogFieldMappings parameter, you must specify at least one field mapping.
430
+ */
431
+ BlogFieldMappings?: ConfluenceBlogFieldMappingsList;
432
+ }
433
+ export type ConfluenceBlogFieldMappingsList = ConfluenceBlogToIndexFieldMapping[];
434
+ export type ConfluenceBlogFieldName = "AUTHOR"|"DISPLAY_URL"|"ITEM_TYPE"|"LABELS"|"PUBLISH_DATE"|"SPACE_KEY"|"SPACE_NAME"|"URL"|"VERSION"|string;
435
+ export interface ConfluenceBlogToIndexFieldMapping {
436
+ /**
437
+ * The name of the field in the data source.
438
+ */
439
+ DataSourceFieldName?: ConfluenceBlogFieldName;
440
+ /**
441
+ * The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.
442
+ */
443
+ DateFieldFormat?: DataSourceDateFieldFormat;
444
+ /**
445
+ * The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.
446
+ */
447
+ IndexFieldName?: IndexFieldName;
448
+ }
449
+ export interface ConfluenceConfiguration {
450
+ /**
451
+ * The URL of your Confluence instance. Use the full URL of the server. For example, https://server.example.com:port/. You can also use an IP address, for example, https://192.168.1.113/.
452
+ */
453
+ ServerUrl: Url;
454
+ /**
455
+ * The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Confluence server. The secret must contain a JSON structure with the following keys: username - The user name of a user with administrative privileges for the Confluence server. password - The password associated with the user logging in to the Confluence server.
456
+ */
457
+ SecretArn: SecretArn;
458
+ /**
459
+ * Specifies the version of the Confluence installation that you are connecting to.
460
+ */
461
+ Version: ConfluenceVersion;
462
+ /**
463
+ * Specifies configuration information for indexing Confluence spaces.
464
+ */
465
+ SpaceConfiguration?: ConfluenceSpaceConfiguration;
466
+ /**
467
+ * Specifies configuration information for indexing Confluence pages.
468
+ */
469
+ PageConfiguration?: ConfluencePageConfiguration;
470
+ /**
471
+ * Specifies configuration information for indexing Confluence blogs.
472
+ */
473
+ BlogConfiguration?: ConfluenceBlogConfiguration;
474
+ /**
475
+ * Specifies configuration information for indexing attachments to Confluence blogs and pages.
476
+ */
477
+ AttachmentConfiguration?: ConfluenceAttachmentConfiguration;
478
+ /**
479
+ * Specifies the information for connecting to an Amazon VPC.
480
+ */
481
+ VpcConfiguration?: DataSourceVpcConfiguration;
482
+ /**
483
+ * A list of regular expression patterns that apply to a URL on the Confluence server. An inclusion pattern can apply to a blog post, a page, a space, or an attachment. Items that match the patterns are included in the index. Items that don't match the pattern are excluded from the index. If an item matches both an inclusion pattern and an exclusion pattern, the item isn't included in the index.
484
+ */
485
+ InclusionPatterns?: DataSourceInclusionsExclusionsStrings;
486
+ /**
487
+ * A list of regular expression patterns that apply to a URL on the Confluence server. An exclusion pattern can apply to a blog post, a page, a space, or an attachment. Items that match the pattern are excluded from the index. Items that don't match the pattern are included in the index. If a item matches both an exclusion pattern and an inclusion pattern, the item isn't included in the index.
488
+ */
489
+ ExclusionPatterns?: DataSourceInclusionsExclusionsStrings;
490
+ }
491
+ export interface ConfluencePageConfiguration {
492
+ /**
493
+ * Defines how page metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation. If you specify the PageFieldMappings parameter, you must specify at least one field mapping.
494
+ */
495
+ PageFieldMappings?: ConfluencePageFieldMappingsList;
496
+ }
497
+ export type ConfluencePageFieldMappingsList = ConfluencePageToIndexFieldMapping[];
498
+ export type ConfluencePageFieldName = "AUTHOR"|"CONTENT_STATUS"|"CREATED_DATE"|"DISPLAY_URL"|"ITEM_TYPE"|"LABELS"|"MODIFIED_DATE"|"PARENT_ID"|"SPACE_KEY"|"SPACE_NAME"|"URL"|"VERSION"|string;
499
+ export interface ConfluencePageToIndexFieldMapping {
500
+ /**
501
+ * The name of the field in the data source.
502
+ */
503
+ DataSourceFieldName?: ConfluencePageFieldName;
504
+ /**
505
+ * The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.
506
+ */
507
+ DateFieldFormat?: DataSourceDateFieldFormat;
508
+ /**
509
+ * The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.
510
+ */
511
+ IndexFieldName?: IndexFieldName;
512
+ }
513
+ export interface ConfluenceSpaceConfiguration {
514
+ /**
515
+ * Specifies whether Amazon Kendra should index personal spaces. Users can add restrictions to items in personal spaces. If personal spaces are indexed, queries without user context information may return restricted items from a personal space in their results. For more information, see Filtering on user context.
516
+ */
517
+ CrawlPersonalSpaces?: Boolean;
518
+ /**
519
+ * Specifies whether Amazon Kendra should index archived spaces.
520
+ */
521
+ CrawlArchivedSpaces?: Boolean;
522
+ /**
523
+ * A list of space keys for Confluence spaces. If you include a key, the blogs, documents, and attachments in the space are indexed. Spaces that aren't in the list aren't indexed. A space in the list must exist. Otherwise, Amazon Kendra logs an error when the data source is synchronized. If a space is in both the IncludeSpaces and the ExcludeSpaces list, the space is excluded.
524
+ */
525
+ IncludeSpaces?: ConfluenceSpaceList;
526
+ /**
527
+ * A list of space keys of Confluence spaces. If you include a key, the blogs, documents, and attachments in the space are not indexed. If a space is in both the ExcludeSpaces and the IncludeSpaces list, the space is excluded.
528
+ */
529
+ ExcludeSpaces?: ConfluenceSpaceList;
530
+ /**
531
+ * Defines how space metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation. If you specify the SpaceFieldMappings parameter, you must specify at least one field mapping.
532
+ */
533
+ SpaceFieldMappings?: ConfluenceSpaceFieldMappingsList;
534
+ }
535
+ export type ConfluenceSpaceFieldMappingsList = ConfluenceSpaceToIndexFieldMapping[];
536
+ export type ConfluenceSpaceFieldName = "DISPLAY_URL"|"ITEM_TYPE"|"SPACE_KEY"|"URL"|string;
537
+ export type ConfluenceSpaceIdentifier = string;
538
+ export type ConfluenceSpaceList = ConfluenceSpaceIdentifier[];
539
+ export interface ConfluenceSpaceToIndexFieldMapping {
540
+ /**
541
+ * The name of the field in the data source.
542
+ */
543
+ DataSourceFieldName?: ConfluenceSpaceFieldName;
544
+ /**
545
+ * The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.
546
+ */
547
+ DateFieldFormat?: DataSourceDateFieldFormat;
548
+ /**
549
+ * The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.
550
+ */
551
+ IndexFieldName?: IndexFieldName;
552
+ }
553
+ export type ConfluenceVersion = "SERVER"|string;
401
554
  export interface ConnectionConfiguration {
402
555
  /**
403
556
  * The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.
@@ -566,6 +719,10 @@ declare namespace Kendra {
566
719
  * Provides configuration for data sources that connect to ServiceNow instances.
567
720
  */
568
721
  ServiceNowConfiguration?: ServiceNowConfiguration;
722
+ /**
723
+ * Provides configuration information for connecting to a Confluence data source.
724
+ */
725
+ ConfluenceConfiguration?: ConfluenceConfiguration;
569
726
  }
570
727
  export type DataSourceDateFieldFormat = string;
571
728
  export type DataSourceFieldName = string;
@@ -685,7 +842,7 @@ declare namespace Kendra {
685
842
  IndexFieldName: IndexFieldName;
686
843
  }
687
844
  export type DataSourceToIndexFieldMappingList = DataSourceToIndexFieldMapping[];
688
- export type DataSourceType = "S3"|"SHAREPOINT"|"DATABASE"|"SALESFORCE"|"ONEDRIVE"|"SERVICENOW"|"CUSTOM"|string;
845
+ export type DataSourceType = "S3"|"SHAREPOINT"|"DATABASE"|"SALESFORCE"|"ONEDRIVE"|"SERVICENOW"|"CUSTOM"|"CONFLUENCE"|string;
689
846
  export interface DataSourceVpcConfiguration {
690
847
  /**
691
848
  * A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.
@@ -148,11 +148,11 @@ declare class Macie2 extends Service {
148
148
  */
149
149
  disableMacie(callback?: (err: AWSError, data: Macie2.Types.DisableMacieResponse) => void): Request<Macie2.Types.DisableMacieResponse, AWSError>;
150
150
  /**
151
- * Disables an account as a delegated administrator of Amazon Macie for an AWS organization.
151
+ * Disables an account as the delegated Amazon Macie administrator account for an AWS organization.
152
152
  */
153
153
  disableOrganizationAdminAccount(params: Macie2.Types.DisableOrganizationAdminAccountRequest, callback?: (err: AWSError, data: Macie2.Types.DisableOrganizationAdminAccountResponse) => void): Request<Macie2.Types.DisableOrganizationAdminAccountResponse, AWSError>;
154
154
  /**
155
- * Disables an account as a delegated administrator of Amazon Macie for an AWS organization.
155
+ * Disables an account as the delegated Amazon Macie administrator account for an AWS organization.
156
156
  */
157
157
  disableOrganizationAdminAccount(callback?: (err: AWSError, data: Macie2.Types.DisableOrganizationAdminAccountResponse) => void): Request<Macie2.Types.DisableOrganizationAdminAccountResponse, AWSError>;
158
158
  /**
@@ -180,11 +180,11 @@ declare class Macie2 extends Service {
180
180
  */
181
181
  enableMacie(callback?: (err: AWSError, data: Macie2.Types.EnableMacieResponse) => void): Request<Macie2.Types.EnableMacieResponse, AWSError>;
182
182
  /**
183
- * Enables an account as a delegated administrator of Amazon Macie for an AWS organization.
183
+ * Designates an account as the delegated Amazon Macie administrator account for an AWS organization.
184
184
  */
185
185
  enableOrganizationAdminAccount(params: Macie2.Types.EnableOrganizationAdminAccountRequest, callback?: (err: AWSError, data: Macie2.Types.EnableOrganizationAdminAccountResponse) => void): Request<Macie2.Types.EnableOrganizationAdminAccountResponse, AWSError>;
186
186
  /**
187
- * Enables an account as a delegated administrator of Amazon Macie for an AWS organization.
187
+ * Designates an account as the delegated Amazon Macie administrator account for an AWS organization.
188
188
  */
189
189
  enableOrganizationAdminAccount(callback?: (err: AWSError, data: Macie2.Types.EnableOrganizationAdminAccountResponse) => void): Request<Macie2.Types.EnableOrganizationAdminAccountResponse, AWSError>;
190
190
  /**
@@ -332,11 +332,11 @@ declare class Macie2 extends Service {
332
332
  */
333
333
  listMembers(callback?: (err: AWSError, data: Macie2.Types.ListMembersResponse) => void): Request<Macie2.Types.ListMembersResponse, AWSError>;
334
334
  /**
335
- * Retrieves information about the account that's designated as the delegated administrator of Amazon Macie for an AWS organization.
335
+ * Retrieves information about the delegated Amazon Macie administrator account for an AWS organization.
336
336
  */
337
337
  listOrganizationAdminAccounts(params: Macie2.Types.ListOrganizationAdminAccountsRequest, callback?: (err: AWSError, data: Macie2.Types.ListOrganizationAdminAccountsResponse) => void): Request<Macie2.Types.ListOrganizationAdminAccountsResponse, AWSError>;
338
338
  /**
339
- * Retrieves information about the account that's designated as the delegated administrator of Amazon Macie for an AWS organization.
339
+ * Retrieves information about the delegated Amazon Macie administrator account for an AWS organization.
340
340
  */
341
341
  listOrganizationAdminAccounts(callback?: (err: AWSError, data: Macie2.Types.ListOrganizationAdminAccountsResponse) => void): Request<Macie2.Types.ListOrganizationAdminAccountsResponse, AWSError>;
342
342
  /**
@@ -412,11 +412,11 @@ declare class Macie2 extends Service {
412
412
  */
413
413
  updateMemberSession(callback?: (err: AWSError, data: Macie2.Types.UpdateMemberSessionResponse) => void): Request<Macie2.Types.UpdateMemberSessionResponse, AWSError>;
414
414
  /**
415
- * Updates Amazon Macie configuration settings for an AWS organization.
415
+ * Updates the Amazon Macie configuration settings for an AWS organization.
416
416
  */
417
417
  updateOrganizationConfiguration(params: Macie2.Types.UpdateOrganizationConfigurationRequest, callback?: (err: AWSError, data: Macie2.Types.UpdateOrganizationConfigurationResponse) => void): Request<Macie2.Types.UpdateOrganizationConfigurationResponse, AWSError>;
418
418
  /**
419
- * Updates Amazon Macie configuration settings for an AWS organization.
419
+ * Updates the Amazon Macie configuration settings for an AWS organization.
420
420
  */
421
421
  updateOrganizationConfiguration(callback?: (err: AWSError, data: Macie2.Types.UpdateOrganizationConfigurationResponse) => void): Request<Macie2.Types.UpdateOrganizationConfigurationResponse, AWSError>;
422
422
  }
@@ -1311,7 +1311,7 @@ declare namespace Macie2 {
1311
1311
  */
1312
1312
  autoEnable?: __boolean;
1313
1313
  /**
1314
- * Specifies whether the maximum number of Amazon Macie member accounts are already associated with the AWS organization.
1314
+ * Specifies whether the maximum number of Amazon Macie member accounts are part of the AWS organization.
1315
1315
  */
1316
1316
  maxAccountLimitReached?: __boolean;
1317
1317
  }
@@ -1364,7 +1364,7 @@ declare namespace Macie2 {
1364
1364
  }
1365
1365
  export interface EnableOrganizationAdminAccountRequest {
1366
1366
  /**
1367
- * The AWS account ID for the account.
1367
+ * The AWS account ID for the account to designate as the delegated Amazon Macie administrator account for the organization.
1368
1368
  */
1369
1369
  adminAccountId: __string;
1370
1370
  /**
@@ -2227,7 +2227,7 @@ declare namespace Macie2 {
2227
2227
  }
2228
2228
  export interface ListOrganizationAdminAccountsResponse {
2229
2229
  /**
2230
- * An array of objects, one for each account that's designated as a delegated administrator of Amazon Macie for the AWS organization. Of those accounts, only one can have a status of ENABLED.
2230
+ * An array of objects, one for each delegated Amazon Macie administrator account for the organization. Only one of these accounts can have a status of ENABLED.
2231
2231
  */
2232
2232
  adminAccounts?: __listOfAdminAccount;
2233
2233
  /**
@@ -2331,7 +2331,7 @@ declare namespace Macie2 {
2331
2331
  */
2332
2332
  lineRanges?: Ranges;
2333
2333
  /**
2334
- * An array of objects, one for each occurrence of sensitive data in a binary text file. Each object specifies the position of the data relative to the start of the file. This value is typically null. For binary text files, Macie adds location data to a lineRanges.Range or Page object, depending on the file type.
2334
+ * An array of objects, one for each occurrence of sensitive data in a binary text file. Each object specifies the position of the data relative to the beginning of the file. This value is typically null. For binary text files, Macie adds location data to a lineRanges.Range or Page object, depending on the file type.
2335
2335
  */
2336
2336
  offsetRanges?: Ranges;
2337
2337
  /**
@@ -2350,7 +2350,7 @@ declare namespace Macie2 {
2350
2350
  */
2351
2351
  lineRange?: Range;
2352
2352
  /**
2353
- * The position of the data on the page, relative to the start and end of the page.
2353
+ * The position of the data on the page, relative to the beginning of the page.
2354
2354
  */
2355
2355
  offsetRange?: Range;
2356
2356
  /**
@@ -2383,11 +2383,11 @@ declare namespace Macie2 {
2383
2383
  }
2384
2384
  export interface Range {
2385
2385
  /**
2386
- * Possible values are: In an Occurrences.lineRanges array, the number of lines from the end of the file. In an Occurrences.offsetRanges array, the number of characters from the end of the file. In a Page object, the number of lines (lineRange) or characters (offsetRange) from the end of the page.
2386
+ * Possible values are: In an Occurrences.lineRanges array, the number of lines from the beginning of the file to the end of the sensitive data. In an Occurrences.offsetRanges array, the number of characters from the beginning of the file to the end of the sensitive data. In a Page object, the number of lines (lineRange) or characters (offsetRange) from the beginning of the page to the end of the sensitive data.
2387
2387
  */
2388
2388
  end?: __long;
2389
2389
  /**
2390
- * Possible values are: In an Occurrences.lineRanges array, the number of lines from the start of the file. In an Occurrences.offsetRanges array, the number of characters from the start of the file. In a Page object, the number of lines (lineRange) or characters (offsetRange) from the start of the page.
2390
+ * Possible values are: In an Occurrences.lineRanges array, the number of lines from the beginning of the file to the beginning of the sensitive data. In an Occurrences.offsetRanges array, the number of characters from the beginning of the file to the beginning of the sensitive data. In a Page object, the number of lines (lineRange) or characters (offsetRange) from the beginning of the page to the beginning of the sensitive data.
2391
2391
  */
2392
2392
  start?: __long;
2393
2393
  /**
@@ -69,6 +69,12 @@ declare class MediaTailor extends Service {
69
69
  untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
70
70
  }
71
71
  declare namespace MediaTailor {
72
+ export interface AdMarkerPassthrough {
73
+ /**
74
+ * For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.
75
+ */
76
+ Enabled?: __boolean;
77
+ }
72
78
  export interface AvailSuppression {
73
79
  /**
74
80
  * Sets the mode for avail suppression, also known as ad suppression. By default, ad suppression is off and all ad breaks are filled by MediaTailor with ads or slate.
@@ -166,6 +172,10 @@ declare namespace MediaTailor {
166
172
  * The configuration for pre-roll ad insertion.
167
173
  */
168
174
  LivePreRollConfiguration?: LivePreRollConfiguration;
175
+ /**
176
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
177
+ */
178
+ ManifestProcessingRules?: ManifestProcessingRules;
169
179
  /**
170
180
  * The identifier for the playback configuration.
171
181
  */
@@ -247,6 +257,9 @@ declare namespace MediaTailor {
247
257
  Tags?: __mapOf__string;
248
258
  }
249
259
  export type OriginManifestType = "SINGLE_PERIOD"|"MULTI_PERIOD"|string;
260
+ export interface ManifestProcessingRules {
261
+ AdMarkerPassthrough?: AdMarkerPassthrough;
262
+ }
250
263
  export type Mode = "OFF"|"BEHIND_LIVE_EDGE"|string;
251
264
  export interface PlaybackConfiguration {
252
265
  /**
@@ -273,6 +286,10 @@ declare namespace MediaTailor {
273
286
  * The configuration for HLS content.
274
287
  */
275
288
  HlsConfiguration?: HlsConfiguration;
289
+ /**
290
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
291
+ */
292
+ ManifestProcessingRules?: ManifestProcessingRules;
276
293
  /**
277
294
  * The identifier for the playback configuration.
278
295
  */
@@ -345,6 +362,10 @@ declare namespace MediaTailor {
345
362
  * The configuration for pre-roll ad insertion.
346
363
  */
347
364
  LivePreRollConfiguration?: LivePreRollConfiguration;
365
+ /**
366
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
367
+ */
368
+ ManifestProcessingRules?: ManifestProcessingRules;
348
369
  /**
349
370
  * The identifier for the playback configuration.
350
371
  */
@@ -399,6 +420,10 @@ declare namespace MediaTailor {
399
420
  * The configuration for pre-roll ad insertion.
400
421
  */
401
422
  LivePreRollConfiguration?: LivePreRollConfiguration;
423
+ /**
424
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
425
+ */
426
+ ManifestProcessingRules?: ManifestProcessingRules;
402
427
  /**
403
428
  * The identifier for the playback configuration.
404
429
  */
@@ -461,6 +486,7 @@ declare namespace MediaTailor {
461
486
  */
462
487
  TagKeys: __listOf__string;
463
488
  }
489
+ export type __boolean = boolean;
464
490
  export type __integer = number;
465
491
  export type __integerMin1 = number;
466
492
  export type __integerMin1Max100 = number;