@aws-sdk/client-comprehend 3.278.0 → 3.281.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 (183) hide show
  1. package/README.md +675 -0
  2. package/dist-cjs/Comprehend.js +165 -0
  3. package/dist-cjs/commands/CreateDatasetCommand.js +46 -0
  4. package/dist-cjs/commands/CreateFlywheelCommand.js +46 -0
  5. package/dist-cjs/commands/DeleteFlywheelCommand.js +46 -0
  6. package/dist-cjs/commands/DescribeDatasetCommand.js +46 -0
  7. package/dist-cjs/commands/DescribeFlywheelCommand.js +46 -0
  8. package/dist-cjs/commands/DescribeFlywheelIterationCommand.js +46 -0
  9. package/dist-cjs/commands/ListDatasetsCommand.js +46 -0
  10. package/dist-cjs/commands/ListFlywheelIterationHistoryCommand.js +46 -0
  11. package/dist-cjs/commands/ListFlywheelsCommand.js +46 -0
  12. package/dist-cjs/commands/StartFlywheelIterationCommand.js +46 -0
  13. package/dist-cjs/commands/StopTargetedSentimentDetectionJobCommand.js +3 -3
  14. package/dist-cjs/commands/StopTrainingDocumentClassifierCommand.js +3 -3
  15. package/dist-cjs/commands/StopTrainingEntityRecognizerCommand.js +3 -3
  16. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  17. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  18. package/dist-cjs/commands/UpdateEndpointCommand.js +3 -3
  19. package/dist-cjs/commands/UpdateFlywheelCommand.js +46 -0
  20. package/dist-cjs/commands/index.js +11 -0
  21. package/dist-cjs/endpoint/ruleset.js +3 -3
  22. package/dist-cjs/models/index.js +1 -0
  23. package/dist-cjs/models/models_0.js +242 -120
  24. package/dist-cjs/models/models_1.js +92 -0
  25. package/dist-cjs/pagination/ListDatasetsPaginator.js +36 -0
  26. package/dist-cjs/pagination/ListFlywheelIterationHistoryPaginator.js +36 -0
  27. package/dist-cjs/pagination/ListFlywheelsPaginator.js +36 -0
  28. package/dist-cjs/pagination/index.js +3 -0
  29. package/dist-cjs/protocols/Aws_json1_1.js +1135 -26
  30. package/dist-es/Comprehend.js +165 -0
  31. package/dist-es/commands/CreateDatasetCommand.js +42 -0
  32. package/dist-es/commands/CreateFlywheelCommand.js +42 -0
  33. package/dist-es/commands/DeleteFlywheelCommand.js +42 -0
  34. package/dist-es/commands/DescribeDatasetCommand.js +42 -0
  35. package/dist-es/commands/DescribeFlywheelCommand.js +42 -0
  36. package/dist-es/commands/DescribeFlywheelIterationCommand.js +42 -0
  37. package/dist-es/commands/ListDatasetsCommand.js +42 -0
  38. package/dist-es/commands/ListFlywheelIterationHistoryCommand.js +42 -0
  39. package/dist-es/commands/ListFlywheelsCommand.js +42 -0
  40. package/dist-es/commands/StartFlywheelIterationCommand.js +42 -0
  41. package/dist-es/commands/StopTargetedSentimentDetectionJobCommand.js +1 -1
  42. package/dist-es/commands/StopTrainingDocumentClassifierCommand.js +1 -1
  43. package/dist-es/commands/StopTrainingEntityRecognizerCommand.js +1 -1
  44. package/dist-es/commands/TagResourceCommand.js +1 -1
  45. package/dist-es/commands/UntagResourceCommand.js +1 -1
  46. package/dist-es/commands/UpdateEndpointCommand.js +1 -1
  47. package/dist-es/commands/UpdateFlywheelCommand.js +42 -0
  48. package/dist-es/commands/index.js +11 -0
  49. package/dist-es/endpoint/ruleset.js +3 -3
  50. package/dist-es/models/index.js +1 -0
  51. package/dist-es/models/models_0.js +191 -95
  52. package/dist-es/models/models_1.js +72 -0
  53. package/dist-es/pagination/ListDatasetsPaginator.js +32 -0
  54. package/dist-es/pagination/ListFlywheelIterationHistoryPaginator.js +32 -0
  55. package/dist-es/pagination/ListFlywheelsPaginator.js +32 -0
  56. package/dist-es/pagination/index.js +3 -0
  57. package/dist-es/protocols/Aws_json1_1.js +1109 -23
  58. package/dist-types/Comprehend.d.ts +107 -4
  59. package/dist-types/ComprehendClient.d.ts +13 -2
  60. package/dist-types/commands/BatchDetectDominantLanguageCommand.d.ts +6 -0
  61. package/dist-types/commands/BatchDetectEntitiesCommand.d.ts +6 -0
  62. package/dist-types/commands/BatchDetectKeyPhrasesCommand.d.ts +6 -0
  63. package/dist-types/commands/BatchDetectSentimentCommand.d.ts +6 -0
  64. package/dist-types/commands/BatchDetectSyntaxCommand.d.ts +6 -0
  65. package/dist-types/commands/BatchDetectTargetedSentimentCommand.d.ts +6 -0
  66. package/dist-types/commands/ClassifyDocumentCommand.d.ts +6 -0
  67. package/dist-types/commands/ContainsPiiEntitiesCommand.d.ts +6 -0
  68. package/dist-types/commands/CreateDatasetCommand.d.ts +45 -0
  69. package/dist-types/commands/CreateDocumentClassifierCommand.d.ts +6 -0
  70. package/dist-types/commands/CreateEndpointCommand.d.ts +6 -0
  71. package/dist-types/commands/CreateEntityRecognizerCommand.d.ts +7 -1
  72. package/dist-types/commands/CreateFlywheelCommand.d.ts +53 -0
  73. package/dist-types/commands/DeleteDocumentClassifierCommand.d.ts +6 -0
  74. package/dist-types/commands/DeleteEndpointCommand.d.ts +6 -0
  75. package/dist-types/commands/DeleteEntityRecognizerCommand.d.ts +6 -0
  76. package/dist-types/commands/DeleteFlywheelCommand.d.ts +46 -0
  77. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +6 -0
  78. package/dist-types/commands/DescribeDatasetCommand.d.ts +45 -0
  79. package/dist-types/commands/DescribeDocumentClassificationJobCommand.d.ts +6 -0
  80. package/dist-types/commands/DescribeDocumentClassifierCommand.d.ts +6 -0
  81. package/dist-types/commands/DescribeDominantLanguageDetectionJobCommand.d.ts +6 -0
  82. package/dist-types/commands/DescribeEndpointCommand.d.ts +6 -0
  83. package/dist-types/commands/DescribeEntitiesDetectionJobCommand.d.ts +6 -0
  84. package/dist-types/commands/DescribeEntityRecognizerCommand.d.ts +6 -0
  85. package/dist-types/commands/DescribeEventsDetectionJobCommand.d.ts +6 -0
  86. package/dist-types/commands/DescribeFlywheelCommand.d.ts +44 -0
  87. package/dist-types/commands/DescribeFlywheelIterationCommand.d.ts +45 -0
  88. package/dist-types/commands/DescribeKeyPhrasesDetectionJobCommand.d.ts +6 -0
  89. package/dist-types/commands/DescribePiiEntitiesDetectionJobCommand.d.ts +6 -0
  90. package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +6 -0
  91. package/dist-types/commands/DescribeSentimentDetectionJobCommand.d.ts +6 -0
  92. package/dist-types/commands/DescribeTargetedSentimentDetectionJobCommand.d.ts +6 -0
  93. package/dist-types/commands/DescribeTopicsDetectionJobCommand.d.ts +6 -0
  94. package/dist-types/commands/DetectDominantLanguageCommand.d.ts +6 -0
  95. package/dist-types/commands/DetectEntitiesCommand.d.ts +6 -0
  96. package/dist-types/commands/DetectKeyPhrasesCommand.d.ts +6 -0
  97. package/dist-types/commands/DetectPiiEntitiesCommand.d.ts +6 -0
  98. package/dist-types/commands/DetectSentimentCommand.d.ts +6 -0
  99. package/dist-types/commands/DetectSyntaxCommand.d.ts +6 -0
  100. package/dist-types/commands/DetectTargetedSentimentCommand.d.ts +6 -0
  101. package/dist-types/commands/ImportModelCommand.d.ts +6 -0
  102. package/dist-types/commands/ListDatasetsCommand.d.ts +44 -0
  103. package/dist-types/commands/ListDocumentClassificationJobsCommand.d.ts +6 -0
  104. package/dist-types/commands/ListDocumentClassifierSummariesCommand.d.ts +6 -0
  105. package/dist-types/commands/ListDocumentClassifiersCommand.d.ts +6 -0
  106. package/dist-types/commands/ListDominantLanguageDetectionJobsCommand.d.ts +6 -0
  107. package/dist-types/commands/ListEndpointsCommand.d.ts +6 -0
  108. package/dist-types/commands/ListEntitiesDetectionJobsCommand.d.ts +6 -0
  109. package/dist-types/commands/ListEntityRecognizerSummariesCommand.d.ts +6 -0
  110. package/dist-types/commands/ListEntityRecognizersCommand.d.ts +6 -0
  111. package/dist-types/commands/ListEventsDetectionJobsCommand.d.ts +6 -0
  112. package/dist-types/commands/ListFlywheelIterationHistoryCommand.d.ts +45 -0
  113. package/dist-types/commands/ListFlywheelsCommand.d.ts +43 -0
  114. package/dist-types/commands/ListKeyPhrasesDetectionJobsCommand.d.ts +6 -0
  115. package/dist-types/commands/ListPiiEntitiesDetectionJobsCommand.d.ts +6 -0
  116. package/dist-types/commands/ListSentimentDetectionJobsCommand.d.ts +6 -0
  117. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  118. package/dist-types/commands/ListTargetedSentimentDetectionJobsCommand.d.ts +6 -0
  119. package/dist-types/commands/ListTopicsDetectionJobsCommand.d.ts +6 -0
  120. package/dist-types/commands/PutResourcePolicyCommand.d.ts +6 -0
  121. package/dist-types/commands/StartDocumentClassificationJobCommand.d.ts +9 -2
  122. package/dist-types/commands/StartDominantLanguageDetectionJobCommand.d.ts +6 -0
  123. package/dist-types/commands/StartEntitiesDetectionJobCommand.d.ts +6 -0
  124. package/dist-types/commands/StartEventsDetectionJobCommand.d.ts +6 -0
  125. package/dist-types/commands/StartFlywheelIterationCommand.d.ts +45 -0
  126. package/dist-types/commands/StartKeyPhrasesDetectionJobCommand.d.ts +6 -0
  127. package/dist-types/commands/StartPiiEntitiesDetectionJobCommand.d.ts +6 -0
  128. package/dist-types/commands/StartSentimentDetectionJobCommand.d.ts +6 -0
  129. package/dist-types/commands/StartTargetedSentimentDetectionJobCommand.d.ts +7 -1
  130. package/dist-types/commands/StartTopicsDetectionJobCommand.d.ts +6 -0
  131. package/dist-types/commands/StopDominantLanguageDetectionJobCommand.d.ts +6 -0
  132. package/dist-types/commands/StopEntitiesDetectionJobCommand.d.ts +6 -0
  133. package/dist-types/commands/StopEventsDetectionJobCommand.d.ts +6 -0
  134. package/dist-types/commands/StopKeyPhrasesDetectionJobCommand.d.ts +6 -0
  135. package/dist-types/commands/StopPiiEntitiesDetectionJobCommand.d.ts +6 -0
  136. package/dist-types/commands/StopSentimentDetectionJobCommand.d.ts +6 -0
  137. package/dist-types/commands/StopTargetedSentimentDetectionJobCommand.d.ts +7 -1
  138. package/dist-types/commands/StopTrainingDocumentClassifierCommand.d.ts +7 -1
  139. package/dist-types/commands/StopTrainingEntityRecognizerCommand.d.ts +7 -1
  140. package/dist-types/commands/TagResourceCommand.d.ts +7 -1
  141. package/dist-types/commands/UntagResourceCommand.d.ts +7 -1
  142. package/dist-types/commands/UpdateEndpointCommand.d.ts +7 -1
  143. package/dist-types/commands/UpdateFlywheelCommand.d.ts +43 -0
  144. package/dist-types/commands/index.d.ts +11 -0
  145. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  146. package/dist-types/models/index.d.ts +1 -0
  147. package/dist-types/models/models_0.d.ts +1145 -320
  148. package/dist-types/models/models_1.d.ts +241 -0
  149. package/dist-types/pagination/ListDatasetsPaginator.d.ts +4 -0
  150. package/dist-types/pagination/ListFlywheelIterationHistoryPaginator.d.ts +4 -0
  151. package/dist-types/pagination/ListFlywheelsPaginator.d.ts +4 -0
  152. package/dist-types/pagination/index.d.ts +3 -0
  153. package/dist-types/protocols/Aws_json1_1.d.ts +33 -0
  154. package/dist-types/ts3.4/Comprehend.d.ts +187 -0
  155. package/dist-types/ts3.4/ComprehendClient.d.ts +68 -2
  156. package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +37 -0
  157. package/dist-types/ts3.4/commands/CreateFlywheelCommand.d.ts +37 -0
  158. package/dist-types/ts3.4/commands/DeleteFlywheelCommand.d.ts +37 -0
  159. package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +37 -0
  160. package/dist-types/ts3.4/commands/DescribeFlywheelCommand.d.ts +37 -0
  161. package/dist-types/ts3.4/commands/DescribeFlywheelIterationCommand.d.ts +41 -0
  162. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +34 -0
  163. package/dist-types/ts3.4/commands/ListFlywheelIterationHistoryCommand.d.ts +41 -0
  164. package/dist-types/ts3.4/commands/ListFlywheelsCommand.d.ts +37 -0
  165. package/dist-types/ts3.4/commands/StartFlywheelIterationCommand.d.ts +41 -0
  166. package/dist-types/ts3.4/commands/StopTargetedSentimentDetectionJobCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/StopTrainingDocumentClassifierCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/StopTrainingEntityRecognizerCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  170. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  171. package/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +1 -1
  172. package/dist-types/ts3.4/commands/UpdateFlywheelCommand.d.ts +37 -0
  173. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  174. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  175. package/dist-types/ts3.4/models/index.d.ts +1 -0
  176. package/dist-types/ts3.4/models/models_0.d.ts +424 -138
  177. package/dist-types/ts3.4/models/models_1.d.ts +116 -0
  178. package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +11 -0
  179. package/dist-types/ts3.4/pagination/ListFlywheelIterationHistoryPaginator.d.ts +11 -0
  180. package/dist-types/ts3.4/pagination/ListFlywheelsPaginator.d.ts +11 -0
  181. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  182. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +132 -0
  183. package/package.json +6 -6
