@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
@@ -0,0 +1,53 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
+ import { CreateFlywheelRequest, CreateFlywheelResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateFlywheelCommand}.
8
+ */
9
+ export interface CreateFlywheelCommandInput extends CreateFlywheelRequest {
10
+ }
11
+ /**
12
+ * The output of {@link CreateFlywheelCommand}.
13
+ */
14
+ export interface CreateFlywheelCommandOutput extends CreateFlywheelResponse, __MetadataBearer {
15
+ }
16
+ /**
17
+ * <p>A flywheel is an AWS resource that orchestrates the ongoing training of a model for custom classification
18
+ * or custom entity recognition. You can create a flywheel to start with an existing trained model, or
19
+ * Comprehend can create and train a new model.</p>
20
+ * <p>When you create the flywheel, Comprehend creates a data lake in your account. The data lake holds the training
21
+ * data and test data for all versions of the model.</p>
22
+ * <p>To use a flywheel with an existing trained model, you specify the active model version. Comprehend copies the model's
23
+ * training data and test data into the flywheel's data lake.</p>
24
+ * <p>To use the flywheel with a new model, you need to provide a dataset for training data (and optional test data)
25
+ * when you create the flywheel.</p>
26
+ * <p>For more information about flywheels, see <a href="https://docs.aws.amazon.com/comprehend/latest/dg/flywheels-about.html">
27
+ * Flywheel overview</a> in the <i>Amazon Comprehend Developer Guide</i>.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ComprehendClient, CreateFlywheelCommand } from "@aws-sdk/client-comprehend"; // ES Modules import
32
+ * // const { ComprehendClient, CreateFlywheelCommand } = require("@aws-sdk/client-comprehend"); // CommonJS import
33
+ * const client = new ComprehendClient(config);
34
+ * const command = new CreateFlywheelCommand(input);
35
+ * const response = await client.send(command);
36
+ * ```
37
+ *
38
+ * @see {@link CreateFlywheelCommandInput} for command's `input` shape.
39
+ * @see {@link CreateFlywheelCommandOutput} for command's `response` shape.
40
+ * @see {@link ComprehendClientResolvedConfig | config} for ComprehendClient's `config` shape.
41
+ *
42
+ */
43
+ export declare class CreateFlywheelCommand extends $Command<CreateFlywheelCommandInput, CreateFlywheelCommandOutput, ComprehendClientResolvedConfig> {
44
+ readonly input: CreateFlywheelCommandInput;
45
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
46
+ constructor(input: CreateFlywheelCommandInput);
47
+ /**
48
+ * @internal
49
+ */
50
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFlywheelCommandInput, CreateFlywheelCommandOutput>;
51
+ private serialize;
52
+ private deserialize;
53
+ }
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DeleteDocumentClassifierRequest, DeleteDocumentClassifierResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteDocumentClassifierCommand}.
8
+ */
6
9
  export interface DeleteDocumentClassifierCommandInput extends DeleteDocumentClassifierRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteDocumentClassifierCommand}.
13
+ */
8
14
  export interface DeleteDocumentClassifierCommandOutput extends DeleteDocumentClassifierResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DeleteEndpointRequest, DeleteEndpointResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteEndpointCommand}.
8
+ */
6
9
  export interface DeleteEndpointCommandInput extends DeleteEndpointRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteEndpointCommand}.
13
+ */
8
14
  export interface DeleteEndpointCommandOutput extends DeleteEndpointResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DeleteEntityRecognizerRequest, DeleteEntityRecognizerResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteEntityRecognizerCommand}.
8
+ */
6
9
  export interface DeleteEntityRecognizerCommandInput extends DeleteEntityRecognizerRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteEntityRecognizerCommand}.
13
+ */
8
14
  export interface DeleteEntityRecognizerCommandOutput extends DeleteEntityRecognizerResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
+ import { DeleteFlywheelRequest, DeleteFlywheelResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteFlywheelCommand}.
8
+ */
9
+ export interface DeleteFlywheelCommandInput extends DeleteFlywheelRequest {
10
+ }
11
+ /**
12
+ * The output of {@link DeleteFlywheelCommand}.
13
+ */
14
+ export interface DeleteFlywheelCommandOutput extends DeleteFlywheelResponse, __MetadataBearer {
15
+ }
16
+ /**
17
+ * <p>Deletes a flywheel. When you delete the flywheel, Amazon Comprehend
18
+ * does not delete the data lake or the model associated with the flywheel.</p>
19
+ * <p>For more information about flywheels, see <a href="https://docs.aws.amazon.com/comprehend/latest/dg/flywheels-about.html">
20
+ * Flywheel overview</a> in the <i>Amazon Comprehend Developer Guide</i>.</p>
21
+ * @example
22
+ * Use a bare-bones client and the command you need to make an API call.
23
+ * ```javascript
24
+ * import { ComprehendClient, DeleteFlywheelCommand } from "@aws-sdk/client-comprehend"; // ES Modules import
25
+ * // const { ComprehendClient, DeleteFlywheelCommand } = require("@aws-sdk/client-comprehend"); // CommonJS import
26
+ * const client = new ComprehendClient(config);
27
+ * const command = new DeleteFlywheelCommand(input);
28
+ * const response = await client.send(command);
29
+ * ```
30
+ *
31
+ * @see {@link DeleteFlywheelCommandInput} for command's `input` shape.
32
+ * @see {@link DeleteFlywheelCommandOutput} for command's `response` shape.
33
+ * @see {@link ComprehendClientResolvedConfig | config} for ComprehendClient's `config` shape.
34
+ *
35
+ */
36
+ export declare class DeleteFlywheelCommand extends $Command<DeleteFlywheelCommandInput, DeleteFlywheelCommandOutput, ComprehendClientResolvedConfig> {
37
+ readonly input: DeleteFlywheelCommandInput;
38
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ constructor(input: DeleteFlywheelCommandInput);
40
+ /**
41
+ * @internal
42
+ */
43
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFlywheelCommandInput, DeleteFlywheelCommandOutput>;
44
+ private serialize;
45
+ private deserialize;
46
+ }
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteResourcePolicyCommand}.
8
+ */
6
9
  export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteResourcePolicyCommand}.
13
+ */
8
14
  export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -0,0 +1,45 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
+ import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeDatasetCommand}.
8
+ */
9
+ export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
10
+ }
11
+ /**
12
+ * The output of {@link DescribeDatasetCommand}.
13
+ */
14
+ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
15
+ }
16
+ /**
17
+ * <p>Returns information about the dataset that you specify.
18
+ * For more information about datasets, see <a href="https://docs.aws.amazon.com/comprehend/latest/dg/flywheels-about.html">
19
+ * Flywheel overview</a> in the <i>Amazon Comprehend Developer Guide</i>.</p>
20
+ * @example
21
+ * Use a bare-bones client and the command you need to make an API call.
22
+ * ```javascript
23
+ * import { ComprehendClient, DescribeDatasetCommand } from "@aws-sdk/client-comprehend"; // ES Modules import
24
+ * // const { ComprehendClient, DescribeDatasetCommand } = require("@aws-sdk/client-comprehend"); // CommonJS import
25
+ * const client = new ComprehendClient(config);
26
+ * const command = new DescribeDatasetCommand(input);
27
+ * const response = await client.send(command);
28
+ * ```
29
+ *
30
+ * @see {@link DescribeDatasetCommandInput} for command's `input` shape.
31
+ * @see {@link DescribeDatasetCommandOutput} for command's `response` shape.
32
+ * @see {@link ComprehendClientResolvedConfig | config} for ComprehendClient's `config` shape.
33
+ *
34
+ */
35
+ export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, ComprehendClientResolvedConfig> {
36
+ readonly input: DescribeDatasetCommandInput;
37
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
38
+ constructor(input: DescribeDatasetCommandInput);
39
+ /**
40
+ * @internal
41
+ */
42
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDatasetCommandInput, DescribeDatasetCommandOutput>;
43
+ private serialize;
44
+ private deserialize;
45
+ }
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeDocumentClassificationJobRequest, DescribeDocumentClassificationJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeDocumentClassificationJobCommand}.
8
+ */
6
9
  export interface DescribeDocumentClassificationJobCommandInput extends DescribeDocumentClassificationJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeDocumentClassificationJobCommand}.
13
+ */
8
14
  export interface DescribeDocumentClassificationJobCommandOutput extends DescribeDocumentClassificationJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeDocumentClassifierRequest, DescribeDocumentClassifierResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeDocumentClassifierCommand}.
8
+ */
6
9
  export interface DescribeDocumentClassifierCommandInput extends DescribeDocumentClassifierRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeDocumentClassifierCommand}.
13
+ */
8
14
  export interface DescribeDocumentClassifierCommandOutput extends DescribeDocumentClassifierResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeDominantLanguageDetectionJobRequest, DescribeDominantLanguageDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeDominantLanguageDetectionJobCommand}.
8
+ */
6
9
  export interface DescribeDominantLanguageDetectionJobCommandInput extends DescribeDominantLanguageDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeDominantLanguageDetectionJobCommand}.
13
+ */
8
14
  export interface DescribeDominantLanguageDetectionJobCommandOutput extends DescribeDominantLanguageDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeEndpointCommand}.
8
+ */
6
9
  export interface DescribeEndpointCommandInput extends DescribeEndpointRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeEndpointCommand}.
13
+ */
8
14
  export interface DescribeEndpointCommandOutput extends DescribeEndpointResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeEntitiesDetectionJobRequest, DescribeEntitiesDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeEntitiesDetectionJobCommand}.
8
+ */
6
9
  export interface DescribeEntitiesDetectionJobCommandInput extends DescribeEntitiesDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeEntitiesDetectionJobCommand}.
13
+ */
8
14
  export interface DescribeEntitiesDetectionJobCommandOutput extends DescribeEntitiesDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeEntityRecognizerRequest, DescribeEntityRecognizerResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeEntityRecognizerCommand}.
8
+ */
6
9
  export interface DescribeEntityRecognizerCommandInput extends DescribeEntityRecognizerRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeEntityRecognizerCommand}.
13
+ */
8
14
  export interface DescribeEntityRecognizerCommandOutput extends DescribeEntityRecognizerResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeEventsDetectionJobRequest, DescribeEventsDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeEventsDetectionJobCommand}.
8
+ */
6
9
  export interface DescribeEventsDetectionJobCommandInput extends DescribeEventsDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeEventsDetectionJobCommand}.
13
+ */
8
14
  export interface DescribeEventsDetectionJobCommandOutput extends DescribeEventsDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -0,0 +1,44 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
+ import { DescribeFlywheelRequest, DescribeFlywheelResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeFlywheelCommand}.
8
+ */
9
+ export interface DescribeFlywheelCommandInput extends DescribeFlywheelRequest {
10
+ }
11
+ /**
12
+ * The output of {@link DescribeFlywheelCommand}.
13
+ */
14
+ export interface DescribeFlywheelCommandOutput extends DescribeFlywheelResponse, __MetadataBearer {
15
+ }
16
+ /**
17
+ * <p>Provides configuration information about the flywheel. For more information about flywheels, see <a href="https://docs.aws.amazon.com/comprehend/latest/dg/flywheels-about.html">
18
+ * Flywheel overview</a> in the <i>Amazon Comprehend Developer Guide</i>.</p>
19
+ * @example
20
+ * Use a bare-bones client and the command you need to make an API call.
21
+ * ```javascript
22
+ * import { ComprehendClient, DescribeFlywheelCommand } from "@aws-sdk/client-comprehend"; // ES Modules import
23
+ * // const { ComprehendClient, DescribeFlywheelCommand } = require("@aws-sdk/client-comprehend"); // CommonJS import
24
+ * const client = new ComprehendClient(config);
25
+ * const command = new DescribeFlywheelCommand(input);
26
+ * const response = await client.send(command);
27
+ * ```
28
+ *
29
+ * @see {@link DescribeFlywheelCommandInput} for command's `input` shape.
30
+ * @see {@link DescribeFlywheelCommandOutput} for command's `response` shape.
31
+ * @see {@link ComprehendClientResolvedConfig | config} for ComprehendClient's `config` shape.
32
+ *
33
+ */
34
+ export declare class DescribeFlywheelCommand extends $Command<DescribeFlywheelCommandInput, DescribeFlywheelCommandOutput, ComprehendClientResolvedConfig> {
35
+ readonly input: DescribeFlywheelCommandInput;
36
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
37
+ constructor(input: DescribeFlywheelCommandInput);
38
+ /**
39
+ * @internal
40
+ */
41
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFlywheelCommandInput, DescribeFlywheelCommandOutput>;
42
+ private serialize;
43
+ private deserialize;
44
+ }
@@ -0,0 +1,45 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
+ import { DescribeFlywheelIterationRequest, DescribeFlywheelIterationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeFlywheelIterationCommand}.
8
+ */
9
+ export interface DescribeFlywheelIterationCommandInput extends DescribeFlywheelIterationRequest {
10
+ }
11
+ /**
12
+ * The output of {@link DescribeFlywheelIterationCommand}.
13
+ */
14
+ export interface DescribeFlywheelIterationCommandOutput extends DescribeFlywheelIterationResponse, __MetadataBearer {
15
+ }
16
+ /**
17
+ * <p>Retrieve the configuration properties of a flywheel iteration.
18
+ * For more information about flywheels, see <a href="https://docs.aws.amazon.com/comprehend/latest/dg/flywheels-about.html">
19
+ * Flywheel overview</a> in the <i>Amazon Comprehend Developer Guide</i>.</p>
20
+ * @example
21
+ * Use a bare-bones client and the command you need to make an API call.
22
+ * ```javascript
23
+ * import { ComprehendClient, DescribeFlywheelIterationCommand } from "@aws-sdk/client-comprehend"; // ES Modules import
24
+ * // const { ComprehendClient, DescribeFlywheelIterationCommand } = require("@aws-sdk/client-comprehend"); // CommonJS import
25
+ * const client = new ComprehendClient(config);
26
+ * const command = new DescribeFlywheelIterationCommand(input);
27
+ * const response = await client.send(command);
28
+ * ```
29
+ *
30
+ * @see {@link DescribeFlywheelIterationCommandInput} for command's `input` shape.
31
+ * @see {@link DescribeFlywheelIterationCommandOutput} for command's `response` shape.
32
+ * @see {@link ComprehendClientResolvedConfig | config} for ComprehendClient's `config` shape.
33
+ *
34
+ */
35
+ export declare class DescribeFlywheelIterationCommand extends $Command<DescribeFlywheelIterationCommandInput, DescribeFlywheelIterationCommandOutput, ComprehendClientResolvedConfig> {
36
+ readonly input: DescribeFlywheelIterationCommandInput;
37
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
38
+ constructor(input: DescribeFlywheelIterationCommandInput);
39
+ /**
40
+ * @internal
41
+ */
42
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFlywheelIterationCommandInput, DescribeFlywheelIterationCommandOutput>;
43
+ private serialize;
44
+ private deserialize;
45
+ }
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeKeyPhrasesDetectionJobRequest, DescribeKeyPhrasesDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeKeyPhrasesDetectionJobCommand}.
8
+ */
6
9
  export interface DescribeKeyPhrasesDetectionJobCommandInput extends DescribeKeyPhrasesDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeKeyPhrasesDetectionJobCommand}.
13
+ */
8
14
  export interface DescribeKeyPhrasesDetectionJobCommandOutput extends DescribeKeyPhrasesDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribePiiEntitiesDetectionJobRequest, DescribePiiEntitiesDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribePiiEntitiesDetectionJobCommand}.
8
+ */
6
9
  export interface DescribePiiEntitiesDetectionJobCommandInput extends DescribePiiEntitiesDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribePiiEntitiesDetectionJobCommand}.
13
+ */
8
14
  export interface DescribePiiEntitiesDetectionJobCommandOutput extends DescribePiiEntitiesDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeResourcePolicyCommand}.
8
+ */
6
9
  export interface DescribeResourcePolicyCommandInput extends DescribeResourcePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeResourcePolicyCommand}.
13
+ */
8
14
  export interface DescribeResourcePolicyCommandOutput extends DescribeResourcePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeSentimentDetectionJobRequest, DescribeSentimentDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeSentimentDetectionJobCommand}.
8
+ */
6
9
  export interface DescribeSentimentDetectionJobCommandInput extends DescribeSentimentDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeSentimentDetectionJobCommand}.
13
+ */
8
14
  export interface DescribeSentimentDetectionJobCommandOutput extends DescribeSentimentDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeTargetedSentimentDetectionJobRequest, DescribeTargetedSentimentDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeTargetedSentimentDetectionJobCommand}.
8
+ */
6
9
  export interface DescribeTargetedSentimentDetectionJobCommandInput extends DescribeTargetedSentimentDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeTargetedSentimentDetectionJobCommand}.
13
+ */
8
14
  export interface DescribeTargetedSentimentDetectionJobCommandOutput extends DescribeTargetedSentimentDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DescribeTopicsDetectionJobRequest, DescribeTopicsDetectionJobResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeTopicsDetectionJobCommand}.
8
+ */
6
9
  export interface DescribeTopicsDetectionJobCommandInput extends DescribeTopicsDetectionJobRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeTopicsDetectionJobCommand}.
13
+ */
8
14
  export interface DescribeTopicsDetectionJobCommandOutput extends DescribeTopicsDetectionJobResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DetectDominantLanguageRequest, DetectDominantLanguageResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DetectDominantLanguageCommand}.
8
+ */
6
9
  export interface DetectDominantLanguageCommandInput extends DetectDominantLanguageRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectDominantLanguageCommand}.
13
+ */
8
14
  export interface DetectDominantLanguageCommandOutput extends DetectDominantLanguageResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DetectEntitiesRequest, DetectEntitiesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DetectEntitiesCommand}.
8
+ */
6
9
  export interface DetectEntitiesCommandInput extends DetectEntitiesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectEntitiesCommand}.
13
+ */
8
14
  export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DetectKeyPhrasesRequest, DetectKeyPhrasesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DetectKeyPhrasesCommand}.
8
+ */
6
9
  export interface DetectKeyPhrasesCommandInput extends DetectKeyPhrasesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectKeyPhrasesCommand}.
13
+ */
8
14
  export interface DetectKeyPhrasesCommandOutput extends DetectKeyPhrasesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DetectPiiEntitiesRequest, DetectPiiEntitiesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DetectPiiEntitiesCommand}.
8
+ */
6
9
  export interface DetectPiiEntitiesCommandInput extends DetectPiiEntitiesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectPiiEntitiesCommand}.
13
+ */
8
14
  export interface DetectPiiEntitiesCommandOutput extends DetectPiiEntitiesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DetectSentimentRequest, DetectSentimentResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DetectSentimentCommand}.
8
+ */
6
9
  export interface DetectSentimentCommandInput extends DetectSentimentRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectSentimentCommand}.
13
+ */
8
14
  export interface DetectSentimentCommandOutput extends DetectSentimentResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DetectSyntaxRequest, DetectSyntaxResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DetectSyntaxCommand}.
8
+ */
6
9
  export interface DetectSyntaxCommandInput extends DetectSyntaxRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectSyntaxCommand}.
13
+ */
8
14
  export interface DetectSyntaxCommandOutput extends DetectSyntaxResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
5
5
  import { DetectTargetedSentimentRequest, DetectTargetedSentimentResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DetectTargetedSentimentCommand}.
8
+ */
6
9
  export interface DetectTargetedSentimentCommandInput extends DetectTargetedSentimentRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectTargetedSentimentCommand}.
13
+ */
8
14
  export interface DetectTargetedSentimentCommandOutput extends DetectTargetedSentimentResponse, __MetadataBearer {
9
15
  }
10
16
  /**