@aws-sdk/client-entityresolution 3.948.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 (66) hide show
  1. package/dist-cjs/index.js +553 -384
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AddPolicyStatementCommand.js +2 -2
  4. package/dist-es/commands/BatchDeleteUniqueIdCommand.js +2 -2
  5. package/dist-es/commands/CreateIdMappingWorkflowCommand.js +2 -2
  6. package/dist-es/commands/CreateIdNamespaceCommand.js +2 -2
  7. package/dist-es/commands/CreateMatchingWorkflowCommand.js +2 -2
  8. package/dist-es/commands/CreateSchemaMappingCommand.js +2 -2
  9. package/dist-es/commands/DeleteIdMappingWorkflowCommand.js +2 -2
  10. package/dist-es/commands/DeleteIdNamespaceCommand.js +2 -2
  11. package/dist-es/commands/DeleteMatchingWorkflowCommand.js +2 -2
  12. package/dist-es/commands/DeletePolicyStatementCommand.js +2 -2
  13. package/dist-es/commands/DeleteSchemaMappingCommand.js +2 -2
  14. package/dist-es/commands/GenerateMatchIdCommand.js +2 -2
  15. package/dist-es/commands/GetIdMappingJobCommand.js +2 -2
  16. package/dist-es/commands/GetIdMappingWorkflowCommand.js +2 -2
  17. package/dist-es/commands/GetIdNamespaceCommand.js +2 -2
  18. package/dist-es/commands/GetMatchIdCommand.js +2 -2
  19. package/dist-es/commands/GetMatchingJobCommand.js +2 -2
  20. package/dist-es/commands/GetMatchingWorkflowCommand.js +2 -2
  21. package/dist-es/commands/GetPolicyCommand.js +2 -2
  22. package/dist-es/commands/GetProviderServiceCommand.js +2 -2
  23. package/dist-es/commands/GetSchemaMappingCommand.js +2 -2
  24. package/dist-es/commands/ListIdMappingJobsCommand.js +2 -2
  25. package/dist-es/commands/ListIdMappingWorkflowsCommand.js +2 -2
  26. package/dist-es/commands/ListIdNamespacesCommand.js +2 -2
  27. package/dist-es/commands/ListMatchingJobsCommand.js +2 -2
  28. package/dist-es/commands/ListMatchingWorkflowsCommand.js +2 -2
  29. package/dist-es/commands/ListProviderServicesCommand.js +2 -2
  30. package/dist-es/commands/ListSchemaMappingsCommand.js +2 -2
  31. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  32. package/dist-es/commands/PutPolicyCommand.js +2 -2
  33. package/dist-es/commands/StartIdMappingJobCommand.js +2 -2
  34. package/dist-es/commands/StartMatchingJobCommand.js +2 -2
  35. package/dist-es/commands/TagResourceCommand.js +2 -2
  36. package/dist-es/commands/UntagResourceCommand.js +2 -2
  37. package/dist-es/commands/UpdateIdMappingWorkflowCommand.js +2 -2
  38. package/dist-es/commands/UpdateIdNamespaceCommand.js +2 -2
  39. package/dist-es/commands/UpdateMatchingWorkflowCommand.js +2 -2
  40. package/dist-es/commands/UpdateSchemaMappingCommand.js +2 -2
  41. package/dist-es/index.js +1 -0
  42. package/dist-es/runtimeConfig.shared.js +6 -1
  43. package/dist-es/schemas/schemas_0.js +342 -341
  44. package/dist-types/EntityResolutionClient.d.ts +1 -10
  45. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +2 -2
  46. package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +10 -2
  47. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +1 -1
  48. package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +5 -1
  49. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +2 -2
  50. package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +10 -2
  51. package/dist-types/index.d.ts +1 -0
  52. package/dist-types/models/models_0.d.ts +29 -8
  53. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  54. package/dist-types/runtimeConfig.d.ts +6 -2
  55. package/dist-types/runtimeConfig.native.d.ts +6 -2
  56. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  57. package/dist-types/schemas/schemas_0.d.ts +169 -209
  58. package/dist-types/ts3.4/EntityResolutionClient.d.ts +0 -4
  59. package/dist-types/ts3.4/index.d.ts +1 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +9 -2
  61. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  63. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  64. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  65. package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -210
  66. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class EntityResolutionClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let EntityResolutionServiceException$1 = class EntityResolutionServiceException extends smithyClient.ServiceException {
113
+ class EntityResolutionServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, EntityResolutionServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends EntityResolutionServiceException$1 {
120
+ class AccessDeniedException extends EntityResolutionServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends EntityResoluti
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends EntityResolutionServiceException$1 {
131
+ }
132
+ class ConflictException extends EntityResolutionServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends EntityResolutionServic
140
140
  });
141
141
  Object.setPrototypeOf(this, ConflictException.prototype);
142
142
  }
143
- };
144
- let InternalServerException$1 = class InternalServerException extends EntityResolutionServiceException$1 {
143
+ }
144
+ class InternalServerException extends EntityResolutionServiceException {
145
145
  name = "InternalServerException";
146
146
  $fault = "server";
147
147
  $retryable = {};
@@ -153,8 +153,8 @@ let InternalServerException$1 = class InternalServerException extends EntityReso
153
153
  });
154
154
  Object.setPrototypeOf(this, InternalServerException.prototype);
155
155
  }
156
- };
157
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends EntityResolutionServiceException$1 {
156
+ }
157
+ class ResourceNotFoundException extends EntityResolutionServiceException {
158
158
  name = "ResourceNotFoundException";
159
159
  $fault = "client";
160
160
  constructor(opts) {
@@ -165,8 +165,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Entity
165
165
  });
166
166
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
167
167
  }
168
- };
169
- let ThrottlingException$1 = class ThrottlingException extends EntityResolutionServiceException$1 {
168
+ }
169
+ class ThrottlingException extends EntityResolutionServiceException {
170
170
  name = "ThrottlingException";
171
171
  $fault = "client";
172
172
  $retryable = {
@@ -180,8 +180,8 @@ let ThrottlingException$1 = class ThrottlingException extends EntityResolutionSe
180
180
  });
181
181
  Object.setPrototypeOf(this, ThrottlingException.prototype);
182
182
  }
183
- };
184
- let ValidationException$1 = class ValidationException extends EntityResolutionServiceException$1 {
183
+ }
184
+ class ValidationException extends EntityResolutionServiceException {
185
185
  name = "ValidationException";
186
186
  $fault = "client";
187
187
  constructor(opts) {
@@ -192,8 +192,8 @@ let ValidationException$1 = class ValidationException extends EntityResolutionSe
192
192
  });
193
193
  Object.setPrototypeOf(this, ValidationException.prototype);
194
194
  }
195
- };
196
- let ExceedsLimitException$1 = class ExceedsLimitException extends EntityResolutionServiceException$1 {
195
+ }
196
+ class ExceedsLimitException extends EntityResolutionServiceException {
197
197
  name = "ExceedsLimitException";
198
198
  $fault = "client";
199
199
  quotaName;
@@ -208,7 +208,7 @@ let ExceedsLimitException$1 = class ExceedsLimitException extends EntityResoluti
208
208
  this.quotaName = opts.quotaName;
209
209
  this.quotaValue = opts.quotaValue;
210
210
  }
211
- };
211
+ }
212
212
 
213
213
  const _ADE = "AccessDeniedException";
214
214
  const _APS = "AddPolicyStatement";
@@ -227,6 +227,7 @@ const _CINO = "CreateIdNamespaceOutput";
227
227
  const _CMW = "CreateMatchingWorkflow";
228
228
  const _CMWI = "CreateMatchingWorkflowInput";
229
229
  const _CMWO = "CreateMatchingWorkflowOutput";
230
+ const _CPIC = "CustomerProfilesIntegrationConfig";
230
231
  const _CSM = "CreateSchemaMapping";
231
232
  const _CSMI = "CreateSchemaMappingInput";
232
233
  const _CSMO = "CreateSchemaMappingOutput";
@@ -415,8 +416,10 @@ const _aO = "anonymizedOutput";
415
416
  const _ac = "action";
416
417
  const _c = "client";
417
418
  const _cA = "createdAt";
419
+ const _cPIC = "customerProfilesIntegrationConfig";
418
420
  const _co = "condition";
419
421
  const _d = "deleted";
422
+ const _dA = "domainArn";
420
423
  const _dRP = "deleteRecordsProcessed";
421
424
  const _dSI = "dataSetId";
422
425
  const _dUI = "disconnectedUniqueIds";
@@ -480,6 +483,7 @@ const _nURL = "newUniqueRecordsLoaded";
480
483
  const _o = "output";
481
484
  const _oSC = "outputSourceConfig";
482
485
  const _oSP = "outputS3Path";
486
+ const _oTA = "objectTypeArn";
483
487
  const _p = "principal";
484
488
  const _pC = "providerConfiguration";
485
489
  const _pCD = "providerConfigurationDefinition";
@@ -548,9 +552,9 @@ const _wA = "workflowArn";
548
552
  const _wN = "workflowName";
549
553
  const _wS = "workflowSummaries";
550
554
  const n0 = "com.amazonaws.entityresolution";