@@ -31,6 +31,10 @@ import {
31
31
  ContainsPiiEntitiesCommandInput,
32
32
  ContainsPiiEntitiesCommandOutput,
33
33
  } from "./commands/ContainsPiiEntitiesCommand";
34
+ import {
35
+ CreateDatasetCommandInput,
36
+ CreateDatasetCommandOutput,
37
+ } from "./commands/CreateDatasetCommand";
34
38
  import {
35
39
  CreateDocumentClassifierCommandInput,
36
40
  CreateDocumentClassifierCommandOutput,
@@ -43,6 +47,10 @@ import {
43
47
  CreateEntityRecognizerCommandInput,
44
48
  CreateEntityRecognizerCommandOutput,
45
49
  } from "./commands/CreateEntityRecognizerCommand";
50
+ import {
51
+ CreateFlywheelCommandInput,
52
+ CreateFlywheelCommandOutput,
53
+ } from "./commands/CreateFlywheelCommand";
46
54
  import {
47
55
  DeleteDocumentClassifierCommandInput,
48
56
  DeleteDocumentClassifierCommandOutput,
@@ -55,10 +63,18 @@ import {
55
63
  DeleteEntityRecognizerCommandInput,
56
64
  DeleteEntityRecognizerCommandOutput,
57
65
  } from "./commands/DeleteEntityRecognizerCommand";
66
+ import {
67
+ DeleteFlywheelCommandInput,
68
+ DeleteFlywheelCommandOutput,
69
+ } from "./commands/DeleteFlywheelCommand";
58
70
  import {
59
71
  DeleteResourcePolicyCommandInput,
60
72
  DeleteResourcePolicyCommandOutput,
61
73
  } from "./commands/DeleteResourcePolicyCommand";
74
+ import {
75
+ DescribeDatasetCommandInput,
76
+ DescribeDatasetCommandOutput,
77
+ } from "./commands/DescribeDatasetCommand";
62
78
  import {
63
79
  DescribeDocumentClassificationJobCommandInput,
64
80
  DescribeDocumentClassificationJobCommandOutput,
@@ -87,6 +103,14 @@ import {
87
103
  DescribeEventsDetectionJobCommandInput,
88
104
  DescribeEventsDetectionJobCommandOutput,
89
105
  } from "./commands/DescribeEventsDetectionJobCommand";
106
+ import {
107
+ DescribeFlywheelCommandInput,
108
+ DescribeFlywheelCommandOutput,
109
+ } from "./commands/DescribeFlywheelCommand";
110
+ import {
111
+ DescribeFlywheelIterationCommandInput,
112
+ DescribeFlywheelIterationCommandOutput,
113
+ } from "./commands/DescribeFlywheelIterationCommand";
90
114
  import {
91
115
  DescribeKeyPhrasesDetectionJobCommandInput,
92
116
  DescribeKeyPhrasesDetectionJobCommandOutput,
@@ -143,6 +167,10 @@ import {
143
167
  ImportModelCommandInput,
144
168
  ImportModelCommandOutput,
145
169
  } from "./commands/ImportModelCommand";
170
+ import {
171
+ ListDatasetsCommandInput,
172
+ ListDatasetsCommandOutput,
173
+ } from "./commands/ListDatasetsCommand";
146
174
  import {
147
175
  ListDocumentClassificationJobsCommandInput,
148
176
  ListDocumentClassificationJobsCommandOutput,
@@ -179,6 +207,14 @@ import {
179
207
  ListEventsDetectionJobsCommandInput,
180
208
  ListEventsDetectionJobsCommandOutput,
181
209
  } from "./commands/ListEventsDetectionJobsCommand";
210
+ import {
211
+ ListFlywheelIterationHistoryCommandInput,
212
+ ListFlywheelIterationHistoryCommandOutput,
213
+ } from "./commands/ListFlywheelIterationHistoryCommand";
214
+ import {
215
+ ListFlywheelsCommandInput,
216
+ ListFlywheelsCommandOutput,
217
+ } from "./commands/ListFlywheelsCommand";
182
218
  import {
183
219
  ListKeyPhrasesDetectionJobsCommandInput,
184
220
  ListKeyPhrasesDetectionJobsCommandOutput,
@@ -223,6 +259,10 @@ import {
223
259
  StartEventsDetectionJobCommandInput,
224
260
  StartEventsDetectionJobCommandOutput,
225
261
  } from "./commands/StartEventsDetectionJobCommand";
262
+ import {
263
+ StartFlywheelIterationCommandInput,
264
+ StartFlywheelIterationCommandOutput,
265
+ } from "./commands/StartFlywheelIterationCommand";
226
266
  import {
227
267
  StartKeyPhrasesDetectionJobCommandInput,
228
268
  StartKeyPhrasesDetectionJobCommandOutput,
@@ -291,6 +331,10 @@ import {
291
331
  UpdateEndpointCommandInput,
292
332
  UpdateEndpointCommandOutput,
293
333
  } from "./commands/UpdateEndpointCommand";
334
+ import {
335
+ UpdateFlywheelCommandInput,
336
+ UpdateFlywheelCommandOutput,
337
+ } from "./commands/UpdateFlywheelCommand";
294
338
  import { ComprehendClient } from "./ComprehendClient";
295
339
  export declare class Comprehend extends ComprehendClient {
296
340
  batchDetectDominantLanguage(
@@ -397,6 +441,19 @@ export declare class Comprehend extends ComprehendClient {
397
441
  options: __HttpHandlerOptions,
398
442
  cb: (err: any, data?: ContainsPiiEntitiesCommandOutput) => void
399
443
  ): void;
444
+ createDataset(
445
+ args: CreateDatasetCommandInput,
446
+ options?: __HttpHandlerOptions
447
+ ): Promise<CreateDatasetCommandOutput>;
448
+ createDataset(
449
+ args: CreateDatasetCommandInput,
450
+ cb: (err: any, data?: CreateDatasetCommandOutput) => void
451
+ ): void;
452
+ createDataset(
453
+ args: CreateDatasetCommandInput,
454
+ options: __HttpHandlerOptions,
455
+ cb: (err: any, data?: CreateDatasetCommandOutput) => void
456
+ ): void;
400
457
  createDocumentClassifier(
401
458
  args: CreateDocumentClassifierCommandInput,
402
459
  options?: __HttpHandlerOptions
@@ -436,6 +493,19 @@ export declare class Comprehend extends ComprehendClient {
436
493
  options: __HttpHandlerOptions,
437
494
  cb: (err: any, data?: CreateEntityRecognizerCommandOutput) => void
438
495
  ): void;
496
+ createFlywheel(
497
+ args: CreateFlywheelCommandInput,
498
+ options?: __HttpHandlerOptions
499
+ ): Promise<CreateFlywheelCommandOutput>;
500
+ createFlywheel(
501
+ args: CreateFlywheelCommandInput,
502
+ cb: (err: any, data?: CreateFlywheelCommandOutput) => void
503
+ ): void;
504
+ createFlywheel(
505
+ args: CreateFlywheelCommandInput,
506
+ options: __HttpHandlerOptions,
507
+ cb: (err: any, data?: CreateFlywheelCommandOutput) => void
508
+ ): void;
439
509
  deleteDocumentClassifier(
440
510
  args: DeleteDocumentClassifierCommandInput,
441
511
  options?: __HttpHandlerOptions
@@ -475,6 +545,19 @@ export declare class Comprehend extends ComprehendClient {
475
545
  options: __HttpHandlerOptions,
476
546
  cb: (err: any, data?: DeleteEntityRecognizerCommandOutput) => void
477
547
  ): void;
548
+ deleteFlywheel(
549
+ args: DeleteFlywheelCommandInput,
550
+ options?: __HttpHandlerOptions
551
+ ): Promise<DeleteFlywheelCommandOutput>;
552
+ deleteFlywheel(
553
+ args: DeleteFlywheelCommandInput,
554
+ cb: (err: any, data?: DeleteFlywheelCommandOutput) => void
555
+ ): void;
556
+ deleteFlywheel(
557
+ args: DeleteFlywheelCommandInput,
558
+ options: __HttpHandlerOptions,
559
+ cb: (err: any, data?: DeleteFlywheelCommandOutput) => void
560
+ ): void;
478
561
  deleteResourcePolicy(
479
562
  args: DeleteResourcePolicyCommandInput,
480
563
  options?: __HttpHandlerOptions
@@ -488,6 +571,19 @@ export declare class Comprehend extends ComprehendClient {
488
571
  options: __HttpHandlerOptions,
489
572
  cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
490
573
  ): void;
574
+ describeDataset(
575
+ args: DescribeDatasetCommandInput,
576
+ options?: __HttpHandlerOptions
577
+ ): Promise<DescribeDatasetCommandOutput>;
578
+ describeDataset(
579
+ args: DescribeDatasetCommandInput,
580
+ cb: (err: any, data?: DescribeDatasetCommandOutput) => void
581
+ ): void;
582
+ describeDataset(
583
+ args: DescribeDatasetCommandInput,
584
+ options: __HttpHandlerOptions,
585
+ cb: (err: any, data?: DescribeDatasetCommandOutput) => void
586
+ ): void;
491
587
  describeDocumentClassificationJob(
492
588
  args: DescribeDocumentClassificationJobCommandInput,
493
589
  options?: __HttpHandlerOptions
@@ -591,6 +687,32 @@ export declare class Comprehend extends ComprehendClient {
591
687
  options: __HttpHandlerOptions,
592
688
  cb: (err: any, data?: DescribeEventsDetectionJobCommandOutput) => void
593
689
  ): void;
690
+ describeFlywheel(
691
+ args: DescribeFlywheelCommandInput,
692
+ options?: __HttpHandlerOptions
693
+ ): Promise<DescribeFlywheelCommandOutput>;
694
+ describeFlywheel(
695
+ args: DescribeFlywheelCommandInput,
696
+ cb: (err: any, data?: DescribeFlywheelCommandOutput) => void
697
+ ): void;
698
+ describeFlywheel(
699
+ args: DescribeFlywheelCommandInput,
700
+ options: __HttpHandlerOptions,
701
+ cb: (err: any, data?: DescribeFlywheelCommandOutput) => void
702
+ ): void;
703
+ describeFlywheelIteration(
704
+ args: DescribeFlywheelIterationCommandInput,
705
+ options?: __HttpHandlerOptions
706
+ ): Promise<DescribeFlywheelIterationCommandOutput>;
707
+ describeFlywheelIteration(
708
+ args: DescribeFlywheelIterationCommandInput,
709
+ cb: (err: any, data?: DescribeFlywheelIterationCommandOutput) => void
710
+ ): void;
711
+ describeFlywheelIteration(
712
+ args: DescribeFlywheelIterationCommandInput,
713
+ options: __HttpHandlerOptions,
714
+ cb: (err: any, data?: DescribeFlywheelIterationCommandOutput) => void
715
+ ): void;
594
716
  describeKeyPhrasesDetectionJob(
595
717
  args: DescribeKeyPhrasesDetectionJobCommandInput,
596
718
  options?: __HttpHandlerOptions
@@ -779,6 +901,19 @@ export declare class Comprehend extends ComprehendClient {
779
901
  options: __HttpHandlerOptions,
780
902
  cb: (err: any, data?: ImportModelCommandOutput) => void
781
903
  ): void;
904
+ listDatasets(
905
+ args: ListDatasetsCommandInput,
906
+ options?: __HttpHandlerOptions
907
+ ): Promise<ListDatasetsCommandOutput>;
908
+ listDatasets(
909
+ args: ListDatasetsCommandInput,
910
+ cb: (err: any, data?: ListDatasetsCommandOutput) => void
911
+ ): void;
912
+ listDatasets(
913
+ args: ListDatasetsCommandInput,
914
+ options: __HttpHandlerOptions,
915
+ cb: (err: any, data?: ListDatasetsCommandOutput) => void
916
+ ): void;
782
917
  listDocumentClassificationJobs(
783
918
  args: ListDocumentClassificationJobsCommandInput,
784
919
  options?: __HttpHandlerOptions
@@ -902,6 +1037,32 @@ export declare class Comprehend extends ComprehendClient {
902
1037
  options: __HttpHandlerOptions,
903
1038
  cb: (err: any, data?: ListEventsDetectionJobsCommandOutput) => void
904
1039
  ): void;
1040
+ listFlywheelIterationHistory(
1041
+ args: ListFlywheelIterationHistoryCommandInput,
1042
+ options?: __HttpHandlerOptions
1043
+ ): Promise<ListFlywheelIterationHistoryCommandOutput>;
1044
+ listFlywheelIterationHistory(
1045
+ args: ListFlywheelIterationHistoryCommandInput,
1046
+ cb: (err: any, data?: ListFlywheelIterationHistoryCommandOutput) => void
1047
+ ): void;
1048
+ listFlywheelIterationHistory(
1049
+ args: ListFlywheelIterationHistoryCommandInput,
1050
+ options: __HttpHandlerOptions,
1051
+ cb: (err: any, data?: ListFlywheelIterationHistoryCommandOutput) => void
1052
+ ): void;
1053
+ listFlywheels(
1054
+ args: ListFlywheelsCommandInput,
1055
+ options?: __HttpHandlerOptions
1056
+ ): Promise<ListFlywheelsCommandOutput>;
1057
+ listFlywheels(
1058
+ args: ListFlywheelsCommandInput,
1059
+ cb: (err: any, data?: ListFlywheelsCommandOutput) => void
1060
+ ): void;
1061
+ listFlywheels(
1062
+ args: ListFlywheelsCommandInput,
1063
+ options: __HttpHandlerOptions,
1064
+ cb: (err: any, data?: ListFlywheelsCommandOutput) => void
1065
+ ): void;
905
1066
  listKeyPhrasesDetectionJobs(
906
1067
  args: ListKeyPhrasesDetectionJobsCommandInput,
907
1068
  options?: __HttpHandlerOptions
@@ -1057,6 +1218,19 @@ export declare class Comprehend extends ComprehendClient {
1057
1218
  options: __HttpHandlerOptions,
1058
1219
  cb: (err: any, data?: StartEventsDetectionJobCommandOutput) => void
1059
1220
  ): void;
1221
+ startFlywheelIteration(
1222
+ args: StartFlywheelIterationCommandInput,
1223
+ options?: __HttpHandlerOptions
1224
+ ): Promise<StartFlywheelIterationCommandOutput>;
1225
+ startFlywheelIteration(
1226
+ args: StartFlywheelIterationCommandInput,
1227
+ cb: (err: any, data?: StartFlywheelIterationCommandOutput) => void
1228
+ ): void;
1229
+ startFlywheelIteration(
1230
+ args: StartFlywheelIterationCommandInput,
1231
+ options: __HttpHandlerOptions,
1232
+ cb: (err: any, data?: StartFlywheelIterationCommandOutput) => void
1233
+ ): void;
1060
1234
  startKeyPhrasesDetectionJob(
1061
1235
  args: StartKeyPhrasesDetectionJobCommandInput,
1062
1236
  options?: __HttpHandlerOptions
@@ -1290,4 +1464,17 @@ export declare class Comprehend extends ComprehendClient {
1290
1464
  options: __HttpHandlerOptions,
1291
1465
  cb: (err: any, data?: UpdateEndpointCommandOutput) => void
1292
1466
  ): void;
1467
+ updateFlywheel(
1468
+ args: UpdateFlywheelCommandInput,
1469
+ options?: __HttpHandlerOptions
1470
+ ): Promise<UpdateFlywheelCommandOutput>;
1471
+ updateFlywheel(
1472
+ args: UpdateFlywheelCommandInput,
1473
+ cb: (err: any, data?: UpdateFlywheelCommandOutput) => void
1474
+ ): void;
1475
+ updateFlywheel(
1476
+ args: UpdateFlywheelCommandInput,
1477
+ options: __HttpHandlerOptions,
1478
+ cb: (err: any, data?: UpdateFlywheelCommandOutput) => void
1479
+ ): void;
1293
1480
  }
@@ -76,6 +76,10 @@ import {
76
76
  ContainsPiiEntitiesCommandInput,
77
77
  ContainsPiiEntitiesCommandOutput,
78
78
  } from "./commands/ContainsPiiEntitiesCommand";
79
+ import {
80
+ CreateDatasetCommandInput,
81
+ CreateDatasetCommandOutput,
82
+ } from "./commands/CreateDatasetCommand";
79
83
  import {
80
84
  CreateDocumentClassifierCommandInput,
81
85
  CreateDocumentClassifierCommandOutput,
@@ -88,6 +92,10 @@ import {
88
92
  CreateEntityRecognizerCommandInput,
89
93
  CreateEntityRecognizerCommandOutput,
90
94
  } from "./commands/CreateEntityRecognizerCommand";
95
+ import {
96
+ CreateFlywheelCommandInput,
97
+ CreateFlywheelCommandOutput,
98
+ } from "./commands/CreateFlywheelCommand";
91
99
  import {
92
100
  DeleteDocumentClassifierCommandInput,
93
101
  DeleteDocumentClassifierCommandOutput,
@@ -100,10 +108,18 @@ import {
100
108
  DeleteEntityRecognizerCommandInput,
101
109
  DeleteEntityRecognizerCommandOutput,
102
110
  } from "./commands/DeleteEntityRecognizerCommand";
111
+ import {
112
+ DeleteFlywheelCommandInput,
113
+ DeleteFlywheelCommandOutput,
114
+ } from "./commands/DeleteFlywheelCommand";
103
115
  import {
104
116
  DeleteResourcePolicyCommandInput,
105
117
  DeleteResourcePolicyCommandOutput,
106
118
  } from "./commands/DeleteResourcePolicyCommand";
119
+ import {
120
+ DescribeDatasetCommandInput,
121
+ DescribeDatasetCommandOutput,
122
+ } from "./commands/DescribeDatasetCommand";
107
123
  import {
108
124
  DescribeDocumentClassificationJobCommandInput,
109
125
  DescribeDocumentClassificationJobCommandOutput,
@@ -132,6 +148,14 @@ import {
132
148
  DescribeEventsDetectionJobCommandInput,
133
149
  DescribeEventsDetectionJobCommandOutput,
134
150
  } from "./commands/DescribeEventsDetectionJobCommand";
151
+ import {
152
+ DescribeFlywheelCommandInput,
153
+ DescribeFlywheelCommandOutput,
154
+ } from "./commands/DescribeFlywheelCommand";
155
+ import {
156
+ DescribeFlywheelIterationCommandInput,
157
+ DescribeFlywheelIterationCommandOutput,
158
+ } from "./commands/DescribeFlywheelIterationCommand";
135
159
  import {
136
160
  DescribeKeyPhrasesDetectionJobCommandInput,
137
161
  DescribeKeyPhrasesDetectionJobCommandOutput,
@@ -188,6 +212,10 @@ import {
188
212
  ImportModelCommandInput,
189
213
  ImportModelCommandOutput,
190
214
  } from "./commands/ImportModelCommand";
215
+ import {
216
+ ListDatasetsCommandInput,
217
+ ListDatasetsCommandOutput,
218
+ } from "./commands/ListDatasetsCommand";
191
219
  import {
192
220
  ListDocumentClassificationJobsCommandInput,
193
221
  ListDocumentClassificationJobsCommandOutput,
@@ -224,6 +252,14 @@ import {
224
252
  ListEventsDetectionJobsCommandInput,
225
253
  ListEventsDetectionJobsCommandOutput,
226
254
  } from "./commands/ListEventsDetectionJobsCommand";
255
+ import {
256
+ ListFlywheelIterationHistoryCommandInput,
257
+ ListFlywheelIterationHistoryCommandOutput,
258
+ } from "./commands/ListFlywheelIterationHistoryCommand";
259
+ import {
260
+ ListFlywheelsCommandInput,
261
+ ListFlywheelsCommandOutput,
262
+ } from "./commands/ListFlywheelsCommand";
227
263
  import {
228
264
  ListKeyPhrasesDetectionJobsCommandInput,
229
265
  ListKeyPhrasesDetectionJobsCommandOutput,
@@ -268,6 +304,10 @@ import {
268
304
  StartEventsDetectionJobCommandInput,
269
305
  StartEventsDetectionJobCommandOutput,
270
306
  } from "./commands/StartEventsDetectionJobCommand";
307
+ import {
308
+ StartFlywheelIterationCommandInput,
309
+ StartFlywheelIterationCommandOutput,
310
+ } from "./commands/StartFlywheelIterationCommand";
271
311
  import {
272
312
  StartKeyPhrasesDetectionJobCommandInput,
273
313
  StartKeyPhrasesDetectionJobCommandOutput,
@@ -336,6 +376,10 @@ import {
336
376
  UpdateEndpointCommandInput,
337
377
  UpdateEndpointCommandOutput,
338
378
  } from "./commands/UpdateEndpointCommand";
379
+ import {
380
+ UpdateFlywheelCommandInput,
381
+ UpdateFlywheelCommandOutput,
382
+ } from "./commands/UpdateFlywheelCommand";
339
383
  import {
340
384
  ClientInputEndpointParameters,
341
385
  ClientResolvedEndpointParameters,
@@ -350,13 +394,17 @@ export declare type ServiceInputTypes =
350
394
  | BatchDetectTargetedSentimentCommandInput
351
395
  | ClassifyDocumentCommandInput
352
396
  | ContainsPiiEntitiesCommandInput
397
+ | CreateDatasetCommandInput
353
398
  | CreateDocumentClassifierCommandInput
354
399
  | CreateEndpointCommandInput
355
400
  | CreateEntityRecognizerCommandInput
401
+ | CreateFlywheelCommandInput
356
402
  | DeleteDocumentClassifierCommandInput
357
403
  | DeleteEndpointCommandInput
358
404
  | DeleteEntityRecognizerCommandInput
405
+ | DeleteFlywheelCommandInput
359
406
  | DeleteResourcePolicyCommandInput
407
+ | DescribeDatasetCommandInput
360
408
  | DescribeDocumentClassificationJobCommandInput
361
409
  | DescribeDocumentClassifierCommandInput
362
410
  | DescribeDominantLanguageDetectionJobCommandInput
@@ -364,6 +412,8 @@ export declare type ServiceInputTypes =
364
412
  | DescribeEntitiesDetectionJobCommandInput
365
413
  | DescribeEntityRecognizerCommandInput
366
414
  | DescribeEventsDetectionJobCommandInput
415
+ | DescribeFlywheelCommandInput
416
+ | DescribeFlywheelIterationCommandInput
367
417
  | DescribeKeyPhrasesDetectionJobCommandInput
368
418
  | DescribePiiEntitiesDetectionJobCommandInput
369
419
  | DescribeResourcePolicyCommandInput
@@ -378,6 +428,7 @@ export declare type ServiceInputTypes =
378
428
  | DetectSyntaxCommandInput
379
429
  | DetectTargetedSentimentCommandInput
380
430
  | ImportModelCommandInput
431
+ | ListDatasetsCommandInput
381
432
  | ListDocumentClassificationJobsCommandInput
382
433
  | ListDocumentClassifierSummariesCommandInput
383
434
  | ListDocumentClassifiersCommandInput
@@ -387,6 +438,8 @@ export declare type ServiceInputTypes =
387
438
  | ListEntityRecognizerSummariesCommandInput
388
439
  | ListEntityRecognizersCommandInput
389
440
  | ListEventsDetectionJobsCommandInput
441
+ | ListFlywheelIterationHistoryCommandInput
442
+ | ListFlywheelsCommandInput
390
443
  | ListKeyPhrasesDetectionJobsCommandInput
391
444
  | ListPiiEntitiesDetectionJobsCommandInput
392
445
  | ListSentimentDetectionJobsCommandInput
@@ -398,6 +451,7 @@ export declare type ServiceInputTypes =
398
451
  | StartDominantLanguageDetectionJobCommandInput
399
452
  | StartEntitiesDetectionJobCommandInput
400
453
  | StartEventsDetectionJobCommandInput
454
+ | StartFlywheelIterationCommandInput
401
455
  | StartKeyPhrasesDetectionJobCommandInput
402
456
  | StartPiiEntitiesDetectionJobCommandInput
403
457
  | StartSentimentDetectionJobCommandInput
@@ -414,7 +468,8 @@ export declare type ServiceInputTypes =
414
468
  | StopTrainingEntityRecognizerCommandInput
415
469
  | TagResourceCommandInput
416
470
  | UntagResourceCommandInput
417
- | UpdateEndpointCommandInput;
471
+ | UpdateEndpointCommandInput
472
+ | UpdateFlywheelCommandInput;
418
473
  export declare type ServiceOutputTypes =
419
474
  | BatchDetectDominantLanguageCommandOutput
420
475
  | BatchDetectEntitiesCommandOutput
@@ -424,13 +479,17 @@ export declare type ServiceOutputTypes =
424
479
  | BatchDetectTargetedSentimentCommandOutput
425
480
  | ClassifyDocumentCommandOutput
426
481
  | ContainsPiiEntitiesCommandOutput
482
+ | CreateDatasetCommandOutput
427
483
  | CreateDocumentClassifierCommandOutput
428
484
  | CreateEndpointCommandOutput
429
485
  | CreateEntityRecognizerCommandOutput
486
+ | CreateFlywheelCommandOutput
430
487
  | DeleteDocumentClassifierCommandOutput
431
488
  | DeleteEndpointCommandOutput
432
489
  | DeleteEntityRecognizerCommandOutput
490
+ | DeleteFlywheelCommandOutput
433
491
  | DeleteResourcePolicyCommandOutput
492
+ | DescribeDatasetCommandOutput
434
493
  | DescribeDocumentClassificationJobCommandOutput
435
494
  | DescribeDocumentClassifierCommandOutput
436
495
  | DescribeDominantLanguageDetectionJobCommandOutput
@@ -438,6 +497,8 @@ export declare type ServiceOutputTypes =
438
497
  | DescribeEntitiesDetectionJobCommandOutput
439
498
  | DescribeEntityRecognizerCommandOutput
440
499
  | DescribeEventsDetectionJobCommandOutput
500
+ | DescribeFlywheelCommandOutput
501
+ | DescribeFlywheelIterationCommandOutput
441
502
  | DescribeKeyPhrasesDetectionJobCommandOutput
442
503
  | DescribePiiEntitiesDetectionJobCommandOutput
443
504
  | DescribeResourcePolicyCommandOutput
@@ -452,6 +513,7 @@ export declare type ServiceOutputTypes =
452
513
  | DetectSyntaxCommandOutput
453
514
  | DetectTargetedSentimentCommandOutput
454
515
  | ImportModelCommandOutput
516
+ | ListDatasetsCommandOutput
455
517
  | ListDocumentClassificationJobsCommandOutput
456
518
  | ListDocumentClassifierSummariesCommandOutput
457
519
  | ListDocumentClassifiersCommandOutput
@@ -461,6 +523,8 @@ export declare type ServiceOutputTypes =
461
523
  | ListEntityRecognizerSummariesCommandOutput
462
524
  | ListEntityRecognizersCommandOutput
463
525
  | ListEventsDetectionJobsCommandOutput
526
+ | ListFlywheelIterationHistoryCommandOutput
527
+ | ListFlywheelsCommandOutput
464
528
  | ListKeyPhrasesDetectionJobsCommandOutput
465
529
  | ListPiiEntitiesDetectionJobsCommandOutput
466
530
  | ListSentimentDetectionJobsCommandOutput
@@ -472,6 +536,7 @@ export declare type ServiceOutputTypes =
472
536
  | StartDominantLanguageDetectionJobCommandOutput
473
537
  | StartEntitiesDetectionJobCommandOutput
474
538
  | StartEventsDetectionJobCommandOutput
539
+ | StartFlywheelIterationCommandOutput
475
540
  | StartKeyPhrasesDetectionJobCommandOutput
476
541
  | StartPiiEntitiesDetectionJobCommandOutput
477
542
  | StartSentimentDetectionJobCommandOutput
@@ -488,7 +553,8 @@ export declare type ServiceOutputTypes =
488
553
  | StopTrainingEntityRecognizerCommandOutput
489
554
  | TagResourceCommandOutput
490
555
  | UntagResourceCommandOutput
491
- | UpdateEndpointCommandOutput;
556
+ | UpdateEndpointCommandOutput
557
+ | UpdateFlywheelCommandOutput;
492
558
  export interface ClientDefaults
493
559
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
494
560
  requestHandler?: __HttpHandler;
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ComprehendClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ComprehendClient";
14
+ import {
15
+ CreateDatasetRequest,
16
+ CreateDatasetResponse,
17
+ } from "../models/models_0";
18
+ export interface CreateDatasetCommandInput extends CreateDatasetRequest {}
19
+ export interface CreateDatasetCommandOutput
20
+ extends CreateDatasetResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateDatasetCommand extends $Command<
23
+ CreateDatasetCommandInput,
24
+ CreateDatasetCommandOutput,
25
+ ComprehendClientResolvedConfig
26
+ > {
27
+ readonly input: CreateDatasetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: CreateDatasetCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ComprehendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateDatasetCommandInput, CreateDatasetCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ComprehendClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ComprehendClient";
14
+ import {
15
+ CreateFlywheelRequest,
16
+ CreateFlywheelResponse,
17
+ } from "../models/models_0";
18
+ export interface CreateFlywheelCommandInput extends CreateFlywheelRequest {}
19
+ export interface CreateFlywheelCommandOutput
20
+ extends CreateFlywheelResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateFlywheelCommand extends $Command<
23
+ CreateFlywheelCommandInput,
24
+ CreateFlywheelCommandOutput,
25
+ ComprehendClientResolvedConfig
26
+ > {
27
+ readonly input: CreateFlywheelCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: CreateFlywheelCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ComprehendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateFlywheelCommandInput, CreateFlywheelCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ComprehendClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ComprehendClient";
14
+ import {
15
+ DeleteFlywheelRequest,
16
+ DeleteFlywheelResponse,
17
+ } from "../models/models_0";
18
+ export interface DeleteFlywheelCommandInput extends DeleteFlywheelRequest {}
19
+ export interface DeleteFlywheelCommandOutput
20
+ extends DeleteFlywheelResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteFlywheelCommand extends $Command<
23
+ DeleteFlywheelCommandInput,
24
+ DeleteFlywheelCommandOutput,
25
+ ComprehendClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteFlywheelCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: DeleteFlywheelCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ComprehendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteFlywheelCommandInput, DeleteFlywheelCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ComprehendClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ComprehendClient";
14
+ import {
15
+ DescribeDatasetRequest,
16
+ DescribeDatasetResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {}
19
+ export interface DescribeDatasetCommandOutput
20
+ extends DescribeDatasetResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeDatasetCommand extends $Command<
23
+ DescribeDatasetCommandInput,
24
+ DescribeDatasetCommandOutput,
25
+ ComprehendClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeDatasetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: DescribeDatasetCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ComprehendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeDatasetCommandInput, DescribeDatasetCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }