@aws-sdk/client-comprehendmedical 3.299.0 → 3.301.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 (27) hide show
  1. package/dist-types/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +3 -0
  2. package/dist-types/commands/DescribeICD10CMInferenceJobCommand.d.ts +3 -0
  3. package/dist-types/commands/DescribePHIDetectionJobCommand.d.ts +3 -0
  4. package/dist-types/commands/DescribeRxNormInferenceJobCommand.d.ts +3 -0
  5. package/dist-types/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +3 -0
  6. package/dist-types/commands/DetectEntitiesCommand.d.ts +3 -0
  7. package/dist-types/commands/DetectEntitiesV2Command.d.ts +3 -0
  8. package/dist-types/commands/DetectPHICommand.d.ts +3 -0
  9. package/dist-types/commands/InferICD10CMCommand.d.ts +3 -0
  10. package/dist-types/commands/InferRxNormCommand.d.ts +3 -0
  11. package/dist-types/commands/InferSNOMEDCTCommand.d.ts +3 -0
  12. package/dist-types/commands/ListEntitiesDetectionV2JobsCommand.d.ts +10 -0
  13. package/dist-types/commands/ListICD10CMInferenceJobsCommand.d.ts +10 -0
  14. package/dist-types/commands/ListPHIDetectionJobsCommand.d.ts +10 -0
  15. package/dist-types/commands/ListRxNormInferenceJobsCommand.d.ts +10 -0
  16. package/dist-types/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +10 -0
  17. package/dist-types/commands/StartEntitiesDetectionV2JobCommand.d.ts +15 -0
  18. package/dist-types/commands/StartICD10CMInferenceJobCommand.d.ts +15 -0
  19. package/dist-types/commands/StartPHIDetectionJobCommand.d.ts +15 -0
  20. package/dist-types/commands/StartRxNormInferenceJobCommand.d.ts +15 -0
  21. package/dist-types/commands/StartSNOMEDCTInferenceJobCommand.d.ts +15 -0
  22. package/dist-types/commands/StopEntitiesDetectionV2JobCommand.d.ts +3 -0
  23. package/dist-types/commands/StopICD10CMInferenceJobCommand.d.ts +3 -0
  24. package/dist-types/commands/StopPHIDetectionJobCommand.d.ts +3 -0
  25. package/dist-types/commands/StopRxNormInferenceJobCommand.d.ts +3 -0
  26. package/dist-types/commands/StopSNOMEDCTInferenceJobCommand.d.ts +3 -0
  27. package/package.json +8 -8
