@aws-sdk/client-bedrock-data-automation 3.952.0 → 3.953.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 (34) hide show
  1. package/dist-cjs/index.js +332 -225
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateBlueprintCommand.js +2 -2
  4. package/dist-es/commands/CreateBlueprintVersionCommand.js +2 -2
  5. package/dist-es/commands/CreateDataAutomationProjectCommand.js +2 -2
  6. package/dist-es/commands/DeleteBlueprintCommand.js +2 -2
  7. package/dist-es/commands/DeleteDataAutomationProjectCommand.js +2 -2
  8. package/dist-es/commands/GetBlueprintCommand.js +2 -2
  9. package/dist-es/commands/GetDataAutomationProjectCommand.js +2 -2
  10. package/dist-es/commands/ListBlueprintsCommand.js +2 -2
  11. package/dist-es/commands/ListDataAutomationProjectsCommand.js +2 -2
  12. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  13. package/dist-es/commands/TagResourceCommand.js +2 -2
  14. package/dist-es/commands/UntagResourceCommand.js +2 -2
  15. package/dist-es/commands/UpdateBlueprintCommand.js +2 -2
  16. package/dist-es/commands/UpdateDataAutomationProjectCommand.js +2 -2
  17. package/dist-es/index.js +1 -0
  18. package/dist-es/runtimeConfig.shared.js +6 -1
  19. package/dist-es/schemas/schemas_0.js +214 -206
  20. package/dist-types/BedrockDataAutomationClient.d.ts +1 -10
  21. package/dist-types/index.d.ts +1 -0
  22. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  23. package/dist-types/runtimeConfig.d.ts +6 -2
  24. package/dist-types/runtimeConfig.native.d.ts +6 -2
  25. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  26. package/dist-types/schemas/schemas_0.d.ts +100 -122
  27. package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +0 -4
  28. package/dist-types/ts3.4/index.d.ts +1 -0
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -123
  34. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class BedrockDataAutomationClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let BedrockDataAutomationServiceException$1 = class BedrockDataAutomationServiceException extends smithyClient.ServiceException {
113
+ class BedrockDataAutomationServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, BedrockDataAutomationServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends BedrockDataAutomationServiceException$1 {
120
+ class AccessDeniedException extends BedrockDataAutomationServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BedrockDataAut
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends BedrockDataAutomationServiceException$1 {
131
+ }
132
+ class ConflictException extends BedrockDataAutomationServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends BedrockDataAutomationS
140
140
  });
141
141
  Object.setPrototypeOf(this, ConflictException.prototype);
142
142
  }
143
- };
144
- let InternalServerException$1 = class InternalServerException extends BedrockDataAutomationServiceException$1 {
143
+ }
144
+ class InternalServerException extends BedrockDataAutomationServiceException {
145
145
  name = "InternalServerException";
146
146
  $fault = "server";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let InternalServerException$1 = class InternalServerException extends BedrockDat
152
152
  });
153
153
  Object.setPrototypeOf(this, InternalServerException.prototype);
154
154
  }
155
- };
156
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BedrockDataAutomationServiceException$1 {
155
+ }
156
+ class ServiceQuotaExceededException extends BedrockDataAutomationServiceException {
157
157
  name = "ServiceQuotaExceededException";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
164
164
  });
165
165
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
166
166
  }
167
- };
168
- let ThrottlingException$1 = class ThrottlingException extends BedrockDataAutomationServiceException$1 {
167
+ }
168
+ class ThrottlingException extends BedrockDataAutomationServiceException {
169
169
  name = "ThrottlingException";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,8 +176,8 @@ let ThrottlingException$1 = class ThrottlingException extends BedrockDataAutomat
176
176
  });
177
177
  Object.setPrototypeOf(this, ThrottlingException.prototype);
178
178
  }
179
- };
180
- let ValidationException$1 = class ValidationException extends BedrockDataAutomationServiceException$1 {
179
+ }
180
+ class ValidationException extends BedrockDataAutomationServiceException {
181
181
  name = "ValidationException";
182
182
  $fault = "client";
183
183
  fieldList;
@@ -190,8 +190,8 @@ let ValidationException$1 = class ValidationException extends BedrockDataAutomat
190
190
  Object.setPrototypeOf(this, ValidationException.prototype);
191
191
  this.fieldList = opts.fieldList;
192
192
  }
193
- };
194
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends BedrockDataAutomationServiceException$1 {
193
+ }
194
+ class ResourceNotFoundException extends BedrockDataAutomationServiceException {
195
195
  name = "ResourceNotFoundException";
196
196
  $fault = "client";
197
197
  constructor(opts) {
@@ -202,7 +202,7 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Bedroc
202
202
  });
203
203
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
204
204
  }
205
- };
205
+ }
206
206
 
207
207
  const _ADE = "AccessDeniedException";
208
208
  const _AEC = "AudioExtractionCategory";
@@ -398,44 +398,44 @@ var BlueprintName = [0, n0, _BN, 8, 0];
398
398
  var BlueprintSchema = [0, n0, _BS, 8, 0];
399
399
  var DataAutomationProjectDescription = [0, n0, _DAPD, 8, 0];
400
400
  var DataAutomationProjectName = [0, n0, _DAPN, 8, 0];
