@aws-sdk/client-lex-model-building-service 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 (62) hide show
  1. package/dist-cjs/index.js +541 -374
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateBotVersionCommand.js +2 -2
  4. package/dist-es/commands/CreateIntentVersionCommand.js +2 -2
  5. package/dist-es/commands/CreateSlotTypeVersionCommand.js +2 -2
  6. package/dist-es/commands/DeleteBotAliasCommand.js +2 -2
  7. package/dist-es/commands/DeleteBotChannelAssociationCommand.js +2 -2
  8. package/dist-es/commands/DeleteBotCommand.js +2 -2
  9. package/dist-es/commands/DeleteBotVersionCommand.js +2 -2
  10. package/dist-es/commands/DeleteIntentCommand.js +2 -2
  11. package/dist-es/commands/DeleteIntentVersionCommand.js +2 -2
  12. package/dist-es/commands/DeleteSlotTypeCommand.js +2 -2
  13. package/dist-es/commands/DeleteSlotTypeVersionCommand.js +2 -2
  14. package/dist-es/commands/DeleteUtterancesCommand.js +2 -2
  15. package/dist-es/commands/GetBotAliasCommand.js +2 -2
  16. package/dist-es/commands/GetBotAliasesCommand.js +2 -2
  17. package/dist-es/commands/GetBotChannelAssociationCommand.js +2 -2
  18. package/dist-es/commands/GetBotChannelAssociationsCommand.js +2 -2
  19. package/dist-es/commands/GetBotCommand.js +2 -2
  20. package/dist-es/commands/GetBotVersionsCommand.js +2 -2
  21. package/dist-es/commands/GetBotsCommand.js +2 -2
  22. package/dist-es/commands/GetBuiltinIntentCommand.js +2 -2
  23. package/dist-es/commands/GetBuiltinIntentsCommand.js +2 -2
  24. package/dist-es/commands/GetBuiltinSlotTypesCommand.js +2 -2
  25. package/dist-es/commands/GetExportCommand.js +2 -2
  26. package/dist-es/commands/GetImportCommand.js +2 -2
  27. package/dist-es/commands/GetIntentCommand.js +2 -2
  28. package/dist-es/commands/GetIntentVersionsCommand.js +2 -2
  29. package/dist-es/commands/GetIntentsCommand.js +2 -2
  30. package/dist-es/commands/GetMigrationCommand.js +2 -2
  31. package/dist-es/commands/GetMigrationsCommand.js +2 -2
  32. package/dist-es/commands/GetSlotTypeCommand.js +2 -2
  33. package/dist-es/commands/GetSlotTypeVersionsCommand.js +2 -2
  34. package/dist-es/commands/GetSlotTypesCommand.js +2 -2
  35. package/dist-es/commands/GetUtterancesViewCommand.js +2 -2
  36. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  37. package/dist-es/commands/PutBotAliasCommand.js +2 -2
  38. package/dist-es/commands/PutBotCommand.js +2 -2
  39. package/dist-es/commands/PutIntentCommand.js +2 -2
  40. package/dist-es/commands/PutSlotTypeCommand.js +2 -2
  41. package/dist-es/commands/StartImportCommand.js +2 -2
  42. package/dist-es/commands/StartMigrationCommand.js +2 -2
  43. package/dist-es/commands/TagResourceCommand.js +2 -2
  44. package/dist-es/commands/UntagResourceCommand.js +2 -2
  45. package/dist-es/index.js +1 -0
  46. package/dist-es/runtimeConfig.shared.js +6 -1
  47. package/dist-es/schemas/schemas_0.js +325 -318
  48. package/dist-types/LexModelBuildingServiceClient.d.ts +1 -10
  49. package/dist-types/index.d.ts +1 -0
  50. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  51. package/dist-types/runtimeConfig.d.ts +6 -2
  52. package/dist-types/runtimeConfig.native.d.ts +6 -2
  53. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  54. package/dist-types/schemas/schemas_0.d.ts +161 -195
  55. package/dist-types/ts3.4/LexModelBuildingServiceClient.d.ts +0 -4
  56. package/dist-types/ts3.4/index.d.ts +1 -0
  57. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  58. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  60. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  61. package/dist-types/ts3.4/schemas/schemas_0.d.ts +160 -196
  62. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class LexModelBuildingServiceClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let LexModelBuildingServiceServiceException$1 = class LexModelBuildingServiceServiceException extends smithyClient.ServiceException {
113
+ class LexModelBuildingServiceServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, LexModelBuildingServiceServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends LexModelBuildingServiceServiceException$1 {
120
+ class AccessDeniedException extends LexModelBuildingServiceServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends LexModelBuildi
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let BadRequestException$1 = class BadRequestException extends LexModelBuildingServiceServiceException$1 {
131
+ }
132
+ class BadRequestException extends LexModelBuildingServiceServiceException {
133
133
  name = "BadRequestException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let BadRequestException$1 = class BadRequestException extends LexModelBuildingSe
140
140
  });
141
141
  Object.setPrototypeOf(this, BadRequestException.prototype);
142
142
  }
143
- };
144
- let ConflictException$1 = class ConflictException extends LexModelBuildingServiceServiceException$1 {
143
+ }
144
+ class ConflictException extends LexModelBuildingServiceServiceException {
145
145
  name = "ConflictException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let ConflictException$1 = class ConflictException extends LexModelBuildingServic
152
152
  });
153
153
  Object.setPrototypeOf(this, ConflictException.prototype);
154
154
  }
155
- };
156
- let InternalFailureException$1 = class InternalFailureException extends LexModelBuildingServiceServiceException$1 {
155
+ }
156
+ class InternalFailureException extends LexModelBuildingServiceServiceException {
157
157
  name = "InternalFailureException";
158
158
  $fault = "server";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let InternalFailureException$1 = class InternalFailureException extends LexModel
164
164
  });
165
165
  Object.setPrototypeOf(this, InternalFailureException.prototype);
166
166
  }
167
- };
168
- let LimitExceededException$1 = class LimitExceededException extends LexModelBuildingServiceServiceException$1 {
167
+ }
168
+ class LimitExceededException extends LexModelBuildingServiceServiceException {
169
169
  name = "LimitExceededException";
170
170
  $fault = "client";
171
171
  retryAfterSeconds;
@@ -178,8 +178,8 @@ let LimitExceededException$1 = class LimitExceededException extends LexModelBuil
178
178
  Object.setPrototypeOf(this, LimitExceededException.prototype);
179
179
  this.retryAfterSeconds = opts.retryAfterSeconds;
180
180
  }
181
- };
182
- let NotFoundException$1 = class NotFoundException extends LexModelBuildingServiceServiceException$1 {
181
+ }
182
+ class NotFoundException extends LexModelBuildingServiceServiceException {
183
183
  name = "NotFoundException";
184
184
  $fault = "client";
185
185
  constructor(opts) {
@@ -190,8 +190,8 @@ let NotFoundException$1 = class NotFoundException extends LexModelBuildingServic
190
190
  });
191
191
  Object.setPrototypeOf(this, NotFoundException.prototype);
192
192
  }
193
- };
194
- let PreconditionFailedException$1 = class PreconditionFailedException extends LexModelBuildingServiceServiceException$1 {
193
+ }
194
+ class PreconditionFailedException extends LexModelBuildingServiceServiceException {
195
195
  name = "PreconditionFailedException";
196
196
  $fault = "client";
197
197
  constructor(opts) {
@@ -202,8 +202,8 @@ let PreconditionFailedException$1 = class PreconditionFailedException extends Le
202
202
  });
203
203
  Object.setPrototypeOf(this, PreconditionFailedException.prototype);
204
204
  }
205
- };
206
- let ResourceInUseException$1 = class ResourceInUseException extends LexModelBuildingServiceServiceException$1 {
205
+ }
206
+ class ResourceInUseException extends LexModelBuildingServiceServiceException {
207
207
  name = "ResourceInUseException";
208
208
  $fault = "client";
209
209
  referenceType;
@@ -218,7 +218,7 @@ let ResourceInUseException$1 = class ResourceInUseException extends LexModelBuil
218
218
  this.referenceType = opts.referenceType;
219
219
  this.exampleReference = opts.exampleReference;
220
220
  }
221
- };
221
+ }
222
222
 
223
223
  const _ADE = "AccessDeniedException";
224
224
  const _BA = "BotAliases";
@@ -547,19 +547,19 @@ const _vOA = "versionOrAlias";
547
547
  const _vSS = "valueSelectionStrategy";
548
548
  const _va = "value";
549
549
  const n0 = "com.amazonaws.lexmodelbuildingservice";