551
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
552
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
553
- var AddPolicyStatementInput = [
555
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
556
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
557
+ var AddPolicyStatementInput$ = [
554
558
  3,
555
559
  n0,
556
560
  _APSI,
@@ -558,8 +562,8 @@ var AddPolicyStatementInput = [
558
562
  [_a, _sI, _ef, _ac, _p, _co],
559
563
  [[0, 1], [0, 1], 0, 64 | 0, 64 | 0, 0],
560
564
  ];
561
- var AddPolicyStatementOutput = [3, n0, _APSO, 0, [_a, _t, _po], [0, 0, 0]];
562
- var BatchDeleteUniqueIdInput = [
565
+ var AddPolicyStatementOutput$ = [3, n0, _APSO, 0, [_a, _t, _po], [0, 0, 0]];
566
+ var BatchDeleteUniqueIdInput$ = [
563
567
  3,
564
568
  n0,
565
569
  _BDUII,
@@ -571,7 +575,7 @@ var BatchDeleteUniqueIdInput = [
571
575
  [64 | 0, { [_hH]: _uI }],
572
576
  ],
573
577
  ];
574
- var BatchDeleteUniqueIdOutput = [
578
+ var BatchDeleteUniqueIdOutput$ = [
575
579
  3,
576
580
  n0,
577
581
  _BDUIO,
@@ -579,9 +583,9 @@ var BatchDeleteUniqueIdOutput = [
579
583
  [_s, _er, _d, _dUI],
580
584
  [0, () => DeleteUniqueIdErrorsList, () => DeletedUniqueIdList, 64 | 0],
581
585
  ];
582
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
583
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
584
- var CreateIdMappingWorkflowInput = [
586
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
587
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
588
+ var CreateIdMappingWorkflowInput$ = [
585
589
  3,
586
590
  n0,
587
591
  _CIMWI,
@@ -592,13 +596,13 @@ var CreateIdMappingWorkflowInput = [
592
596
  0,
593
597
  () => IdMappingWorkflowInputSourceConfig,
594
598
  () => IdMappingWorkflowOutputSourceConfig,
595
- () => IdMappingTechniques,
596
- () => IdMappingIncrementalRunConfig,
599
+ () => IdMappingTechniques$,
600
+ () => IdMappingIncrementalRunConfig$,
597
601
  0,
598
602
  128 | 0,
599
603
  ],
600
604
  ];
601
- var CreateIdMappingWorkflowOutput = [
605
+ var CreateIdMappingWorkflowOutput$ = [
602
606
  3,
603
607
  n0,
604
608
  _CIMWO,
@@ -610,12 +614,12 @@ var CreateIdMappingWorkflowOutput = [
610
614
  0,
611
615
  () => IdMappingWorkflowInputSourceConfig,
612
616
  () => IdMappingWorkflowOutputSourceConfig,
613
- () => IdMappingTechniques,
614
- () => IdMappingIncrementalRunConfig,
617
+ () => IdMappingTechniques$,
618
+ () => IdMappingIncrementalRunConfig$,
615
619
  0,
616
620
  ],
617
621
  ];
618
- var CreateIdNamespaceInput = [
622
+ var CreateIdNamespaceInput$ = [
619
623
  3,
620
624
  n0,
621
625
  _CINI,
@@ -623,7 +627,7 @@ var CreateIdNamespaceInput = [
623
627
  [_iNN, _de, _iSC, _iMWP, _ty, _rA, _ta],
624
628
  [0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 128 | 0],
625
629
  ];
626
- var CreateIdNamespaceOutput = [
630
+ var CreateIdNamespaceOutput$ = [
627
631
  3,
628
632
  n0,
629
633
  _CINO,
@@ -631,7 +635,7 @@ var CreateIdNamespaceOutput = [
631
635
  [_iNN, _iNA, _de, _iSC, _iMWP, _ty, _rA, _cA, _uA, _ta],
632
636
  [0, 0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 4, 4, 128 | 0],
633
637
  ];
634
- var CreateMatchingWorkflowInput = [
638
+ var CreateMatchingWorkflowInput$ = [
635
639
  3,
636
640
  n0,
637
641
  _CMWI,
@@ -642,13 +646,13 @@ var CreateMatchingWorkflowInput = [
642
646
  0,
643
647
  () => InputSourceConfig,
644
648
  () => OutputSourceConfig,
645
- () => ResolutionTechniques,
646
- () => IncrementalRunConfig,
649
+ () => ResolutionTechniques$,
650
+ () => IncrementalRunConfig$,
647
651
  0,
648
652
  128 | 0,
649
653
  ],
650
654
  ];
651
- var CreateMatchingWorkflowOutput = [
655
+ var CreateMatchingWorkflowOutput$ = [
652
656
  3,
653
657
  n0,
654
658
  _CMWO,
@@ -660,12 +664,12 @@ var CreateMatchingWorkflowOutput = [
660
664
  0,
661
665
  () => InputSourceConfig,
662
666
  () => OutputSourceConfig,
663
- () => ResolutionTechniques,
664
- () => IncrementalRunConfig,
667
+ () => ResolutionTechniques$,
668
+ () => IncrementalRunConfig$,
665
669
  0,
666
670
  ],
667
671
  ];
668
- var CreateSchemaMappingInput = [
672
+ var CreateSchemaMappingInput$ = [
669
673
  3,
670
674
  n0,
671
675
  _CSMI,
@@ -673,7 +677,7 @@ var CreateSchemaMappingInput = [
673
677
  [_sN, _de, _mIF, _ta],
674
678
  [0, 0, () => SchemaInputAttributes, 128 | 0],
675
679
  ];
676
- var CreateSchemaMappingOutput = [
680
+ var CreateSchemaMappingOutput$ = [
677
681
  3,
678
682
  n0,
679
683
  _CSMO,
@@ -681,14 +685,15 @@ var CreateSchemaMappingOutput = [
681
685
  [_sN, _sA, _de, _mIF],
682
686
  [0, 0, 0, () => SchemaInputAttributes],
683
687
  ];
684
- var DeletedUniqueId = [3, n0, _DUI, 0, [_uIn], [0]];
685
- var DeleteIdMappingWorkflowInput = [3, n0, _DIMWI, 0, [_wN], [[0, 1]]];
686
- var DeleteIdMappingWorkflowOutput = [3, n0, _DIMWO, 0, [_m], [0]];
687
- var DeleteIdNamespaceInput = [3, n0, _DINI, 0, [_iNN], [[0, 1]]];
688
- var DeleteIdNamespaceOutput = [3, n0, _DINO, 0, [_m], [0]];
689
- var DeleteMatchingWorkflowInput = [3, n0, _DMWI, 0, [_wN], [[0, 1]]];
690
- var DeleteMatchingWorkflowOutput = [3, n0, _DMWO, 0, [_m], [0]];
691
- var DeletePolicyStatementInput = [
688
+ var CustomerProfilesIntegrationConfig$ = [3, n0, _CPIC, 0, [_dA, _oTA], [0, 0]];
689
+ var DeletedUniqueId$ = [3, n0, _DUI, 0, [_uIn], [0]];
690
+ var DeleteIdMappingWorkflowInput$ = [3, n0, _DIMWI, 0, [_wN], [[0, 1]]];
691
+ var DeleteIdMappingWorkflowOutput$ = [3, n0, _DIMWO, 0, [_m], [0]];
692
+ var DeleteIdNamespaceInput$ = [3, n0, _DINI, 0, [_iNN], [[0, 1]]];
693
+ var DeleteIdNamespaceOutput$ = [3, n0, _DINO, 0, [_m], [0]];
694
+ var DeleteMatchingWorkflowInput$ = [3, n0, _DMWI, 0, [_wN], [[0, 1]]];
695
+ var DeleteMatchingWorkflowOutput$ = [3, n0, _DMWO, 0, [_m], [0]];
696
+ var DeletePolicyStatementInput$ = [
692
697
  3,
693
698
  n0,
694
699
  _DPSI,
@@ -699,12 +704,12 @@ var DeletePolicyStatementInput = [
699
704
  [0, 1],
700
705
  ],
701
706
  ];
702
- var DeletePolicyStatementOutput = [3, n0, _DPSO, 0, [_a, _t, _po], [0, 0, 0]];
703
- var DeleteSchemaMappingInput = [3, n0, _DSMI, 0, [_sN], [[0, 1]]];
704
- var DeleteSchemaMappingOutput = [3, n0, _DSMO, 0, [_m], [0]];
705
- var DeleteUniqueIdError = [3, n0, _DUIE, 0, [_uIn, _eT], [0, 0]];
706
- var ErrorDetails = [3, n0, _ED, 0, [_eM], [0]];
707
- var ExceedsLimitException = [
707
+ var DeletePolicyStatementOutput$ = [3, n0, _DPSO, 0, [_a, _t, _po], [0, 0, 0]];
708
+ var DeleteSchemaMappingInput$ = [3, n0, _DSMI, 0, [_sN], [[0, 1]]];
709
+ var DeleteSchemaMappingOutput$ = [3, n0, _DSMO, 0, [_m], [0]];
710
+ var DeleteUniqueIdError$ = [3, n0, _DUIE, 0, [_uIn, _eT], [0, 0]];
711
+ var ErrorDetails$ = [3, n0, _ED, 0, [_eM], [0]];
712
+ var ExceedsLimitException$ = [
708
713
  -3,
709
714
  n0,
710
715
  _ELE,
@@ -712,9 +717,9 @@ var ExceedsLimitException = [
712
717
  [_m, _qN, _qV],
713
718
  [0, 0, 1],
714
719
  ];
715
- schema.TypeRegistry.for(n0).registerError(ExceedsLimitException, ExceedsLimitException$1);
716
- var FailedRecord = [3, n0, _FR, 0, [_iSARN, _uIn, _eM], [0, 0, 0]];
717
- var GenerateMatchIdInput = [
720
+ schema.TypeRegistry.for(n0).registerError(ExceedsLimitException$, ExceedsLimitException);
721
+ var FailedRecord$ = [3, n0, _FR, 0, [_iSARN, _uIn, _eM], [0, 0, 0]];
722
+ var GenerateMatchIdInput$ = [
718
723
  3,
719
724
  n0,
720
725
  _GMII,
@@ -722,7 +727,7 @@ var GenerateMatchIdInput = [
722
727
  [_wN, _r, _pT],
723
728
  [[0, 1], [() => RecordList, 0], 0],
724
729
  ];
725
- var GenerateMatchIdOutput = [
730
+ var GenerateMatchIdOutput$ = [
726
731
  3,
727
732
  n0,
728
733
  _GMIO,
@@ -730,7 +735,7 @@ var GenerateMatchIdOutput = [
730
735
  [_mG, _fR],
731
736
  [() => MatchGroupsList, () => FailedRecordsList],
732
737
  ];
733
- var GetIdMappingJobInput = [
738
+ var GetIdMappingJobInput$ = [
734
739
  3,
735
740
  n0,
736
741
  _GIMJI,
@@ -741,16 +746,16 @@ var GetIdMappingJobInput = [
741
746
  [0, 1],
742
747
  ],
743
748
  ];
744
- var GetIdMappingJobOutput = [
749
+ var GetIdMappingJobOutput$ = [
745
750
  3,
746
751
  n0,
747
752
  _GIMJO,
748
753
  0,
749
754
  [_jI, _s, _sT, _eTn, _me, _eD, _oSC, _jT],
750
- [0, 0, 4, 4, () => IdMappingJobMetrics, () => ErrorDetails, () => IdMappingJobOutputSourceConfig, 0],
755
+ [0, 0, 4, 4, () => IdMappingJobMetrics$, () => ErrorDetails$, () => IdMappingJobOutputSourceConfig, 0],
751
756
  ];
752
- var GetIdMappingWorkflowInput = [3, n0, _GIMWI, 0, [_wN], [[0, 1]]];
753
- var GetIdMappingWorkflowOutput = [
757
+ var GetIdMappingWorkflowInput$ = [3, n0, _GIMWI, 0, [_wN], [[0, 1]]];
758
+ var GetIdMappingWorkflowOutput$ = [
754
759
  3,
755
760
  n0,
756
761
  _GIMWO,
@@ -762,16 +767,16 @@ var GetIdMappingWorkflowOutput = [
762
767
  0,
763
768
  () => IdMappingWorkflowInputSourceConfig,
764
769
  () => IdMappingWorkflowOutputSourceConfig,
765
- () => IdMappingTechniques,
770
+ () => IdMappingTechniques$,
766
771
  4,
767
772
  4,
768
- () => IdMappingIncrementalRunConfig,
773
+ () => IdMappingIncrementalRunConfig$,
769
774
  0,
770
775
  128 | 0,
771
776
  ],
772
777
  ];
773
- var GetIdNamespaceInput = [3, n0, _GINI, 0, [_iNN], [[0, 1]]];
774
- var GetIdNamespaceOutput = [
778
+ var GetIdNamespaceInput$ = [3, n0, _GINI, 0, [_iNN], [[0, 1]]];
779
+ var GetIdNamespaceOutput$ = [
775
780
  3,
776
781
  n0,
777
782
  _GINO,
@@ -779,7 +784,7 @@ var GetIdNamespaceOutput = [
779
784
  [_iNN, _iNA, _de, _iSC, _iMWP, _ty, _rA, _cA, _uA, _ta],
780
785
  [0, 0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 4, 4, 128 | 0],
781
786
  ];
782
- var GetMatchIdInput = [
787
+ var GetMatchIdInput$ = [
783
788
  3,
784
789
  n0,
785
790
  _GMIIe,
@@ -787,8 +792,8 @@ var GetMatchIdInput = [
787
792
  [_wN, _re, _aN],
788
793
  [[0, 1], [() => RecordAttributeMap, 0], 2],
789
794
  ];
790
- var GetMatchIdOutput = [3, n0, _GMIOe, 0, [_mI, _mR], [0, 0]];
791
- var GetMatchingJobInput = [
795
+ var GetMatchIdOutput$ = [3, n0, _GMIOe, 0, [_mI, _mR], [0, 0]];
796
+ var GetMatchingJobInput$ = [
792
797
  3,
793
798
  n0,
794
799
  _GMJI,
@@ -799,16 +804,16 @@ var GetMatchingJobInput = [
799
804
  [0, 1],
800
805
  ],
801
806
  ];
802
- var GetMatchingJobOutput = [
807
+ var GetMatchingJobOutput$ = [
803
808
  3,
804
809
  n0,
805
810
  _GMJO,
806
811
  0,
807
812
  [_jI, _s, _sT, _eTn, _me, _eD, _oSC],
808
- [0, 0, 4, 4, () => JobMetrics, () => ErrorDetails, () => JobOutputSourceConfig],
813
+ [0, 0, 4, 4, () => JobMetrics$, () => ErrorDetails$, () => JobOutputSourceConfig],
809
814
  ];
810
- var GetMatchingWorkflowInput = [3, n0, _GMWI, 0, [_wN], [[0, 1]]];
811
- var GetMatchingWorkflowOutput = [
815
+ var GetMatchingWorkflowInput$ = [3, n0, _GMWI, 0, [_wN], [[0, 1]]];
816
+ var GetMatchingWorkflowOutput$ = [
812
817
  3,
813
818
  n0,
814
819
  _GMWO,
@@ -820,17 +825,17 @@ var GetMatchingWorkflowOutput = [
820
825
  0,
821
826
  () => InputSourceConfig,
822
827
  () => OutputSourceConfig,
823
- () => ResolutionTechniques,
828
+ () => ResolutionTechniques$,
824
829
  4,
825
830
  4,
826
- () => IncrementalRunConfig,
831
+ () => IncrementalRunConfig$,
827
832
  0,
828
833
  128 | 0,
829
834
  ],
830
835
  ];
831
- var GetPolicyInput = [3, n0, _GPI, 0, [_a], [[0, 1]]];
832
- var GetPolicyOutput = [3, n0, _GPO, 0, [_a, _t, _po], [0, 0, 0]];
833
- var GetProviderServiceInput = [
836
+ var GetPolicyInput$ = [3, n0, _GPI, 0, [_a], [[0, 1]]];
837
+ var GetPolicyOutput$ = [3, n0, _GPO, 0, [_a, _t, _po], [0, 0, 0]];
838
+ var GetProviderServiceInput$ = [
834
839
  3,
835
840
  n0,
836
841
  _GPSI,
@@ -841,7 +846,7 @@ var GetProviderServiceInput = [
841
846
  [0, 1],
842
847
  ],
843
848
  ];
844
- var GetProviderServiceOutput = [
849
+ var GetProviderServiceOutput$ = [
845
850
  3,
846
851
  n0,
847
852
  _GPSO,
@@ -854,17 +859,17 @@ var GetProviderServiceOutput = [
854
859
  0,
855
860
  0,
856
861
  15,
857
- () => ProviderIdNameSpaceConfiguration,
862
+ () => ProviderIdNameSpaceConfiguration$,
858
863
  15,
859
- () => ProviderEndpointConfiguration,
864
+ () => ProviderEndpointConfiguration$,
860
865
  2,
861
866
  15,
862
- () => ProviderIntermediateDataAccessConfiguration,
863
- () => ProviderComponentSchema,
867
+ () => ProviderIntermediateDataAccessConfiguration$,
868
+ () => ProviderComponentSchema$,
864
869
  ],
865
870
  ];
866
- var GetSchemaMappingInput = [3, n0, _GSMI, 0, [_sN], [[0, 1]]];
867
- var GetSchemaMappingOutput = [
871
+ var GetSchemaMappingInput$ = [3, n0, _GSMI, 0, [_sN], [[0, 1]]];
872
+ var GetSchemaMappingOutput$ = [
868
873
  3,
869
874
  n0,
870
875
  _GSMO,
@@ -872,8 +877,8 @@ var GetSchemaMappingOutput = [
872
877
  [_sN, _sA, _de, _mIF, _cA, _uA, _ta, _hW],
873
878
  [0, 0, 0, () => SchemaInputAttributes, 4, 4, 128 | 0, 2],
874
879
  ];
875
- var IdMappingIncrementalRunConfig = [3, n0, _IMIRC, 0, [_iRT], [0]];
876
- var IdMappingJobMetrics = [
880
+ var IdMappingIncrementalRunConfig$ = [3, n0, _IMIRC, 0, [_iRT], [0]];
881
+ var IdMappingJobMetrics$ = [
877
882
  3,
878
883
  n0,
879
884
  _IMJM,
@@ -881,8 +886,8 @@ var IdMappingJobMetrics = [
881
886
  [_iR, _tRP, _rNP, _dRP, _tMR, _tMSR, _tMTR, _uRL, _nMR, _nMSR, _nMTR, _nURL, _mRR, _mSRR, _mTRR],
882
887
  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
883
888
  ];
884
- var IdMappingJobOutputSource = [3, n0, _IMJOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
885
- var IdMappingRuleBasedProperties = [
889
+ var IdMappingJobOutputSource$ = [3, n0, _IMJOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
890
+ var IdMappingRuleBasedProperties$ = [
886
891
  3,
887
892
  n0,
888
893
  _IMRBP,
@@ -890,28 +895,28 @@ var IdMappingRuleBasedProperties = [
890
895
  [_ru, _rDT, _aMM, _rMM],
891
896
  [() => RuleList, 0, 0, 0],
892
897
  ];
893
- var IdMappingTechniques = [
898
+ var IdMappingTechniques$ = [
894
899
  3,
895
900
  n0,
896
901
  _IMT,
897
902
  0,
898
903
  [_iMTd, _rBP, _pP],
899
- [0, () => IdMappingRuleBasedProperties, () => ProviderProperties],
904
+ [0, () => IdMappingRuleBasedProperties$, () => ProviderProperties$],
900
905
  ];
901
- var IdMappingWorkflowInputSource = [3, n0, _IMWIS, 0, [_iSARN, _sN, _ty], [0, 0, 0]];
902
- var IdMappingWorkflowOutputSource = [3, n0, _IMWOS, 0, [_oSP, _KMSA], [0, 0]];
903
- var IdMappingWorkflowSummary = [3, n0, _IMWS, 0, [_wN, _wA, _cA, _uA], [0, 0, 4, 4]];
904
- var IdNamespaceIdMappingWorkflowMetadata = [3, n0, _INIMWM, 0, [_iMTd], [0]];
905
- var IdNamespaceIdMappingWorkflowProperties = [
906
+ var IdMappingWorkflowInputSource$ = [3, n0, _IMWIS, 0, [_iSARN, _sN, _ty], [0, 0, 0]];
907
+ var IdMappingWorkflowOutputSource$ = [3, n0, _IMWOS, 0, [_KMSA, _oSP], [0, 0]];
908
+ var IdMappingWorkflowSummary$ = [3, n0, _IMWS, 0, [_wN, _wA, _cA, _uA], [0, 0, 4, 4]];
909
+ var IdNamespaceIdMappingWorkflowMetadata$ = [3, n0, _INIMWM, 0, [_iMTd], [0]];
910
+ var IdNamespaceIdMappingWorkflowProperties$ = [
906
911
  3,
907
912
  n0,
908
913
  _INIMWP,
909
914
  0,
910
915
  [_iMTd, _rBP, _pP],
911
- [0, () => NamespaceRuleBasedProperties, () => NamespaceProviderProperties],
916
+ [0, () => NamespaceRuleBasedProperties$, () => NamespaceProviderProperties$],
912
917
  ];
913
- var IdNamespaceInputSource = [3, n0, _INIS, 0, [_iSARN, _sN], [0, 0]];
914
- var IdNamespaceSummary = [
918
+ var IdNamespaceInputSource$ = [3, n0, _INIS, 0, [_iSARN, _sN], [0, 0]];
919
+ var IdNamespaceSummary$ = [
915
920
  3,
916
921
  n0,
917
922
  _INS,
@@ -919,15 +924,15 @@ var IdNamespaceSummary = [
919
924
  [_iNN, _iNA, _de, _iMWP, _ty, _cA, _uA],
920
925
  [0, 0, 0, () => IdNamespaceIdMappingWorkflowMetadataList, 0, 4, 4],
921
926
  ];
922
- var IncrementalRunConfig = [3, n0, _IRC, 0, [_iRT], [0]];
923
- var InputSource = [3, n0, _IS, 0, [_iSARN, _sN, _aN], [0, 0, 2]];
924
- var IntermediateSourceConfiguration = [3, n0, _ISC, 0, [_iSP], [0]];
925
- var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
926
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
927
- var JobMetrics = [3, n0, _JM, 0, [_iR, _tRP, _rNP, _dRP, _mID], [1, 1, 1, 1, 1]];
928
- var JobOutputSource = [3, n0, _JOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
929
- var JobSummary = [3, n0, _JS, 0, [_jI, _s, _sT, _eTn], [0, 0, 4, 4]];
930
- var ListIdMappingJobsInput = [
927
+ var IncrementalRunConfig$ = [3, n0, _IRC, 0, [_iRT], [0]];
928
+ var InputSource$ = [3, n0, _IS, 0, [_iSARN, _sN, _aN], [0, 0, 2]];
929
+ var IntermediateSourceConfiguration$ = [3, n0, _ISC, 0, [_iSP], [0]];
930
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
931
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
932
+ var JobMetrics$ = [3, n0, _JM, 0, [_iR, _tRP, _rNP, _dRP, _mID], [1, 1, 1, 1, 1]];
933
+ var JobOutputSource$ = [3, n0, _JOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
934
+ var JobSummary$ = [3, n0, _JS, 0, [_jI, _s, _sT, _eTn], [0, 0, 4, 4]];
935
+ var ListIdMappingJobsInput$ = [
931
936
  3,
932
937
  n0,
933
938
  _LIMJI,
@@ -939,8 +944,8 @@ var ListIdMappingJobsInput = [
939
944
  [1, { [_hQ]: _mRa }],
940
945
  ],
941
946
  ];
942
- var ListIdMappingJobsOutput = [3, n0, _LIMJO, 0, [_j, _nT], [() => JobList, 0]];
943
- var ListIdMappingWorkflowsInput = [
947
+ var ListIdMappingJobsOutput$ = [3, n0, _LIMJO, 0, [_j, _nT], [() => JobList, 0]];
948
+ var ListIdMappingWorkflowsInput$ = [
944
949
  3,
945
950
  n0,
946
951
  _LIMWI,
@@ -951,7 +956,7 @@ var ListIdMappingWorkflowsInput = [
951
956
  [1, { [_hQ]: _mRa }],
952
957
  ],
953
958
  ];
954
- var ListIdMappingWorkflowsOutput = [
959
+ var ListIdMappingWorkflowsOutput$ = [
955
960
  3,
956
961
  n0,
957
962
  _LIMWO,
@@ -959,7 +964,7 @@ var ListIdMappingWorkflowsOutput = [
959
964
  [_wS, _nT],
960
965
  [() => IdMappingWorkflowList, 0],
961
966
  ];
962
- var ListIdNamespacesInput = [
967
+ var ListIdNamespacesInput$ = [
963
968
  3,
964
969
  n0,
965
970
  _LINI,
@@ -970,8 +975,8 @@ var ListIdNamespacesInput = [
970
975
  [1, { [_hQ]: _mRa }],
971
976
  ],
972
977
  ];
973
- var ListIdNamespacesOutput = [3, n0, _LINO, 0, [_iNS, _nT], [() => IdNamespaceList, 0]];
974
- var ListMatchingJobsInput = [
978
+ var ListIdNamespacesOutput$ = [3, n0, _LINO, 0, [_iNS, _nT], [() => IdNamespaceList, 0]];
979
+ var ListMatchingJobsInput$ = [
975
980
  3,
976
981
  n0,
977
982
  _LMJI,
@@ -983,8 +988,8 @@ var ListMatchingJobsInput = [
983
988
  [1, { [_hQ]: _mRa }],
984
989
  ],
985
990
  ];
986
- var ListMatchingJobsOutput = [3, n0, _LMJO, 0, [_j, _nT], [() => JobList, 0]];
987
- var ListMatchingWorkflowsInput = [
991
+ var ListMatchingJobsOutput$ = [3, n0, _LMJO, 0, [_j, _nT], [() => JobList, 0]];
992
+ var ListMatchingWorkflowsInput$ = [
988
993
  3,
989
994
  n0,
990
995
  _LMWI,
@@ -995,7 +1000,7 @@ var ListMatchingWorkflowsInput = [
995
1000
  [1, { [_hQ]: _mRa }],
996
1001
  ],
997
1002
  ];
998
- var ListMatchingWorkflowsOutput = [
1003
+ var ListMatchingWorkflowsOutput$ = [
999
1004
  3,
1000
1005
  n0,
1001
1006
  _LMWO,
@@ -1003,7 +1008,7 @@ var ListMatchingWorkflowsOutput = [
1003
1008
  [_wS, _nT],
1004
1009
  [() => MatchingWorkflowList, 0],
1005
1010
  ];
1006
- var ListProviderServicesInput = [
1011
+ var ListProviderServicesInput$ = [
1007
1012
  3,
1008
1013
  n0,
1009
1014
  _LPSI,
@@ -1015,7 +1020,7 @@ var ListProviderServicesInput = [
1015
1020
  [0, { [_hQ]: _pN }],
1016
1021
  ],
1017
1022
  ];
1018
- var ListProviderServicesOutput = [
1023
+ var ListProviderServicesOutput$ = [
1019
1024
  3,
1020
1025
  n0,
1021
1026
  _LPSO,
@@ -1023,7 +1028,7 @@ var ListProviderServicesOutput = [
1023
1028
  [_pSS, _nT],
1024
1029
  [() => ProviderServiceList, 0],
1025
1030
  ];
1026
- var ListSchemaMappingsInput = [
1031
+ var ListSchemaMappingsInput$ = [
1027
1032
  3,
1028
1033
  n0,
1029
1034
  _LSMI,
@@ -1034,7 +1039,7 @@ var ListSchemaMappingsInput = [
1034
1039
  [1, { [_hQ]: _mRa }],
1035
1040
  ],
1036
1041
  ];
1037
- var ListSchemaMappingsOutput = [
1042
+ var ListSchemaMappingsOutput$ = [
1038
1043
  3,
1039
1044
  n0,
1040
1045
  _LSMO,
@@ -1042,11 +1047,11 @@ var ListSchemaMappingsOutput = [
1042
1047
  [_sL, _nT],
1043
1048
  [() => SchemaMappingList, 0],
1044
1049
  ];
1045
- var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rAe], [[0, 1]]];
1046
- var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_ta], [128 | 0]];
1047
- var MatchedRecord = [3, n0, _MR, 0, [_iSARN, _rI], [0, 0]];
1048
- var MatchGroup = [3, n0, _MG, 0, [_r, _mI, _mR], [() => MatchedRecordsList, 0, 0]];
1049
- var MatchingWorkflowSummary = [
1050
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_rAe], [[0, 1]]];
1051
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_ta], [128 | 0]];
1052
+ var MatchedRecord$ = [3, n0, _MR, 0, [_iSARN, _rI], [0, 0]];
1053
+ var MatchGroup$ = [3, n0, _MG, 0, [_r, _mI, _mR], [() => MatchedRecordsList, 0, 0]];
1054
+ var MatchingWorkflowSummary$ = [
1050
1055
  3,
1051
1056
  n0,
1052
1057
  _MWS,
@@ -1054,8 +1059,8 @@ var MatchingWorkflowSummary = [
1054
1059
  [_wN, _wA, _cA, _uA, _rTe],
1055
1060
  [0, 0, 4, 4, 0],
1056
1061
  ];
1057
- var NamespaceProviderProperties = [3, n0, _NPP, 0, [_pSA, _pC], [0, 15]];
1058
- var NamespaceRuleBasedProperties = [
1062
+ var NamespaceProviderProperties$ = [3, n0, _NPP, 0, [_pSA, _pC], [0, 15]];
1063
+ var NamespaceRuleBasedProperties$ = [
1059
1064
  3,
1060
1065
  n0,
1061
1066
  _NRBP,
@@ -1063,16 +1068,16 @@ var NamespaceRuleBasedProperties = [
1063
1068
  [_ru, _rDTu, _aMM, _rMMe],
1064
1069
  [() => RuleList, 64 | 0, 0, 64 | 0],
1065
1070
  ];
1066
- var OutputAttribute = [3, n0, _OA, 0, [_n, _h], [0, 2]];
1067
- var OutputSource = [
1071
+ var OutputAttribute$ = [3, n0, _OA, 0, [_n, _h], [0, 2]];
1072
+ var OutputSource$ = [
1068
1073
  3,
1069
1074
  n0,
1070
1075
  _OS,
1071
1076
  0,
1072
- [_oSP, _KMSA, _o, _aN],
1073
- [0, 0, () => OutputAttributes, 2],
1077
+ [_KMSA, _oSP, _o, _aN, _cPIC],
1078
+ [0, 0, () => OutputAttributes, 2, () => CustomerProfilesIntegrationConfig$],
1074
1079
  ];
1075
- var ProviderComponentSchema = [
1080
+ var ProviderComponentSchema$ = [
1076
1081
  3,
1077
1082
  n0,
1078
1083
  _PCS,
@@ -1080,7 +1085,7 @@ var ProviderComponentSchema = [
1080
1085
  [_sc, _pSAr],
1081
1086
  [[1, n0, _S, 0, 64 | 0], () => ProviderSchemaAttributes],
1082
1087
  ];
1083
- var ProviderIdNameSpaceConfiguration = [
1088
+ var ProviderIdNameSpaceConfiguration$ = [
1084
1089
  3,
1085
1090
  n0,
1086
1091
  _PINSC,
@@ -1088,7 +1093,7 @@ var ProviderIdNameSpaceConfiguration = [
1088
1093
  [_de, _pTCD, _pSCD],
1089
1094
  [0, 15, 15],
1090
1095
  ];
1091
- var ProviderIntermediateDataAccessConfiguration = [
1096
+ var ProviderIntermediateDataAccessConfiguration$ = [
1092
1097
  3,
1093
1098
  n0,
1094
1099
  _PIDAC,
@@ -1096,7 +1101,7 @@ var ProviderIntermediateDataAccessConfiguration = [
1096
1101
  [_aAI, _rBA],
1097
1102
  [64 | 0, 64 | 0],
1098
1103
  ];
1099
- var ProviderMarketplaceConfiguration = [
1104
+ var ProviderMarketplaceConfiguration$ = [
1100
1105
  3,
1101
1106
  n0,
1102
1107
  _PMC,
@@ -1104,16 +1109,16 @@ var ProviderMarketplaceConfiguration = [
1104
1109
  [_dSI, _rIe, _aI, _lI],
1105
1110
  [0, 0, 0, 0],
1106
1111
  ];
1107
- var ProviderProperties = [
1112
+ var ProviderProperties$ = [
1108
1113
  3,
1109
1114
  n0,
1110
1115
  _PP,
1111
1116
  0,
1112
1117
  [_pSA, _pC, _iSCn],
1113
- [0, 15, () => IntermediateSourceConfiguration],
1118
+ [0, 15, () => IntermediateSourceConfiguration$],
1114
1119
  ];
1115
- var ProviderSchemaAttribute = [3, n0, _PSA, 0, [_fN, _ty, _sTu, _ha], [0, 0, 0, 2]];
1116
- var ProviderServiceSummary = [
1120
+ var ProviderSchemaAttribute$ = [3, n0, _PSA, 0, [_fN, _ty, _sTu, _ha], [0, 0, 0, 2]];
1121
+ var ProviderServiceSummary$ = [
1117
1122
  3,
1118
1123
  n0,
1119
1124
  _PSS,
@@ -1121,9 +1126,9 @@ var ProviderServiceSummary = [
1121
1126
  [_pSA, _pN, _pSDN, _pSN, _pST],
1122
1127
  [0, 0, 0, 0, 0],
1123
1128
  ];
1124
- var PutPolicyInput = [3, n0, _PPI, 0, [_a, _t, _po], [[0, 1], 0, 0]];
1125
- var PutPolicyOutput = [3, n0, _PPO, 0, [_a, _t, _po], [0, 0, 0]];
1126
- var _Record = [
1129
+ var PutPolicyInput$ = [3, n0, _PPI, 0, [_a, _t, _po], [[0, 1], 0, 0]];
1130
+ var PutPolicyOutput$ = [3, n0, _PPO, 0, [_a, _t, _po], [0, 0, 0]];
1131
+ var _Record$ = [
1127
1132
  3,
1128
1133
  n0,
1129
1134
  _R,
@@ -1131,21 +1136,21 @@ var _Record = [
1131
1136
  [_iSARN, _uIn, _rAM],
1132
1137
  [0, 0, [() => RecordAttributeMapString255, 0]],
1133
1138
  ];
1134
- var ResolutionTechniques = [
1139
+ var ResolutionTechniques$ = [
1135
1140
  3,
1136
1141
  n0,
1137
1142
  _RT,
1138
1143
  0,
1139
1144
  [_rTe, _rBP, _rCP, _pP],
1140
- [0, () => RuleBasedProperties, () => RuleConditionProperties, () => ProviderProperties],
1145
+ [0, () => RuleBasedProperties$, () => RuleConditionProperties$, () => ProviderProperties$],
1141
1146
  ];
1142
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1143
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1144
- var Rule = [3, n0, _Ru, 0, [_rN, _mK], [0, 64 | 0]];
1145
- var RuleBasedProperties = [3, n0, _RBP, 0, [_ru, _aMM, _mP], [() => RuleList, 0, 0]];
1146
- var RuleCondition = [3, n0, _RC, 0, [_rN, _co], [0, 0]];
1147
- var RuleConditionProperties = [3, n0, _RCP, 0, [_ru], [() => RuleConditionList]];
1148
- var SchemaInputAttribute = [
1147
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1148
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1149
+ var Rule$ = [3, n0, _Ru, 0, [_rN, _mK], [0, 64 | 0]];
1150
+ var RuleBasedProperties$ = [3, n0, _RBP, 0, [_ru, _aMM, _mP], [() => RuleList, 0, 0]];
1151
+ var RuleCondition$ = [3, n0, _RC, 0, [_rN, _co], [0, 0]];
1152
+ var RuleConditionProperties$ = [3, n0, _RCP, 0, [_ru], [() => RuleConditionList]];
1153
+ var SchemaInputAttribute$ = [
1149
1154
  3,
1150
1155
  n0,
1151
1156
  _SIA,
@@ -1153,8 +1158,8 @@ var SchemaInputAttribute = [
1153
1158
  [_fN, _ty, _gN, _mKa, _sTu, _h],
1154
1159
  [0, 0, 0, 0, 0, 2],
1155
1160
  ];
1156
- var SchemaMappingSummary = [3, n0, _SMS, 0, [_sN, _sA, _cA, _uA, _hW], [0, 0, 4, 4, 2]];
1157
- var StartIdMappingJobInput = [
1161
+ var SchemaMappingSummary$ = [3, n0, _SMS, 0, [_sN, _sA, _cA, _uA, _hW], [0, 0, 4, 4, 2]];
1162
+ var StartIdMappingJobInput$ = [
1158
1163
  3,
1159
1164
  n0,
1160
1165
  _SIMJI,
@@ -1162,7 +1167,7 @@ var StartIdMappingJobInput = [
1162
1167
  [_wN, _oSC, _jT],
1163
1168
  [[0, 1], () => IdMappingJobOutputSourceConfig, 0],
1164
1169
  ];
1165
- var StartIdMappingJobOutput = [
1170
+ var StartIdMappingJobOutput$ = [
1166
1171
  3,
1167
1172
  n0,
1168
1173
  _SIMJO,
@@ -1170,13 +1175,13 @@ var StartIdMappingJobOutput = [
1170
1175
  [_jI, _oSC, _jT],
1171
1176
  [0, () => IdMappingJobOutputSourceConfig, 0],
1172
1177
  ];
1173
- var StartMatchingJobInput = [3, n0, _SMJI, 0, [_wN], [[0, 1]]];
1174
- var StartMatchingJobOutput = [3, n0, _SMJO, 0, [_jI], [0]];
1175
- var TagResourceInput = [3, n0, _TRI, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
1176
- var TagResourceOutput = [3, n0, _TRO, 0, [], []];
1177
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1178
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1179
- var UntagResourceInput = [
1178
+ var StartMatchingJobInput$ = [3, n0, _SMJI, 0, [_wN], [[0, 1]]];
1179
+ var StartMatchingJobOutput$ = [3, n0, _SMJO, 0, [_jI], [0]];
1180
+ var TagResourceInput$ = [3, n0, _TRI, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
1181
+ var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
1182
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1183
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1184
+ var UntagResourceInput$ = [
1180
1185
  3,
1181
1186
  n0,
1182
1187
  _URI,
@@ -1187,8 +1192,8 @@ var UntagResourceInput = [
1187
1192
  [64 | 0, { [_hQ]: _tK }],
1188
1193
  ],
1189
1194
  ];
1190
- var UntagResourceOutput = [3, n0, _URO, 0, [], []];
1191
- var UpdateIdMappingWorkflowInput = [
1195
+ var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
1196
+ var UpdateIdMappingWorkflowInput$ = [
1192
1197
  3,
1193
1198
  n0,
1194
1199
  _UIMWI,
@@ -1199,12 +1204,12 @@ var UpdateIdMappingWorkflowInput = [
1199
1204
  0,
1200
1205
  () => IdMappingWorkflowInputSourceConfig,
1201
1206
  () => IdMappingWorkflowOutputSourceConfig,
1202
- () => IdMappingTechniques,
1203
- () => IdMappingIncrementalRunConfig,
1207
+ () => IdMappingTechniques$,
1208
+ () => IdMappingIncrementalRunConfig$,
1204
1209
  0,
1205
1210
  ],
1206
1211
  ];
1207
- var UpdateIdMappingWorkflowOutput = [
1212
+ var UpdateIdMappingWorkflowOutput$ = [
1208
1213
  3,
1209
1214
  n0,
1210
1215
  _UIMWO,
@@ -1216,12 +1221,12 @@ var UpdateIdMappingWorkflowOutput = [
1216
1221
  0,
1217
1222
  () => IdMappingWorkflowInputSourceConfig,
1218
1223
  () => IdMappingWorkflowOutputSourceConfig,
1219
- () => IdMappingTechniques,
1220
- () => IdMappingIncrementalRunConfig,
1224
+ () => IdMappingTechniques$,
1225
+ () => IdMappingIncrementalRunConfig$,
1221
1226
  0,
1222
1227
  ],
1223
1228
  ];
1224
- var UpdateIdNamespaceInput = [
1229
+ var UpdateIdNamespaceInput$ = [
1225
1230
  3,
1226
1231
  n0,
1227
1232
  _UINI,
@@ -1229,7 +1234,7 @@ var UpdateIdNamespaceInput = [
1229
1234
  [_iNN, _de, _iSC, _iMWP, _rA],
1230
1235
  [[0, 1], 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0],
1231
1236
  ];
1232
- var UpdateIdNamespaceOutput = [
1237
+ var UpdateIdNamespaceOutput$ = [
1233
1238
  3,
1234
1239
  n0,
1235
1240
  _UINO,
@@ -1237,7 +1242,7 @@ var UpdateIdNamespaceOutput = [
1237
1242
  [_iNN, _iNA, _de, _iSC, _iMWP, _ty, _rA, _cA, _uA],
1238
1243
  [0, 0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 4, 4],
1239
1244
  ];
1240
- var UpdateMatchingWorkflowInput = [
1245
+ var UpdateMatchingWorkflowInput$ = [
1241
1246
  3,
1242
1247
  n0,
1243
1248
  _UMWI,
@@ -1248,20 +1253,28 @@ var UpdateMatchingWorkflowInput = [
1248
1253
  0,
1249
1254
  () => InputSourceConfig,
1250
1255
  () => OutputSourceConfig,
1251
- () => ResolutionTechniques,
1252
- () => IncrementalRunConfig,
1256
+ () => ResolutionTechniques$,
1257
+ () => IncrementalRunConfig$,
1253
1258
  0,
1254
1259
  ],
1255
1260
  ];
1256
- var UpdateMatchingWorkflowOutput = [
1261
+ var UpdateMatchingWorkflowOutput$ = [
1257
1262
  3,
1258
1263
  n0,
1259
1264
  _UMWO,
1260
1265
  0,
1261
1266
  [_wN, _de, _iSC, _oSC, _rT, _iRC, _rA],
1262
- [0, 0, () => InputSourceConfig, () => OutputSourceConfig, () => ResolutionTechniques, () => IncrementalRunConfig, 0],
1267
+ [
1268
+ 0,
1269
+ 0,
1270
+ () => InputSourceConfig,
1271
+ () => OutputSourceConfig,
1272
+ () => ResolutionTechniques$,
1273
+ () => IncrementalRunConfig$,
1274
+ 0,
1275
+ ],
1263
1276
  ];
1264
- var UpdateSchemaMappingInput = [
1277
+ var UpdateSchemaMappingInput$ = [
1265
1278
  3,
1266
1279
  n0,
1267
1280
  _USMI,
@@ -1269,7 +1282,7 @@ var UpdateSchemaMappingInput = [
1269
1282
  [_sN, _de, _mIF],
1270
1283
  [[0, 1], 0, () => SchemaInputAttributes],
1271
1284
  ];
1272
- var UpdateSchemaMappingOutput = [
1285
+ var UpdateSchemaMappingOutput$ = [
1273
1286
  3,
1274
1287
  n0,
1275
1288
  _USMO,
@@ -1277,9 +1290,9 @@ var UpdateSchemaMappingOutput = [
1277
1290
  [_sN, _sA, _de, _mIF],
1278
1291
  [0, 0, 0, () => SchemaInputAttributes],
1279
1292
  ];
1280
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1281
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1282
- var EntityResolutionServiceException = [
1293
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1294
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1295
+ var EntityResolutionServiceException$ = [
1283
1296
  -3,
1284
1297
  _sm,
1285
1298
  "EntityResolutionServiceException",
@@ -1287,370 +1300,358 @@ var EntityResolutionServiceException = [
1287
1300
  [],
1288
1301
  [],
1289
1302
  ];
1290
- schema.TypeRegistry.for(_sm).registerError(EntityResolutionServiceException, EntityResolutionServiceException$1);
1291
- var DeletedUniqueIdList = [1, n0, _DUIL, 0, () => DeletedUniqueId];
1292
- var DeleteUniqueIdErrorsList = [1, n0, _DUIEL, 0, () => DeleteUniqueIdError];
1293
- var FailedRecordsList = [1, n0, _FRL, 0, () => FailedRecord];
1294
- var IdMappingJobOutputSourceConfig = [1, n0, _IMJOSC, 0, () => IdMappingJobOutputSource];
1295
- var IdMappingWorkflowInputSourceConfig = [
1296
- 1,
1297
- n0,
1298
- _IMWISC,
1299
- 0,
1300
- () => IdMappingWorkflowInputSource,
1301
- ];
1302
- var IdMappingWorkflowList = [1, n0, _IMWL, 0, () => IdMappingWorkflowSummary];
1303
- var IdMappingWorkflowOutputSourceConfig = [
1304
- 1,
1305
- n0,
1306
- _IMWOSC,
1307
- 0,
1308
- () => IdMappingWorkflowOutputSource,
1309
- ];
1303
+ schema.TypeRegistry.for(_sm).registerError(EntityResolutionServiceException$, EntityResolutionServiceException);
1304
+ var DeletedUniqueIdList = [1, n0, _DUIL, 0, () => DeletedUniqueId$];
1305
+ var DeleteUniqueIdErrorsList = [1, n0, _DUIEL, 0, () => DeleteUniqueIdError$];
1306
+ var FailedRecordsList = [1, n0, _FRL, 0, () => FailedRecord$];
1307
+ var IdMappingJobOutputSourceConfig = [1, n0, _IMJOSC, 0, () => IdMappingJobOutputSource$];
1308
+ var IdMappingWorkflowInputSourceConfig = [1, n0, _IMWISC, 0, () => IdMappingWorkflowInputSource$];
1309
+ var IdMappingWorkflowList = [1, n0, _IMWL, 0, () => IdMappingWorkflowSummary$];
1310
+ var IdMappingWorkflowOutputSourceConfig = [1, n0, _IMWOSC, 0, () => IdMappingWorkflowOutputSource$];
1310
1311
  var IdNamespaceIdMappingWorkflowMetadataList = [
1311
1312
  1,
1312
1313
  n0,
1313
1314
  _INIMWML,
1314
1315
  0,
1315
- () => IdNamespaceIdMappingWorkflowMetadata,
1316
+ () => IdNamespaceIdMappingWorkflowMetadata$,
1316
1317
  ];
1317
1318
  var IdNamespaceIdMappingWorkflowPropertiesList = [
1318
1319
  1,
1319
1320
  n0,
1320
1321
  _INIMWPL,
1321
1322
  0,
1322
- () => IdNamespaceIdMappingWorkflowProperties,
1323
- ];
1324
- var IdNamespaceInputSourceConfig = [1, n0, _INISC, 0, () => IdNamespaceInputSource];
1325
- var IdNamespaceList = [1, n0, _INL, 0, () => IdNamespaceSummary];
1326
- var InputSourceConfig = [1, n0, _ISCn, 0, () => InputSource];
1327
- var JobList = [1, n0, _JL, 0, () => JobSummary];
1328
- var JobOutputSourceConfig = [1, n0, _JOSC, 0, () => JobOutputSource];
1329
- var MatchedRecordsList = [1, n0, _MRL, 0, () => MatchedRecord];
1330
- var MatchGroupsList = [1, n0, _MGL, 0, () => MatchGroup];
1331
- var MatchingWorkflowList = [1, n0, _MWL, 0, () => MatchingWorkflowSummary];
1332
- var OutputAttributes = [1, n0, _OAu, 0, () => OutputAttribute];
1333
- var OutputSourceConfig = [1, n0, _OSC, 0, () => OutputSource];
1334
- var ProviderSchemaAttributes = [1, n0, _PSAr, 0, () => ProviderSchemaAttribute];
1335
- var ProviderServiceList = [1, n0, _PSL, 0, () => ProviderServiceSummary];
1336
- var RecordList = [1, n0, _RL, 0, [() => _Record, 0]];
1337
- var RuleConditionList = [1, n0, _RCL, 0, () => RuleCondition];
1338
- var RuleList = [1, n0, _RLu, 0, () => Rule];
1339
- var SchemaInputAttributes = [1, n0, _SIAc, 0, () => SchemaInputAttribute];
1340
- var SchemaMappingList = [1, n0, _SML, 0, () => SchemaMappingSummary];
1323
+ () => IdNamespaceIdMappingWorkflowProperties$,
1324
+ ];
1325
+ var IdNamespaceInputSourceConfig = [1, n0, _INISC, 0, () => IdNamespaceInputSource$];
1326
+ var IdNamespaceList = [1, n0, _INL, 0, () => IdNamespaceSummary$];
1327
+ var InputSourceConfig = [1, n0, _ISCn, 0, () => InputSource$];
1328
+ var JobList = [1, n0, _JL, 0, () => JobSummary$];
1329
+ var JobOutputSourceConfig = [1, n0, _JOSC, 0, () => JobOutputSource$];
1330
+ var MatchedRecordsList = [1, n0, _MRL, 0, () => MatchedRecord$];
1331
+ var MatchGroupsList = [1, n0, _MGL, 0, () => MatchGroup$];
1332
+ var MatchingWorkflowList = [1, n0, _MWL, 0, () => MatchingWorkflowSummary$];
1333
+ var OutputAttributes = [1, n0, _OAu, 0, () => OutputAttribute$];
1334
+ var OutputSourceConfig = [1, n0, _OSC, 0, () => OutputSource$];
1335
+ var ProviderSchemaAttributes = [1, n0, _PSAr, 0, () => ProviderSchemaAttribute$];
1336
+ var ProviderServiceList = [1, n0, _PSL, 0, () => ProviderServiceSummary$];
1337
+ var RecordList = [1, n0, _RL, 0, [() => _Record$, 0]];
1338
+ var RuleConditionList = [1, n0, _RCL, 0, () => RuleCondition$];
1339
+ var RuleList = [1, n0, _RLu, 0, () => Rule$];
1340
+ var SchemaInputAttributes = [1, n0, _SIAc, 0, () => SchemaInputAttribute$];
1341
+ var SchemaMappingList = [1, n0, _SML, 0, () => SchemaMappingSummary$];
1341
1342
  var RecordAttributeMap = [2, n0, _RAM, 8, 0, 0];
1342
1343
  var RecordAttributeMapString255 = [2, n0, _RAMS, 8, 0, 0];
1343
- var ProviderEndpointConfiguration = [
1344
+ var ProviderEndpointConfiguration$ = [
1344
1345
  3,
1345
1346
  n0,
1346
1347
  _PEC,
1347
1348
  0,
1348
1349
  [_mC],
1349
- [() => ProviderMarketplaceConfiguration],
1350
+ [() => ProviderMarketplaceConfiguration$],
1350
1351
  ];
1351
- var AddPolicyStatement = [
1352
+ var AddPolicyStatement$ = [
1352
1353
  9,
1353
1354
  n0,
1354
1355
  _APS,
1355
1356
  { [_ht]: ["POST", "/policies/{arn}/{statementId}", 200] },
1356
- () => AddPolicyStatementInput,
1357
- () => AddPolicyStatementOutput,
1357
+ () => AddPolicyStatementInput$,
1358
+ () => AddPolicyStatementOutput$,
1358
1359
  ];
1359
- var BatchDeleteUniqueId = [
1360
+ var BatchDeleteUniqueId$ = [
1360
1361
  9,
1361
1362
  n0,
1362
1363
  _BDUI,
1363
1364
  { [_ht]: ["DELETE", "/matchingworkflows/{workflowName}/uniqueids", 200] },
1364
- () => BatchDeleteUniqueIdInput,
1365
- () => BatchDeleteUniqueIdOutput,
1365
+ () => BatchDeleteUniqueIdInput$,
1366
+ () => BatchDeleteUniqueIdOutput$,
1366
1367
  ];
1367
- var CreateIdMappingWorkflow = [
1368
+ var CreateIdMappingWorkflow$ = [
1368
1369
  9,
1369
1370
  n0,
1370
1371
  _CIMW,
1371
1372
  { [_ht]: ["POST", "/idmappingworkflows", 200] },
1372
- () => CreateIdMappingWorkflowInput,
1373
- () => CreateIdMappingWorkflowOutput,
1373
+ () => CreateIdMappingWorkflowInput$,
1374
+ () => CreateIdMappingWorkflowOutput$,
1374
1375
  ];
1375
- var CreateIdNamespace = [
1376
+ var CreateIdNamespace$ = [
1376
1377
  9,
1377
1378
  n0,
1378
1379
  _CIN,
1379
1380
  { [_ht]: ["POST", "/idnamespaces", 200] },
1380
- () => CreateIdNamespaceInput,
1381
- () => CreateIdNamespaceOutput,
1381
+ () => CreateIdNamespaceInput$,
1382
+ () => CreateIdNamespaceOutput$,
1382
1383
  ];
1383
- var CreateMatchingWorkflow = [
1384
+ var CreateMatchingWorkflow$ = [
1384
1385
  9,
1385
1386
  n0,
1386
1387
  _CMW,
1387
1388
  { [_ht]: ["POST", "/matchingworkflows", 200] },
1388
- () => CreateMatchingWorkflowInput,
1389
- () => CreateMatchingWorkflowOutput,
1389
+ () => CreateMatchingWorkflowInput$,
1390
+ () => CreateMatchingWorkflowOutput$,
1390
1391
  ];
1391
- var CreateSchemaMapping = [
1392
+ var CreateSchemaMapping$ = [
1392
1393
  9,
1393
1394
  n0,
1394
1395
  _CSM,
1395
1396
  { [_ht]: ["POST", "/schemas", 200] },
1396
- () => CreateSchemaMappingInput,
1397
- () => CreateSchemaMappingOutput,
1397
+ () => CreateSchemaMappingInput$,
1398
+ () => CreateSchemaMappingOutput$,
1398
1399
  ];
1399
- var DeleteIdMappingWorkflow = [
1400
+ var DeleteIdMappingWorkflow$ = [
1400
1401
  9,
1401
1402
  n0,
1402
1403
  _DIMW,
1403
1404
  { [_ht]: ["DELETE", "/idmappingworkflows/{workflowName}", 200] },
1404
- () => DeleteIdMappingWorkflowInput,
1405
- () => DeleteIdMappingWorkflowOutput,
1405
+ () => DeleteIdMappingWorkflowInput$,
1406
+ () => DeleteIdMappingWorkflowOutput$,
1406
1407
  ];
1407
- var DeleteIdNamespace = [
1408
+ var DeleteIdNamespace$ = [
1408
1409
  9,
1409
1410
  n0,
1410
1411
  _DIN,
1411
1412
  { [_ht]: ["DELETE", "/idnamespaces/{idNamespaceName}", 200] },
1412
- () => DeleteIdNamespaceInput,
1413
- () => DeleteIdNamespaceOutput,
1413
+ () => DeleteIdNamespaceInput$,
1414
+ () => DeleteIdNamespaceOutput$,
1414
1415
  ];
1415
- var DeleteMatchingWorkflow = [
1416
+ var DeleteMatchingWorkflow$ = [
1416
1417
  9,
1417
1418
  n0,
1418
1419
  _DMW,
1419
1420
  { [_ht]: ["DELETE", "/matchingworkflows/{workflowName}", 200] },
1420
- () => DeleteMatchingWorkflowInput,
1421
- () => DeleteMatchingWorkflowOutput,
1421
+ () => DeleteMatchingWorkflowInput$,
1422
+ () => DeleteMatchingWorkflowOutput$,
1422
1423
  ];
1423
- var DeletePolicyStatement = [
1424
+ var DeletePolicyStatement$ = [
1424
1425
  9,
1425
1426
  n0,
1426
1427
  _DPS,
1427
1428
  { [_ht]: ["DELETE", "/policies/{arn}/{statementId}", 200] },
1428
- () => DeletePolicyStatementInput,
1429
- () => DeletePolicyStatementOutput,
1429
+ () => DeletePolicyStatementInput$,
1430
+ () => DeletePolicyStatementOutput$,
1430
1431
  ];
1431
- var DeleteSchemaMapping = [
1432
+ var DeleteSchemaMapping$ = [
1432
1433
  9,
1433
1434
  n0,
1434
1435
  _DSM,
1435
1436
  { [_ht]: ["DELETE", "/schemas/{schemaName}", 200] },
1436
- () => DeleteSchemaMappingInput,
1437
- () => DeleteSchemaMappingOutput,
1437
+ () => DeleteSchemaMappingInput$,
1438
+ () => DeleteSchemaMappingOutput$,
1438
1439
  ];
1439
- var GenerateMatchId = [
1440
+ var GenerateMatchId$ = [
1440
1441
  9,
1441
1442
  n0,
1442
1443
  _GMI,
1443
1444
  { [_ht]: ["POST", "/matchingworkflows/{workflowName}/generateMatches", 200] },
1444
- () => GenerateMatchIdInput,
1445
- () => GenerateMatchIdOutput,
1445
+ () => GenerateMatchIdInput$,
1446
+ () => GenerateMatchIdOutput$,
1446
1447
  ];
1447
- var GetIdMappingJob = [
1448
+ var GetIdMappingJob$ = [
1448
1449
  9,
1449
1450
  n0,
1450
1451
  _GIMJ,
1451
1452
  { [_ht]: ["GET", "/idmappingworkflows/{workflowName}/jobs/{jobId}", 200] },
1452
- () => GetIdMappingJobInput,
1453
- () => GetIdMappingJobOutput,
1453
+ () => GetIdMappingJobInput$,
1454
+ () => GetIdMappingJobOutput$,
1454
1455
  ];
1455
- var GetIdMappingWorkflow = [
1456
+ var GetIdMappingWorkflow$ = [
1456
1457
  9,
1457
1458
  n0,
1458
1459
  _GIMW,
1459
1460
  { [_ht]: ["GET", "/idmappingworkflows/{workflowName}", 200] },
1460
- () => GetIdMappingWorkflowInput,
1461
- () => GetIdMappingWorkflowOutput,
1461
+ () => GetIdMappingWorkflowInput$,
1462
+ () => GetIdMappingWorkflowOutput$,
1462
1463
  ];
1463
- var GetIdNamespace = [
1464
+ var GetIdNamespace$ = [
1464
1465
  9,
1465
1466
  n0,
1466
1467
  _GIN,
1467
1468
  { [_ht]: ["GET", "/idnamespaces/{idNamespaceName}", 200] },
1468
- () => GetIdNamespaceInput,
1469
- () => GetIdNamespaceOutput,
1469
+ () => GetIdNamespaceInput$,
1470
+ () => GetIdNamespaceOutput$,
1470
1471
  ];
1471
- var GetMatchId = [
1472
+ var GetMatchId$ = [
1472
1473
  9,
1473
1474
  n0,
1474
1475
  _GMIe,
1475
1476
  { [_ht]: ["POST", "/matchingworkflows/{workflowName}/matches", 200] },
1476
- () => GetMatchIdInput,
1477
- () => GetMatchIdOutput,
1477
+ () => GetMatchIdInput$,
1478
+ () => GetMatchIdOutput$,
1478
1479
  ];
1479
- var GetMatchingJob = [
1480
+ var GetMatchingJob$ = [
1480
1481
  9,
1481
1482
  n0,
1482
1483
  _GMJ,
1483
1484
  { [_ht]: ["GET", "/matchingworkflows/{workflowName}/jobs/{jobId}", 200] },
1484
- () => GetMatchingJobInput,
1485
- () => GetMatchingJobOutput,
1485
+ () => GetMatchingJobInput$,
1486
+ () => GetMatchingJobOutput$,
1486
1487
  ];
1487
- var GetMatchingWorkflow = [
1488
+ var GetMatchingWorkflow$ = [
1488
1489
  9,
1489
1490
  n0,
1490
1491
  _GMW,
1491
1492
  { [_ht]: ["GET", "/matchingworkflows/{workflowName}", 200] },
1492
- () => GetMatchingWorkflowInput,
1493
- () => GetMatchingWorkflowOutput,
1493
+ () => GetMatchingWorkflowInput$,
1494
+ () => GetMatchingWorkflowOutput$,
1494
1495
  ];
1495
- var GetPolicy = [
1496
+ var GetPolicy$ = [
1496
1497
  9,
1497
1498
  n0,
1498
1499
  _GP,
1499
1500
  { [_ht]: ["GET", "/policies/{arn}", 200] },
1500
- () => GetPolicyInput,
1501
- () => GetPolicyOutput,
1501
+ () => GetPolicyInput$,
1502
+ () => GetPolicyOutput$,
1502
1503
  ];
1503
- var GetProviderService = [
1504
+ var GetProviderService$ = [
1504
1505
  9,
1505
1506
  n0,
1506
1507
  _GPS,
1507
1508
  { [_ht]: ["GET", "/providerservices/{providerName}/{providerServiceName}", 200] },
1508
- () => GetProviderServiceInput,
1509
- () => GetProviderServiceOutput,
1509
+ () => GetProviderServiceInput$,
1510
+ () => GetProviderServiceOutput$,
1510
1511
  ];
1511
- var GetSchemaMapping = [
1512
+ var GetSchemaMapping$ = [
1512
1513
  9,
1513
1514
  n0,
1514
1515
  _GSM,
1515
1516
  { [_ht]: ["GET", "/schemas/{schemaName}", 200] },
1516
- () => GetSchemaMappingInput,
1517
- () => GetSchemaMappingOutput,
1517
+ () => GetSchemaMappingInput$,
1518
+ () => GetSchemaMappingOutput$,
1518
1519
  ];
1519
- var ListIdMappingJobs = [
1520
+ var ListIdMappingJobs$ = [
1520
1521
  9,
1521
1522
  n0,
1522
1523
  _LIMJ,
1523
1524
  { [_ht]: ["GET", "/idmappingworkflows/{workflowName}/jobs", 200] },
1524
- () => ListIdMappingJobsInput,
1525
- () => ListIdMappingJobsOutput,
1525
+ () => ListIdMappingJobsInput$,
1526
+ () => ListIdMappingJobsOutput$,
1526
1527
  ];
1527
- var ListIdMappingWorkflows = [
1528
+ var ListIdMappingWorkflows$ = [
1528
1529
  9,
1529
1530
  n0,
1530
1531
  _LIMW,
1531
1532
  { [_ht]: ["GET", "/idmappingworkflows", 200] },
1532
- () => ListIdMappingWorkflowsInput,
1533
- () => ListIdMappingWorkflowsOutput,
1533
+ () => ListIdMappingWorkflowsInput$,
1534
+ () => ListIdMappingWorkflowsOutput$,
1534
1535
  ];
1535
- var ListIdNamespaces = [
1536
+ var ListIdNamespaces$ = [
1536
1537
  9,
1537
1538
  n0,
1538
1539
  _LIN,
1539
1540
  { [_ht]: ["GET", "/idnamespaces", 200] },
1540
- () => ListIdNamespacesInput,
1541
- () => ListIdNamespacesOutput,
1541
+ () => ListIdNamespacesInput$,
1542
+ () => ListIdNamespacesOutput$,
1542
1543
  ];
1543
- var ListMatchingJobs = [
1544
+ var ListMatchingJobs$ = [
1544
1545
  9,
1545
1546
  n0,
1546
1547
  _LMJ,
1547
1548
  { [_ht]: ["GET", "/matchingworkflows/{workflowName}/jobs", 200] },
1548
- () => ListMatchingJobsInput,
1549
- () => ListMatchingJobsOutput,
1549
+ () => ListMatchingJobsInput$,
1550
+ () => ListMatchingJobsOutput$,
1550
1551
  ];
1551
- var ListMatchingWorkflows = [
1552
+ var ListMatchingWorkflows$ = [
1552
1553
  9,
1553
1554
  n0,
1554
1555
  _LMW,
1555
1556
  { [_ht]: ["GET", "/matchingworkflows", 200] },
1556
- () => ListMatchingWorkflowsInput,
1557
- () => ListMatchingWorkflowsOutput,
1557
+ () => ListMatchingWorkflowsInput$,
1558
+ () => ListMatchingWorkflowsOutput$,
1558
1559
  ];
1559
- var ListProviderServices = [
1560
+ var ListProviderServices$ = [
1560
1561
  9,
1561
1562
  n0,
1562
1563
  _LPS,
1563
1564
  { [_ht]: ["GET", "/providerservices", 200] },
1564
- () => ListProviderServicesInput,
1565
- () => ListProviderServicesOutput,
1565
+ () => ListProviderServicesInput$,
1566
+ () => ListProviderServicesOutput$,
1566
1567
  ];
1567
- var ListSchemaMappings = [
1568
+ var ListSchemaMappings$ = [
1568
1569
  9,
1569
1570
  n0,
1570
1571
  _LSM,
1571
1572
  { [_ht]: ["GET", "/schemas", 200] },
1572
- () => ListSchemaMappingsInput,
1573
- () => ListSchemaMappingsOutput,
1573
+ () => ListSchemaMappingsInput$,
1574
+ () => ListSchemaMappingsOutput$,
1574
1575
  ];
1575
- var ListTagsForResource = [
1576
+ var ListTagsForResource$ = [
1576
1577
  9,
1577
1578
  n0,
1578
1579
  _LTFR,
1579
1580
  { [_ht]: ["GET", "/tags/{resourceArn}", 200] },
1580
- () => ListTagsForResourceInput,
1581
- () => ListTagsForResourceOutput,
1581
+ () => ListTagsForResourceInput$,
1582
+ () => ListTagsForResourceOutput$,
1582
1583
  ];
1583
- var PutPolicy = [
1584
+ var PutPolicy$ = [
1584
1585
  9,
1585
1586
  n0,
1586
1587
  _PPu,
1587
1588
  { [_ht]: ["PUT", "/policies/{arn}", 200] },
1588
- () => PutPolicyInput,
1589
- () => PutPolicyOutput,
1589
+ () => PutPolicyInput$,
1590
+ () => PutPolicyOutput$,
1590
1591
  ];
1591
- var StartIdMappingJob = [
1592
+ var StartIdMappingJob$ = [
1592
1593
  9,
1593
1594
  n0,
1594
1595
  _SIMJ,
1595
1596
  { [_ht]: ["POST", "/idmappingworkflows/{workflowName}/jobs", 200] },
1596
- () => StartIdMappingJobInput,
1597
- () => StartIdMappingJobOutput,
1597
+ () => StartIdMappingJobInput$,
1598
+ () => StartIdMappingJobOutput$,
1598
1599
  ];
1599
- var StartMatchingJob = [
1600
+ var StartMatchingJob$ = [
1600
1601
  9,
1601
1602
  n0,
1602
1603
  _SMJ,
1603
1604
  { [_ht]: ["POST", "/matchingworkflows/{workflowName}/jobs", 200] },
1604
- () => StartMatchingJobInput,
1605
- () => StartMatchingJobOutput,
1605
+ () => StartMatchingJobInput$,
1606
+ () => StartMatchingJobOutput$,
1606
1607
  ];
1607
- var TagResource = [
1608
+ var TagResource$ = [
1608
1609
  9,
1609
1610
  n0,
1610
1611
  _TR,
1611
1612
  { [_ht]: ["POST", "/tags/{resourceArn}", 200] },
1612
- () => TagResourceInput,
1613
- () => TagResourceOutput,
1613
+ () => TagResourceInput$,
1614
+ () => TagResourceOutput$,
1614
1615
  ];
1615
- var UntagResource = [
1616
+ var UntagResource$ = [
1616
1617
  9,
1617
1618
  n0,
1618
1619
  _UR,
1619
1620
  { [_ht]: ["DELETE", "/tags/{resourceArn}", 200] },
1620
- () => UntagResourceInput,
1621
- () => UntagResourceOutput,
1621
+ () => UntagResourceInput$,
1622
+ () => UntagResourceOutput$,
1622
1623
  ];
1623
- var UpdateIdMappingWorkflow = [
1624
+ var UpdateIdMappingWorkflow$ = [
1624
1625
  9,
1625
1626
  n0,
1626
1627
  _UIMW,
1627
1628
  { [_ht]: ["PUT", "/idmappingworkflows/{workflowName}", 200] },
1628
- () => UpdateIdMappingWorkflowInput,
1629
- () => UpdateIdMappingWorkflowOutput,
1629
+ () => UpdateIdMappingWorkflowInput$,
1630
+ () => UpdateIdMappingWorkflowOutput$,
1630
1631
  ];
1631
- var UpdateIdNamespace = [
1632
+ var UpdateIdNamespace$ = [
1632
1633
  9,
1633
1634
  n0,
1634
1635
  _UIN,
1635
1636
  { [_ht]: ["PUT", "/idnamespaces/{idNamespaceName}", 200] },
1636
- () => UpdateIdNamespaceInput,
1637
- () => UpdateIdNamespaceOutput,
1637
+ () => UpdateIdNamespaceInput$,
1638
+ () => UpdateIdNamespaceOutput$,
1638
1639
  ];
1639
- var UpdateMatchingWorkflow = [
1640
+ var UpdateMatchingWorkflow$ = [
1640
1641
  9,
1641
1642
  n0,
1642
1643
  _UMW,
1643
1644
  { [_ht]: ["PUT", "/matchingworkflows/{workflowName}", 200] },
1644
- () => UpdateMatchingWorkflowInput,
1645
- () => UpdateMatchingWorkflowOutput,
1645
+ () => UpdateMatchingWorkflowInput$,
1646
+ () => UpdateMatchingWorkflowOutput$,
1646
1647
  ];
1647
- var UpdateSchemaMapping = [
1648
+ var UpdateSchemaMapping$ = [
1648
1649
  9,
1649
1650
  n0,
1650
1651
  _USM,
1651
1652
  { [_ht]: ["PUT", "/schemas/{schemaName}", 200] },
1652
- () => UpdateSchemaMappingInput,
1653
- () => UpdateSchemaMappingOutput,
1653
+ () => UpdateSchemaMappingInput$,
1654
+ () => UpdateSchemaMappingOutput$,
1654
1655
  ];
1655
1656
 
1656
1657
  class AddPolicyStatementCommand extends smithyClient.Command
@@ -1661,7 +1662,7 @@ class AddPolicyStatementCommand extends smithyClient.Command
1661
1662
  })
1662
1663
  .s("AWSVeniceService", "AddPolicyStatement", {})
1663
1664
  .n("EntityResolutionClient", "AddPolicyStatementCommand")
1664
- .sc(AddPolicyStatement)
1665
+ .sc(AddPolicyStatement$)
1665
1666
  .build() {
1666
1667
  }
1667
1668
 
@@ -1673,7 +1674,7 @@ class BatchDeleteUniqueIdCommand extends smithyClient.Command
1673
1674
  })
1674
1675
  .s("AWSVeniceService", "BatchDeleteUniqueId", {})
1675
1676
  .n("EntityResolutionClient", "BatchDeleteUniqueIdCommand")
1676
- .sc(BatchDeleteUniqueId)
1677
+ .sc(BatchDeleteUniqueId$)
1677
1678
  .build() {
1678
1679
  }
1679
1680
 
@@ -1685,7 +1686,7 @@ class CreateIdMappingWorkflowCommand extends smithyClient.Command
1685
1686
  })
1686
1687
  .s("AWSVeniceService", "CreateIdMappingWorkflow", {})
1687
1688
  .n("EntityResolutionClient", "CreateIdMappingWorkflowCommand")
1688
- .sc(CreateIdMappingWorkflow)
1689
+ .sc(CreateIdMappingWorkflow$)
1689
1690
  .build() {
1690
1691
  }
1691
1692
 
@@ -1697,7 +1698,7 @@ class CreateIdNamespaceCommand extends smithyClient.Command
1697
1698
  })
1698
1699
  .s("AWSVeniceService", "CreateIdNamespace", {})
1699
1700
  .n("EntityResolutionClient", "CreateIdNamespaceCommand")
1700
- .sc(CreateIdNamespace)
1701
+ .sc(CreateIdNamespace$)
1701
1702
  .build() {
1702
1703
  }
1703
1704
 
@@ -1709,7 +1710,7 @@ class CreateMatchingWorkflowCommand extends smithyClient.Command
1709
1710
  })
1710
1711
  .s("AWSVeniceService", "CreateMatchingWorkflow", {})
1711
1712
  .n("EntityResolutionClient", "CreateMatchingWorkflowCommand")
1712
- .sc(CreateMatchingWorkflow)
1713
+ .sc(CreateMatchingWorkflow$)
1713
1714
  .build() {
1714
1715
  }
1715
1716
 
@@ -1721,7 +1722,7 @@ class CreateSchemaMappingCommand extends smithyClient.Command
1721
1722
  })
1722
1723
  .s("AWSVeniceService", "CreateSchemaMapping", {})
1723
1724
  .n("EntityResolutionClient", "CreateSchemaMappingCommand")
1724
- .sc(CreateSchemaMapping)
1725
+ .sc(CreateSchemaMapping$)
1725
1726
  .build() {
1726
1727
  }
1727
1728
 
@@ -1733,7 +1734,7 @@ class DeleteIdMappingWorkflowCommand extends smithyClient.Command
1733
1734
  })
1734
1735
  .s("AWSVeniceService", "DeleteIdMappingWorkflow", {})
1735
1736
  .n("EntityResolutionClient", "DeleteIdMappingWorkflowCommand")
1736
- .sc(DeleteIdMappingWorkflow)
1737
+ .sc(DeleteIdMappingWorkflow$)
1737
1738
  .build() {
1738
1739
  }
1739
1740
 
@@ -1745,7 +1746,7 @@ class DeleteIdNamespaceCommand extends smithyClient.Command
1745
1746
  })
1746
1747
  .s("AWSVeniceService", "DeleteIdNamespace", {})
1747
1748
  .n("EntityResolutionClient", "DeleteIdNamespaceCommand")
1748
- .sc(DeleteIdNamespace)
1749
+ .sc(DeleteIdNamespace$)
1749
1750
  .build() {
1750
1751
  }
1751
1752
 
@@ -1757,7 +1758,7 @@ class DeleteMatchingWorkflowCommand extends smithyClient.Command
1757
1758
  })
1758
1759
  .s("AWSVeniceService", "DeleteMatchingWorkflow", {})
1759
1760
  .n("EntityResolutionClient", "DeleteMatchingWorkflowCommand")
1760
- .sc(DeleteMatchingWorkflow)
1761
+ .sc(DeleteMatchingWorkflow$)
1761
1762
  .build() {
1762
1763
  }
1763
1764
 
@@ -1769,7 +1770,7 @@ class DeletePolicyStatementCommand extends smithyClient.Command
1769
1770
  })
1770
1771
  .s("AWSVeniceService", "DeletePolicyStatement", {})
1771
1772
  .n("EntityResolutionClient", "DeletePolicyStatementCommand")
1772
- .sc(DeletePolicyStatement)
1773
+ .sc(DeletePolicyStatement$)
1773
1774
  .build() {
1774
1775
  }
1775
1776
 
@@ -1781,7 +1782,7 @@ class DeleteSchemaMappingCommand extends smithyClient.Command
1781
1782
  })
1782
1783
  .s("AWSVeniceService", "DeleteSchemaMapping", {})
1783
1784
  .n("EntityResolutionClient", "DeleteSchemaMappingCommand")
1784
- .sc(DeleteSchemaMapping)
1785
+ .sc(DeleteSchemaMapping$)
1785
1786
  .build() {
1786
1787
  }
1787
1788
 
@@ -1793,7 +1794,7 @@ class GenerateMatchIdCommand extends smithyClient.Command
1793
1794
  })
1794
1795
  .s("AWSVeniceService", "GenerateMatchId", {})
1795
1796
  .n("EntityResolutionClient", "GenerateMatchIdCommand")
1796
- .sc(GenerateMatchId)
1797
+ .sc(GenerateMatchId$)
1797
1798
  .build() {
1798
1799
  }
1799
1800
 
@@ -1805,7 +1806,7 @@ class GetIdMappingJobCommand extends smithyClient.Command
1805
1806
  })
1806
1807
  .s("AWSVeniceService", "GetIdMappingJob", {})
1807
1808
  .n("EntityResolutionClient", "GetIdMappingJobCommand")
1808
- .sc(GetIdMappingJob)
1809
+ .sc(GetIdMappingJob$)
1809
1810
  .build() {
1810
1811
  }
1811
1812
 
@@ -1817,7 +1818,7 @@ class GetIdMappingWorkflowCommand extends smithyClient.Command
1817
1818
  })
1818
1819
  .s("AWSVeniceService", "GetIdMappingWorkflow", {})
1819
1820
  .n("EntityResolutionClient", "GetIdMappingWorkflowCommand")
1820
- .sc(GetIdMappingWorkflow)
1821
+ .sc(GetIdMappingWorkflow$)
1821
1822
  .build() {
1822
1823
  }
1823
1824
 
@@ -1829,7 +1830,7 @@ class GetIdNamespaceCommand extends smithyClient.Command
1829
1830
  })
1830
1831
  .s("AWSVeniceService", "GetIdNamespace", {})
1831
1832
  .n("EntityResolutionClient", "GetIdNamespaceCommand")
1832
- .sc(GetIdNamespace)
1833
+ .sc(GetIdNamespace$)
1833
1834
  .build() {
1834
1835
  }
1835
1836
 
@@ -1841,7 +1842,7 @@ class GetMatchIdCommand extends smithyClient.Command
1841
1842
  })
1842
1843
  .s("AWSVeniceService", "GetMatchId", {})
1843
1844
  .n("EntityResolutionClient", "GetMatchIdCommand")
1844
- .sc(GetMatchId)
1845
+ .sc(GetMatchId$)
1845
1846
  .build() {
1846
1847
  }
1847
1848
 
@@ -1853,7 +1854,7 @@ class GetMatchingJobCommand extends smithyClient.Command
1853
1854
  })
1854
1855
  .s("AWSVeniceService", "GetMatchingJob", {})
1855
1856
  .n("EntityResolutionClient", "GetMatchingJobCommand")
1856
- .sc(GetMatchingJob)
1857
+ .sc(GetMatchingJob$)
1857
1858
  .build() {
1858
1859
  }
1859
1860
 
@@ -1865,7 +1866,7 @@ class GetMatchingWorkflowCommand extends smithyClient.Command
1865
1866
  })
1866
1867
  .s("AWSVeniceService", "GetMatchingWorkflow", {})
1867
1868
  .n("EntityResolutionClient", "GetMatchingWorkflowCommand")
1868
- .sc(GetMatchingWorkflow)
1869
+ .sc(GetMatchingWorkflow$)
1869
1870
  .build() {
1870
1871
  }
1871
1872
 
@@ -1877,7 +1878,7 @@ class GetPolicyCommand extends smithyClient.Command
1877
1878
  })
1878
1879
  .s("AWSVeniceService", "GetPolicy", {})
1879
1880
  .n("EntityResolutionClient", "GetPolicyCommand")
1880
- .sc(GetPolicy)
1881
+ .sc(GetPolicy$)
1881
1882
  .build() {
1882
1883
  }
1883
1884
 
@@ -1889,7 +1890,7 @@ class GetProviderServiceCommand extends smithyClient.Command
1889
1890
  })
1890
1891
  .s("AWSVeniceService", "GetProviderService", {})
1891
1892
  .n("EntityResolutionClient", "GetProviderServiceCommand")
1892
- .sc(GetProviderService)
1893
+ .sc(GetProviderService$)
1893
1894
  .build() {
1894
1895
  }
1895
1896
 
@@ -1901,7 +1902,7 @@ class GetSchemaMappingCommand extends smithyClient.Command
1901
1902
  })
1902
1903
  .s("AWSVeniceService", "GetSchemaMapping", {})
1903
1904
  .n("EntityResolutionClient", "GetSchemaMappingCommand")
1904
- .sc(GetSchemaMapping)
1905
+ .sc(GetSchemaMapping$)
1905
1906
  .build() {
1906
1907
  }
1907
1908
 
@@ -1913,7 +1914,7 @@ class ListIdMappingJobsCommand extends smithyClient.Command
1913
1914
  })
1914
1915
  .s("AWSVeniceService", "ListIdMappingJobs", {})
1915
1916
  .n("EntityResolutionClient", "ListIdMappingJobsCommand")
1916
- .sc(ListIdMappingJobs)
1917
+ .sc(ListIdMappingJobs$)
1917
1918
  .build() {
1918
1919
  }
1919
1920
 
@@ -1925,7 +1926,7 @@ class ListIdMappingWorkflowsCommand extends smithyClient.Command
1925
1926
  })
1926
1927
  .s("AWSVeniceService", "ListIdMappingWorkflows", {})
1927
1928
  .n("EntityResolutionClient", "ListIdMappingWorkflowsCommand")
1928
- .sc(ListIdMappingWorkflows)
1929
+ .sc(ListIdMappingWorkflows$)
1929
1930
  .build() {
1930
1931
  }
1931
1932
 
@@ -1937,7 +1938,7 @@ class ListIdNamespacesCommand extends smithyClient.Command
1937
1938
  })
1938
1939
  .s("AWSVeniceService", "ListIdNamespaces", {})
1939
1940
  .n("EntityResolutionClient", "ListIdNamespacesCommand")
1940
- .sc(ListIdNamespaces)
1941
+ .sc(ListIdNamespaces$)
1941
1942
  .build() {
1942
1943
  }
1943
1944
 
@@ -1949,7 +1950,7 @@ class ListMatchingJobsCommand extends smithyClient.Command
1949
1950
  })
1950
1951
  .s("AWSVeniceService", "ListMatchingJobs", {})
1951
1952
  .n("EntityResolutionClient", "ListMatchingJobsCommand")
1952
- .sc(ListMatchingJobs)
1953
+ .sc(ListMatchingJobs$)
1953
1954
  .build() {
1954
1955
  }
1955
1956
 
@@ -1961,7 +1962,7 @@ class ListMatchingWorkflowsCommand extends smithyClient.Command
1961
1962
  })
1962
1963
  .s("AWSVeniceService", "ListMatchingWorkflows", {})
1963
1964
  .n("EntityResolutionClient", "ListMatchingWorkflowsCommand")
1964
- .sc(ListMatchingWorkflows)
1965
+ .sc(ListMatchingWorkflows$)
1965
1966
  .build() {
1966
1967
  }
1967
1968
 
@@ -1973,7 +1974,7 @@ class ListProviderServicesCommand extends smithyClient.Command
1973
1974
  })
1974
1975
  .s("AWSVeniceService", "ListProviderServices", {})
1975
1976
  .n("EntityResolutionClient", "ListProviderServicesCommand")
1976
- .sc(ListProviderServices)
1977
+ .sc(ListProviderServices$)
1977
1978
  .build() {
1978
1979
  }
1979
1980
 
@@ -1985,7 +1986,7 @@ class ListSchemaMappingsCommand extends smithyClient.Command
1985
1986
  })
1986
1987
  .s("AWSVeniceService", "ListSchemaMappings", {})
1987
1988
  .n("EntityResolutionClient", "ListSchemaMappingsCommand")
1988
- .sc(ListSchemaMappings)
1989
+ .sc(ListSchemaMappings$)
1989
1990
  .build() {
1990
1991
  }
1991
1992
 
@@ -1997,7 +1998,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1997
1998
  })
1998
1999
  .s("AWSVeniceService", "ListTagsForResource", {})
1999
2000
  .n("EntityResolutionClient", "ListTagsForResourceCommand")
2000
- .sc(ListTagsForResource)
2001
+ .sc(ListTagsForResource$)
2001
2002
  .build() {
2002
2003
  }
2003
2004
 
@@ -2009,7 +2010,7 @@ class PutPolicyCommand extends smithyClient.Command
2009
2010
  })
2010
2011
  .s("AWSVeniceService", "PutPolicy", {})
2011
2012
  .n("EntityResolutionClient", "PutPolicyCommand")
2012
- .sc(PutPolicy)
2013
+ .sc(PutPolicy$)
2013
2014
  .build() {
2014
2015
  }
2015
2016
 
@@ -2021,7 +2022,7 @@ class StartIdMappingJobCommand extends smithyClient.Command
2021
2022
  })
2022
2023
  .s("AWSVeniceService", "StartIdMappingJob", {})
2023
2024
  .n("EntityResolutionClient", "StartIdMappingJobCommand")
2024
- .sc(StartIdMappingJob)
2025
+ .sc(StartIdMappingJob$)
2025
2026
  .build() {
2026
2027
  }
2027
2028
 
@@ -2033,7 +2034,7 @@ class StartMatchingJobCommand extends smithyClient.Command
2033
2034
  })
2034
2035
  .s("AWSVeniceService", "StartMatchingJob", {})
2035
2036
  .n("EntityResolutionClient", "StartMatchingJobCommand")
2036
- .sc(StartMatchingJob)
2037
+ .sc(StartMatchingJob$)
2037
2038
  .build() {
2038
2039
  }
2039
2040
 
@@ -2045,7 +2046,7 @@ class TagResourceCommand extends smithyClient.Command
2045
2046
  })
2046
2047
  .s("AWSVeniceService", "TagResource", {})
2047
2048
  .n("EntityResolutionClient", "TagResourceCommand")
2048
- .sc(TagResource)
2049
+ .sc(TagResource$)
2049
2050
  .build() {
2050
2051
  }
2051
2052
 
@@ -2057,7 +2058,7 @@ class UntagResourceCommand extends smithyClient.Command
2057
2058
  })
2058
2059
  .s("AWSVeniceService", "UntagResource", {})
2059
2060
  .n("EntityResolutionClient", "UntagResourceCommand")
2060
- .sc(UntagResource)
2061
+ .sc(UntagResource$)
2061
2062
  .build() {
2062
2063
  }
2063
2064
 
@@ -2069,7 +2070,7 @@ class UpdateIdMappingWorkflowCommand extends smithyClient.Command
2069
2070
  })
2070
2071
  .s("AWSVeniceService", "UpdateIdMappingWorkflow", {})
2071
2072
  .n("EntityResolutionClient", "UpdateIdMappingWorkflowCommand")
2072
- .sc(UpdateIdMappingWorkflow)
2073
+ .sc(UpdateIdMappingWorkflow$)
2073
2074
  .build() {
2074
2075
  }
2075
2076
 
@@ -2081,7 +2082,7 @@ class UpdateIdNamespaceCommand extends smithyClient.Command
2081
2082
  })
2082
2083
  .s("AWSVeniceService", "UpdateIdNamespace", {})
2083
2084
  .n("EntityResolutionClient", "UpdateIdNamespaceCommand")
2084
- .sc(UpdateIdNamespace)
2085
+ .sc(UpdateIdNamespace$)
2085
2086
  .build() {
2086
2087
  }
2087
2088
 
@@ -2093,7 +2094,7 @@ class UpdateMatchingWorkflowCommand extends smithyClient.Command
2093
2094
  })
2094
2095
  .s("AWSVeniceService", "UpdateMatchingWorkflow", {})
2095
2096
  .n("EntityResolutionClient", "UpdateMatchingWorkflowCommand")
2096
- .sc(UpdateMatchingWorkflow)
2097
+ .sc(UpdateMatchingWorkflow$)
2097
2098
  .build() {
2098
2099
  }
2099
2100
 
@@ -2105,7 +2106,7 @@ class UpdateSchemaMappingCommand extends smithyClient.Command
2105
2106
  })
2106
2107
  .s("AWSVeniceService", "UpdateSchemaMapping", {})
2107
2108
  .n("EntityResolutionClient", "UpdateSchemaMappingCommand")
2108
- .sc(UpdateSchemaMapping)
2109
+ .sc(UpdateSchemaMapping$)
2109
2110
  .build() {
2110
2111
  }
2111
2112
 
@@ -2268,71 +2269,239 @@ Object.defineProperty(exports, "__Client", {
2268
2269
  enumerable: true,
2269
2270
  get: function () { return smithyClient.Client; }
2270
2271
  });
2271
- exports.AccessDeniedException = AccessDeniedException$1;
2272
+ exports.AccessDeniedException = AccessDeniedException;
2273
+ exports.AccessDeniedException$ = AccessDeniedException$;
2274
+ exports.AddPolicyStatement$ = AddPolicyStatement$;
2272
2275
  exports.AddPolicyStatementCommand = AddPolicyStatementCommand;
2276
+ exports.AddPolicyStatementInput$ = AddPolicyStatementInput$;
2277
+ exports.AddPolicyStatementOutput$ = AddPolicyStatementOutput$;
2273
2278
  exports.AttributeMatchingModel = AttributeMatchingModel;
2279
+ exports.BatchDeleteUniqueId$ = BatchDeleteUniqueId$;
2274
2280
  exports.BatchDeleteUniqueIdCommand = BatchDeleteUniqueIdCommand;
2275
- exports.ConflictException = ConflictException$1;
2281
+ exports.BatchDeleteUniqueIdInput$ = BatchDeleteUniqueIdInput$;
2282
+ exports.BatchDeleteUniqueIdOutput$ = BatchDeleteUniqueIdOutput$;
2283
+ exports.ConflictException = ConflictException;
2284
+ exports.ConflictException$ = ConflictException$;
2285
+ exports.CreateIdMappingWorkflow$ = CreateIdMappingWorkflow$;
2276
2286
  exports.CreateIdMappingWorkflowCommand = CreateIdMappingWorkflowCommand;
2287
+ exports.CreateIdMappingWorkflowInput$ = CreateIdMappingWorkflowInput$;
2288
+ exports.CreateIdMappingWorkflowOutput$ = CreateIdMappingWorkflowOutput$;
2289
+ exports.CreateIdNamespace$ = CreateIdNamespace$;
2277
2290
  exports.CreateIdNamespaceCommand = CreateIdNamespaceCommand;
2291
+ exports.CreateIdNamespaceInput$ = CreateIdNamespaceInput$;
2292
+ exports.CreateIdNamespaceOutput$ = CreateIdNamespaceOutput$;
2293
+ exports.CreateMatchingWorkflow$ = CreateMatchingWorkflow$;
2278
2294
  exports.CreateMatchingWorkflowCommand = CreateMatchingWorkflowCommand;
2295
+ exports.CreateMatchingWorkflowInput$ = CreateMatchingWorkflowInput$;
2296
+ exports.CreateMatchingWorkflowOutput$ = CreateMatchingWorkflowOutput$;
2297
+ exports.CreateSchemaMapping$ = CreateSchemaMapping$;
2279
2298
  exports.CreateSchemaMappingCommand = CreateSchemaMappingCommand;
2299
+ exports.CreateSchemaMappingInput$ = CreateSchemaMappingInput$;
2300
+ exports.CreateSchemaMappingOutput$ = CreateSchemaMappingOutput$;
2301
+ exports.CustomerProfilesIntegrationConfig$ = CustomerProfilesIntegrationConfig$;
2302
+ exports.DeleteIdMappingWorkflow$ = DeleteIdMappingWorkflow$;
2280
2303
  exports.DeleteIdMappingWorkflowCommand = DeleteIdMappingWorkflowCommand;
2304
+ exports.DeleteIdMappingWorkflowInput$ = DeleteIdMappingWorkflowInput$;
2305
+ exports.DeleteIdMappingWorkflowOutput$ = DeleteIdMappingWorkflowOutput$;
2306
+ exports.DeleteIdNamespace$ = DeleteIdNamespace$;
2281
2307
  exports.DeleteIdNamespaceCommand = DeleteIdNamespaceCommand;
2308
+ exports.DeleteIdNamespaceInput$ = DeleteIdNamespaceInput$;
2309
+ exports.DeleteIdNamespaceOutput$ = DeleteIdNamespaceOutput$;
2310
+ exports.DeleteMatchingWorkflow$ = DeleteMatchingWorkflow$;
2282
2311
  exports.DeleteMatchingWorkflowCommand = DeleteMatchingWorkflowCommand;
2312
+ exports.DeleteMatchingWorkflowInput$ = DeleteMatchingWorkflowInput$;
2313
+ exports.DeleteMatchingWorkflowOutput$ = DeleteMatchingWorkflowOutput$;
2314
+ exports.DeletePolicyStatement$ = DeletePolicyStatement$;
2283
2315
  exports.DeletePolicyStatementCommand = DeletePolicyStatementCommand;
2316
+ exports.DeletePolicyStatementInput$ = DeletePolicyStatementInput$;
2317
+ exports.DeletePolicyStatementOutput$ = DeletePolicyStatementOutput$;
2318
+ exports.DeleteSchemaMapping$ = DeleteSchemaMapping$;
2284
2319
  exports.DeleteSchemaMappingCommand = DeleteSchemaMappingCommand;
2320
+ exports.DeleteSchemaMappingInput$ = DeleteSchemaMappingInput$;
2321
+ exports.DeleteSchemaMappingOutput$ = DeleteSchemaMappingOutput$;
2322
+ exports.DeleteUniqueIdError$ = DeleteUniqueIdError$;
2285
2323
  exports.DeleteUniqueIdErrorType = DeleteUniqueIdErrorType;
2286
2324
  exports.DeleteUniqueIdStatus = DeleteUniqueIdStatus;
2325
+ exports.DeletedUniqueId$ = DeletedUniqueId$;
2287
2326
  exports.EntityResolution = EntityResolution;
2288
2327
  exports.EntityResolutionClient = EntityResolutionClient;
2289
- exports.EntityResolutionServiceException = EntityResolutionServiceException$1;
2290
- exports.ExceedsLimitException = ExceedsLimitException$1;
2328
+ exports.EntityResolutionServiceException = EntityResolutionServiceException;
2329
+ exports.EntityResolutionServiceException$ = EntityResolutionServiceException$;
2330
+ exports.ErrorDetails$ = ErrorDetails$;
2331
+ exports.ExceedsLimitException = ExceedsLimitException;
2332
+ exports.ExceedsLimitException$ = ExceedsLimitException$;
2333
+ exports.FailedRecord$ = FailedRecord$;
2334
+ exports.GenerateMatchId$ = GenerateMatchId$;
2291
2335
  exports.GenerateMatchIdCommand = GenerateMatchIdCommand;
2336
+ exports.GenerateMatchIdInput$ = GenerateMatchIdInput$;
2337
+ exports.GenerateMatchIdOutput$ = GenerateMatchIdOutput$;
2338
+ exports.GetIdMappingJob$ = GetIdMappingJob$;
2292
2339
  exports.GetIdMappingJobCommand = GetIdMappingJobCommand;
2340
+ exports.GetIdMappingJobInput$ = GetIdMappingJobInput$;
2341
+ exports.GetIdMappingJobOutput$ = GetIdMappingJobOutput$;
2342
+ exports.GetIdMappingWorkflow$ = GetIdMappingWorkflow$;
2293
2343
  exports.GetIdMappingWorkflowCommand = GetIdMappingWorkflowCommand;
2344
+ exports.GetIdMappingWorkflowInput$ = GetIdMappingWorkflowInput$;
2345
+ exports.GetIdMappingWorkflowOutput$ = GetIdMappingWorkflowOutput$;
2346
+ exports.GetIdNamespace$ = GetIdNamespace$;
2294
2347
  exports.GetIdNamespaceCommand = GetIdNamespaceCommand;
2348
+ exports.GetIdNamespaceInput$ = GetIdNamespaceInput$;
2349
+ exports.GetIdNamespaceOutput$ = GetIdNamespaceOutput$;
2350
+ exports.GetMatchId$ = GetMatchId$;
2295
2351
  exports.GetMatchIdCommand = GetMatchIdCommand;
2352
+ exports.GetMatchIdInput$ = GetMatchIdInput$;
2353
+ exports.GetMatchIdOutput$ = GetMatchIdOutput$;
2354
+ exports.GetMatchingJob$ = GetMatchingJob$;
2296
2355
  exports.GetMatchingJobCommand = GetMatchingJobCommand;
2356
+ exports.GetMatchingJobInput$ = GetMatchingJobInput$;
2357
+ exports.GetMatchingJobOutput$ = GetMatchingJobOutput$;
2358
+ exports.GetMatchingWorkflow$ = GetMatchingWorkflow$;
2297
2359
  exports.GetMatchingWorkflowCommand = GetMatchingWorkflowCommand;
2360
+ exports.GetMatchingWorkflowInput$ = GetMatchingWorkflowInput$;
2361
+ exports.GetMatchingWorkflowOutput$ = GetMatchingWorkflowOutput$;
2362
+ exports.GetPolicy$ = GetPolicy$;
2298
2363
  exports.GetPolicyCommand = GetPolicyCommand;
2364
+ exports.GetPolicyInput$ = GetPolicyInput$;
2365
+ exports.GetPolicyOutput$ = GetPolicyOutput$;
2366
+ exports.GetProviderService$ = GetProviderService$;
2299
2367
  exports.GetProviderServiceCommand = GetProviderServiceCommand;
2368
+ exports.GetProviderServiceInput$ = GetProviderServiceInput$;
2369
+ exports.GetProviderServiceOutput$ = GetProviderServiceOutput$;
2370
+ exports.GetSchemaMapping$ = GetSchemaMapping$;
2300
2371
  exports.GetSchemaMappingCommand = GetSchemaMappingCommand;
2372
+ exports.GetSchemaMappingInput$ = GetSchemaMappingInput$;
2373
+ exports.GetSchemaMappingOutput$ = GetSchemaMappingOutput$;
2374
+ exports.IdMappingIncrementalRunConfig$ = IdMappingIncrementalRunConfig$;
2301
2375
  exports.IdMappingIncrementalRunType = IdMappingIncrementalRunType;
2376
+ exports.IdMappingJobMetrics$ = IdMappingJobMetrics$;
2377
+ exports.IdMappingJobOutputSource$ = IdMappingJobOutputSource$;
2378
+ exports.IdMappingRuleBasedProperties$ = IdMappingRuleBasedProperties$;
2379
+ exports.IdMappingTechniques$ = IdMappingTechniques$;
2302
2380
  exports.IdMappingType = IdMappingType;
2381
+ exports.IdMappingWorkflowInputSource$ = IdMappingWorkflowInputSource$;
2382
+ exports.IdMappingWorkflowOutputSource$ = IdMappingWorkflowOutputSource$;
2303
2383
  exports.IdMappingWorkflowRuleDefinitionType = IdMappingWorkflowRuleDefinitionType;
2384
+ exports.IdMappingWorkflowSummary$ = IdMappingWorkflowSummary$;
2385
+ exports.IdNamespaceIdMappingWorkflowMetadata$ = IdNamespaceIdMappingWorkflowMetadata$;
2386
+ exports.IdNamespaceIdMappingWorkflowProperties$ = IdNamespaceIdMappingWorkflowProperties$;
2387
+ exports.IdNamespaceInputSource$ = IdNamespaceInputSource$;
2388
+ exports.IdNamespaceSummary$ = IdNamespaceSummary$;
2304
2389
  exports.IdNamespaceType = IdNamespaceType;
2390
+ exports.IncrementalRunConfig$ = IncrementalRunConfig$;
2305
2391
  exports.IncrementalRunType = IncrementalRunType;
2306
- exports.InternalServerException = InternalServerException$1;
2392
+ exports.InputSource$ = InputSource$;
2393
+ exports.IntermediateSourceConfiguration$ = IntermediateSourceConfiguration$;
2394
+ exports.InternalServerException = InternalServerException;
2395
+ exports.InternalServerException$ = InternalServerException$;
2396
+ exports.JobMetrics$ = JobMetrics$;
2397
+ exports.JobOutputSource$ = JobOutputSource$;
2307
2398
  exports.JobStatus = JobStatus;
2399
+ exports.JobSummary$ = JobSummary$;
2308
2400
  exports.JobType = JobType;
2401
+ exports.ListIdMappingJobs$ = ListIdMappingJobs$;
2309
2402
  exports.ListIdMappingJobsCommand = ListIdMappingJobsCommand;
2403
+ exports.ListIdMappingJobsInput$ = ListIdMappingJobsInput$;
2404
+ exports.ListIdMappingJobsOutput$ = ListIdMappingJobsOutput$;
2405
+ exports.ListIdMappingWorkflows$ = ListIdMappingWorkflows$;
2310
2406
  exports.ListIdMappingWorkflowsCommand = ListIdMappingWorkflowsCommand;
2407
+ exports.ListIdMappingWorkflowsInput$ = ListIdMappingWorkflowsInput$;
2408
+ exports.ListIdMappingWorkflowsOutput$ = ListIdMappingWorkflowsOutput$;
2409
+ exports.ListIdNamespaces$ = ListIdNamespaces$;
2311
2410
  exports.ListIdNamespacesCommand = ListIdNamespacesCommand;
2411
+ exports.ListIdNamespacesInput$ = ListIdNamespacesInput$;
2412
+ exports.ListIdNamespacesOutput$ = ListIdNamespacesOutput$;
2413
+ exports.ListMatchingJobs$ = ListMatchingJobs$;
2312
2414
  exports.ListMatchingJobsCommand = ListMatchingJobsCommand;
2415
+ exports.ListMatchingJobsInput$ = ListMatchingJobsInput$;
2416
+ exports.ListMatchingJobsOutput$ = ListMatchingJobsOutput$;
2417
+ exports.ListMatchingWorkflows$ = ListMatchingWorkflows$;
2313
2418
  exports.ListMatchingWorkflowsCommand = ListMatchingWorkflowsCommand;
2419
+ exports.ListMatchingWorkflowsInput$ = ListMatchingWorkflowsInput$;
2420
+ exports.ListMatchingWorkflowsOutput$ = ListMatchingWorkflowsOutput$;
2421
+ exports.ListProviderServices$ = ListProviderServices$;
2314
2422
  exports.ListProviderServicesCommand = ListProviderServicesCommand;
2423
+ exports.ListProviderServicesInput$ = ListProviderServicesInput$;
2424
+ exports.ListProviderServicesOutput$ = ListProviderServicesOutput$;
2425
+ exports.ListSchemaMappings$ = ListSchemaMappings$;
2315
2426
  exports.ListSchemaMappingsCommand = ListSchemaMappingsCommand;
2427
+ exports.ListSchemaMappingsInput$ = ListSchemaMappingsInput$;
2428
+ exports.ListSchemaMappingsOutput$ = ListSchemaMappingsOutput$;
2429
+ exports.ListTagsForResource$ = ListTagsForResource$;
2316
2430
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2431
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
2432
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
2433
+ exports.MatchGroup$ = MatchGroup$;
2317
2434
  exports.MatchPurpose = MatchPurpose;
2435
+ exports.MatchedRecord$ = MatchedRecord$;
2436
+ exports.MatchingWorkflowSummary$ = MatchingWorkflowSummary$;
2437
+ exports.NamespaceProviderProperties$ = NamespaceProviderProperties$;
2438
+ exports.NamespaceRuleBasedProperties$ = NamespaceRuleBasedProperties$;
2439
+ exports.OutputAttribute$ = OutputAttribute$;
2440
+ exports.OutputSource$ = OutputSource$;
2318
2441
  exports.ProcessingType = ProcessingType;
2442
+ exports.ProviderComponentSchema$ = ProviderComponentSchema$;
2443
+ exports.ProviderEndpointConfiguration$ = ProviderEndpointConfiguration$;
2444
+ exports.ProviderIdNameSpaceConfiguration$ = ProviderIdNameSpaceConfiguration$;
2445
+ exports.ProviderIntermediateDataAccessConfiguration$ = ProviderIntermediateDataAccessConfiguration$;
2446
+ exports.ProviderMarketplaceConfiguration$ = ProviderMarketplaceConfiguration$;
2447
+ exports.ProviderProperties$ = ProviderProperties$;
2448
+ exports.ProviderSchemaAttribute$ = ProviderSchemaAttribute$;
2449
+ exports.ProviderServiceSummary$ = ProviderServiceSummary$;
2450
+ exports.PutPolicy$ = PutPolicy$;
2319
2451
  exports.PutPolicyCommand = PutPolicyCommand;
2452
+ exports.PutPolicyInput$ = PutPolicyInput$;
2453
+ exports.PutPolicyOutput$ = PutPolicyOutput$;
2320
2454
  exports.RecordMatchingModel = RecordMatchingModel;
2455
+ exports.ResolutionTechniques$ = ResolutionTechniques$;
2321
2456
  exports.ResolutionType = ResolutionType;
2322
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2457
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2458
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2459
+ exports.Rule$ = Rule$;
2460
+ exports.RuleBasedProperties$ = RuleBasedProperties$;
2461
+ exports.RuleCondition$ = RuleCondition$;
2462
+ exports.RuleConditionProperties$ = RuleConditionProperties$;
2323
2463
  exports.SchemaAttributeType = SchemaAttributeType;
2464
+ exports.SchemaInputAttribute$ = SchemaInputAttribute$;
2465
+ exports.SchemaMappingSummary$ = SchemaMappingSummary$;
2324
2466
  exports.ServiceType = ServiceType;
2467
+ exports.StartIdMappingJob$ = StartIdMappingJob$;
2325
2468
  exports.StartIdMappingJobCommand = StartIdMappingJobCommand;
2469
+ exports.StartIdMappingJobInput$ = StartIdMappingJobInput$;
2470
+ exports.StartIdMappingJobOutput$ = StartIdMappingJobOutput$;
2471
+ exports.StartMatchingJob$ = StartMatchingJob$;
2326
2472
  exports.StartMatchingJobCommand = StartMatchingJobCommand;
2473
+ exports.StartMatchingJobInput$ = StartMatchingJobInput$;
2474
+ exports.StartMatchingJobOutput$ = StartMatchingJobOutput$;
2327
2475
  exports.StatementEffect = StatementEffect;
2476
+ exports.TagResource$ = TagResource$;
2328
2477
  exports.TagResourceCommand = TagResourceCommand;
2329
- exports.ThrottlingException = ThrottlingException$1;
2478
+ exports.TagResourceInput$ = TagResourceInput$;
2479
+ exports.TagResourceOutput$ = TagResourceOutput$;
2480
+ exports.ThrottlingException = ThrottlingException;
2481
+ exports.ThrottlingException$ = ThrottlingException$;
2482
+ exports.UntagResource$ = UntagResource$;
2330
2483
  exports.UntagResourceCommand = UntagResourceCommand;
2484
+ exports.UntagResourceInput$ = UntagResourceInput$;
2485
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
2486
+ exports.UpdateIdMappingWorkflow$ = UpdateIdMappingWorkflow$;
2331
2487
  exports.UpdateIdMappingWorkflowCommand = UpdateIdMappingWorkflowCommand;
2488
+ exports.UpdateIdMappingWorkflowInput$ = UpdateIdMappingWorkflowInput$;
2489
+ exports.UpdateIdMappingWorkflowOutput$ = UpdateIdMappingWorkflowOutput$;
2490
+ exports.UpdateIdNamespace$ = UpdateIdNamespace$;
2332
2491
  exports.UpdateIdNamespaceCommand = UpdateIdNamespaceCommand;
2492
+ exports.UpdateIdNamespaceInput$ = UpdateIdNamespaceInput$;
2493
+ exports.UpdateIdNamespaceOutput$ = UpdateIdNamespaceOutput$;
2494
+ exports.UpdateMatchingWorkflow$ = UpdateMatchingWorkflow$;
2333
2495
  exports.UpdateMatchingWorkflowCommand = UpdateMatchingWorkflowCommand;
2496
+ exports.UpdateMatchingWorkflowInput$ = UpdateMatchingWorkflowInput$;
2497
+ exports.UpdateMatchingWorkflowOutput$ = UpdateMatchingWorkflowOutput$;
2498
+ exports.UpdateSchemaMapping$ = UpdateSchemaMapping$;
2334
2499
  exports.UpdateSchemaMappingCommand = UpdateSchemaMappingCommand;
2335
- exports.ValidationException = ValidationException$1;
2500
+ exports.UpdateSchemaMappingInput$ = UpdateSchemaMappingInput$;
2501
+ exports.UpdateSchemaMappingOutput$ = UpdateSchemaMappingOutput$;
2502
+ exports.ValidationException = ValidationException;
2503
+ exports.ValidationException$ = ValidationException$;
2504
+ exports._Record$ = _Record$;
2336
2505
  exports.paginateListIdMappingJobs = paginateListIdMappingJobs;
2337
2506
  exports.paginateListIdMappingWorkflows = paginateListIdMappingWorkflows;
2338
2507
  exports.paginateListIdNamespaces = paginateListIdNamespaces;