401
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
402
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
403
- var AudioExtractionCategory = [
401
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
402
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
403
+ var AudioExtractionCategory$ = [
404
404
  3,
405
405
  n0,
406
406
  _AEC,
407
407
  0,
408
408
  [_s, _t, _tC],
409
- [0, 64 | 0, () => AudioExtractionCategoryTypeConfiguration],
409
+ [0, 64 | 0, () => AudioExtractionCategoryTypeConfiguration$],
410
410
  ];
411
- var AudioExtractionCategoryTypeConfiguration = [
411
+ var AudioExtractionCategoryTypeConfiguration$ = [
412
412
  3,
413
413
  n0,
414
414
  _AECTC,
415
415
  0,
416
416
  [_tr],
417
- [() => TranscriptConfiguration],
417
+ [() => TranscriptConfiguration$],
418
418
  ];
419
- var AudioLanguageConfiguration = [3, n0, _ALC, 0, [_iL, _gOL, _iML], [64 | 0, 0, 2]];
420
- var AudioOverrideConfiguration = [
419
+ var AudioLanguageConfiguration$ = [3, n0, _ALC, 0, [_iL, _gOL, _iML], [64 | 0, 0, 2]];
420
+ var AudioOverrideConfiguration$ = [
421
421
  3,
422
422
  n0,
423
423
  _AOC,
424
424
  0,
425
425
  [_mP, _lC, _sDC],
426
- [() => ModalityProcessingConfiguration, () => AudioLanguageConfiguration, () => SensitiveDataConfiguration],
426
+ [() => ModalityProcessingConfiguration$, () => AudioLanguageConfiguration$, () => SensitiveDataConfiguration$],
427
427
  ];
428
- var AudioStandardExtraction = [3, n0, _ASE, 0, [_ca], [() => AudioExtractionCategory]];
429
- var AudioStandardGenerativeField = [3, n0, _ASGF, 0, [_s, _t], [0, 64 | 0]];
430
- var AudioStandardOutputConfiguration = [
428
+ var AudioStandardExtraction$ = [3, n0, _ASE, 0, [_ca], [() => AudioExtractionCategory$]];
429
+ var AudioStandardGenerativeField$ = [3, n0, _ASGF, 0, [_s, _t], [0, 64 | 0]];
430
+ var AudioStandardOutputConfiguration$ = [
431
431
  3,
432
432
  n0,
433
433
  _ASOC,
434
434
  0,
435
435
  [_ex, _gF],
436
- [() => AudioStandardExtraction, () => AudioStandardGenerativeField],
436
+ [() => AudioStandardExtraction$, () => AudioStandardGenerativeField$],
437
437
  ];
438
- var Blueprint = [
438
+ var Blueprint$ = [
439
439
  3,
440
440
  n0,
441
441
  _B,
@@ -443,9 +443,9 @@ var Blueprint = [
443
443
  [_bA, _sc, _ty, _cT, _lMT, _bN, _bV, _bS, _kKI, _kEC],
444
444
  [0, [() => BlueprintSchema, 0], 0, 5, 5, [() => BlueprintName, 0], 0, 0, 0, 128 | 0],
445
445
  ];
446
- var BlueprintFilter = [3, n0, _BF, 0, [_bA, _bV, _bS], [0, 0, 0]];
447
- var BlueprintItem = [3, n0, _BI, 0, [_bA, _bV, _bS], [0, 0, 0]];
448
- var BlueprintSummary = [
446
+ var BlueprintFilter$ = [3, n0, _BF, 0, [_bA, _bV, _bS], [0, 0, 0]];
447
+ var BlueprintItem$ = [3, n0, _BI, 0, [_bA, _bV, _bS], [0, 0, 0]];
448
+ var BlueprintSummary$ = [
449
449
  3,
450
450
  n0,
451
451
  _BSl,
@@ -453,19 +453,19 @@ var BlueprintSummary = [
453
453
  [_bA, _bV, _bS, _bN, _cT, _lMT],
454
454
  [0, 0, 0, [() => BlueprintName, 0], 5, 5],
455
455
  ];
456
- var ChannelLabelingConfiguration = [3, n0, _CLC, 0, [_s], [0]];
457
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
458
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
459
- var CreateBlueprintRequest = [
456
+ var ChannelLabelingConfiguration$ = [3, n0, _CLC, 0, [_s], [0]];
457
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
458
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
459
+ var CreateBlueprintRequest$ = [
460
460
  3,
461
461
  n0,
462
462
  _CBR,
463
463
  0,
464
464
  [_bN, _ty, _bS, _sc, _cTl, _eC, _ta],
465
- [[() => BlueprintName, 0], 0, 0, [() => BlueprintSchema, 0], [0, 4], () => EncryptionConfiguration, () => TagList],
465
+ [[() => BlueprintName, 0], 0, 0, [() => BlueprintSchema, 0], [0, 4], () => EncryptionConfiguration$, () => TagList],
466
466
  ];
467
- var CreateBlueprintResponse = [3, n0, _CBRr, 0, [_b], [[() => Blueprint, 0]]];
468
- var CreateBlueprintVersionRequest = [
467
+ var CreateBlueprintResponse$ = [3, n0, _CBRr, 0, [_b], [[() => Blueprint$, 0]]];
468
+ var CreateBlueprintVersionRequest$ = [
469
469
  3,
470
470
  n0,
471
471
  _CBVR,
@@ -476,8 +476,8 @@ var CreateBlueprintVersionRequest = [
476
476
  [0, 4],
477
477
  ],
478
478
  ];
479
- var CreateBlueprintVersionResponse = [3, n0, _CBVRr, 0, [_b], [[() => Blueprint, 0]]];
480
- var CreateDataAutomationProjectRequest = [
479
+ var CreateBlueprintVersionResponse$ = [3, n0, _CBVRr, 0, [_b], [[() => Blueprint$, 0]]];
480
+ var CreateDataAutomationProjectRequest$ = [
481
481
  3,
482
482
  n0,
483
483
  _CDAPR,
@@ -488,17 +488,24 @@ var CreateDataAutomationProjectRequest = [
488
488
  [() => DataAutomationProjectDescription, 0],
489
489
  0,
490
490
  0,
491
- () => StandardOutputConfiguration,
492
- () => CustomOutputConfiguration,
493
- () => OverrideConfiguration,
491
+ () => StandardOutputConfiguration$,
492
+ () => CustomOutputConfiguration$,
493
+ () => OverrideConfiguration$,
494
494
  [0, 4],
495
- () => EncryptionConfiguration,
495
+ () => EncryptionConfiguration$,
496
496
  () => TagList,
497
497
  ],
498
498
  ];
499
- var CreateDataAutomationProjectResponse = [3, n0, _CDAPRr, 0, [_pA, _pS, _st], [0, 0, 0]];
500
- var CustomOutputConfiguration = [3, n0, _COC, 0, [_bl], [() => BlueprintItems]];
501
- var DataAutomationProject = [
499
+ var CreateDataAutomationProjectResponse$ = [
500
+ 3,
501
+ n0,
502
+ _CDAPRr,
503
+ 0,
504
+ [_pA, _pS, _st],
505
+ [0, 0, 0],
506
+ ];
507
+ var CustomOutputConfiguration$ = [3, n0, _COC, 0, [_bl], [() => BlueprintItems]];
508
+ var DataAutomationProject$ = [
502
509
  3,
503
510
  n0,
504
511
  _DAP,
@@ -512,16 +519,16 @@ var DataAutomationProject = [
512
519
  0,
513
520
  0,
514
521
  [() => DataAutomationProjectDescription, 0],
515
- () => StandardOutputConfiguration,
516
- () => CustomOutputConfiguration,
517
- () => OverrideConfiguration,
522
+ () => StandardOutputConfiguration$,
523
+ () => CustomOutputConfiguration$,
524
+ () => OverrideConfiguration$,
518
525
  0,
519
526
  0,
520
527
  128 | 0,
521
528
  ],
522
529
  ];
523
- var DataAutomationProjectFilter = [3, n0, _DAPF, 0, [_pA, _pS], [0, 0]];
524
- var DataAutomationProjectSummary = [
530
+ var DataAutomationProjectFilter$ = [3, n0, _DAPF, 0, [_pA, _pS], [0, 0]];
531
+ var DataAutomationProjectSummary$ = [
525
532
  3,
526
533
  n0,
527
534
  _DAPS,
@@ -529,7 +536,7 @@ var DataAutomationProjectSummary = [
529
536
  [_pA, _pS, _pT, _pN, _cT],
530
537
  [0, 0, 0, [() => DataAutomationProjectName, 0], 5],
531
538
  ];
532
- var DeleteBlueprintRequest = [
539
+ var DeleteBlueprintRequest$ = [
533
540
  3,
534
541
  n0,
535
542
  _DBR,
@@ -540,105 +547,105 @@ var DeleteBlueprintRequest = [
540
547
  [0, { [_hQ]: _bV }],
541
548
  ],
542
549
  ];
543
- var DeleteBlueprintResponse = [3, n0, _DBRe, 0, [], []];
544
- var DeleteDataAutomationProjectRequest = [3, n0, _DDAPR, 0, [_pA], [[0, 1]]];
545
- var DeleteDataAutomationProjectResponse = [3, n0, _DDAPRe, 0, [_pA, _st], [0, 0]];
546
- var DocumentBoundingBox = [3, n0, _DBB, 0, [_s], [0]];
547
- var DocumentExtractionGranularity = [3, n0, _DEG, 0, [_t], [64 | 0]];
548
- var DocumentOutputAdditionalFileFormat = [3, n0, _DOAFF, 0, [_s], [0]];
549
- var DocumentOutputFormat = [
550
+ var DeleteBlueprintResponse$ = [3, n0, _DBRe, 0, [], []];
551
+ var DeleteDataAutomationProjectRequest$ = [3, n0, _DDAPR, 0, [_pA], [[0, 1]]];
552
+ var DeleteDataAutomationProjectResponse$ = [3, n0, _DDAPRe, 0, [_pA, _st], [0, 0]];
553
+ var DocumentBoundingBox$ = [3, n0, _DBB, 0, [_s], [0]];
554
+ var DocumentExtractionGranularity$ = [3, n0, _DEG, 0, [_t], [64 | 0]];
555
+ var DocumentOutputAdditionalFileFormat$ = [3, n0, _DOAFF, 0, [_s], [0]];
556
+ var DocumentOutputFormat$ = [
550
557
  3,
551
558
  n0,
552
559
  _DOF,
553
560
  0,
554
561
  [_tF, _aFF],
555
- [() => DocumentOutputTextFormat, () => DocumentOutputAdditionalFileFormat],
562
+ [() => DocumentOutputTextFormat$, () => DocumentOutputAdditionalFileFormat$],
556
563
  ];
557
- var DocumentOutputTextFormat = [3, n0, _DOTF, 0, [_t], [64 | 0]];
558
- var DocumentOverrideConfiguration = [
564
+ var DocumentOutputTextFormat$ = [3, n0, _DOTF, 0, [_t], [64 | 0]];
565
+ var DocumentOverrideConfiguration$ = [
559
566
  3,
560
567
  n0,
561
568
  _DOC,
562
569
  0,
563
570
  [_sp, _mP, _sDC],
564
- [() => SplitterConfiguration, () => ModalityProcessingConfiguration, () => SensitiveDataConfiguration],
571
+ [() => SplitterConfiguration$, () => ModalityProcessingConfiguration$, () => SensitiveDataConfiguration$],
565
572
  ];
566
- var DocumentStandardExtraction = [
573
+ var DocumentStandardExtraction$ = [
567
574
  3,
568
575
  n0,
569
576
  _DSE,
570
577
  0,
571
578
  [_g, _bB],
572
- [() => DocumentExtractionGranularity, () => DocumentBoundingBox],
579
+ [() => DocumentExtractionGranularity$, () => DocumentBoundingBox$],
573
580
  ];
574
- var DocumentStandardGenerativeField = [3, n0, _DSGF, 0, [_s], [0]];
575
- var DocumentStandardOutputConfiguration = [
581
+ var DocumentStandardGenerativeField$ = [3, n0, _DSGF, 0, [_s], [0]];
582
+ var DocumentStandardOutputConfiguration$ = [
576
583
  3,
577
584
  n0,
578
585
  _DSOC,
579
586
  0,
580
587
  [_ex, _gF, _oF],
581
- [() => DocumentStandardExtraction, () => DocumentStandardGenerativeField, () => DocumentOutputFormat],
588
+ [() => DocumentStandardExtraction$, () => DocumentStandardGenerativeField$, () => DocumentOutputFormat$],
582
589
  ];
583
- var EncryptionConfiguration = [3, n0, _EC, 0, [_kKI, _kEC], [0, 128 | 0]];
584
- var GetBlueprintRequest = [3, n0, _GBR, 0, [_bA, _bV, _bS], [[0, 1], 0, 0]];
585
- var GetBlueprintResponse = [3, n0, _GBRe, 0, [_b], [[() => Blueprint, 0]]];
586
- var GetDataAutomationProjectRequest = [3, n0, _GDAPR, 0, [_pA, _pS], [[0, 1], 0]];
587
- var GetDataAutomationProjectResponse = [
590
+ var EncryptionConfiguration$ = [3, n0, _EC, 0, [_kKI, _kEC], [0, 128 | 0]];
591
+ var GetBlueprintRequest$ = [3, n0, _GBR, 0, [_bA, _bV, _bS], [[0, 1], 0, 0]];
592
+ var GetBlueprintResponse$ = [3, n0, _GBRe, 0, [_b], [[() => Blueprint$, 0]]];
593
+ var GetDataAutomationProjectRequest$ = [3, n0, _GDAPR, 0, [_pA, _pS], [[0, 1], 0]];
594
+ var GetDataAutomationProjectResponse$ = [
588
595
  3,
589
596
  n0,
590
597
  _GDAPRe,
591
598
  0,
592
599
  [_p],
593
- [[() => DataAutomationProject, 0]],
600
+ [[() => DataAutomationProject$, 0]],
594
601
  ];
595
- var ImageBoundingBox = [3, n0, _IBB, 0, [_s], [0]];
596
- var ImageExtractionCategory = [3, n0, _IEC, 0, [_s, _t], [0, 64 | 0]];
597
- var ImageOverrideConfiguration = [
602
+ var ImageBoundingBox$ = [3, n0, _IBB, 0, [_s], [0]];
603
+ var ImageExtractionCategory$ = [3, n0, _IEC, 0, [_s, _t], [0, 64 | 0]];
604
+ var ImageOverrideConfiguration$ = [
598
605
  3,
599
606
  n0,
600
607
  _IOC,
601
608
  0,
602
609
  [_mP, _sDC],
603
- [() => ModalityProcessingConfiguration, () => SensitiveDataConfiguration],
610
+ [() => ModalityProcessingConfiguration$, () => SensitiveDataConfiguration$],
604
611
  ];
605
- var ImageStandardExtraction = [
612
+ var ImageStandardExtraction$ = [
606
613
  3,
607
614
  n0,
608
615
  _ISE,
609
616
  0,
610
617
  [_ca, _bB],
611
- [() => ImageExtractionCategory, () => ImageBoundingBox],
618
+ [() => ImageExtractionCategory$, () => ImageBoundingBox$],
612
619
  ];
613
- var ImageStandardGenerativeField = [3, n0, _ISGF, 0, [_s, _t], [0, 64 | 0]];
614
- var ImageStandardOutputConfiguration = [
620
+ var ImageStandardGenerativeField$ = [3, n0, _ISGF, 0, [_s, _t], [0, 64 | 0]];
621
+ var ImageStandardOutputConfiguration$ = [
615
622
  3,
616
623
  n0,
617
624
  _ISOC,
618
625
  0,
619
626
  [_ex, _gF],
620
- [() => ImageStandardExtraction, () => ImageStandardGenerativeField],
627
+ [() => ImageStandardExtraction$, () => ImageStandardGenerativeField$],
621
628
  ];
622
- var InternalServerException = [-3, n0, _ISEn, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
623
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
624
- var ListBlueprintsRequest = [
629
+ var InternalServerException$ = [-3, n0, _ISEn, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
630
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
631
+ var ListBlueprintsRequest$ = [
625
632
  3,
626
633
  n0,
627
634
  _LBR,
628
635
  0,
629
636
  [_bA, _rO, _bSF, _mR, _nT, _pF],
630
- [0, 0, 0, 1, 0, () => DataAutomationProjectFilter],
637
+ [0, 0, 0, 1, 0, () => DataAutomationProjectFilter$],
631
638
  ];
632
- var ListBlueprintsResponse = [3, n0, _LBRi, 0, [_bl, _nT], [[() => Blueprints, 0], 0]];
633
- var ListDataAutomationProjectsRequest = [
639
+ var ListBlueprintsResponse$ = [3, n0, _LBRi, 0, [_bl, _nT], [[() => Blueprints, 0], 0]];
640
+ var ListDataAutomationProjectsRequest$ = [
634
641
  3,
635
642
  n0,
636
643
  _LDAPR,
637
644
  0,
638
645
  [_mR, _nT, _pSF, _bF, _rO],
639
- [1, 0, 0, () => BlueprintFilter, 0],
646
+ [1, 0, 0, () => BlueprintFilter$, 0],
640
647
  ];
641
- var ListDataAutomationProjectsResponse = [
648
+ var ListDataAutomationProjectsResponse$ = [
642
649
  3,
643
650
  n0,
644
651
  _LDAPRi,
@@ -646,77 +653,77 @@ var ListDataAutomationProjectsResponse = [
646
653
  [_pr, _nT],
647
654
  [[() => DataAutomationProjectSummaries, 0], 0],
648
655
  ];
649
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rARN], [0]];
650
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
651
- var ModalityProcessingConfiguration = [3, n0, _MPC, 0, [_s], [0]];
652
- var ModalityRoutingConfiguration = [3, n0, _MRC, 0, [_j, _pn, _mp, _mo], [0, 0, 0, 0]];
653
- var OverrideConfiguration = [
656
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rARN], [0]];
657
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
658
+ var ModalityProcessingConfiguration$ = [3, n0, _MPC, 0, [_s], [0]];
659
+ var ModalityRoutingConfiguration$ = [3, n0, _MRC, 0, [_j, _pn, _mp, _mo], [0, 0, 0, 0]];
660
+ var OverrideConfiguration$ = [
654
661
  3,
655
662
  n0,
656
663
  _OC,
657
664
  0,
658
665
  [_d, _i, _v, _a, _mRo],
659
666
  [
660
- () => DocumentOverrideConfiguration,
661
- () => ImageOverrideConfiguration,
662
- () => VideoOverrideConfiguration,
663
- () => AudioOverrideConfiguration,
664
- () => ModalityRoutingConfiguration,
667
+ () => DocumentOverrideConfiguration$,
668
+ () => ImageOverrideConfiguration$,
669
+ () => VideoOverrideConfiguration$,
670
+ () => AudioOverrideConfiguration$,
671
+ () => ModalityRoutingConfiguration$,
665
672
  ],
666
673
  ];
667
- var PIIEntitiesConfiguration = [3, n0, _PIIEC, 0, [_pET, _rMM], [64 | 0, 0]];
668
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
669
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
670
- var SensitiveDataConfiguration = [
674
+ var PIIEntitiesConfiguration$ = [3, n0, _PIIEC, 0, [_pET, _rMM], [64 | 0, 0]];
675
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
676
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
677
+ var SensitiveDataConfiguration$ = [
671
678
  3,
672
679
  n0,
673
680
  _SDC,
674
681
  0,
675
682
  [_dM, _dS, _pEC],
676
- [0, 64 | 0, () => PIIEntitiesConfiguration],
683
+ [0, 64 | 0, () => PIIEntitiesConfiguration$],
677
684
  ];
678
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
679
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
680
- var SpeakerLabelingConfiguration = [3, n0, _SLC, 0, [_s], [0]];
681
- var SplitterConfiguration = [3, n0, _SC, 0, [_s], [0]];
682
- var StandardOutputConfiguration = [
685
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
686
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
687
+ var SpeakerLabelingConfiguration$ = [3, n0, _SLC, 0, [_s], [0]];
688
+ var SplitterConfiguration$ = [3, n0, _SC, 0, [_s], [0]];
689
+ var StandardOutputConfiguration$ = [
683
690
  3,
684
691
  n0,
685
692
  _SOC,
686
693
  0,
687
694
  [_d, _i, _v, _a],
688
695
  [
689
- () => DocumentStandardOutputConfiguration,
690
- () => ImageStandardOutputConfiguration,
691
- () => VideoStandardOutputConfiguration,
692
- () => AudioStandardOutputConfiguration,
696
+ () => DocumentStandardOutputConfiguration$,
697
+ () => ImageStandardOutputConfiguration$,
698
+ () => VideoStandardOutputConfiguration$,
699
+ () => AudioStandardOutputConfiguration$,
693
700
  ],
694
701
  ];
695
- var Tag = [3, n0, _T, 0, [_k, _va], [0, 0]];
696
- var TagResourceRequest = [3, n0, _TRR, 0, [_rARN, _ta], [0, () => TagList]];
697
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
698
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
699
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
700
- var TranscriptConfiguration = [
702
+ var Tag$ = [3, n0, _T, 0, [_k, _va], [0, 0]];
703
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rARN, _ta], [0, () => TagList]];
704
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
705
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
706
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
707
+ var TranscriptConfiguration$ = [
701
708
  3,
702
709
  n0,
703
710
  _TC,
704
711
  0,
705
712
  [_sL, _cL],
706
- [() => SpeakerLabelingConfiguration, () => ChannelLabelingConfiguration],
713
+ [() => SpeakerLabelingConfiguration$, () => ChannelLabelingConfiguration$],
707
714
  ];
708
- var UntagResourceRequest = [3, n0, _URR, 0, [_rARN, _tK], [0, 64 | 0]];
709
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
710
- var UpdateBlueprintRequest = [
715
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_rARN, _tK], [0, 64 | 0]];
716
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
717
+ var UpdateBlueprintRequest$ = [
711
718
  3,
712
719
  n0,
713
720
  _UBR,
714
721
  0,
715
722
  [_bA, _sc, _bS, _eC],
716
- [[0, 1], [() => BlueprintSchema, 0], 0, () => EncryptionConfiguration],
723
+ [[0, 1], [() => BlueprintSchema, 0], 0, () => EncryptionConfiguration$],
717
724
  ];
718
- var UpdateBlueprintResponse = [3, n0, _UBRp, 0, [_b], [[() => Blueprint, 0]]];
719
- var UpdateDataAutomationProjectRequest = [
725
+ var UpdateBlueprintResponse$ = [3, n0, _UBRp, 0, [_b], [[() => Blueprint$, 0]]];
726
+ var UpdateDataAutomationProjectRequest$ = [
720
727
  3,
721
728
  n0,
722
729
  _UDAPR,
@@ -726,14 +733,21 @@ var UpdateDataAutomationProjectRequest = [
726
733
  [0, 1],
727
734
  0,
728
735
  [() => DataAutomationProjectDescription, 0],
729
- () => StandardOutputConfiguration,
730
- () => CustomOutputConfiguration,
731
- () => OverrideConfiguration,
732
- () => EncryptionConfiguration,
736
+ () => StandardOutputConfiguration$,
737
+ () => CustomOutputConfiguration$,
738
+ () => OverrideConfiguration$,
739
+ () => EncryptionConfiguration$,
733
740
  ],
734
741
  ];
735
- var UpdateDataAutomationProjectResponse = [3, n0, _UDAPRp, 0, [_pA, _pS, _st], [0, 0, 0]];
736
- var ValidationException = [
742
+ var UpdateDataAutomationProjectResponse$ = [
743
+ 3,
744
+ n0,
745
+ _UDAPRp,
746
+ 0,
747
+ [_pA, _pS, _st],
748
+ [0, 0, 0],
749
+ ];
750
+ var ValidationException$ = [
737
751
  -3,
738
752
  n0,
739
753
  _VE,
@@ -741,36 +755,36 @@ var ValidationException = [
741
755
  [_m, _fL],
742
756
  [0, () => ValidationExceptionFieldList],
743
757
  ];
744
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
745
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
746
- var VideoBoundingBox = [3, n0, _VBB, 0, [_s], [0]];
747
- var VideoExtractionCategory = [3, n0, _VEC, 0, [_s, _t], [0, 64 | 0]];
748
- var VideoOverrideConfiguration = [
758
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
759
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
760
+ var VideoBoundingBox$ = [3, n0, _VBB, 0, [_s], [0]];
761
+ var VideoExtractionCategory$ = [3, n0, _VEC, 0, [_s, _t], [0, 64 | 0]];
762
+ var VideoOverrideConfiguration$ = [
749
763
  3,
750
764
  n0,
751
765
  _VOC,
752
766
  0,
753
767
  [_mP, _sDC],
754
- [() => ModalityProcessingConfiguration, () => SensitiveDataConfiguration],
768
+ [() => ModalityProcessingConfiguration$, () => SensitiveDataConfiguration$],
755
769
  ];
756
- var VideoStandardExtraction = [
770
+ var VideoStandardExtraction$ = [
757
771
  3,
758
772
  n0,
759
773
  _VSE,
760
774
  0,
761
775
  [_ca, _bB],
762
- [() => VideoExtractionCategory, () => VideoBoundingBox],
776
+ [() => VideoExtractionCategory$, () => VideoBoundingBox$],
763
777
  ];
764
- var VideoStandardGenerativeField = [3, n0, _VSGF, 0, [_s, _t], [0, 64 | 0]];
765
- var VideoStandardOutputConfiguration = [
778
+ var VideoStandardGenerativeField$ = [3, n0, _VSGF, 0, [_s, _t], [0, 64 | 0]];
779
+ var VideoStandardOutputConfiguration$ = [
766
780
  3,
767
781
  n0,
768
782
  _VSOC,
769
783
  0,
770
784
  [_ex, _gF],
771
- [() => VideoStandardExtraction, () => VideoStandardGenerativeField],
785
+ [() => VideoStandardExtraction$, () => VideoStandardGenerativeField$],
772
786
  ];
773
- var BedrockDataAutomationServiceException = [
787
+ var BedrockDataAutomationServiceException$ = [
774
788
  -3,
775
789
  _sm,
776
790
  "BedrockDataAutomationServiceException",
@@ -778,129 +792,123 @@ var BedrockDataAutomationServiceException = [
778
792
  [],
779
793
  [],
780
794
  ];
781
- schema.TypeRegistry.for(_sm).registerError(BedrockDataAutomationServiceException, BedrockDataAutomationServiceException$1);
782
- var BlueprintItems = [1, n0, _BIl, 0, () => BlueprintItem];
783
- var Blueprints = [1, n0, _Bl, 0, [() => BlueprintSummary, 0]];
784
- var DataAutomationProjectSummaries = [
785
- 1,
786
- n0,
787
- _DAPSa,
788
- 0,
789
- [() => DataAutomationProjectSummary, 0],
790
- ];
791
- var TagList = [1, n0, _TL, 0, () => Tag];
792
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
793
- var CreateBlueprint = [
795
+ schema.TypeRegistry.for(_sm).registerError(BedrockDataAutomationServiceException$, BedrockDataAutomationServiceException);
796
+ var BlueprintItems = [1, n0, _BIl, 0, () => BlueprintItem$];
797
+ var Blueprints = [1, n0, _Bl, 0, [() => BlueprintSummary$, 0]];
798
+ var DataAutomationProjectSummaries = [1, n0, _DAPSa, 0, [() => DataAutomationProjectSummary$, 0]];
799
+ var TagList = [1, n0, _TL, 0, () => Tag$];
800
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
801
+ var CreateBlueprint$ = [
794
802
  9,
795
803
  n0,
796
804
  _CB,
797
805
  { [_h]: ["PUT", "/blueprints/", 201] },
798
- () => CreateBlueprintRequest,
799
- () => CreateBlueprintResponse,
806
+ () => CreateBlueprintRequest$,
807
+ () => CreateBlueprintResponse$,
800
808
  ];
801
- var CreateBlueprintVersion = [
809
+ var CreateBlueprintVersion$ = [
802
810
  9,
803
811
  n0,
804
812
  _CBV,
805
813
  { [_h]: ["POST", "/blueprints/{blueprintArn}/versions/", 201] },
806
- () => CreateBlueprintVersionRequest,
807
- () => CreateBlueprintVersionResponse,
814
+ () => CreateBlueprintVersionRequest$,
815
+ () => CreateBlueprintVersionResponse$,
808
816
  ];
809
- var CreateDataAutomationProject = [
817
+ var CreateDataAutomationProject$ = [
810
818
  9,
811
819
  n0,
812
820
  _CDAP,
813
821
  { [_h]: ["PUT", "/data-automation-projects/", 201] },
814
- () => CreateDataAutomationProjectRequest,
815
- () => CreateDataAutomationProjectResponse,
822
+ () => CreateDataAutomationProjectRequest$,
823
+ () => CreateDataAutomationProjectResponse$,
816
824
  ];
817
- var DeleteBlueprint = [
825
+ var DeleteBlueprint$ = [
818
826
  9,
819
827
  n0,
820
828
  _DB,
821
829
  { [_h]: ["DELETE", "/blueprints/{blueprintArn}/", 200] },
822
- () => DeleteBlueprintRequest,
823
- () => DeleteBlueprintResponse,
830
+ () => DeleteBlueprintRequest$,
831
+ () => DeleteBlueprintResponse$,
824
832
  ];
825
- var DeleteDataAutomationProject = [
833
+ var DeleteDataAutomationProject$ = [
826
834
  9,
827
835
  n0,
828
836
  _DDAP,
829
837
  { [_h]: ["DELETE", "/data-automation-projects/{projectArn}/", 200] },
830
- () => DeleteDataAutomationProjectRequest,
831
- () => DeleteDataAutomationProjectResponse,
838
+ () => DeleteDataAutomationProjectRequest$,
839
+ () => DeleteDataAutomationProjectResponse$,
832
840
  ];
833
- var GetBlueprint = [
841
+ var GetBlueprint$ = [
834
842
  9,
835
843
  n0,
836
844
  _GB,
837
845
  { [_h]: ["POST", "/blueprints/{blueprintArn}/", 200] },
838
- () => GetBlueprintRequest,
839
- () => GetBlueprintResponse,
846
+ () => GetBlueprintRequest$,
847
+ () => GetBlueprintResponse$,
840
848
  ];
841
- var GetDataAutomationProject = [
849
+ var GetDataAutomationProject$ = [
842
850
  9,
843
851
  n0,
844
852
  _GDAP,
845
853
  { [_h]: ["POST", "/data-automation-projects/{projectArn}/", 200] },
846
- () => GetDataAutomationProjectRequest,
847
- () => GetDataAutomationProjectResponse,
854
+ () => GetDataAutomationProjectRequest$,
855
+ () => GetDataAutomationProjectResponse$,
848
856
  ];
849
- var ListBlueprints = [
857
+ var ListBlueprints$ = [
850
858
  9,
851
859
  n0,
852
860
  _LB,
853
861
  { [_h]: ["POST", "/blueprints/", 200] },
854
- () => ListBlueprintsRequest,
855
- () => ListBlueprintsResponse,
862
+ () => ListBlueprintsRequest$,
863
+ () => ListBlueprintsResponse$,
856
864
  ];
857
- var ListDataAutomationProjects = [
865
+ var ListDataAutomationProjects$ = [
858
866
  9,
859
867
  n0,
860
868
  _LDAP,
861
869
  { [_h]: ["POST", "/data-automation-projects/", 200] },
862
- () => ListDataAutomationProjectsRequest,
863
- () => ListDataAutomationProjectsResponse,
870
+ () => ListDataAutomationProjectsRequest$,
871
+ () => ListDataAutomationProjectsResponse$,
864
872
  ];
865
- var ListTagsForResource = [
873
+ var ListTagsForResource$ = [
866
874
  9,
867
875
  n0,
868
876
  _LTFR,
869
877
  { [_h]: ["POST", "/listTagsForResource", 200] },
870
- () => ListTagsForResourceRequest,
871
- () => ListTagsForResourceResponse,
878
+ () => ListTagsForResourceRequest$,
879
+ () => ListTagsForResourceResponse$,
872
880
  ];
873
- var TagResource = [
881
+ var TagResource$ = [
874
882
  9,
875
883
  n0,
876
884
  _TR,
877
885
  { [_h]: ["POST", "/tagResource", 200] },
878
- () => TagResourceRequest,
879
- () => TagResourceResponse,
886
+ () => TagResourceRequest$,
887
+ () => TagResourceResponse$,
880
888
  ];
881
- var UntagResource = [
889
+ var UntagResource$ = [
882
890
  9,
883
891
  n0,
884
892
  _UR,
885
893
  { [_h]: ["POST", "/untagResource", 200] },
886
- () => UntagResourceRequest,
887
- () => UntagResourceResponse,
894
+ () => UntagResourceRequest$,
895
+ () => UntagResourceResponse$,
888
896
  ];
889
- var UpdateBlueprint = [
897
+ var UpdateBlueprint$ = [
890
898
  9,
891
899
  n0,
892
900
  _UB,
893
901
  { [_h]: ["PUT", "/blueprints/{blueprintArn}/", 200] },
894
- () => UpdateBlueprintRequest,
895
- () => UpdateBlueprintResponse,
902
+ () => UpdateBlueprintRequest$,
903
+ () => UpdateBlueprintResponse$,
896
904
  ];
897
- var UpdateDataAutomationProject = [
905
+ var UpdateDataAutomationProject$ = [
898
906
  9,
899
907
  n0,
900
908
  _UDAP,
901
909
  { [_h]: ["PUT", "/data-automation-projects/{projectArn}/", 200] },
902
- () => UpdateDataAutomationProjectRequest,
903
- () => UpdateDataAutomationProjectResponse,
910
+ () => UpdateDataAutomationProjectRequest$,
911
+ () => UpdateDataAutomationProjectResponse$,
904
912
  ];
905
913
 
906
914
  class CreateBlueprintCommand extends smithyClient.Command
@@ -911,7 +919,7 @@ class CreateBlueprintCommand extends smithyClient.Command
911
919
  })
912
920
  .s("AmazonBedrockKeystoneBuildTimeService", "CreateBlueprint", {})
913
921
  .n("BedrockDataAutomationClient", "CreateBlueprintCommand")
914
- .sc(CreateBlueprint)
922
+ .sc(CreateBlueprint$)
915
923
  .build() {
916
924
  }
917
925
 
@@ -923,7 +931,7 @@ class CreateBlueprintVersionCommand extends smithyClient.Command
923
931
  })
924
932
  .s("AmazonBedrockKeystoneBuildTimeService", "CreateBlueprintVersion", {})
925
933
  .n("BedrockDataAutomationClient", "CreateBlueprintVersionCommand")
926
- .sc(CreateBlueprintVersion)
934
+ .sc(CreateBlueprintVersion$)
927
935
  .build() {
928
936
  }
929
937
 
@@ -935,7 +943,7 @@ class CreateDataAutomationProjectCommand extends smithyClient.Command
935
943
  })
936
944
  .s("AmazonBedrockKeystoneBuildTimeService", "CreateDataAutomationProject", {})
937
945
  .n("BedrockDataAutomationClient", "CreateDataAutomationProjectCommand")
938
- .sc(CreateDataAutomationProject)
946
+ .sc(CreateDataAutomationProject$)
939
947
  .build() {
940
948
  }
941
949
 
@@ -947,7 +955,7 @@ class DeleteBlueprintCommand extends smithyClient.Command
947
955
  })
948
956
  .s("AmazonBedrockKeystoneBuildTimeService", "DeleteBlueprint", {})
949
957
  .n("BedrockDataAutomationClient", "DeleteBlueprintCommand")
950
- .sc(DeleteBlueprint)
958
+ .sc(DeleteBlueprint$)
951
959
  .build() {
952
960
  }
953
961
 
@@ -959,7 +967,7 @@ class DeleteDataAutomationProjectCommand extends smithyClient.Command
959
967
  })
960
968
  .s("AmazonBedrockKeystoneBuildTimeService", "DeleteDataAutomationProject", {})
961
969
  .n("BedrockDataAutomationClient", "DeleteDataAutomationProjectCommand")
962
- .sc(DeleteDataAutomationProject)
970
+ .sc(DeleteDataAutomationProject$)
963
971
  .build() {
964
972
  }
965
973
 
@@ -971,7 +979,7 @@ class GetBlueprintCommand extends smithyClient.Command
971
979
  })
972
980
  .s("AmazonBedrockKeystoneBuildTimeService", "GetBlueprint", {})
973
981
  .n("BedrockDataAutomationClient", "GetBlueprintCommand")
974
- .sc(GetBlueprint)
982
+ .sc(GetBlueprint$)
975
983
  .build() {
976
984
  }
977
985
 
@@ -983,7 +991,7 @@ class GetDataAutomationProjectCommand extends smithyClient.Command
983
991
  })
984
992
  .s("AmazonBedrockKeystoneBuildTimeService", "GetDataAutomationProject", {})
985
993
  .n("BedrockDataAutomationClient", "GetDataAutomationProjectCommand")
986
- .sc(GetDataAutomationProject)
994
+ .sc(GetDataAutomationProject$)
987
995
  .build() {
988
996
  }
989
997
 
@@ -995,7 +1003,7 @@ class ListBlueprintsCommand extends smithyClient.Command
995
1003
  })
996
1004
  .s("AmazonBedrockKeystoneBuildTimeService", "ListBlueprints", {})
997
1005
  .n("BedrockDataAutomationClient", "ListBlueprintsCommand")
998
- .sc(ListBlueprints)
1006
+ .sc(ListBlueprints$)
999
1007
  .build() {
1000
1008
  }
1001
1009
 
@@ -1007,7 +1015,7 @@ class ListDataAutomationProjectsCommand extends smithyClient.Command
1007
1015
  })
1008
1016
  .s("AmazonBedrockKeystoneBuildTimeService", "ListDataAutomationProjects", {})
1009
1017
  .n("BedrockDataAutomationClient", "ListDataAutomationProjectsCommand")
1010
- .sc(ListDataAutomationProjects)
1018
+ .sc(ListDataAutomationProjects$)
1011
1019
  .build() {
1012
1020
  }
1013
1021
 
@@ -1019,7 +1027,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1019
1027
  })
1020
1028
  .s("AmazonBedrockKeystoneBuildTimeService", "ListTagsForResource", {})
1021
1029
  .n("BedrockDataAutomationClient", "ListTagsForResourceCommand")
1022
- .sc(ListTagsForResource)
1030
+ .sc(ListTagsForResource$)
1023
1031
  .build() {
1024
1032
  }
1025
1033
 
@@ -1031,7 +1039,7 @@ class TagResourceCommand extends smithyClient.Command
1031
1039
  })
1032
1040
  .s("AmazonBedrockKeystoneBuildTimeService", "TagResource", {})
1033
1041
  .n("BedrockDataAutomationClient", "TagResourceCommand")
1034
- .sc(TagResource)
1042
+ .sc(TagResource$)
1035
1043
  .build() {
1036
1044
  }
1037
1045
 
@@ -1043,7 +1051,7 @@ class UntagResourceCommand extends smithyClient.Command
1043
1051
  })
1044
1052
  .s("AmazonBedrockKeystoneBuildTimeService", "UntagResource", {})
1045
1053
  .n("BedrockDataAutomationClient", "UntagResourceCommand")
1046
- .sc(UntagResource)
1054
+ .sc(UntagResource$)
1047
1055
  .build() {
1048
1056
  }
1049
1057
 
@@ -1055,7 +1063,7 @@ class UpdateBlueprintCommand extends smithyClient.Command
1055
1063
  })
1056
1064
  .s("AmazonBedrockKeystoneBuildTimeService", "UpdateBlueprint", {})
1057
1065
  .n("BedrockDataAutomationClient", "UpdateBlueprintCommand")
1058
- .sc(UpdateBlueprint)
1066
+ .sc(UpdateBlueprint$)
1059
1067
  .build() {
1060
1068
  }
1061
1069
 
@@ -1067,7 +1075,7 @@ class UpdateDataAutomationProjectCommand extends smithyClient.Command
1067
1075
  })
1068
1076
  .s("AmazonBedrockKeystoneBuildTimeService", "UpdateDataAutomationProject", {})
1069
1077
  .n("BedrockDataAutomationClient", "UpdateDataAutomationProjectCommand")
1070
- .sc(UpdateDataAutomationProject)
1078
+ .sc(UpdateDataAutomationProject$)
1071
1079
  .build() {
1072
1080
  }
1073
1081
 
@@ -1257,53 +1265,152 @@ Object.defineProperty(exports, "__Client", {
1257
1265
  enumerable: true,
1258
1266
  get: function () { return smithyClient.Client; }
1259
1267
  });
1260
- exports.AccessDeniedException = AccessDeniedException$1;
1268
+ exports.AccessDeniedException = AccessDeniedException;
1269
+ exports.AccessDeniedException$ = AccessDeniedException$;
1270
+ exports.AudioExtractionCategory$ = AudioExtractionCategory$;
1261
1271
  exports.AudioExtractionCategoryType = AudioExtractionCategoryType;
1272
+ exports.AudioExtractionCategoryTypeConfiguration$ = AudioExtractionCategoryTypeConfiguration$;
1262
1273
  exports.AudioGenerativeOutputLanguage = AudioGenerativeOutputLanguage;
1274
+ exports.AudioLanguageConfiguration$ = AudioLanguageConfiguration$;
1275
+ exports.AudioOverrideConfiguration$ = AudioOverrideConfiguration$;
1276
+ exports.AudioStandardExtraction$ = AudioStandardExtraction$;
1277
+ exports.AudioStandardGenerativeField$ = AudioStandardGenerativeField$;
1263
1278
  exports.AudioStandardGenerativeFieldType = AudioStandardGenerativeFieldType;
1279
+ exports.AudioStandardOutputConfiguration$ = AudioStandardOutputConfiguration$;
1264
1280
  exports.BedrockDataAutomation = BedrockDataAutomation;
1265
1281
  exports.BedrockDataAutomationClient = BedrockDataAutomationClient;
1266
- exports.BedrockDataAutomationServiceException = BedrockDataAutomationServiceException$1;
1282
+ exports.BedrockDataAutomationServiceException = BedrockDataAutomationServiceException;
1283
+ exports.BedrockDataAutomationServiceException$ = BedrockDataAutomationServiceException$;
1284
+ exports.Blueprint$ = Blueprint$;
1285
+ exports.BlueprintFilter$ = BlueprintFilter$;
1286
+ exports.BlueprintItem$ = BlueprintItem$;
1267
1287
  exports.BlueprintStage = BlueprintStage;
1268
1288
  exports.BlueprintStageFilter = BlueprintStageFilter;
1269
- exports.ConflictException = ConflictException$1;
1289
+ exports.BlueprintSummary$ = BlueprintSummary$;
1290
+ exports.ChannelLabelingConfiguration$ = ChannelLabelingConfiguration$;
1291
+ exports.ConflictException = ConflictException;
1292
+ exports.ConflictException$ = ConflictException$;
1293
+ exports.CreateBlueprint$ = CreateBlueprint$;
1270
1294
  exports.CreateBlueprintCommand = CreateBlueprintCommand;
1295
+ exports.CreateBlueprintRequest$ = CreateBlueprintRequest$;
1296
+ exports.CreateBlueprintResponse$ = CreateBlueprintResponse$;
1297
+ exports.CreateBlueprintVersion$ = CreateBlueprintVersion$;
1271
1298
  exports.CreateBlueprintVersionCommand = CreateBlueprintVersionCommand;
1299
+ exports.CreateBlueprintVersionRequest$ = CreateBlueprintVersionRequest$;
1300
+ exports.CreateBlueprintVersionResponse$ = CreateBlueprintVersionResponse$;
1301
+ exports.CreateDataAutomationProject$ = CreateDataAutomationProject$;
1272
1302
  exports.CreateDataAutomationProjectCommand = CreateDataAutomationProjectCommand;
1303
+ exports.CreateDataAutomationProjectRequest$ = CreateDataAutomationProjectRequest$;
1304
+ exports.CreateDataAutomationProjectResponse$ = CreateDataAutomationProjectResponse$;
1305
+ exports.CustomOutputConfiguration$ = CustomOutputConfiguration$;
1306
+ exports.DataAutomationProject$ = DataAutomationProject$;
1307
+ exports.DataAutomationProjectFilter$ = DataAutomationProjectFilter$;
1273
1308
  exports.DataAutomationProjectStage = DataAutomationProjectStage;
1274
1309
  exports.DataAutomationProjectStageFilter = DataAutomationProjectStageFilter;
1275
1310
  exports.DataAutomationProjectStatus = DataAutomationProjectStatus;
1311
+ exports.DataAutomationProjectSummary$ = DataAutomationProjectSummary$;
1276
1312
  exports.DataAutomationProjectType = DataAutomationProjectType;
1313
+ exports.DeleteBlueprint$ = DeleteBlueprint$;
1277
1314
  exports.DeleteBlueprintCommand = DeleteBlueprintCommand;
1315
+ exports.DeleteBlueprintRequest$ = DeleteBlueprintRequest$;
1316
+ exports.DeleteBlueprintResponse$ = DeleteBlueprintResponse$;
1317
+ exports.DeleteDataAutomationProject$ = DeleteDataAutomationProject$;
1278
1318
  exports.DeleteDataAutomationProjectCommand = DeleteDataAutomationProjectCommand;
1319
+ exports.DeleteDataAutomationProjectRequest$ = DeleteDataAutomationProjectRequest$;
1320
+ exports.DeleteDataAutomationProjectResponse$ = DeleteDataAutomationProjectResponse$;
1279
1321
  exports.DesiredModality = DesiredModality;
1322
+ exports.DocumentBoundingBox$ = DocumentBoundingBox$;
1323
+ exports.DocumentExtractionGranularity$ = DocumentExtractionGranularity$;
1280
1324
  exports.DocumentExtractionGranularityType = DocumentExtractionGranularityType;
1325
+ exports.DocumentOutputAdditionalFileFormat$ = DocumentOutputAdditionalFileFormat$;
1326
+ exports.DocumentOutputFormat$ = DocumentOutputFormat$;
1327
+ exports.DocumentOutputTextFormat$ = DocumentOutputTextFormat$;
1281
1328
  exports.DocumentOutputTextFormatType = DocumentOutputTextFormatType;
1329
+ exports.DocumentOverrideConfiguration$ = DocumentOverrideConfiguration$;
1330
+ exports.DocumentStandardExtraction$ = DocumentStandardExtraction$;
1331
+ exports.DocumentStandardGenerativeField$ = DocumentStandardGenerativeField$;
1332
+ exports.DocumentStandardOutputConfiguration$ = DocumentStandardOutputConfiguration$;
1333
+ exports.EncryptionConfiguration$ = EncryptionConfiguration$;
1334
+ exports.GetBlueprint$ = GetBlueprint$;
1282
1335
  exports.GetBlueprintCommand = GetBlueprintCommand;
1336
+ exports.GetBlueprintRequest$ = GetBlueprintRequest$;
1337
+ exports.GetBlueprintResponse$ = GetBlueprintResponse$;
1338
+ exports.GetDataAutomationProject$ = GetDataAutomationProject$;
1283
1339
  exports.GetDataAutomationProjectCommand = GetDataAutomationProjectCommand;
1340
+ exports.GetDataAutomationProjectRequest$ = GetDataAutomationProjectRequest$;
1341
+ exports.GetDataAutomationProjectResponse$ = GetDataAutomationProjectResponse$;
1342
+ exports.ImageBoundingBox$ = ImageBoundingBox$;
1343
+ exports.ImageExtractionCategory$ = ImageExtractionCategory$;
1284
1344
  exports.ImageExtractionCategoryType = ImageExtractionCategoryType;
1345
+ exports.ImageOverrideConfiguration$ = ImageOverrideConfiguration$;
1346
+ exports.ImageStandardExtraction$ = ImageStandardExtraction$;
1347
+ exports.ImageStandardGenerativeField$ = ImageStandardGenerativeField$;
1285
1348
  exports.ImageStandardGenerativeFieldType = ImageStandardGenerativeFieldType;
1286
- exports.InternalServerException = InternalServerException$1;
1349
+ exports.ImageStandardOutputConfiguration$ = ImageStandardOutputConfiguration$;
1350
+ exports.InternalServerException = InternalServerException;
1351
+ exports.InternalServerException$ = InternalServerException$;
1287
1352
  exports.Language = Language;
1353
+ exports.ListBlueprints$ = ListBlueprints$;
1288
1354
  exports.ListBlueprintsCommand = ListBlueprintsCommand;
1355
+ exports.ListBlueprintsRequest$ = ListBlueprintsRequest$;
1356
+ exports.ListBlueprintsResponse$ = ListBlueprintsResponse$;
1357
+ exports.ListDataAutomationProjects$ = ListDataAutomationProjects$;
1289
1358
  exports.ListDataAutomationProjectsCommand = ListDataAutomationProjectsCommand;
1359
+ exports.ListDataAutomationProjectsRequest$ = ListDataAutomationProjectsRequest$;
1360
+ exports.ListDataAutomationProjectsResponse$ = ListDataAutomationProjectsResponse$;
1361
+ exports.ListTagsForResource$ = ListTagsForResource$;
1290
1362
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1363
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1364
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1365
+ exports.ModalityProcessingConfiguration$ = ModalityProcessingConfiguration$;
1366
+ exports.ModalityRoutingConfiguration$ = ModalityRoutingConfiguration$;
1367
+ exports.OverrideConfiguration$ = OverrideConfiguration$;
1368
+ exports.PIIEntitiesConfiguration$ = PIIEntitiesConfiguration$;
1291
1369
  exports.PIIEntityType = PIIEntityType;
1292
1370
  exports.PIIRedactionMaskMode = PIIRedactionMaskMode;
1293
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1371
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1372
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1294
1373
  exports.ResourceOwner = ResourceOwner;
1374
+ exports.SensitiveDataConfiguration$ = SensitiveDataConfiguration$;
1295
1375
  exports.SensitiveDataDetectionMode = SensitiveDataDetectionMode;
1296
1376
  exports.SensitiveDataDetectionScopeType = SensitiveDataDetectionScopeType;
1297
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1377
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1378
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1379
+ exports.SpeakerLabelingConfiguration$ = SpeakerLabelingConfiguration$;
1380
+ exports.SplitterConfiguration$ = SplitterConfiguration$;
1381
+ exports.StandardOutputConfiguration$ = StandardOutputConfiguration$;
1298
1382
  exports.State = State;
1383
+ exports.Tag$ = Tag$;
1384
+ exports.TagResource$ = TagResource$;
1299
1385
  exports.TagResourceCommand = TagResourceCommand;
1300
- exports.ThrottlingException = ThrottlingException$1;
1386
+ exports.TagResourceRequest$ = TagResourceRequest$;
1387
+ exports.TagResourceResponse$ = TagResourceResponse$;
1388
+ exports.ThrottlingException = ThrottlingException;
1389
+ exports.ThrottlingException$ = ThrottlingException$;
1390
+ exports.TranscriptConfiguration$ = TranscriptConfiguration$;
1301
1391
  exports.Type = Type;
1392
+ exports.UntagResource$ = UntagResource$;
1302
1393
  exports.UntagResourceCommand = UntagResourceCommand;
1394
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1395
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1396
+ exports.UpdateBlueprint$ = UpdateBlueprint$;
1303
1397
  exports.UpdateBlueprintCommand = UpdateBlueprintCommand;
1398
+ exports.UpdateBlueprintRequest$ = UpdateBlueprintRequest$;
1399
+ exports.UpdateBlueprintResponse$ = UpdateBlueprintResponse$;
1400
+ exports.UpdateDataAutomationProject$ = UpdateDataAutomationProject$;
1304
1401
  exports.UpdateDataAutomationProjectCommand = UpdateDataAutomationProjectCommand;
1305
- exports.ValidationException = ValidationException$1;
1402
+ exports.UpdateDataAutomationProjectRequest$ = UpdateDataAutomationProjectRequest$;
1403
+ exports.UpdateDataAutomationProjectResponse$ = UpdateDataAutomationProjectResponse$;
1404
+ exports.ValidationException = ValidationException;
1405
+ exports.ValidationException$ = ValidationException$;
1406
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1407
+ exports.VideoBoundingBox$ = VideoBoundingBox$;
1408
+ exports.VideoExtractionCategory$ = VideoExtractionCategory$;
1306
1409
  exports.VideoExtractionCategoryType = VideoExtractionCategoryType;
1410
+ exports.VideoOverrideConfiguration$ = VideoOverrideConfiguration$;
1411
+ exports.VideoStandardExtraction$ = VideoStandardExtraction$;
1412
+ exports.VideoStandardGenerativeField$ = VideoStandardGenerativeField$;
1307
1413
  exports.VideoStandardGenerativeFieldType = VideoStandardGenerativeFieldType;
1414
+ exports.VideoStandardOutputConfiguration$ = VideoStandardOutputConfiguration$;
1308
1415
  exports.paginateListBlueprints = paginateListBlueprints;
1309
1416
  exports.paginateListDataAutomationProjects = paginateListDataAutomationProjects;