@@ -27,6 +27,9 @@ export interface DescribeEntitiesDetectionV2JobCommandOutput extends DescribeEnt
27
27
  * import { ComprehendMedicalClient, DescribeEntitiesDetectionV2JobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, DescribeEntitiesDetectionV2JobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // DescribeEntitiesDetectionV2JobRequest
31
+ * JobId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeEntitiesDetectionV2JobCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DescribeICD10CMInferenceJobCommandOutput extends DescribeICD10C
27
27
  * import { ComprehendMedicalClient, DescribeICD10CMInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, DescribeICD10CMInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // DescribeICD10CMInferenceJobRequest
31
+ * JobId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeICD10CMInferenceJobCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DescribePHIDetectionJobCommandOutput extends DescribePHIDetecti
27
27
  * import { ComprehendMedicalClient, DescribePHIDetectionJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, DescribePHIDetectionJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // DescribePHIDetectionJobRequest
31
+ * JobId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribePHIDetectionJobCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DescribeRxNormInferenceJobCommandOutput extends DescribeRxNormI
27
27
  * import { ComprehendMedicalClient, DescribeRxNormInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, DescribeRxNormInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // DescribeRxNormInferenceJobRequest
31
+ * JobId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeRxNormInferenceJobCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -28,6 +28,9 @@ export interface DescribeSNOMEDCTInferenceJobCommandOutput extends DescribeSNOME
28
28
  * import { ComprehendMedicalClient, DescribeSNOMEDCTInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, DescribeSNOMEDCTInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // DescribeSNOMEDCTInferenceJobRequest
32
+ * JobId: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DescribeSNOMEDCTInferenceJobCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -31,6 +31,9 @@ export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __M
31
31
  * import { ComprehendMedicalClient, DetectEntitiesCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
32
32
  * // const { ComprehendMedicalClient, DetectEntitiesCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
33
33
  * const client = new ComprehendMedicalClient(config);
34
+ * const input = { // DetectEntitiesRequest
35
+ * Text: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new DetectEntitiesCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -35,6 +35,9 @@ export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response,
35
35
  * import { ComprehendMedicalClient, DetectEntitiesV2Command } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
36
36
  * // const { ComprehendMedicalClient, DetectEntitiesV2Command } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
37
37
  * const client = new ComprehendMedicalClient(config);
38
+ * const input = { // DetectEntitiesV2Request
39
+ * Text: "STRING_VALUE", // required
40
+ * };
38
41
  * const command = new DetectEntitiesV2Command(input);
39
42
  * const response = await client.send(command);
40
43
  * ```
@@ -28,6 +28,9 @@ export interface DetectPHICommandOutput extends DetectPHIResponse, __MetadataBea
28
28
  * import { ComprehendMedicalClient, DetectPHICommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, DetectPHICommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // DetectPHIRequest
32
+ * Text: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DetectPHICommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -29,6 +29,9 @@ export interface InferICD10CMCommandOutput extends InferICD10CMResponse, __Metad
29
29
  * import { ComprehendMedicalClient, InferICD10CMCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
30
30
  * // const { ComprehendMedicalClient, InferICD10CMCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
31
31
  * const client = new ComprehendMedicalClient(config);
32
+ * const input = { // InferICD10CMRequest
33
+ * Text: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new InferICD10CMCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -28,6 +28,9 @@ export interface InferRxNormCommandOutput extends InferRxNormResponse, __Metadat
28
28
  * import { ComprehendMedicalClient, InferRxNormCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, InferRxNormCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // InferRxNormRequest
32
+ * Text: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new InferRxNormCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -27,6 +27,9 @@ export interface InferSNOMEDCTCommandOutput extends InferSNOMEDCTResponse, __Met
27
27
  * import { ComprehendMedicalClient, InferSNOMEDCTCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, InferSNOMEDCTCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // InferSNOMEDCTRequest
31
+ * Text: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new InferSNOMEDCTCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,16 @@ export interface ListEntitiesDetectionV2JobsCommandOutput extends ListEntitiesDe
26
26
  * import { ComprehendMedicalClient, ListEntitiesDetectionV2JobsCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
27
27
  * // const { ComprehendMedicalClient, ListEntitiesDetectionV2JobsCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
28
28
  * const client = new ComprehendMedicalClient(config);
29
+ * const input = { // ListEntitiesDetectionV2JobsRequest
30
+ * Filter: { // ComprehendMedicalAsyncJobFilter
31
+ * JobName: "STRING_VALUE",
32
+ * JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
33
+ * SubmitTimeBefore: new Date("TIMESTAMP"),
34
+ * SubmitTimeAfter: new Date("TIMESTAMP"),
35
+ * },
36
+ * NextToken: "STRING_VALUE",
37
+ * MaxResults: Number("int"),
38
+ * };
29
39
  * const command = new ListEntitiesDetectionV2JobsCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -26,6 +26,16 @@ export interface ListICD10CMInferenceJobsCommandOutput extends ListICD10CMInfere
26
26
  * import { ComprehendMedicalClient, ListICD10CMInferenceJobsCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
27
27
  * // const { ComprehendMedicalClient, ListICD10CMInferenceJobsCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
28
28
  * const client = new ComprehendMedicalClient(config);
29
+ * const input = { // ListICD10CMInferenceJobsRequest
30
+ * Filter: { // ComprehendMedicalAsyncJobFilter
31
+ * JobName: "STRING_VALUE",
32
+ * JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
33
+ * SubmitTimeBefore: new Date("TIMESTAMP"),
34
+ * SubmitTimeAfter: new Date("TIMESTAMP"),
35
+ * },
36
+ * NextToken: "STRING_VALUE",
37
+ * MaxResults: Number("int"),
38
+ * };
29
39
  * const command = new ListICD10CMInferenceJobsCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -27,6 +27,16 @@ export interface ListPHIDetectionJobsCommandOutput extends ListPHIDetectionJobsR
27
27
  * import { ComprehendMedicalClient, ListPHIDetectionJobsCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, ListPHIDetectionJobsCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // ListPHIDetectionJobsRequest
31
+ * Filter: { // ComprehendMedicalAsyncJobFilter
32
+ * JobName: "STRING_VALUE",
33
+ * JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
34
+ * SubmitTimeBefore: new Date("TIMESTAMP"),
35
+ * SubmitTimeAfter: new Date("TIMESTAMP"),
36
+ * },
37
+ * NextToken: "STRING_VALUE",
38
+ * MaxResults: Number("int"),
39
+ * };
30
40
  * const command = new ListPHIDetectionJobsCommand(input);
31
41
  * const response = await client.send(command);
32
42
  * ```
@@ -26,6 +26,16 @@ export interface ListRxNormInferenceJobsCommandOutput extends ListRxNormInferenc
26
26
  * import { ComprehendMedicalClient, ListRxNormInferenceJobsCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
27
27
  * // const { ComprehendMedicalClient, ListRxNormInferenceJobsCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
28
28
  * const client = new ComprehendMedicalClient(config);
29
+ * const input = { // ListRxNormInferenceJobsRequest
30
+ * Filter: { // ComprehendMedicalAsyncJobFilter
31
+ * JobName: "STRING_VALUE",
32
+ * JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
33
+ * SubmitTimeBefore: new Date("TIMESTAMP"),
34
+ * SubmitTimeAfter: new Date("TIMESTAMP"),
35
+ * },
36
+ * NextToken: "STRING_VALUE",
37
+ * MaxResults: Number("int"),
38
+ * };
29
39
  * const command = new ListRxNormInferenceJobsCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -28,6 +28,16 @@ export interface ListSNOMEDCTInferenceJobsCommandOutput extends ListSNOMEDCTInfe
28
28
  * import { ComprehendMedicalClient, ListSNOMEDCTInferenceJobsCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, ListSNOMEDCTInferenceJobsCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // ListSNOMEDCTInferenceJobsRequest
32
+ * Filter: { // ComprehendMedicalAsyncJobFilter
33
+ * JobName: "STRING_VALUE",
34
+ * JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
35
+ * SubmitTimeBefore: new Date("TIMESTAMP"),
36
+ * SubmitTimeAfter: new Date("TIMESTAMP"),
37
+ * },
38
+ * NextToken: "STRING_VALUE",
39
+ * MaxResults: Number("int"),
40
+ * };
31
41
  * const command = new ListSNOMEDCTInferenceJobsCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
@@ -27,6 +27,21 @@ export interface StartEntitiesDetectionV2JobCommandOutput extends StartEntitiesD
27
27
  * import { ComprehendMedicalClient, StartEntitiesDetectionV2JobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, StartEntitiesDetectionV2JobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // StartEntitiesDetectionV2JobRequest
31
+ * InputDataConfig: { // InputDataConfig
32
+ * S3Bucket: "STRING_VALUE", // required
33
+ * S3Key: "STRING_VALUE",
34
+ * },
35
+ * OutputDataConfig: { // OutputDataConfig
36
+ * S3Bucket: "STRING_VALUE", // required
37
+ * S3Key: "STRING_VALUE",
38
+ * },
39
+ * DataAccessRoleArn: "STRING_VALUE", // required
40
+ * JobName: "STRING_VALUE",
41
+ * ClientRequestToken: "STRING_VALUE",
42
+ * KMSKey: "STRING_VALUE",
43
+ * LanguageCode: "en", // required
44
+ * };
30
45
  * const command = new StartEntitiesDetectionV2JobCommand(input);
31
46
  * const response = await client.send(command);
32
47
  * ```
@@ -28,6 +28,21 @@ export interface StartICD10CMInferenceJobCommandOutput extends StartICD10CMInfer
28
28
  * import { ComprehendMedicalClient, StartICD10CMInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, StartICD10CMInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // StartICD10CMInferenceJobRequest
32
+ * InputDataConfig: { // InputDataConfig
33
+ * S3Bucket: "STRING_VALUE", // required
34
+ * S3Key: "STRING_VALUE",
35
+ * },
36
+ * OutputDataConfig: { // OutputDataConfig
37
+ * S3Bucket: "STRING_VALUE", // required
38
+ * S3Key: "STRING_VALUE",
39
+ * },
40
+ * DataAccessRoleArn: "STRING_VALUE", // required
41
+ * JobName: "STRING_VALUE",
42
+ * ClientRequestToken: "STRING_VALUE",
43
+ * KMSKey: "STRING_VALUE",
44
+ * LanguageCode: "en", // required
45
+ * };
31
46
  * const command = new StartICD10CMInferenceJobCommand(input);
32
47
  * const response = await client.send(command);
33
48
  * ```
@@ -27,6 +27,21 @@ export interface StartPHIDetectionJobCommandOutput extends StartPHIDetectionJobR
27
27
  * import { ComprehendMedicalClient, StartPHIDetectionJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
28
28
  * // const { ComprehendMedicalClient, StartPHIDetectionJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
29
29
  * const client = new ComprehendMedicalClient(config);
30
+ * const input = { // StartPHIDetectionJobRequest
31
+ * InputDataConfig: { // InputDataConfig
32
+ * S3Bucket: "STRING_VALUE", // required
33
+ * S3Key: "STRING_VALUE",
34
+ * },
35
+ * OutputDataConfig: { // OutputDataConfig
36
+ * S3Bucket: "STRING_VALUE", // required
37
+ * S3Key: "STRING_VALUE",
38
+ * },
39
+ * DataAccessRoleArn: "STRING_VALUE", // required
40
+ * JobName: "STRING_VALUE",
41
+ * ClientRequestToken: "STRING_VALUE",
42
+ * KMSKey: "STRING_VALUE",
43
+ * LanguageCode: "en", // required
44
+ * };
30
45
  * const command = new StartPHIDetectionJobCommand(input);
31
46
  * const response = await client.send(command);
32
47
  * ```
@@ -28,6 +28,21 @@ export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferen
28
28
  * import { ComprehendMedicalClient, StartRxNormInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, StartRxNormInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // StartRxNormInferenceJobRequest
32
+ * InputDataConfig: { // InputDataConfig
33
+ * S3Bucket: "STRING_VALUE", // required
34
+ * S3Key: "STRING_VALUE",
35
+ * },
36
+ * OutputDataConfig: { // OutputDataConfig
37
+ * S3Bucket: "STRING_VALUE", // required
38
+ * S3Key: "STRING_VALUE",
39
+ * },
40
+ * DataAccessRoleArn: "STRING_VALUE", // required
41
+ * JobName: "STRING_VALUE",
42
+ * ClientRequestToken: "STRING_VALUE",
43
+ * KMSKey: "STRING_VALUE",
44
+ * LanguageCode: "en", // required
45
+ * };
31
46
  * const command = new StartRxNormInferenceJobCommand(input);
32
47
  * const response = await client.send(command);
33
48
  * ```
@@ -28,6 +28,21 @@ export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInf
28
28
  * import { ComprehendMedicalClient, StartSNOMEDCTInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, StartSNOMEDCTInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // StartSNOMEDCTInferenceJobRequest
32
+ * InputDataConfig: { // InputDataConfig
33
+ * S3Bucket: "STRING_VALUE", // required
34
+ * S3Key: "STRING_VALUE",
35
+ * },
36
+ * OutputDataConfig: { // OutputDataConfig
37
+ * S3Bucket: "STRING_VALUE", // required
38
+ * S3Key: "STRING_VALUE",
39
+ * },
40
+ * DataAccessRoleArn: "STRING_VALUE", // required
41
+ * JobName: "STRING_VALUE",
42
+ * ClientRequestToken: "STRING_VALUE",
43
+ * KMSKey: "STRING_VALUE",
44
+ * LanguageCode: "en", // required
45
+ * };
31
46
  * const command = new StartSNOMEDCTInferenceJobCommand(input);
32
47
  * const response = await client.send(command);
33
48
  * ```
@@ -26,6 +26,9 @@ export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDet
26
26
  * import { ComprehendMedicalClient, StopEntitiesDetectionV2JobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
27
27
  * // const { ComprehendMedicalClient, StopEntitiesDetectionV2JobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
28
28
  * const client = new ComprehendMedicalClient(config);
29
+ * const input = { // StopEntitiesDetectionV2JobRequest
30
+ * JobId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopEntitiesDetectionV2JobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferen
26
26
  * import { ComprehendMedicalClient, StopICD10CMInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
27
27
  * // const { ComprehendMedicalClient, StopICD10CMInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
28
28
  * const client = new ComprehendMedicalClient(config);
29
+ * const input = { // StopICD10CMInferenceJobRequest
30
+ * JobId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopICD10CMInferenceJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobRes
26
26
  * import { ComprehendMedicalClient, StopPHIDetectionJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
27
27
  * // const { ComprehendMedicalClient, StopPHIDetectionJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
28
28
  * const client = new ComprehendMedicalClient(config);
29
+ * const input = { // StopPHIDetectionJobRequest
30
+ * JobId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopPHIDetectionJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInference
26
26
  * import { ComprehendMedicalClient, StopRxNormInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
27
27
  * // const { ComprehendMedicalClient, StopRxNormInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
28
28
  * const client = new ComprehendMedicalClient(config);
29
+ * const input = { // StopRxNormInferenceJobRequest
30
+ * JobId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopRxNormInferenceJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,9 @@ export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInfer
28
28
  * import { ComprehendMedicalClient, StopSNOMEDCTInferenceJobCommand } from "@aws-sdk/client-comprehendmedical"; // ES Modules import
29
29
  * // const { ComprehendMedicalClient, StopSNOMEDCTInferenceJobCommand } = require("@aws-sdk/client-comprehendmedical"); // CommonJS import
30
30
  * const client = new ComprehendMedicalClient(config);
31
+ * const input = { // StopSNOMEDCTInferenceJobRequest
32
+ * JobId: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new StopSNOMEDCTInferenceJobCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-comprehendmedical",
3
3
  "description": "AWS SDK for JavaScript Comprehendmedical Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"