550
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
551
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
552
- var BadRequestException = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
553
- schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
554
- var BotAliasMetadata = [
550
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
551
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
552
+ var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
553
+ schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
554
+ var BotAliasMetadata$ = [
555
555
  3,
556
556
  n0,
557
557
  _BAM,
558
558
  0,
559
559
  [_n, _d, _bV, _bN, _lUD, _cD, _ch, _cL],
560
- [0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse],
560
+ [0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse$],
561
561
  ];
562
- var BotChannelAssociation = [
562
+ var BotChannelAssociation$ = [
563
563
  3,
564
564
  n0,
565
565
  _BCA,
@@ -567,14 +567,14 @@ var BotChannelAssociation = [
567
567
  [_n, _d, _bA, _bN, _cD, _t, _bC, _s, _fR],
568
568
  [0, 0, 0, 0, 4, 0, [() => ChannelConfigurationMap, 0], 0, 0],
569
569
  ];
570
- var BotMetadata = [3, n0, _BM, 0, [_n, _d, _s, _lUD, _cD, _v], [0, 0, 0, 4, 4, 0]];
571
- var BuiltinIntentMetadata = [3, n0, _BIM, 0, [_si, _sL], [0, 64 | 0]];
572
- var BuiltinIntentSlot = [3, n0, _BIS, 0, [_n], [0]];
573
- var BuiltinSlotTypeMetadata = [3, n0, _BSTM, 0, [_si, _sL], [0, 64 | 0]];
574
- var CodeHook = [3, n0, _CH, 0, [_u, _mV], [0, 0]];
575
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
576
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
577
- var ConversationLogsRequest = [
570
+ var BotMetadata$ = [3, n0, _BM, 0, [_n, _d, _s, _lUD, _cD, _v], [0, 0, 0, 4, 4, 0]];
571
+ var BuiltinIntentMetadata$ = [3, n0, _BIM, 0, [_si, _sL], [0, 64 | 0]];
572
+ var BuiltinIntentSlot$ = [3, n0, _BIS, 0, [_n], [0]];
573
+ var BuiltinSlotTypeMetadata$ = [3, n0, _BSTM, 0, [_si, _sL], [0, 64 | 0]];
574
+ var CodeHook$ = [3, n0, _CH, 0, [_u, _mV], [0, 0]];
575
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
576
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
577
+ var ConversationLogsRequest$ = [
578
578
  3,
579
579
  n0,
580
580
  _CLR,
@@ -582,7 +582,7 @@ var ConversationLogsRequest = [
582
582
  [_lS, _iRA],
583
583
  [() => LogSettingsRequestList, 0],
584
584
  ];
585
- var ConversationLogsResponse = [
585
+ var ConversationLogsResponse$ = [
586
586
  3,
587
587
  n0,
588
588
  _CLRo,
@@ -590,17 +590,17 @@ var ConversationLogsResponse = [
590
590
  [_lS, _iRA],
591
591
  [() => LogSettingsResponseList, 0],
592
592
  ];
593
- var CreateBotVersionRequest = [3, n0, _CBVR, 0, [_n, _ch], [[0, 1], 0]];
594
- var CreateBotVersionResponse = [
593
+ var CreateBotVersionRequest$ = [3, n0, _CBVR, 0, [_n, _ch], [[0, 1], 0]];
594
+ var CreateBotVersionResponse$ = [
595
595
  3,
596
596
  n0,
597
597
  _CBVRr,
598
598
  0,
599
599
  [_n, _d, _i, _cP, _aS, _s, _fR, _lUD, _cD, _iSTTLIS, _vI, _ch, _v, _l, _cDh, _eMI, _dS],
600
- [0, 0, () => IntentList, () => Prompt, () => Statement, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2, 2],
600
+ [0, 0, () => IntentList, () => Prompt$, () => Statement$, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2, 2],
601
601
  ];
602
- var CreateIntentVersionRequest = [3, n0, _CIVR, 0, [_n, _ch], [[0, 1], 0]];
603
- var CreateIntentVersionResponse = [
602
+ var CreateIntentVersionRequest$ = [3, n0, _CIVR, 0, [_n, _ch], [[0, 1], 0]];
603
+ var CreateIntentVersionResponse$ = [
604
604
  3,
605
605
  n0,
606
606
  _CIVRr,
@@ -611,24 +611,24 @@ var CreateIntentVersionResponse = [
611
611
  0,
612
612
  () => SlotList,
613
613
  64 | 0,
614
- () => Prompt,
615
- () => Statement,
616
- () => FollowUpPrompt,
617
- () => Statement,
618
- () => CodeHook,
619
- () => FulfillmentActivity,
614
+ () => Prompt$,
615
+ () => Statement$,
616
+ () => FollowUpPrompt$,
617
+ () => Statement$,
618
+ () => CodeHook$,
619
+ () => FulfillmentActivity$,
620
620
  0,
621
621
  4,
622
622
  4,
623
623
  0,
624
624
  0,
625
- () => KendraConfiguration,
625
+ () => KendraConfiguration$,
626
626
  () => InputContextList,
627
627
  () => OutputContextList,
628
628
  ],
629
629
  ];
630
- var CreateSlotTypeVersionRequest = [3, n0, _CSTVR, 0, [_n, _ch], [[0, 1], 0]];
631
- var CreateSlotTypeVersionResponse = [
630
+ var CreateSlotTypeVersionRequest$ = [3, n0, _CSTVR, 0, [_n, _ch], [[0, 1], 0]];
631
+ var CreateSlotTypeVersionResponse$ = [
632
632
  3,
633
633
  n0,
634
634
  _CSTVRr,
@@ -636,7 +636,7 @@ var CreateSlotTypeVersionResponse = [
636
636
  [_n, _d, _eV, _lUD, _cD, _v, _ch, _vSS, _pSTS, _sTC],
637
637
  [0, 0, () => EnumerationValues, 4, 4, 0, 0, 0, 0, () => SlotTypeConfigurations],
638
638
  ];
639
- var DeleteBotAliasRequest = [
639
+ var DeleteBotAliasRequest$ = [
640
640
  3,
641
641
  n0,
642
642
  _DBAR,
@@ -647,7 +647,7 @@ var DeleteBotAliasRequest = [
647
647
  [0, 1],
648
648
  ],
649
649
  ];
650
- var DeleteBotChannelAssociationRequest = [
650
+ var DeleteBotChannelAssociationRequest$ = [
651
651
  3,
652
652
  n0,
653
653
  _DBCAR,
@@ -659,8 +659,8 @@ var DeleteBotChannelAssociationRequest = [
659
659
  [0, 1],
660
660
  ],
661
661
  ];
662
- var DeleteBotRequest = [3, n0, _DBR, 0, [_n], [[0, 1]]];
663
- var DeleteBotVersionRequest = [
662
+ var DeleteBotRequest$ = [3, n0, _DBR, 0, [_n], [[0, 1]]];
663
+ var DeleteBotVersionRequest$ = [
664
664
  3,
665
665
  n0,
666
666
  _DBVR,
@@ -671,8 +671,8 @@ var DeleteBotVersionRequest = [
671
671
  [0, 1],
672
672
  ],
673
673
  ];
674
- var DeleteIntentRequest = [3, n0, _DIR, 0, [_n], [[0, 1]]];
675
- var DeleteIntentVersionRequest = [
674
+ var DeleteIntentRequest$ = [3, n0, _DIR, 0, [_n], [[0, 1]]];
675
+ var DeleteIntentVersionRequest$ = [
676
676
  3,
677
677
  n0,
678
678
  _DIVR,
@@ -683,8 +683,8 @@ var DeleteIntentVersionRequest = [
683
683
  [0, 1],
684
684
  ],
685
685
  ];
686
- var DeleteSlotTypeRequest = [3, n0, _DSTR, 0, [_n], [[0, 1]]];
687
- var DeleteSlotTypeVersionRequest = [
686
+ var DeleteSlotTypeRequest$ = [3, n0, _DSTR, 0, [_n], [[0, 1]]];
687
+ var DeleteSlotTypeVersionRequest$ = [
688
688
  3,
689
689
  n0,
690
690
  _DSTVR,
@@ -695,7 +695,7 @@ var DeleteSlotTypeVersionRequest = [
695
695
  [0, 1],
696
696
  ],
697
697
  ];
698
- var DeleteUtterancesRequest = [
698
+ var DeleteUtterancesRequest$ = [
699
699
  3,
700
700
  n0,
701
701
  _DUR,
@@ -706,10 +706,10 @@ var DeleteUtterancesRequest = [
706
706
  [0, 1],
707
707
  ],
708
708
  ];
709
- var EnumerationValue = [3, n0, _EV, 0, [_va, _sy], [0, 64 | 0]];
710
- var FollowUpPrompt = [3, n0, _FUP, 0, [_p, _rS], [() => Prompt, () => Statement]];
711
- var FulfillmentActivity = [3, n0, _FA, 0, [_t, _cH], [0, () => CodeHook]];
712
- var GetBotAliasesRequest = [
709
+ var EnumerationValue$ = [3, n0, _EV, 0, [_va, _sy], [0, 64 | 0]];
710
+ var FollowUpPrompt$ = [3, n0, _FUP, 0, [_p, _rS], [() => Prompt$, () => Statement$]];
711
+ var FulfillmentActivity$ = [3, n0, _FA, 0, [_t, _cH], [0, () => CodeHook$]];
712
+ var GetBotAliasesRequest$ = [
713
713
  3,
714
714
  n0,
715
715
  _GBAR,
@@ -722,7 +722,7 @@ var GetBotAliasesRequest = [
722
722
  [0, { [_hQ]: _nC }],
723
723
  ],
724
724
  ];
725
- var GetBotAliasesResponse = [
725
+ var GetBotAliasesResponse$ = [
726
726
  3,
727
727
  n0,
728
728
  _GBARe,
@@ -730,7 +730,7 @@ var GetBotAliasesResponse = [
730
730
  [_BA, _nT],
731
731
  [() => BotAliasMetadataList, 0],
732
732
  ];
733
- var GetBotAliasRequest = [
733
+ var GetBotAliasRequest$ = [
734
734
  3,
735
735
  n0,
736
736
  _GBARet,
@@ -741,15 +741,15 @@ var GetBotAliasRequest = [
741
741
  [0, 1],
742
742
  ],
743
743
  ];
744
- var GetBotAliasResponse = [
744
+ var GetBotAliasResponse$ = [
745
745
  3,
746
746
  n0,
747
747
  _GBAReto,
748
748
  0,
749
749
  [_n, _d, _bV, _bN, _lUD, _cD, _ch, _cL],
750
- [0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse],
750
+ [0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse$],
751
751
  ];
752
- var GetBotChannelAssociationRequest = [
752
+ var GetBotChannelAssociationRequest$ = [
753
753
  3,
754
754
  n0,
755
755
  _GBCAR,
@@ -761,7 +761,7 @@ var GetBotChannelAssociationRequest = [
761
761
  [0, 1],
762
762
  ],
763
763
  ];
764
- var GetBotChannelAssociationResponse = [
764
+ var GetBotChannelAssociationResponse$ = [
765
765
  3,
766
766
  n0,
767
767
  _GBCARe,
@@ -769,7 +769,7 @@ var GetBotChannelAssociationResponse = [
769
769
  [_n, _d, _bA, _bN, _cD, _t, _bC, _s, _fR],
770
770
  [0, 0, 0, 0, 4, 0, [() => ChannelConfigurationMap, 0], 0, 0],
771
771
  ];
772
- var GetBotChannelAssociationsRequest = [
772
+ var GetBotChannelAssociationsRequest$ = [
773
773
  3,
774
774
  n0,
775
775
  _GBCARet,
@@ -783,7 +783,7 @@ var GetBotChannelAssociationsRequest = [
783
783
  [0, { [_hQ]: _nC }],
784
784
  ],
785
785
  ];
786
- var GetBotChannelAssociationsResponse = [
786
+ var GetBotChannelAssociationsResponse$ = [
787
787
  3,
788
788
  n0,
789
789
  _GBCAReto,
@@ -791,7 +791,7 @@ var GetBotChannelAssociationsResponse = [
791
791
  [_bCA, _nT],
792
792
  [[() => BotChannelAssociationList, 0], 0],
793
793
  ];
794
- var GetBotRequest = [
794
+ var GetBotRequest$ = [
795
795
  3,
796
796
  n0,
797
797
  _GBR,
@@ -802,15 +802,15 @@ var GetBotRequest = [
802
802
  [0, 1],
803
803
  ],
804
804
  ];
805
- var GetBotResponse = [
805
+ var GetBotResponse$ = [
806
806
  3,
807
807
  n0,
808
808
  _GBRe,
809
809
  0,
810
810
  [_n, _d, _i, _eMI, _nICT, _cP, _aS, _s, _fR, _lUD, _cD, _iSTTLIS, _vI, _ch, _v, _l, _cDh, _dS],
811
- [0, 0, () => IntentList, 2, 1, () => Prompt, () => Statement, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2],
811
+ [0, 0, () => IntentList, 2, 1, () => Prompt$, () => Statement$, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2],
812
812
  ];
813
- var GetBotsRequest = [
813
+ var GetBotsRequest$ = [
814
814
  3,
815
815
  n0,
816
816
  _GBRet,
@@ -822,8 +822,8 @@ var GetBotsRequest = [
822
822
  [0, { [_hQ]: _nC }],
823
823
  ],
824
824
  ];
825
- var GetBotsResponse = [3, n0, _GBReto, 0, [_b, _nT], [() => BotMetadataList, 0]];
826
- var GetBotVersionsRequest = [
825
+ var GetBotsResponse$ = [3, n0, _GBReto, 0, [_b, _nT], [() => BotMetadataList, 0]];
826
+ var GetBotVersionsRequest$ = [
827
827
  3,
828
828
  n0,
829
829
  _GBVR,
@@ -835,9 +835,9 @@ var GetBotVersionsRequest = [
835
835
  [1, { [_hQ]: _mR }],
836
836
  ],
837
837
  ];
838
- var GetBotVersionsResponse = [3, n0, _GBVRe, 0, [_b, _nT], [() => BotMetadataList, 0]];
839
- var GetBuiltinIntentRequest = [3, n0, _GBIR, 0, [_si], [[0, 1]]];
840
- var GetBuiltinIntentResponse = [
838
+ var GetBotVersionsResponse$ = [3, n0, _GBVRe, 0, [_b, _nT], [() => BotMetadataList, 0]];
839
+ var GetBuiltinIntentRequest$ = [3, n0, _GBIR, 0, [_si], [[0, 1]]];
840
+ var GetBuiltinIntentResponse$ = [
841
841
  3,
842
842
  n0,
843
843
  _GBIRe,
@@ -845,7 +845,7 @@ var GetBuiltinIntentResponse = [
845
845
  [_si, _sL, _sl],
846
846
  [0, 64 | 0, () => BuiltinIntentSlotList],
847
847
  ];
848
- var GetBuiltinIntentsRequest = [
848
+ var GetBuiltinIntentsRequest$ = [
849
849
  3,
850
850
  n0,
851
851
  _GBIRet,
@@ -858,7 +858,7 @@ var GetBuiltinIntentsRequest = [
858
858
  [1, { [_hQ]: _mR }],
859
859
  ],
860
860
  ];
861
- var GetBuiltinIntentsResponse = [
861
+ var GetBuiltinIntentsResponse$ = [
862
862
  3,
863
863
  n0,
864
864
  _GBIRetu,
@@ -866,7 +866,7 @@ var GetBuiltinIntentsResponse = [
866
866
  [_i, _nT],
867
867
  [() => BuiltinIntentMetadataList, 0],
868
868
  ];
869
- var GetBuiltinSlotTypesRequest = [
869
+ var GetBuiltinSlotTypesRequest$ = [
870
870
  3,
871
871
  n0,
872
872
  _GBSTR,
@@ -879,7 +879,7 @@ var GetBuiltinSlotTypesRequest = [
879
879
  [1, { [_hQ]: _mR }],
880
880
  ],
881
881
  ];
882
- var GetBuiltinSlotTypesResponse = [
882
+ var GetBuiltinSlotTypesResponse$ = [
883
883
  3,
884
884
  n0,
885
885
  _GBSTRe,
@@ -887,7 +887,7 @@ var GetBuiltinSlotTypesResponse = [
887
887
  [_sT, _nT],
888
888
  [() => BuiltinSlotTypeMetadataList, 0],
889
889
  ];
890
- var GetExportRequest = [
890
+ var GetExportRequest$ = [
891
891
  3,
892
892
  n0,
893
893
  _GER,
@@ -900,7 +900,7 @@ var GetExportRequest = [
900
900
  [0, { [_hQ]: _eT }],
901
901
  ],
902
902
  ];
903
- var GetExportResponse = [
903
+ var GetExportResponse$ = [
904
904
  3,
905
905
  n0,
906
906
  _GERe,
@@ -908,8 +908,8 @@ var GetExportResponse = [
908
908
  [_n, _v, _rT, _eT, _eS, _fR, _ur],
909
909
  [0, 0, 0, 0, 0, 0, 0],
910
910
  ];
911
- var GetImportRequest = [3, n0, _GIR, 0, [_iI], [[0, 1]]];
912
- var GetImportResponse = [
911
+ var GetImportRequest$ = [3, n0, _GIR, 0, [_iI], [[0, 1]]];
912
+ var GetImportResponse$ = [
913
913
  3,
914
914
  n0,
915
915
  _GIRe,
@@ -917,7 +917,7 @@ var GetImportResponse = [
917
917
  [_n, _rT, _mS, _iI, _iS, _fR, _cD],
918
918
  [0, 0, 0, 0, 0, 64 | 0, 4],
919
919
  ];
920
- var GetIntentRequest = [
920
+ var GetIntentRequest$ = [
921
921
  3,
922
922
  n0,
923
923
  _GIRet,
@@ -928,7 +928,7 @@ var GetIntentRequest = [
928
928
  [0, 1],
929
929
  ],
930
930
  ];
931
- var GetIntentResponse = [
931
+ var GetIntentResponse$ = [
932
932
  3,
933
933
  n0,
934
934
  _GIRetn,
@@ -939,23 +939,23 @@ var GetIntentResponse = [
939
939
  0,
940
940
  () => SlotList,
941
941
  64 | 0,
942
- () => Prompt,
943
- () => Statement,
944
- () => FollowUpPrompt,
945
- () => Statement,
946
- () => CodeHook,
947
- () => FulfillmentActivity,
942
+ () => Prompt$,
943
+ () => Statement$,
944
+ () => FollowUpPrompt$,
945
+ () => Statement$,
946
+ () => CodeHook$,
947
+ () => FulfillmentActivity$,
948
948
  0,
949
949
  4,
950
950
  4,
951
951
  0,
952
952
  0,
953
- () => KendraConfiguration,
953
+ () => KendraConfiguration$,
954
954
  () => InputContextList,
955
955
  () => OutputContextList,
956
956
  ],
957
957
  ];
958
- var GetIntentsRequest = [
958
+ var GetIntentsRequest$ = [
959
959
  3,
960
960
  n0,
961
961
  _GIRetnt,
@@ -967,8 +967,8 @@ var GetIntentsRequest = [
967
967
  [0, { [_hQ]: _nC }],
968
968
  ],
969
969
  ];
970
- var GetIntentsResponse = [3, n0, _GIRetnte, 0, [_i, _nT], [() => IntentMetadataList, 0]];
971
- var GetIntentVersionsRequest = [
970
+ var GetIntentsResponse$ = [3, n0, _GIRetnte, 0, [_i, _nT], [() => IntentMetadataList, 0]];
971
+ var GetIntentVersionsRequest$ = [
972
972
  3,
973
973
  n0,
974
974
  _GIVR,
@@ -980,7 +980,7 @@ var GetIntentVersionsRequest = [
980
980
  [1, { [_hQ]: _mR }],
981
981
  ],
982
982
  ];
983
- var GetIntentVersionsResponse = [
983
+ var GetIntentVersionsResponse$ = [
984
984
  3,
985
985
  n0,
986
986
  _GIVRe,
@@ -988,8 +988,8 @@ var GetIntentVersionsResponse = [
988
988
  [_i, _nT],
989
989
  [() => IntentMetadataList, 0],
990
990
  ];
991
- var GetMigrationRequest = [3, n0, _GMR, 0, [_mI], [[0, 1]]];
992
- var GetMigrationResponse = [
991
+ var GetMigrationRequest$ = [3, n0, _GMR, 0, [_mI], [[0, 1]]];
992
+ var GetMigrationResponse$ = [
993
993
  3,
994
994
  n0,
995
995
  _GMRe,
@@ -997,7 +997,7 @@ var GetMigrationResponse = [
997
997
  [_mI, _vBN, _vBV, _vBL, _vBI, _vBR, _mSi, _mSig, _mT, _a],
998
998
  [0, 0, 0, 0, 0, 0, 0, 0, 4, () => MigrationAlerts],
999
999
  ];
1000
- var GetMigrationsRequest = [
1000
+ var GetMigrationsRequest$ = [
1001
1001
  3,
1002
1002
  n0,
1003
1003
  _GMRet,
@@ -1012,7 +1012,7 @@ var GetMigrationsRequest = [
1012
1012
  [0, { [_hQ]: _nT }],
1013
1013
  ],
1014
1014
  ];
1015
- var GetMigrationsResponse = [
1015
+ var GetMigrationsResponse$ = [
1016
1016
  3,
1017
1017
  n0,
1018
1018
  _GMReti,
@@ -1020,7 +1020,7 @@ var GetMigrationsResponse = [
1020
1020
  [_mSigr, _nT],
1021
1021
  [() => MigrationSummaryList, 0],
1022
1022
  ];
1023
- var GetSlotTypeRequest = [
1023
+ var GetSlotTypeRequest$ = [
1024
1024
  3,
1025
1025
  n0,
1026
1026
  _GSTR,
@@ -1031,7 +1031,7 @@ var GetSlotTypeRequest = [
1031
1031
  [0, 1],
1032
1032
  ],
1033
1033
  ];
1034
- var GetSlotTypeResponse = [
1034
+ var GetSlotTypeResponse$ = [
1035
1035
  3,
1036
1036
  n0,
1037
1037
  _GSTRe,
@@ -1039,7 +1039,7 @@ var GetSlotTypeResponse = [
1039
1039
  [_n, _d, _eV, _lUD, _cD, _v, _ch, _vSS, _pSTS, _sTC],
1040
1040
  [0, 0, () => EnumerationValues, 4, 4, 0, 0, 0, 0, () => SlotTypeConfigurations],
1041
1041
  ];
1042
- var GetSlotTypesRequest = [
1042
+ var GetSlotTypesRequest$ = [
1043
1043
  3,
1044
1044
  n0,
1045
1045
  _GSTRet,
@@ -1051,7 +1051,7 @@ var GetSlotTypesRequest = [
1051
1051
  [0, { [_hQ]: _nC }],
1052
1052
  ],
1053
1053
  ];
1054
- var GetSlotTypesResponse = [
1054
+ var GetSlotTypesResponse$ = [
1055
1055
  3,
1056
1056
  n0,
1057
1057
  _GSTRetl,
@@ -1059,7 +1059,7 @@ var GetSlotTypesResponse = [
1059
1059
  [_sT, _nT],
1060
1060
  [() => SlotTypeMetadataList, 0],
1061
1061
  ];
1062
- var GetSlotTypeVersionsRequest = [
1062
+ var GetSlotTypeVersionsRequest$ = [
1063
1063
  3,
1064
1064
  n0,
1065
1065
  _GSTVR,
@@ -1071,7 +1071,7 @@ var GetSlotTypeVersionsRequest = [
1071
1071
  [1, { [_hQ]: _mR }],
1072
1072
  ],
1073
1073
  ];
1074
- var GetSlotTypeVersionsResponse = [
1074
+ var GetSlotTypeVersionsResponse$ = [
1075
1075
  3,
1076
1076
  n0,
1077
1077
  _GSTVRe,
@@ -1079,7 +1079,7 @@ var GetSlotTypeVersionsResponse = [
1079
1079
  [_sT, _nT],
1080
1080
  [() => SlotTypeMetadataList, 0],
1081
1081
  ];
1082
- var GetUtterancesViewRequest = [
1082
+ var GetUtterancesViewRequest$ = [
1083
1083
  3,
1084
1084
  n0,
1085
1085
  _GUVR,
@@ -1091,7 +1091,7 @@ var GetUtterancesViewRequest = [
1091
1091
  [0, { [_hQ]: _st }],
1092
1092
  ],
1093
1093
  ];
1094
- var GetUtterancesViewResponse = [
1094
+ var GetUtterancesViewResponse$ = [
1095
1095
  3,
1096
1096
  n0,
1097
1097
  _GUVRe,
@@ -1099,13 +1099,13 @@ var GetUtterancesViewResponse = [
1099
1099
  [_bN, _ut],
1100
1100
  [0, () => ListsOfUtterances],
1101
1101
  ];
1102
- var InputContext = [3, n0, _IC, 0, [_n], [0]];
1103
- var Intent = [3, n0, _I, 0, [_iN, _iV], [0, 0]];
1104
- var IntentMetadata = [3, n0, _IM, 0, [_n, _d, _lUD, _cD, _v], [0, 0, 4, 4, 0]];
1105
- var InternalFailureException = [-3, n0, _IFE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
1106
- schema.TypeRegistry.for(n0).registerError(InternalFailureException, InternalFailureException$1);
1107
- var KendraConfiguration = [3, n0, _KC, 0, [_kI, _qFS, _r], [0, 0, 0]];
1108
- var LimitExceededException = [
1102
+ var InputContext$ = [3, n0, _IC, 0, [_n], [0]];
1103
+ var Intent$ = [3, n0, _I, 0, [_iN, _iV], [0, 0]];
1104
+ var IntentMetadata$ = [3, n0, _IM, 0, [_n, _d, _lUD, _cD, _v], [0, 0, 4, 4, 0]];
1105
+ var InternalFailureException$ = [-3, n0, _IFE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
1106
+ schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
1107
+ var KendraConfiguration$ = [3, n0, _KC, 0, [_kI, _qFS, _r], [0, 0, 0]];
1108
+ var LimitExceededException$ = [
1109
1109
  -3,
1110
1110
  n0,
1111
1111
  _LEE,
@@ -1113,14 +1113,14 @@ var LimitExceededException = [
1113
1113
  [_rAS, _m],
1114
1114
  [[0, { [_hH]: _RA }], 0],
1115
1115
  ];
1116
- schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
1117
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
1118
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
1119
- var LogSettingsRequest = [3, n0, _LSR, 0, [_lT, _de, _kKA, _rA], [0, 0, 0, 0]];
1120
- var LogSettingsResponse = [3, n0, _LSRo, 0, [_lT, _de, _kKA, _rA, _rP], [0, 0, 0, 0, 0]];
1121
- var Message = [3, n0, _M, 0, [_cT, _co, _gN], [0, 0, 1]];
1122
- var MigrationAlert = [3, n0, _MA, 0, [_t, _m, _det, _rURL], [0, 0, 64 | 0, 64 | 0]];
1123
- var MigrationSummary = [
1116
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
1117
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
1118
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
1119
+ var LogSettingsRequest$ = [3, n0, _LSR, 0, [_lT, _de, _kKA, _rA], [0, 0, 0, 0]];
1120
+ var LogSettingsResponse$ = [3, n0, _LSRo, 0, [_lT, _de, _kKA, _rA, _rP], [0, 0, 0, 0, 0]];
1121
+ var Message$ = [3, n0, _M, 0, [_cT, _co, _gN], [0, 0, 1]];
1122
+ var MigrationAlert$ = [3, n0, _MA, 0, [_t, _m, _det, _rURL], [0, 0, 64 | 0, 64 | 0]];
1123
+ var MigrationSummary$ = [
1124
1124
  3,
1125
1125
  n0,
1126
1126
  _MS,
@@ -1128,45 +1128,45 @@ var MigrationSummary = [
1128
1128
  [_mI, _vBN, _vBV, _vBL, _vBI, _vBR, _mSi, _mSig, _mT],
1129
1129
  [0, 0, 0, 0, 0, 0, 0, 0, 4],
1130
1130
  ];
1131
- var NotFoundException = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1132
- schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
1133
- var OutputContext = [3, n0, _OC, 0, [_n, _tTLIS, _tTL], [0, 1, 1]];
1134
- var PreconditionFailedException = [-3, n0, _PFE, { [_e]: _c, [_hE]: 412 }, [_m], [0]];
1135
- schema.TypeRegistry.for(n0).registerError(PreconditionFailedException, PreconditionFailedException$1);
1136
- var Prompt = [3, n0, _P, 0, [_me, _mA, _rC], [() => MessageList, 1, 0]];
1137
- var PutBotAliasRequest = [
1131
+ var NotFoundException$ = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1132
+ schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
1133
+ var OutputContext$ = [3, n0, _OC, 0, [_n, _tTLIS, _tTL], [0, 1, 1]];
1134
+ var PreconditionFailedException$ = [-3, n0, _PFE, { [_e]: _c, [_hE]: 412 }, [_m], [0]];
1135
+ schema.TypeRegistry.for(n0).registerError(PreconditionFailedException$, PreconditionFailedException);
1136
+ var Prompt$ = [3, n0, _P, 0, [_me, _mA, _rC], [() => MessageList, 1, 0]];
1137
+ var PutBotAliasRequest$ = [
1138
1138
  3,
1139
1139
  n0,
1140
1140
  _PBAR,
1141
1141
  0,
1142
1142
  [_n, _d, _bV, _bN, _ch, _cL, _ta],
1143
- [[0, 1], 0, 0, [0, 1], 0, () => ConversationLogsRequest, () => TagList],
1143
+ [[0, 1], 0, 0, [0, 1], 0, () => ConversationLogsRequest$, () => TagList],
1144
1144
  ];
1145
- var PutBotAliasResponse = [
1145
+ var PutBotAliasResponse$ = [
1146
1146
  3,
1147
1147
  n0,
1148
1148
  _PBARu,
1149
1149
  0,
1150
1150
  [_n, _d, _bV, _bN, _lUD, _cD, _ch, _cL, _ta],
1151
- [0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse, () => TagList],
1151
+ [0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse$, () => TagList],
1152
1152
  ];
1153
- var PutBotRequest = [
1153
+ var PutBotRequest$ = [
1154
1154
  3,
1155
1155
  n0,
1156
1156
  _PBR,
1157
1157
  0,
1158
1158
  [_n, _d, _i, _eMI, _nICT, _cP, _aS, _iSTTLIS, _vI, _ch, _pB, _l, _cDh, _dS, _cV, _ta],
1159
- [[0, 1], 0, () => IntentList, 2, 1, () => Prompt, () => Statement, 1, 0, 0, 0, 0, 2, 2, 2, () => TagList],
1159
+ [[0, 1], 0, () => IntentList, 2, 1, () => Prompt$, () => Statement$, 1, 0, 0, 0, 0, 2, 2, 2, () => TagList],
1160
1160
  ];
1161
- var PutBotResponse = [
1161
+ var PutBotResponse$ = [
1162
1162
  3,
1163
1163
  n0,
1164
1164
  _PBRu,
1165
1165
  0,
1166
1166
  [_n, _d, _i, _eMI, _nICT, _cP, _aS, _s, _fR, _lUD, _cD, _iSTTLIS, _vI, _ch, _v, _l, _cDh, _cV, _dS, _ta],
1167
- [0, 0, () => IntentList, 2, 1, () => Prompt, () => Statement, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2, 2, () => TagList],
1167
+ [0, 0, () => IntentList, 2, 1, () => Prompt$, () => Statement$, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2, 2, () => TagList],
1168
1168
  ];
1169
- var PutIntentRequest = [
1169
+ var PutIntentRequest$ = [
1170
1170
  3,
1171
1171
  n0,
1172
1172
  _PIR,
@@ -1177,21 +1177,21 @@ var PutIntentRequest = [
1177
1177
  0,
1178
1178
  () => SlotList,
1179
1179
  64 | 0,
1180
- () => Prompt,
1181
- () => Statement,
1182
- () => FollowUpPrompt,
1183
- () => Statement,
1184
- () => CodeHook,
1185
- () => FulfillmentActivity,
1180
+ () => Prompt$,
1181
+ () => Statement$,
1182
+ () => FollowUpPrompt$,
1183
+ () => Statement$,
1184
+ () => CodeHook$,
1185
+ () => FulfillmentActivity$,
1186
1186
  0,
1187
1187
  0,
1188
1188
  2,
1189
- () => KendraConfiguration,
1189
+ () => KendraConfiguration$,
1190
1190
  () => InputContextList,
1191
1191
  () => OutputContextList,
1192
1192
  ],
1193
1193
  ];
1194
- var PutIntentResponse = [
1194
+ var PutIntentResponse$ = [
1195
1195
  3,
1196
1196
  n0,
1197
1197
  _PIRu,
@@ -1202,24 +1202,24 @@ var PutIntentResponse = [
1202
1202
  0,
1203
1203
  () => SlotList,
1204
1204
  64 | 0,
1205
- () => Prompt,
1206
- () => Statement,
1207
- () => FollowUpPrompt,
1208
- () => Statement,
1209
- () => CodeHook,
1210
- () => FulfillmentActivity,
1205
+ () => Prompt$,
1206
+ () => Statement$,
1207
+ () => FollowUpPrompt$,
1208
+ () => Statement$,
1209
+ () => CodeHook$,
1210
+ () => FulfillmentActivity$,
1211
1211
  0,
1212
1212
  4,
1213
1213
  4,
1214
1214
  0,
1215
1215
  0,
1216
1216
  2,
1217
- () => KendraConfiguration,
1217
+ () => KendraConfiguration$,
1218
1218
  () => InputContextList,
1219
1219
  () => OutputContextList,
1220
1220
  ],
1221
1221
  ];
1222
- var PutSlotTypeRequest = [
1222
+ var PutSlotTypeRequest$ = [
1223
1223
  3,
1224
1224
  n0,
1225
1225
  _PSTR,
@@ -1227,7 +1227,7 @@ var PutSlotTypeRequest = [
1227
1227
  [_n, _d, _eV, _ch, _vSS, _cV, _pSTS, _sTC],
1228
1228
  [[0, 1], 0, () => EnumerationValues, 0, 0, 2, 0, () => SlotTypeConfigurations],
1229
1229
  ];
1230
- var PutSlotTypeResponse = [
1230
+ var PutSlotTypeResponse$ = [
1231
1231
  3,
1232
1232
  n0,
1233
1233
  _PSTRu,
@@ -1235,30 +1235,37 @@ var PutSlotTypeResponse = [
1235
1235
  [_n, _d, _eV, _lUD, _cD, _v, _ch, _vSS, _cV, _pSTS, _sTC],
1236
1236
  [0, 0, () => EnumerationValues, 4, 4, 0, 0, 0, 2, 0, () => SlotTypeConfigurations],
1237
1237
  ];
1238
- var ResourceInUseException = [
1238
+ var ResourceInUseException$ = [
1239
1239
  -3,
1240
1240
  n0,
1241
1241
  _RIUE,
1242
1242
  { [_e]: _c, [_hE]: 400 },
1243
1243
  [_rTe, _eR],
1244
- [0, () => ResourceReference],
1244
+ [0, () => ResourceReference$],
1245
1245
  ];
1246
- schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
1247
- var ResourceReference = [3, n0, _RR, 0, [_n, _v], [0, 0]];
1248
- var Slot = [
1246
+ schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
1247
+ var ResourceReference$ = [3, n0, _RR, 0, [_n, _v], [0, 0]];
1248
+ var Slot$ = [
1249
1249
  3,
1250
1250
  n0,
1251
1251
  _S,
1252
1252
  0,
1253
1253
  [_n, _d, _sCl, _sTl, _sTV, _vEP, _pr, _sU, _rC, _oS, _dVS],
1254
- [0, 0, 0, 0, 0, () => Prompt, 1, 64 | 0, 0, 0, () => SlotDefaultValueSpec],
1254
+ [0, 0, 0, 0, 0, () => Prompt$, 1, 64 | 0, 0, 0, () => SlotDefaultValueSpec$],
1255
+ ];
1256
+ var SlotDefaultValue$ = [3, n0, _SDV, 0, [_dV], [0]];
1257
+ var SlotDefaultValueSpec$ = [3, n0, _SDVS, 0, [_dVL], [() => SlotDefaultValueList]];
1258
+ var SlotTypeConfiguration$ = [
1259
+ 3,
1260
+ n0,
1261
+ _STC,
1262
+ 0,
1263
+ [_rCe],
1264
+ [() => SlotTypeRegexConfiguration$],
1255
1265
  ];
1256
- var SlotDefaultValue = [3, n0, _SDV, 0, [_dV], [0]];
1257
- var SlotDefaultValueSpec = [3, n0, _SDVS, 0, [_dVL], [() => SlotDefaultValueList]];
1258
- var SlotTypeConfiguration = [3, n0, _STC, 0, [_rCe], [() => SlotTypeRegexConfiguration]];
1259
- var SlotTypeMetadata = [3, n0, _STM, 0, [_n, _d, _lUD, _cD, _v], [0, 0, 4, 4, 0]];
1260
- var SlotTypeRegexConfiguration = [3, n0, _STRC, 0, [_pa], [0]];
1261
- var StartImportRequest = [
1266
+ var SlotTypeMetadata$ = [3, n0, _STM, 0, [_n, _d, _lUD, _cD, _v], [0, 0, 4, 4, 0]];
1267
+ var SlotTypeRegexConfiguration$ = [3, n0, _STRC, 0, [_pa], [0]];
1268
+ var StartImportRequest$ = [
1262
1269
  3,
1263
1270
  n0,
1264
1271
  _SIR,
@@ -1266,7 +1273,7 @@ var StartImportRequest = [
1266
1273
  [_pay, _rT, _mS, _ta],
1267
1274
  [21, 0, 0, () => TagList],
1268
1275
  ];
1269
- var StartImportResponse = [
1276
+ var StartImportResponse$ = [
1270
1277
  3,
1271
1278
  n0,
1272
1279
  _SIRt,
@@ -1274,7 +1281,7 @@ var StartImportResponse = [
1274
1281
  [_n, _rT, _mS, _iI, _iS, _ta, _cD],
1275
1282
  [0, 0, 0, 0, 0, () => TagList, 4],
1276
1283
  ];
1277
- var StartMigrationRequest = [
1284
+ var StartMigrationRequest$ = [
1278
1285
  3,
1279
1286
  n0,
1280
1287
  _SMR,
@@ -1282,7 +1289,7 @@ var StartMigrationRequest = [
1282
1289
  [_vBN, _vBV, _vBNo, _vBR, _mSig],
1283
1290
  [0, 0, 0, 0, 0],
1284
1291
  ];
1285
- var StartMigrationResponse = [
1292
+ var StartMigrationResponse$ = [
1286
1293
  3,
1287
1294
  n0,
1288
1295
  _SMRt,
@@ -1290,11 +1297,11 @@ var StartMigrationResponse = [
1290
1297
  [_vBN, _vBV, _vBL, _vBI, _vBR, _mI, _mSig, _mT],
1291
1298
  [0, 0, 0, 0, 0, 0, 0, 4],
1292
1299
  ];
1293
- var Statement = [3, n0, _St, 0, [_me, _rC], [() => MessageList, 0]];
1294
- var Tag = [3, n0, _T, 0, [_k, _va], [0, 0]];
1295
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], () => TagList]];
1296
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1297
- var UntagResourceRequest = [
1300
+ var Statement$ = [3, n0, _St, 0, [_me, _rC], [() => MessageList, 0]];
1301
+ var Tag$ = [3, n0, _T, 0, [_k, _va], [0, 0]];
1302
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], () => TagList]];
1303
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1304
+ var UntagResourceRequest$ = [
1298
1305
  3,
1299
1306
  n0,
1300
1307
  _URR,
@@ -1305,11 +1312,11 @@ var UntagResourceRequest = [
1305
1312
  [64 | 0, { [_hQ]: _tK }],
1306
1313
  ],
1307
1314
  ];
1308
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1309
- var UtteranceData = [3, n0, _UD, 0, [_uS, _cou, _dU, _fUD, _lUDa], [0, 1, 1, 4, 4]];
1310
- var UtteranceList = [3, n0, _UL, 0, [_bV, _ut], [0, () => ListOfUtterance]];
1315
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1316
+ var UtteranceData$ = [3, n0, _UD, 0, [_uS, _cou, _dU, _fUD, _lUDa], [0, 1, 1, 4, 4]];
1317
+ var UtteranceList$ = [3, n0, _UL, 0, [_bV, _ut], [0, () => ListOfUtterance]];
1311
1318
  var __Unit = "unit";
1312
- var LexModelBuildingServiceServiceException = [
1319
+ var LexModelBuildingServiceServiceException$ = [
1313
1320
  -3,
1314
1321
  _sm,
1315
1322
  "LexModelBuildingServiceServiceException",
@@ -1317,366 +1324,366 @@ var LexModelBuildingServiceServiceException = [
1317
1324
  [],
1318
1325
  [],
1319
1326
  ];
1320
- schema.TypeRegistry.for(_sm).registerError(LexModelBuildingServiceServiceException, LexModelBuildingServiceServiceException$1);
1321
- var BotAliasMetadataList = [1, n0, _BAML, 0, () => BotAliasMetadata];
1322
- var BotChannelAssociationList = [1, n0, _BCAL, 0, [() => BotChannelAssociation, 0]];
1323
- var BotMetadataList = [1, n0, _BML, 0, () => BotMetadata];
1324
- var BuiltinIntentMetadataList = [1, n0, _BIML, 0, () => BuiltinIntentMetadata];
1325
- var BuiltinIntentSlotList = [1, n0, _BISL, 0, () => BuiltinIntentSlot];
1326
- var BuiltinSlotTypeMetadataList = [1, n0, _BSTML, 0, () => BuiltinSlotTypeMetadata];
1327
- var EnumerationValues = [1, n0, _EVn, 0, () => EnumerationValue];
1328
- var InputContextList = [1, n0, _ICL, 0, () => InputContext];
1329
- var IntentList = [1, n0, _IL, 0, () => Intent];
1330
- var IntentMetadataList = [1, n0, _IML, 0, () => IntentMetadata];
1331
- var ListOfUtterance = [1, n0, _LOU, 0, () => UtteranceData];
1332
- var ListsOfUtterances = [1, n0, _LOUi, 0, () => UtteranceList];
1333
- var LogSettingsRequestList = [1, n0, _LSRL, 0, () => LogSettingsRequest];
1334
- var LogSettingsResponseList = [1, n0, _LSRLo, 0, () => LogSettingsResponse];
1335
- var MessageList = [1, n0, _ML, 0, () => Message];
1336
- var MigrationAlerts = [1, n0, _MAi, 0, () => MigrationAlert];
1337
- var MigrationSummaryList = [1, n0, _MSL, 0, () => MigrationSummary];
1338
- var OutputContextList = [1, n0, _OCL, 0, () => OutputContext];
1339
- var SlotDefaultValueList = [1, n0, _SDVL, 0, () => SlotDefaultValue];
1340
- var SlotList = [1, n0, _SL, 0, () => Slot];
1341
- var SlotTypeConfigurations = [1, n0, _STCl, 0, () => SlotTypeConfiguration];
1342
- var SlotTypeMetadataList = [1, n0, _STML, 0, () => SlotTypeMetadata];
1343
- var TagList = [1, n0, _TL, 0, () => Tag];
1327
+ schema.TypeRegistry.for(_sm).registerError(LexModelBuildingServiceServiceException$, LexModelBuildingServiceServiceException);
1328
+ var BotAliasMetadataList = [1, n0, _BAML, 0, () => BotAliasMetadata$];
1329
+ var BotChannelAssociationList = [1, n0, _BCAL, 0, [() => BotChannelAssociation$, 0]];
1330
+ var BotMetadataList = [1, n0, _BML, 0, () => BotMetadata$];
1331
+ var BuiltinIntentMetadataList = [1, n0, _BIML, 0, () => BuiltinIntentMetadata$];
1332
+ var BuiltinIntentSlotList = [1, n0, _BISL, 0, () => BuiltinIntentSlot$];
1333
+ var BuiltinSlotTypeMetadataList = [1, n0, _BSTML, 0, () => BuiltinSlotTypeMetadata$];
1334
+ var EnumerationValues = [1, n0, _EVn, 0, () => EnumerationValue$];
1335
+ var InputContextList = [1, n0, _ICL, 0, () => InputContext$];
1336
+ var IntentList = [1, n0, _IL, 0, () => Intent$];
1337
+ var IntentMetadataList = [1, n0, _IML, 0, () => IntentMetadata$];
1338
+ var ListOfUtterance = [1, n0, _LOU, 0, () => UtteranceData$];
1339
+ var ListsOfUtterances = [1, n0, _LOUi, 0, () => UtteranceList$];
1340
+ var LogSettingsRequestList = [1, n0, _LSRL, 0, () => LogSettingsRequest$];
1341
+ var LogSettingsResponseList = [1, n0, _LSRLo, 0, () => LogSettingsResponse$];
1342
+ var MessageList = [1, n0, _ML, 0, () => Message$];
1343
+ var MigrationAlerts = [1, n0, _MAi, 0, () => MigrationAlert$];
1344
+ var MigrationSummaryList = [1, n0, _MSL, 0, () => MigrationSummary$];
1345
+ var OutputContextList = [1, n0, _OCL, 0, () => OutputContext$];
1346
+ var SlotDefaultValueList = [1, n0, _SDVL, 0, () => SlotDefaultValue$];
1347
+ var SlotList = [1, n0, _SL, 0, () => Slot$];
1348
+ var SlotTypeConfigurations = [1, n0, _STCl, 0, () => SlotTypeConfiguration$];
1349
+ var SlotTypeMetadataList = [1, n0, _STML, 0, () => SlotTypeMetadata$];
1350
+ var TagList = [1, n0, _TL, 0, () => Tag$];
1344
1351
  var ChannelConfigurationMap = [2, n0, _CCM, 8, 0, 0];
1345
- var CreateBotVersion = [
1352
+ var CreateBotVersion$ = [
1346
1353
  9,
1347
1354
  n0,
1348
1355
  _CBV,
1349
1356
  { [_h]: ["POST", "/bots/{name}/versions", 201] },
1350
- () => CreateBotVersionRequest,
1351
- () => CreateBotVersionResponse,
1357
+ () => CreateBotVersionRequest$,
1358
+ () => CreateBotVersionResponse$,
1352
1359
  ];
1353
- var CreateIntentVersion = [
1360
+ var CreateIntentVersion$ = [
1354
1361
  9,
1355
1362
  n0,
1356
1363
  _CIV,
1357
1364
  { [_h]: ["POST", "/intents/{name}/versions", 201] },
1358
- () => CreateIntentVersionRequest,
1359
- () => CreateIntentVersionResponse,
1365
+ () => CreateIntentVersionRequest$,
1366
+ () => CreateIntentVersionResponse$,
1360
1367
  ];
1361
- var CreateSlotTypeVersion = [
1368
+ var CreateSlotTypeVersion$ = [
1362
1369
  9,
1363
1370
  n0,
1364
1371
  _CSTV,
1365
1372
  { [_h]: ["POST", "/slottypes/{name}/versions", 201] },
1366
- () => CreateSlotTypeVersionRequest,
1367
- () => CreateSlotTypeVersionResponse,
1373
+ () => CreateSlotTypeVersionRequest$,
1374
+ () => CreateSlotTypeVersionResponse$,
1368
1375
  ];
1369
- var DeleteBot = [
1376
+ var DeleteBot$ = [
1370
1377
  9,
1371
1378
  n0,
1372
1379
  _DB,
1373
1380
  { [_h]: ["DELETE", "/bots/{name}", 204] },
1374
- () => DeleteBotRequest,
1381
+ () => DeleteBotRequest$,
1375
1382
  () => __Unit,
1376
1383
  ];
1377
- var DeleteBotAlias = [
1384
+ var DeleteBotAlias$ = [
1378
1385
  9,
1379
1386
  n0,
1380
1387
  _DBA,
1381
1388
  { [_h]: ["DELETE", "/bots/{botName}/aliases/{name}", 204] },
1382
- () => DeleteBotAliasRequest,
1389
+ () => DeleteBotAliasRequest$,
1383
1390
  () => __Unit,
1384
1391
  ];
1385
- var DeleteBotChannelAssociation = [
1392
+ var DeleteBotChannelAssociation$ = [
1386
1393
  9,
1387
1394
  n0,
1388
1395
  _DBCA,
1389
1396
  { [_h]: ["DELETE", "/bots/{botName}/aliases/{botAlias}/channels/{name}", 204] },
1390
- () => DeleteBotChannelAssociationRequest,
1397
+ () => DeleteBotChannelAssociationRequest$,
1391
1398
  () => __Unit,
1392
1399
  ];
1393
- var DeleteBotVersion = [
1400
+ var DeleteBotVersion$ = [
1394
1401
  9,
1395
1402
  n0,
1396
1403
  _DBV,
1397
1404
  { [_h]: ["DELETE", "/bots/{name}/versions/{version}", 204] },
1398
- () => DeleteBotVersionRequest,
1405
+ () => DeleteBotVersionRequest$,
1399
1406
  () => __Unit,
1400
1407
  ];
1401
- var DeleteIntent = [
1408
+ var DeleteIntent$ = [
1402
1409
  9,
1403
1410
  n0,
1404
1411
  _DI,
1405
1412
  { [_h]: ["DELETE", "/intents/{name}", 204] },
1406
- () => DeleteIntentRequest,
1413
+ () => DeleteIntentRequest$,
1407
1414
  () => __Unit,
1408
1415
  ];
1409
- var DeleteIntentVersion = [
1416
+ var DeleteIntentVersion$ = [
1410
1417
  9,
1411
1418
  n0,
1412
1419
  _DIV,
1413
1420
  { [_h]: ["DELETE", "/intents/{name}/versions/{version}", 204] },
1414
- () => DeleteIntentVersionRequest,
1421
+ () => DeleteIntentVersionRequest$,
1415
1422
  () => __Unit,
1416
1423
  ];
1417
- var DeleteSlotType = [
1424
+ var DeleteSlotType$ = [
1418
1425
  9,
1419
1426
  n0,
1420
1427
  _DST,
1421
1428
  { [_h]: ["DELETE", "/slottypes/{name}", 204] },
1422
- () => DeleteSlotTypeRequest,
1429
+ () => DeleteSlotTypeRequest$,
1423
1430
  () => __Unit,
1424
1431
  ];
1425
- var DeleteSlotTypeVersion = [
1432
+ var DeleteSlotTypeVersion$ = [
1426
1433
  9,
1427
1434
  n0,
1428
1435
  _DSTV,
1429
1436
  { [_h]: ["DELETE", "/slottypes/{name}/version/{version}", 204] },
1430
- () => DeleteSlotTypeVersionRequest,
1437
+ () => DeleteSlotTypeVersionRequest$,
1431
1438
  () => __Unit,
1432
1439
  ];
1433
- var DeleteUtterances = [
1440
+ var DeleteUtterances$ = [
1434
1441
  9,
1435
1442
  n0,
1436
1443
  _DU,
1437
1444
  { [_h]: ["DELETE", "/bots/{botName}/utterances/{userId}", 204] },
1438
- () => DeleteUtterancesRequest,
1445
+ () => DeleteUtterancesRequest$,
1439
1446
  () => __Unit,
1440
1447
  ];
1441
- var GetBot = [
1448
+ var GetBot$ = [
1442
1449
  9,
1443
1450
  n0,
1444
1451
  _GB,
1445
1452
  { [_h]: ["GET", "/bots/{name}/versions/{versionOrAlias}", 200] },
1446
- () => GetBotRequest,
1447
- () => GetBotResponse,
1453
+ () => GetBotRequest$,
1454
+ () => GetBotResponse$,
1448
1455
  ];
1449
- var GetBotAlias = [
1456
+ var GetBotAlias$ = [
1450
1457
  9,
1451
1458
  n0,
1452
1459
  _GBA,
1453
1460
  { [_h]: ["GET", "/bots/{botName}/aliases/{name}", 200] },
1454
- () => GetBotAliasRequest,
1455
- () => GetBotAliasResponse,
1461
+ () => GetBotAliasRequest$,
1462
+ () => GetBotAliasResponse$,
1456
1463
  ];
1457
- var GetBotAliases = [
1464
+ var GetBotAliases$ = [
1458
1465
  9,
1459
1466
  n0,
1460
1467
  _GBAe,
1461
1468
  { [_h]: ["GET", "/bots/{botName}/aliases", 200] },
1462
- () => GetBotAliasesRequest,
1463
- () => GetBotAliasesResponse,
1469
+ () => GetBotAliasesRequest$,
1470
+ () => GetBotAliasesResponse$,
1464
1471
  ];
1465
- var GetBotChannelAssociation = [
1472
+ var GetBotChannelAssociation$ = [
1466
1473
  9,
1467
1474
  n0,
1468
1475
  _GBCA,
1469
1476
  { [_h]: ["GET", "/bots/{botName}/aliases/{botAlias}/channels/{name}", 200] },
1470
- () => GetBotChannelAssociationRequest,
1471
- () => GetBotChannelAssociationResponse,
1477
+ () => GetBotChannelAssociationRequest$,
1478
+ () => GetBotChannelAssociationResponse$,
1472
1479
  ];
1473
- var GetBotChannelAssociations = [
1480
+ var GetBotChannelAssociations$ = [
1474
1481
  9,
1475
1482
  n0,
1476
1483
  _GBCAe,
1477
1484
  { [_h]: ["GET", "/bots/{botName}/aliases/{botAlias}/channels", 200] },
1478
- () => GetBotChannelAssociationsRequest,
1479
- () => GetBotChannelAssociationsResponse,
1485
+ () => GetBotChannelAssociationsRequest$,
1486
+ () => GetBotChannelAssociationsResponse$,
1480
1487
  ];
1481
- var GetBots = [
1488
+ var GetBots$ = [
1482
1489
  9,
1483
1490
  n0,
1484
1491
  _GBe,
1485
1492
  { [_h]: ["GET", "/bots", 200] },
1486
- () => GetBotsRequest,
1487
- () => GetBotsResponse,
1493
+ () => GetBotsRequest$,
1494
+ () => GetBotsResponse$,
1488
1495
  ];
1489
- var GetBotVersions = [
1496
+ var GetBotVersions$ = [
1490
1497
  9,
1491
1498
  n0,
1492
1499
  _GBV,
1493
1500
  { [_h]: ["GET", "/bots/{name}/versions", 200] },
1494
- () => GetBotVersionsRequest,
1495
- () => GetBotVersionsResponse,
1501
+ () => GetBotVersionsRequest$,
1502
+ () => GetBotVersionsResponse$,
1496
1503
  ];
1497
- var GetBuiltinIntent = [
1504
+ var GetBuiltinIntent$ = [
1498
1505
  9,
1499
1506
  n0,
1500
1507
  _GBI,
1501
1508
  { [_h]: ["GET", "/builtins/intents/{signature}", 200] },
1502
- () => GetBuiltinIntentRequest,
1503
- () => GetBuiltinIntentResponse,
1509
+ () => GetBuiltinIntentRequest$,
1510
+ () => GetBuiltinIntentResponse$,
1504
1511
  ];
1505
- var GetBuiltinIntents = [
1512
+ var GetBuiltinIntents$ = [
1506
1513
  9,
1507
1514
  n0,
1508
1515
  _GBIe,
1509
1516
  { [_h]: ["GET", "/builtins/intents", 200] },
1510
- () => GetBuiltinIntentsRequest,
1511
- () => GetBuiltinIntentsResponse,
1517
+ () => GetBuiltinIntentsRequest$,
1518
+ () => GetBuiltinIntentsResponse$,
1512
1519
  ];
1513
- var GetBuiltinSlotTypes = [
1520
+ var GetBuiltinSlotTypes$ = [
1514
1521
  9,
1515
1522
  n0,
1516
1523
  _GBST,
1517
1524
  { [_h]: ["GET", "/builtins/slottypes", 200] },
1518
- () => GetBuiltinSlotTypesRequest,
1519
- () => GetBuiltinSlotTypesResponse,
1525
+ () => GetBuiltinSlotTypesRequest$,
1526
+ () => GetBuiltinSlotTypesResponse$,
1520
1527
  ];
1521
- var GetExport = [
1528
+ var GetExport$ = [
1522
1529
  9,
1523
1530
  n0,
1524
1531
  _GE,
1525
1532
  { [_h]: ["GET", "/exports", 200] },
1526
- () => GetExportRequest,
1527
- () => GetExportResponse,
1533
+ () => GetExportRequest$,
1534
+ () => GetExportResponse$,
1528
1535
  ];
1529
- var GetImport = [
1536
+ var GetImport$ = [
1530
1537
  9,
1531
1538
  n0,
1532
1539
  _GI,
1533
1540
  { [_h]: ["GET", "/imports/{importId}", 200] },
1534
- () => GetImportRequest,
1535
- () => GetImportResponse,
1541
+ () => GetImportRequest$,
1542
+ () => GetImportResponse$,
1536
1543
  ];
1537
- var GetIntent = [
1544
+ var GetIntent$ = [
1538
1545
  9,
1539
1546
  n0,
1540
1547
  _GIe,
1541
1548
  { [_h]: ["GET", "/intents/{name}/versions/{version}", 200] },
1542
- () => GetIntentRequest,
1543
- () => GetIntentResponse,
1549
+ () => GetIntentRequest$,
1550
+ () => GetIntentResponse$,
1544
1551
  ];
1545
- var GetIntents = [
1552
+ var GetIntents$ = [
1546
1553
  9,
1547
1554
  n0,
1548
1555
  _GIet,
1549
1556
  { [_h]: ["GET", "/intents", 200] },
1550
- () => GetIntentsRequest,
1551
- () => GetIntentsResponse,
1557
+ () => GetIntentsRequest$,
1558
+ () => GetIntentsResponse$,
1552
1559
  ];
1553
- var GetIntentVersions = [
1560
+ var GetIntentVersions$ = [
1554
1561
  9,
1555
1562
  n0,
1556
1563
  _GIV,
1557
1564
  { [_h]: ["GET", "/intents/{name}/versions", 200] },
1558
- () => GetIntentVersionsRequest,
1559
- () => GetIntentVersionsResponse,
1565
+ () => GetIntentVersionsRequest$,
1566
+ () => GetIntentVersionsResponse$,
1560
1567
  ];
1561
- var GetMigration = [
1568
+ var GetMigration$ = [
1562
1569
  9,
1563
1570
  n0,
1564
1571
  _GM,
1565
1572
  { [_h]: ["GET", "/migrations/{migrationId}", 200] },
1566
- () => GetMigrationRequest,
1567
- () => GetMigrationResponse,
1573
+ () => GetMigrationRequest$,
1574
+ () => GetMigrationResponse$,
1568
1575
  ];
1569
- var GetMigrations = [
1576
+ var GetMigrations$ = [
1570
1577
  9,
1571
1578
  n0,
1572
1579
  _GMe,
1573
1580
  { [_h]: ["GET", "/migrations", 200] },
1574
- () => GetMigrationsRequest,
1575
- () => GetMigrationsResponse,
1581
+ () => GetMigrationsRequest$,
1582
+ () => GetMigrationsResponse$,
1576
1583
  ];
1577
- var GetSlotType = [
1584
+ var GetSlotType$ = [
1578
1585
  9,
1579
1586
  n0,
1580
1587
  _GST,
1581
1588
  { [_h]: ["GET", "/slottypes/{name}/versions/{version}", 200] },
1582
- () => GetSlotTypeRequest,
1583
- () => GetSlotTypeResponse,
1589
+ () => GetSlotTypeRequest$,
1590
+ () => GetSlotTypeResponse$,
1584
1591
  ];
1585
- var GetSlotTypes = [
1592
+ var GetSlotTypes$ = [
1586
1593
  9,
1587
1594
  n0,
1588
1595
  _GSTe,
1589
1596
  { [_h]: ["GET", "/slottypes", 200] },
1590
- () => GetSlotTypesRequest,
1591
- () => GetSlotTypesResponse,
1597
+ () => GetSlotTypesRequest$,
1598
+ () => GetSlotTypesResponse$,
1592
1599
  ];
1593
- var GetSlotTypeVersions = [
1600
+ var GetSlotTypeVersions$ = [
1594
1601
  9,
1595
1602
  n0,
1596
1603
  _GSTV,
1597
1604
  { [_h]: ["GET", "/slottypes/{name}/versions", 200] },
1598
- () => GetSlotTypeVersionsRequest,
1599
- () => GetSlotTypeVersionsResponse,
1605
+ () => GetSlotTypeVersionsRequest$,
1606
+ () => GetSlotTypeVersionsResponse$,
1600
1607
  ];
1601
- var GetUtterancesView = [
1608
+ var GetUtterancesView$ = [
1602
1609
  9,
1603
1610
  n0,
1604
1611
  _GUV,
1605
1612
  { [_h]: ["GET", "/bots/{botName}/utterances?view=aggregation", 200] },
1606
- () => GetUtterancesViewRequest,
1607
- () => GetUtterancesViewResponse,
1613
+ () => GetUtterancesViewRequest$,
1614
+ () => GetUtterancesViewResponse$,
1608
1615
  ];
1609
- var ListTagsForResource = [
1616
+ var ListTagsForResource$ = [
1610
1617
  9,
1611
1618
  n0,
1612
1619
  _LTFR,
1613
1620
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
1614
- () => ListTagsForResourceRequest,
1615
- () => ListTagsForResourceResponse,
1621
+ () => ListTagsForResourceRequest$,
1622
+ () => ListTagsForResourceResponse$,
1616
1623
  ];
1617
- var PutBot = [
1624
+ var PutBot$ = [
1618
1625
  9,
1619
1626
  n0,
1620
1627
  _PB,
1621
1628
  { [_h]: ["PUT", "/bots/{name}/versions/$LATEST", 200] },
1622
- () => PutBotRequest,
1623
- () => PutBotResponse,
1629
+ () => PutBotRequest$,
1630
+ () => PutBotResponse$,
1624
1631
  ];
1625
- var PutBotAlias = [
1632
+ var PutBotAlias$ = [
1626
1633
  9,
1627
1634
  n0,
1628
1635
  _PBA,
1629
1636
  { [_h]: ["PUT", "/bots/{botName}/aliases/{name}", 200] },
1630
- () => PutBotAliasRequest,
1631
- () => PutBotAliasResponse,
1637
+ () => PutBotAliasRequest$,
1638
+ () => PutBotAliasResponse$,
1632
1639
  ];
1633
- var PutIntent = [
1640
+ var PutIntent$ = [
1634
1641
  9,
1635
1642
  n0,
1636
1643
  _PI,
1637
1644
  { [_h]: ["PUT", "/intents/{name}/versions/$LATEST", 200] },
1638
- () => PutIntentRequest,
1639
- () => PutIntentResponse,
1645
+ () => PutIntentRequest$,
1646
+ () => PutIntentResponse$,
1640
1647
  ];
1641
- var PutSlotType = [
1648
+ var PutSlotType$ = [
1642
1649
  9,
1643
1650
  n0,
1644
1651
  _PST,
1645
1652
  { [_h]: ["PUT", "/slottypes/{name}/versions/$LATEST", 200] },
1646
- () => PutSlotTypeRequest,
1647
- () => PutSlotTypeResponse,
1653
+ () => PutSlotTypeRequest$,
1654
+ () => PutSlotTypeResponse$,
1648
1655
  ];
1649
- var StartImport = [
1656
+ var StartImport$ = [
1650
1657
  9,
1651
1658
  n0,
1652
1659
  _SI,
1653
1660
  { [_h]: ["POST", "/imports", 201] },
1654
- () => StartImportRequest,
1655
- () => StartImportResponse,
1661
+ () => StartImportRequest$,
1662
+ () => StartImportResponse$,
1656
1663
  ];
1657
- var StartMigration = [
1664
+ var StartMigration$ = [
1658
1665
  9,
1659
1666
  n0,
1660
1667
  _SM,
1661
1668
  { [_h]: ["POST", "/migrations", 202] },
1662
- () => StartMigrationRequest,
1663
- () => StartMigrationResponse,
1669
+ () => StartMigrationRequest$,
1670
+ () => StartMigrationResponse$,
1664
1671
  ];
1665
- var TagResource = [
1672
+ var TagResource$ = [
1666
1673
  9,
1667
1674
  n0,
1668
1675
  _TR,
1669
1676
  { [_h]: ["POST", "/tags/{resourceArn}", 204] },
1670
- () => TagResourceRequest,
1671
- () => TagResourceResponse,
1677
+ () => TagResourceRequest$,
1678
+ () => TagResourceResponse$,
1672
1679
  ];
1673
- var UntagResource = [
1680
+ var UntagResource$ = [
1674
1681
  9,
1675
1682
  n0,
1676
1683
  _UR,
1677
1684
  { [_h]: ["DELETE", "/tags/{resourceArn}", 204] },
1678
- () => UntagResourceRequest,
1679
- () => UntagResourceResponse,
1685
+ () => UntagResourceRequest$,
1686
+ () => UntagResourceResponse$,
1680
1687
  ];
1681
1688
 
1682
1689
  class CreateBotVersionCommand extends smithyClient.Command
@@ -1687,7 +1694,7 @@ class CreateBotVersionCommand extends smithyClient.Command
1687
1694
  })
1688
1695
  .s("AWSDeepSenseModelBuildingService", "CreateBotVersion", {})
1689
1696
  .n("LexModelBuildingServiceClient", "CreateBotVersionCommand")
1690
- .sc(CreateBotVersion)
1697
+ .sc(CreateBotVersion$)
1691
1698
  .build() {
1692
1699
  }
1693
1700
 
@@ -1699,7 +1706,7 @@ class CreateIntentVersionCommand extends smithyClient.Command
1699
1706
  })
1700
1707
  .s("AWSDeepSenseModelBuildingService", "CreateIntentVersion", {})
1701
1708
  .n("LexModelBuildingServiceClient", "CreateIntentVersionCommand")
1702
- .sc(CreateIntentVersion)
1709
+ .sc(CreateIntentVersion$)
1703
1710
  .build() {
1704
1711
  }
1705
1712
 
@@ -1711,7 +1718,7 @@ class CreateSlotTypeVersionCommand extends smithyClient.Command
1711
1718
  })
1712
1719
  .s("AWSDeepSenseModelBuildingService", "CreateSlotTypeVersion", {})
1713
1720
  .n("LexModelBuildingServiceClient", "CreateSlotTypeVersionCommand")
1714
- .sc(CreateSlotTypeVersion)
1721
+ .sc(CreateSlotTypeVersion$)
1715
1722
  .build() {
1716
1723
  }
1717
1724
 
@@ -1723,7 +1730,7 @@ class DeleteBotAliasCommand extends smithyClient.Command
1723
1730
  })
1724
1731
  .s("AWSDeepSenseModelBuildingService", "DeleteBotAlias", {})
1725
1732
  .n("LexModelBuildingServiceClient", "DeleteBotAliasCommand")
1726
- .sc(DeleteBotAlias)
1733
+ .sc(DeleteBotAlias$)
1727
1734
  .build() {
1728
1735
  }
1729
1736
 
@@ -1735,7 +1742,7 @@ class DeleteBotChannelAssociationCommand extends smithyClient.Command
1735
1742
  })
1736
1743
  .s("AWSDeepSenseModelBuildingService", "DeleteBotChannelAssociation", {})
1737
1744
  .n("LexModelBuildingServiceClient", "DeleteBotChannelAssociationCommand")
1738
- .sc(DeleteBotChannelAssociation)
1745
+ .sc(DeleteBotChannelAssociation$)
1739
1746
  .build() {
1740
1747
  }
1741
1748
 
@@ -1747,7 +1754,7 @@ class DeleteBotCommand extends smithyClient.Command
1747
1754
  })
1748
1755
  .s("AWSDeepSenseModelBuildingService", "DeleteBot", {})
1749
1756
  .n("LexModelBuildingServiceClient", "DeleteBotCommand")
1750
- .sc(DeleteBot)
1757
+ .sc(DeleteBot$)
1751
1758
  .build() {
1752
1759
  }
1753
1760
 
@@ -1759,7 +1766,7 @@ class DeleteBotVersionCommand extends smithyClient.Command
1759
1766
  })
1760
1767
  .s("AWSDeepSenseModelBuildingService", "DeleteBotVersion", {})
1761
1768
  .n("LexModelBuildingServiceClient", "DeleteBotVersionCommand")
1762
- .sc(DeleteBotVersion)
1769
+ .sc(DeleteBotVersion$)
1763
1770
  .build() {
1764
1771
  }
1765
1772
 
@@ -1771,7 +1778,7 @@ class DeleteIntentCommand extends smithyClient.Command
1771
1778
  })
1772
1779
  .s("AWSDeepSenseModelBuildingService", "DeleteIntent", {})
1773
1780
  .n("LexModelBuildingServiceClient", "DeleteIntentCommand")
1774
- .sc(DeleteIntent)
1781
+ .sc(DeleteIntent$)
1775
1782
  .build() {
1776
1783
  }
1777
1784
 
@@ -1783,7 +1790,7 @@ class DeleteIntentVersionCommand extends smithyClient.Command
1783
1790
  })
1784
1791
  .s("AWSDeepSenseModelBuildingService", "DeleteIntentVersion", {})
1785
1792
  .n("LexModelBuildingServiceClient", "DeleteIntentVersionCommand")
1786
- .sc(DeleteIntentVersion)
1793
+ .sc(DeleteIntentVersion$)
1787
1794
  .build() {
1788
1795
  }
1789
1796
 
@@ -1795,7 +1802,7 @@ class DeleteSlotTypeCommand extends smithyClient.Command
1795
1802
  })
1796
1803
  .s("AWSDeepSenseModelBuildingService", "DeleteSlotType", {})
1797
1804
  .n("LexModelBuildingServiceClient", "DeleteSlotTypeCommand")
1798
- .sc(DeleteSlotType)
1805
+ .sc(DeleteSlotType$)
1799
1806
  .build() {
1800
1807
  }
1801
1808
 
@@ -1807,7 +1814,7 @@ class DeleteSlotTypeVersionCommand extends smithyClient.Command
1807
1814
  })
1808
1815
  .s("AWSDeepSenseModelBuildingService", "DeleteSlotTypeVersion", {})
1809
1816
  .n("LexModelBuildingServiceClient", "DeleteSlotTypeVersionCommand")
1810
- .sc(DeleteSlotTypeVersion)
1817
+ .sc(DeleteSlotTypeVersion$)
1811
1818
  .build() {
1812
1819
  }
1813
1820
 
@@ -1819,7 +1826,7 @@ class DeleteUtterancesCommand extends smithyClient.Command
1819
1826
  })
1820
1827
  .s("AWSDeepSenseModelBuildingService", "DeleteUtterances", {})
1821
1828
  .n("LexModelBuildingServiceClient", "DeleteUtterancesCommand")
1822
- .sc(DeleteUtterances)
1829
+ .sc(DeleteUtterances$)
1823
1830
  .build() {
1824
1831
  }
1825
1832
 
@@ -1831,7 +1838,7 @@ class GetBotAliasCommand extends smithyClient.Command
1831
1838
  })
1832
1839
  .s("AWSDeepSenseModelBuildingService", "GetBotAlias", {})
1833
1840
  .n("LexModelBuildingServiceClient", "GetBotAliasCommand")
1834
- .sc(GetBotAlias)
1841
+ .sc(GetBotAlias$)
1835
1842
  .build() {
1836
1843
  }
1837
1844
 
@@ -1843,7 +1850,7 @@ class GetBotAliasesCommand extends smithyClient.Command
1843
1850
  })
1844
1851
  .s("AWSDeepSenseModelBuildingService", "GetBotAliases", {})
1845
1852
  .n("LexModelBuildingServiceClient", "GetBotAliasesCommand")
1846
- .sc(GetBotAliases)
1853
+ .sc(GetBotAliases$)
1847
1854
  .build() {
1848
1855
  }
1849
1856
 
@@ -1855,7 +1862,7 @@ class GetBotChannelAssociationCommand extends smithyClient.Command
1855
1862
  })
1856
1863
  .s("AWSDeepSenseModelBuildingService", "GetBotChannelAssociation", {})
1857
1864
  .n("LexModelBuildingServiceClient", "GetBotChannelAssociationCommand")
1858
- .sc(GetBotChannelAssociation)
1865
+ .sc(GetBotChannelAssociation$)
1859
1866
  .build() {
1860
1867
  }
1861
1868
 
@@ -1867,7 +1874,7 @@ class GetBotChannelAssociationsCommand extends smithyClient.Command
1867
1874
  })
1868
1875
  .s("AWSDeepSenseModelBuildingService", "GetBotChannelAssociations", {})
1869
1876
  .n("LexModelBuildingServiceClient", "GetBotChannelAssociationsCommand")
1870
- .sc(GetBotChannelAssociations)
1877
+ .sc(GetBotChannelAssociations$)
1871
1878
  .build() {
1872
1879
  }
1873
1880
 
@@ -1879,7 +1886,7 @@ class GetBotCommand extends smithyClient.Command
1879
1886
  })
1880
1887
  .s("AWSDeepSenseModelBuildingService", "GetBot", {})
1881
1888
  .n("LexModelBuildingServiceClient", "GetBotCommand")
1882
- .sc(GetBot)
1889
+ .sc(GetBot$)
1883
1890
  .build() {
1884
1891
  }
1885
1892
 
@@ -1891,7 +1898,7 @@ class GetBotsCommand extends smithyClient.Command
1891
1898
  })
1892
1899
  .s("AWSDeepSenseModelBuildingService", "GetBots", {})
1893
1900
  .n("LexModelBuildingServiceClient", "GetBotsCommand")
1894
- .sc(GetBots)
1901
+ .sc(GetBots$)
1895
1902
  .build() {
1896
1903
  }
1897
1904
 
@@ -1903,7 +1910,7 @@ class GetBotVersionsCommand extends smithyClient.Command
1903
1910
  })
1904
1911
  .s("AWSDeepSenseModelBuildingService", "GetBotVersions", {})
1905
1912
  .n("LexModelBuildingServiceClient", "GetBotVersionsCommand")
1906
- .sc(GetBotVersions)
1913
+ .sc(GetBotVersions$)
1907
1914
  .build() {
1908
1915
  }
1909
1916
 
@@ -1915,7 +1922,7 @@ class GetBuiltinIntentCommand extends smithyClient.Command
1915
1922
  })
1916
1923
  .s("AWSDeepSenseModelBuildingService", "GetBuiltinIntent", {})
1917
1924
  .n("LexModelBuildingServiceClient", "GetBuiltinIntentCommand")
1918
- .sc(GetBuiltinIntent)
1925
+ .sc(GetBuiltinIntent$)
1919
1926
  .build() {
1920
1927
  }
1921
1928
 
@@ -1927,7 +1934,7 @@ class GetBuiltinIntentsCommand extends smithyClient.Command
1927
1934
  })
1928
1935
  .s("AWSDeepSenseModelBuildingService", "GetBuiltinIntents", {})
1929
1936
  .n("LexModelBuildingServiceClient", "GetBuiltinIntentsCommand")
1930
- .sc(GetBuiltinIntents)
1937
+ .sc(GetBuiltinIntents$)
1931
1938
  .build() {
1932
1939
  }
1933
1940
 
@@ -1939,7 +1946,7 @@ class GetBuiltinSlotTypesCommand extends smithyClient.Command
1939
1946
  })
1940
1947
  .s("AWSDeepSenseModelBuildingService", "GetBuiltinSlotTypes", {})
1941
1948
  .n("LexModelBuildingServiceClient", "GetBuiltinSlotTypesCommand")
1942
- .sc(GetBuiltinSlotTypes)
1949
+ .sc(GetBuiltinSlotTypes$)
1943
1950
  .build() {
1944
1951
  }
1945
1952
 
@@ -1951,7 +1958,7 @@ class GetExportCommand extends smithyClient.Command
1951
1958
  })
1952
1959
  .s("AWSDeepSenseModelBuildingService", "GetExport", {})
1953
1960
  .n("LexModelBuildingServiceClient", "GetExportCommand")
1954
- .sc(GetExport)
1961
+ .sc(GetExport$)
1955
1962
  .build() {
1956
1963
  }
1957
1964
 
@@ -1963,7 +1970,7 @@ class GetImportCommand extends smithyClient.Command
1963
1970
  })
1964
1971
  .s("AWSDeepSenseModelBuildingService", "GetImport", {})
1965
1972
  .n("LexModelBuildingServiceClient", "GetImportCommand")
1966
- .sc(GetImport)
1973
+ .sc(GetImport$)
1967
1974
  .build() {
1968
1975
  }
1969
1976
 
@@ -1975,7 +1982,7 @@ class GetIntentCommand extends smithyClient.Command
1975
1982
  })
1976
1983
  .s("AWSDeepSenseModelBuildingService", "GetIntent", {})
1977
1984
  .n("LexModelBuildingServiceClient", "GetIntentCommand")
1978
- .sc(GetIntent)
1985
+ .sc(GetIntent$)
1979
1986
  .build() {
1980
1987
  }
1981
1988
 
@@ -1987,7 +1994,7 @@ class GetIntentsCommand extends smithyClient.Command
1987
1994
  })
1988
1995
  .s("AWSDeepSenseModelBuildingService", "GetIntents", {})
1989
1996
  .n("LexModelBuildingServiceClient", "GetIntentsCommand")
1990
- .sc(GetIntents)
1997
+ .sc(GetIntents$)
1991
1998
  .build() {
1992
1999
  }
1993
2000
 
@@ -1999,7 +2006,7 @@ class GetIntentVersionsCommand extends smithyClient.Command
1999
2006
  })
2000
2007
  .s("AWSDeepSenseModelBuildingService", "GetIntentVersions", {})
2001
2008
  .n("LexModelBuildingServiceClient", "GetIntentVersionsCommand")
2002
- .sc(GetIntentVersions)
2009
+ .sc(GetIntentVersions$)
2003
2010
  .build() {
2004
2011
  }
2005
2012
 
@@ -2011,7 +2018,7 @@ class GetMigrationCommand extends smithyClient.Command
2011
2018
  })
2012
2019
  .s("AWSDeepSenseModelBuildingService", "GetMigration", {})
2013
2020
  .n("LexModelBuildingServiceClient", "GetMigrationCommand")
2014
- .sc(GetMigration)
2021
+ .sc(GetMigration$)
2015
2022
  .build() {
2016
2023
  }
2017
2024
 
@@ -2023,7 +2030,7 @@ class GetMigrationsCommand extends smithyClient.Command
2023
2030
  })
2024
2031
  .s("AWSDeepSenseModelBuildingService", "GetMigrations", {})
2025
2032
  .n("LexModelBuildingServiceClient", "GetMigrationsCommand")
2026
- .sc(GetMigrations)
2033
+ .sc(GetMigrations$)
2027
2034
  .build() {
2028
2035
  }
2029
2036
 
@@ -2035,7 +2042,7 @@ class GetSlotTypeCommand extends smithyClient.Command
2035
2042
  })
2036
2043
  .s("AWSDeepSenseModelBuildingService", "GetSlotType", {})
2037
2044
  .n("LexModelBuildingServiceClient", "GetSlotTypeCommand")
2038
- .sc(GetSlotType)
2045
+ .sc(GetSlotType$)
2039
2046
  .build() {
2040
2047
  }
2041
2048
 
@@ -2047,7 +2054,7 @@ class GetSlotTypesCommand extends smithyClient.Command
2047
2054
  })
2048
2055
  .s("AWSDeepSenseModelBuildingService", "GetSlotTypes", {})
2049
2056
  .n("LexModelBuildingServiceClient", "GetSlotTypesCommand")
2050
- .sc(GetSlotTypes)
2057
+ .sc(GetSlotTypes$)
2051
2058
  .build() {
2052
2059
  }
2053
2060
 
@@ -2059,7 +2066,7 @@ class GetSlotTypeVersionsCommand extends smithyClient.Command
2059
2066
  })
2060
2067
  .s("AWSDeepSenseModelBuildingService", "GetSlotTypeVersions", {})
2061
2068
  .n("LexModelBuildingServiceClient", "GetSlotTypeVersionsCommand")
2062
- .sc(GetSlotTypeVersions)
2069
+ .sc(GetSlotTypeVersions$)
2063
2070
  .build() {
2064
2071
  }
2065
2072
 
@@ -2071,7 +2078,7 @@ class GetUtterancesViewCommand extends smithyClient.Command
2071
2078
  })
2072
2079
  .s("AWSDeepSenseModelBuildingService", "GetUtterancesView", {})
2073
2080
  .n("LexModelBuildingServiceClient", "GetUtterancesViewCommand")
2074
- .sc(GetUtterancesView)
2081
+ .sc(GetUtterancesView$)
2075
2082
  .build() {
2076
2083
  }
2077
2084
 
@@ -2083,7 +2090,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2083
2090
  })
2084
2091
  .s("AWSDeepSenseModelBuildingService", "ListTagsForResource", {})
2085
2092
  .n("LexModelBuildingServiceClient", "ListTagsForResourceCommand")
2086
- .sc(ListTagsForResource)
2093
+ .sc(ListTagsForResource$)
2087
2094
  .build() {
2088
2095
  }
2089
2096
 
@@ -2095,7 +2102,7 @@ class PutBotAliasCommand extends smithyClient.Command
2095
2102
  })
2096
2103
  .s("AWSDeepSenseModelBuildingService", "PutBotAlias", {})
2097
2104
  .n("LexModelBuildingServiceClient", "PutBotAliasCommand")
2098
- .sc(PutBotAlias)
2105
+ .sc(PutBotAlias$)
2099
2106
  .build() {
2100
2107
  }
2101
2108
 
@@ -2107,7 +2114,7 @@ class PutBotCommand extends smithyClient.Command
2107
2114
  })
2108
2115
  .s("AWSDeepSenseModelBuildingService", "PutBot", {})
2109
2116
  .n("LexModelBuildingServiceClient", "PutBotCommand")
2110
- .sc(PutBot)
2117
+ .sc(PutBot$)
2111
2118
  .build() {
2112
2119
  }
2113
2120
 
@@ -2119,7 +2126,7 @@ class PutIntentCommand extends smithyClient.Command
2119
2126
  })
2120
2127
  .s("AWSDeepSenseModelBuildingService", "PutIntent", {})
2121
2128
  .n("LexModelBuildingServiceClient", "PutIntentCommand")
2122
- .sc(PutIntent)
2129
+ .sc(PutIntent$)
2123
2130
  .build() {
2124
2131
  }
2125
2132
 
@@ -2131,7 +2138,7 @@ class PutSlotTypeCommand extends smithyClient.Command
2131
2138
  })
2132
2139
  .s("AWSDeepSenseModelBuildingService", "PutSlotType", {})
2133
2140
  .n("LexModelBuildingServiceClient", "PutSlotTypeCommand")
2134
- .sc(PutSlotType)
2141
+ .sc(PutSlotType$)
2135
2142
  .build() {
2136
2143
  }
2137
2144
 
@@ -2143,7 +2150,7 @@ class StartImportCommand extends smithyClient.Command
2143
2150
  })
2144
2151
  .s("AWSDeepSenseModelBuildingService", "StartImport", {})
2145
2152
  .n("LexModelBuildingServiceClient", "StartImportCommand")
2146
- .sc(StartImport)
2153
+ .sc(StartImport$)
2147
2154
  .build() {
2148
2155
  }
2149
2156
 
@@ -2155,7 +2162,7 @@ class StartMigrationCommand extends smithyClient.Command
2155
2162
  })
2156
2163
  .s("AWSDeepSenseModelBuildingService", "StartMigration", {})
2157
2164
  .n("LexModelBuildingServiceClient", "StartMigrationCommand")
2158
- .sc(StartMigration)
2165
+ .sc(StartMigration$)
2159
2166
  .build() {
2160
2167
  }
2161
2168
 
@@ -2167,7 +2174,7 @@ class TagResourceCommand extends smithyClient.Command
2167
2174
  })
2168
2175
  .s("AWSDeepSenseModelBuildingService", "TagResource", {})
2169
2176
  .n("LexModelBuildingServiceClient", "TagResourceCommand")
2170
- .sc(TagResource)
2177
+ .sc(TagResource$)
2171
2178
  .build() {
2172
2179
  }
2173
2180
 
@@ -2179,7 +2186,7 @@ class UntagResourceCommand extends smithyClient.Command
2179
2186
  })
2180
2187
  .s("AWSDeepSenseModelBuildingService", "UntagResource", {})
2181
2188
  .n("LexModelBuildingServiceClient", "UntagResourceCommand")
2182
- .sc(UntagResource)
2189
+ .sc(UntagResource$)
2183
2190
  .build() {
2184
2191
  }
2185
2192
 
@@ -2382,83 +2389,243 @@ Object.defineProperty(exports, "__Client", {
2382
2389
  enumerable: true,
2383
2390
  get: function () { return smithyClient.Client; }
2384
2391
  });
2385
- exports.AccessDeniedException = AccessDeniedException$1;
2386
- exports.BadRequestException = BadRequestException$1;
2392
+ exports.AccessDeniedException = AccessDeniedException;
2393
+ exports.AccessDeniedException$ = AccessDeniedException$;
2394
+ exports.BadRequestException = BadRequestException;
2395
+ exports.BadRequestException$ = BadRequestException$;
2396
+ exports.BotAliasMetadata$ = BotAliasMetadata$;
2397
+ exports.BotChannelAssociation$ = BotChannelAssociation$;
2398
+ exports.BotMetadata$ = BotMetadata$;
2399
+ exports.BuiltinIntentMetadata$ = BuiltinIntentMetadata$;
2400
+ exports.BuiltinIntentSlot$ = BuiltinIntentSlot$;
2401
+ exports.BuiltinSlotTypeMetadata$ = BuiltinSlotTypeMetadata$;
2387
2402
  exports.ChannelStatus = ChannelStatus;
2388
2403
  exports.ChannelType = ChannelType;
2389
- exports.ConflictException = ConflictException$1;
2404
+ exports.CodeHook$ = CodeHook$;
2405
+ exports.ConflictException = ConflictException;
2406
+ exports.ConflictException$ = ConflictException$;
2390
2407
  exports.ContentType = ContentType;
2408
+ exports.ConversationLogsRequest$ = ConversationLogsRequest$;
2409
+ exports.ConversationLogsResponse$ = ConversationLogsResponse$;
2410
+ exports.CreateBotVersion$ = CreateBotVersion$;
2391
2411
  exports.CreateBotVersionCommand = CreateBotVersionCommand;
2412
+ exports.CreateBotVersionRequest$ = CreateBotVersionRequest$;
2413
+ exports.CreateBotVersionResponse$ = CreateBotVersionResponse$;
2414
+ exports.CreateIntentVersion$ = CreateIntentVersion$;
2392
2415
  exports.CreateIntentVersionCommand = CreateIntentVersionCommand;
2416
+ exports.CreateIntentVersionRequest$ = CreateIntentVersionRequest$;
2417
+ exports.CreateIntentVersionResponse$ = CreateIntentVersionResponse$;
2418
+ exports.CreateSlotTypeVersion$ = CreateSlotTypeVersion$;
2393
2419
  exports.CreateSlotTypeVersionCommand = CreateSlotTypeVersionCommand;
2420
+ exports.CreateSlotTypeVersionRequest$ = CreateSlotTypeVersionRequest$;
2421
+ exports.CreateSlotTypeVersionResponse$ = CreateSlotTypeVersionResponse$;
2422
+ exports.DeleteBot$ = DeleteBot$;
2423
+ exports.DeleteBotAlias$ = DeleteBotAlias$;
2394
2424
  exports.DeleteBotAliasCommand = DeleteBotAliasCommand;
2425
+ exports.DeleteBotAliasRequest$ = DeleteBotAliasRequest$;
2426
+ exports.DeleteBotChannelAssociation$ = DeleteBotChannelAssociation$;
2395
2427
  exports.DeleteBotChannelAssociationCommand = DeleteBotChannelAssociationCommand;
2428
+ exports.DeleteBotChannelAssociationRequest$ = DeleteBotChannelAssociationRequest$;
2396
2429
  exports.DeleteBotCommand = DeleteBotCommand;
2430
+ exports.DeleteBotRequest$ = DeleteBotRequest$;
2431
+ exports.DeleteBotVersion$ = DeleteBotVersion$;
2397
2432
  exports.DeleteBotVersionCommand = DeleteBotVersionCommand;
2433
+ exports.DeleteBotVersionRequest$ = DeleteBotVersionRequest$;
2434
+ exports.DeleteIntent$ = DeleteIntent$;
2398
2435
  exports.DeleteIntentCommand = DeleteIntentCommand;
2436
+ exports.DeleteIntentRequest$ = DeleteIntentRequest$;
2437
+ exports.DeleteIntentVersion$ = DeleteIntentVersion$;
2399
2438
  exports.DeleteIntentVersionCommand = DeleteIntentVersionCommand;
2439
+ exports.DeleteIntentVersionRequest$ = DeleteIntentVersionRequest$;
2440
+ exports.DeleteSlotType$ = DeleteSlotType$;
2400
2441
  exports.DeleteSlotTypeCommand = DeleteSlotTypeCommand;
2442
+ exports.DeleteSlotTypeRequest$ = DeleteSlotTypeRequest$;
2443
+ exports.DeleteSlotTypeVersion$ = DeleteSlotTypeVersion$;
2401
2444
  exports.DeleteSlotTypeVersionCommand = DeleteSlotTypeVersionCommand;
2445
+ exports.DeleteSlotTypeVersionRequest$ = DeleteSlotTypeVersionRequest$;
2446
+ exports.DeleteUtterances$ = DeleteUtterances$;
2402
2447
  exports.DeleteUtterancesCommand = DeleteUtterancesCommand;
2448
+ exports.DeleteUtterancesRequest$ = DeleteUtterancesRequest$;
2403
2449
  exports.Destination = Destination;
2450
+ exports.EnumerationValue$ = EnumerationValue$;
2404
2451
  exports.ExportStatus = ExportStatus;
2405
2452
  exports.ExportType = ExportType;
2453
+ exports.FollowUpPrompt$ = FollowUpPrompt$;
2454
+ exports.FulfillmentActivity$ = FulfillmentActivity$;
2406
2455
  exports.FulfillmentActivityType = FulfillmentActivityType;
2456
+ exports.GetBot$ = GetBot$;
2457
+ exports.GetBotAlias$ = GetBotAlias$;
2407
2458
  exports.GetBotAliasCommand = GetBotAliasCommand;
2459
+ exports.GetBotAliasRequest$ = GetBotAliasRequest$;
2460
+ exports.GetBotAliasResponse$ = GetBotAliasResponse$;
2461
+ exports.GetBotAliases$ = GetBotAliases$;
2408
2462
  exports.GetBotAliasesCommand = GetBotAliasesCommand;
2463
+ exports.GetBotAliasesRequest$ = GetBotAliasesRequest$;
2464
+ exports.GetBotAliasesResponse$ = GetBotAliasesResponse$;
2465
+ exports.GetBotChannelAssociation$ = GetBotChannelAssociation$;
2409
2466
  exports.GetBotChannelAssociationCommand = GetBotChannelAssociationCommand;
2467
+ exports.GetBotChannelAssociationRequest$ = GetBotChannelAssociationRequest$;
2468
+ exports.GetBotChannelAssociationResponse$ = GetBotChannelAssociationResponse$;
2469
+ exports.GetBotChannelAssociations$ = GetBotChannelAssociations$;
2410
2470
  exports.GetBotChannelAssociationsCommand = GetBotChannelAssociationsCommand;
2471
+ exports.GetBotChannelAssociationsRequest$ = GetBotChannelAssociationsRequest$;
2472
+ exports.GetBotChannelAssociationsResponse$ = GetBotChannelAssociationsResponse$;
2411
2473
  exports.GetBotCommand = GetBotCommand;
2474
+ exports.GetBotRequest$ = GetBotRequest$;
2475
+ exports.GetBotResponse$ = GetBotResponse$;
2476
+ exports.GetBotVersions$ = GetBotVersions$;
2412
2477
  exports.GetBotVersionsCommand = GetBotVersionsCommand;
2478
+ exports.GetBotVersionsRequest$ = GetBotVersionsRequest$;
2479
+ exports.GetBotVersionsResponse$ = GetBotVersionsResponse$;
2480
+ exports.GetBots$ = GetBots$;
2413
2481
  exports.GetBotsCommand = GetBotsCommand;
2482
+ exports.GetBotsRequest$ = GetBotsRequest$;
2483
+ exports.GetBotsResponse$ = GetBotsResponse$;
2484
+ exports.GetBuiltinIntent$ = GetBuiltinIntent$;
2414
2485
  exports.GetBuiltinIntentCommand = GetBuiltinIntentCommand;
2486
+ exports.GetBuiltinIntentRequest$ = GetBuiltinIntentRequest$;
2487
+ exports.GetBuiltinIntentResponse$ = GetBuiltinIntentResponse$;
2488
+ exports.GetBuiltinIntents$ = GetBuiltinIntents$;
2415
2489
  exports.GetBuiltinIntentsCommand = GetBuiltinIntentsCommand;
2490
+ exports.GetBuiltinIntentsRequest$ = GetBuiltinIntentsRequest$;
2491
+ exports.GetBuiltinIntentsResponse$ = GetBuiltinIntentsResponse$;
2492
+ exports.GetBuiltinSlotTypes$ = GetBuiltinSlotTypes$;
2416
2493
  exports.GetBuiltinSlotTypesCommand = GetBuiltinSlotTypesCommand;
2494
+ exports.GetBuiltinSlotTypesRequest$ = GetBuiltinSlotTypesRequest$;
2495
+ exports.GetBuiltinSlotTypesResponse$ = GetBuiltinSlotTypesResponse$;
2496
+ exports.GetExport$ = GetExport$;
2417
2497
  exports.GetExportCommand = GetExportCommand;
2498
+ exports.GetExportRequest$ = GetExportRequest$;
2499
+ exports.GetExportResponse$ = GetExportResponse$;
2500
+ exports.GetImport$ = GetImport$;
2418
2501
  exports.GetImportCommand = GetImportCommand;
2502
+ exports.GetImportRequest$ = GetImportRequest$;
2503
+ exports.GetImportResponse$ = GetImportResponse$;
2504
+ exports.GetIntent$ = GetIntent$;
2419
2505
  exports.GetIntentCommand = GetIntentCommand;
2506
+ exports.GetIntentRequest$ = GetIntentRequest$;
2507
+ exports.GetIntentResponse$ = GetIntentResponse$;
2508
+ exports.GetIntentVersions$ = GetIntentVersions$;
2420
2509
  exports.GetIntentVersionsCommand = GetIntentVersionsCommand;
2510
+ exports.GetIntentVersionsRequest$ = GetIntentVersionsRequest$;
2511
+ exports.GetIntentVersionsResponse$ = GetIntentVersionsResponse$;
2512
+ exports.GetIntents$ = GetIntents$;
2421
2513
  exports.GetIntentsCommand = GetIntentsCommand;
2514
+ exports.GetIntentsRequest$ = GetIntentsRequest$;
2515
+ exports.GetIntentsResponse$ = GetIntentsResponse$;
2516
+ exports.GetMigration$ = GetMigration$;
2422
2517
  exports.GetMigrationCommand = GetMigrationCommand;
2518
+ exports.GetMigrationRequest$ = GetMigrationRequest$;
2519
+ exports.GetMigrationResponse$ = GetMigrationResponse$;
2520
+ exports.GetMigrations$ = GetMigrations$;
2423
2521
  exports.GetMigrationsCommand = GetMigrationsCommand;
2522
+ exports.GetMigrationsRequest$ = GetMigrationsRequest$;
2523
+ exports.GetMigrationsResponse$ = GetMigrationsResponse$;
2524
+ exports.GetSlotType$ = GetSlotType$;
2424
2525
  exports.GetSlotTypeCommand = GetSlotTypeCommand;
2526
+ exports.GetSlotTypeRequest$ = GetSlotTypeRequest$;
2527
+ exports.GetSlotTypeResponse$ = GetSlotTypeResponse$;
2528
+ exports.GetSlotTypeVersions$ = GetSlotTypeVersions$;
2425
2529
  exports.GetSlotTypeVersionsCommand = GetSlotTypeVersionsCommand;
2530
+ exports.GetSlotTypeVersionsRequest$ = GetSlotTypeVersionsRequest$;
2531
+ exports.GetSlotTypeVersionsResponse$ = GetSlotTypeVersionsResponse$;
2532
+ exports.GetSlotTypes$ = GetSlotTypes$;
2426
2533
  exports.GetSlotTypesCommand = GetSlotTypesCommand;
2534
+ exports.GetSlotTypesRequest$ = GetSlotTypesRequest$;
2535
+ exports.GetSlotTypesResponse$ = GetSlotTypesResponse$;
2536
+ exports.GetUtterancesView$ = GetUtterancesView$;
2427
2537
  exports.GetUtterancesViewCommand = GetUtterancesViewCommand;
2538
+ exports.GetUtterancesViewRequest$ = GetUtterancesViewRequest$;
2539
+ exports.GetUtterancesViewResponse$ = GetUtterancesViewResponse$;
2428
2540
  exports.ImportStatus = ImportStatus;
2429
- exports.InternalFailureException = InternalFailureException$1;
2541
+ exports.InputContext$ = InputContext$;
2542
+ exports.Intent$ = Intent$;
2543
+ exports.IntentMetadata$ = IntentMetadata$;
2544
+ exports.InternalFailureException = InternalFailureException;
2545
+ exports.InternalFailureException$ = InternalFailureException$;
2546
+ exports.KendraConfiguration$ = KendraConfiguration$;
2430
2547
  exports.LexModelBuildingService = LexModelBuildingService;
2431
2548
  exports.LexModelBuildingServiceClient = LexModelBuildingServiceClient;
2432
- exports.LexModelBuildingServiceServiceException = LexModelBuildingServiceServiceException$1;
2433
- exports.LimitExceededException = LimitExceededException$1;
2549
+ exports.LexModelBuildingServiceServiceException = LexModelBuildingServiceServiceException;
2550
+ exports.LexModelBuildingServiceServiceException$ = LexModelBuildingServiceServiceException$;
2551
+ exports.LimitExceededException = LimitExceededException;
2552
+ exports.LimitExceededException$ = LimitExceededException$;
2553
+ exports.ListTagsForResource$ = ListTagsForResource$;
2434
2554
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2555
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2556
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2435
2557
  exports.Locale = Locale;
2558
+ exports.LogSettingsRequest$ = LogSettingsRequest$;
2559
+ exports.LogSettingsResponse$ = LogSettingsResponse$;
2436
2560
  exports.LogType = LogType;
2437
2561
  exports.MergeStrategy = MergeStrategy;
2562
+ exports.Message$ = Message$;
2563
+ exports.MigrationAlert$ = MigrationAlert$;
2438
2564
  exports.MigrationAlertType = MigrationAlertType;
2439
2565
  exports.MigrationSortAttribute = MigrationSortAttribute;
2440
2566
  exports.MigrationStatus = MigrationStatus;
2441
2567
  exports.MigrationStrategy = MigrationStrategy;
2442
- exports.NotFoundException = NotFoundException$1;
2568
+ exports.MigrationSummary$ = MigrationSummary$;
2569
+ exports.NotFoundException = NotFoundException;
2570
+ exports.NotFoundException$ = NotFoundException$;
2443
2571
  exports.ObfuscationSetting = ObfuscationSetting;
2444
- exports.PreconditionFailedException = PreconditionFailedException$1;
2572
+ exports.OutputContext$ = OutputContext$;
2573
+ exports.PreconditionFailedException = PreconditionFailedException;
2574
+ exports.PreconditionFailedException$ = PreconditionFailedException$;
2445
2575
  exports.ProcessBehavior = ProcessBehavior;
2576
+ exports.Prompt$ = Prompt$;
2577
+ exports.PutBot$ = PutBot$;
2578
+ exports.PutBotAlias$ = PutBotAlias$;
2446
2579
  exports.PutBotAliasCommand = PutBotAliasCommand;
2580
+ exports.PutBotAliasRequest$ = PutBotAliasRequest$;
2581
+ exports.PutBotAliasResponse$ = PutBotAliasResponse$;
2447
2582
  exports.PutBotCommand = PutBotCommand;
2583
+ exports.PutBotRequest$ = PutBotRequest$;
2584
+ exports.PutBotResponse$ = PutBotResponse$;
2585
+ exports.PutIntent$ = PutIntent$;
2448
2586
  exports.PutIntentCommand = PutIntentCommand;
2587
+ exports.PutIntentRequest$ = PutIntentRequest$;
2588
+ exports.PutIntentResponse$ = PutIntentResponse$;
2589
+ exports.PutSlotType$ = PutSlotType$;
2449
2590
  exports.PutSlotTypeCommand = PutSlotTypeCommand;
2591
+ exports.PutSlotTypeRequest$ = PutSlotTypeRequest$;
2592
+ exports.PutSlotTypeResponse$ = PutSlotTypeResponse$;
2450
2593
  exports.ReferenceType = ReferenceType;
2451
- exports.ResourceInUseException = ResourceInUseException$1;
2594
+ exports.ResourceInUseException = ResourceInUseException;
2595
+ exports.ResourceInUseException$ = ResourceInUseException$;
2596
+ exports.ResourceReference$ = ResourceReference$;
2452
2597
  exports.ResourceType = ResourceType;
2598
+ exports.Slot$ = Slot$;
2453
2599
  exports.SlotConstraint = SlotConstraint;
2600
+ exports.SlotDefaultValue$ = SlotDefaultValue$;
2601
+ exports.SlotDefaultValueSpec$ = SlotDefaultValueSpec$;
2602
+ exports.SlotTypeConfiguration$ = SlotTypeConfiguration$;
2603
+ exports.SlotTypeMetadata$ = SlotTypeMetadata$;
2604
+ exports.SlotTypeRegexConfiguration$ = SlotTypeRegexConfiguration$;
2454
2605
  exports.SlotValueSelectionStrategy = SlotValueSelectionStrategy;
2455
2606
  exports.SortOrder = SortOrder;
2607
+ exports.StartImport$ = StartImport$;
2456
2608
  exports.StartImportCommand = StartImportCommand;
2609
+ exports.StartImportRequest$ = StartImportRequest$;
2610
+ exports.StartImportResponse$ = StartImportResponse$;
2611
+ exports.StartMigration$ = StartMigration$;
2457
2612
  exports.StartMigrationCommand = StartMigrationCommand;
2613
+ exports.StartMigrationRequest$ = StartMigrationRequest$;
2614
+ exports.StartMigrationResponse$ = StartMigrationResponse$;
2615
+ exports.Statement$ = Statement$;
2458
2616
  exports.Status = Status;
2459
2617
  exports.StatusType = StatusType;
2618
+ exports.Tag$ = Tag$;
2619
+ exports.TagResource$ = TagResource$;
2460
2620
  exports.TagResourceCommand = TagResourceCommand;
2621
+ exports.TagResourceRequest$ = TagResourceRequest$;
2622
+ exports.TagResourceResponse$ = TagResourceResponse$;
2623
+ exports.UntagResource$ = UntagResource$;
2461
2624
  exports.UntagResourceCommand = UntagResourceCommand;
2625
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2626
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2627
+ exports.UtteranceData$ = UtteranceData$;
2628
+ exports.UtteranceList$ = UtteranceList$;
2462
2629
  exports.paginateGetBotAliases = paginateGetBotAliases;
2463
2630
  exports.paginateGetBotChannelAssociations = paginateGetBotChannelAssociations;
2464
2631
  exports.paginateGetBotVersions = paginateGetBotVersions;