@aws-sdk/client-comprehendmedical 3.295.0 → 3.297.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 (31) hide show
  1. package/dist-types/ComprehendMedical.d.ts +27 -0
  2. package/dist-types/ComprehendMedicalClient.d.ts +24 -4
  3. package/dist-types/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +16 -0
  4. package/dist-types/commands/DescribeICD10CMInferenceJobCommand.d.ts +16 -0
  5. package/dist-types/commands/DescribePHIDetectionJobCommand.d.ts +16 -0
  6. package/dist-types/commands/DescribeRxNormInferenceJobCommand.d.ts +16 -0
  7. package/dist-types/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +16 -0
  8. package/dist-types/commands/DetectEntitiesCommand.d.ts +16 -0
  9. package/dist-types/commands/DetectEntitiesV2Command.d.ts +16 -0
  10. package/dist-types/commands/DetectPHICommand.d.ts +16 -0
  11. package/dist-types/commands/InferICD10CMCommand.d.ts +16 -0
  12. package/dist-types/commands/InferRxNormCommand.d.ts +16 -0
  13. package/dist-types/commands/InferSNOMEDCTCommand.d.ts +16 -0
  14. package/dist-types/commands/ListEntitiesDetectionV2JobsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListICD10CMInferenceJobsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListPHIDetectionJobsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListRxNormInferenceJobsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +16 -0
  19. package/dist-types/commands/StartEntitiesDetectionV2JobCommand.d.ts +16 -0
  20. package/dist-types/commands/StartICD10CMInferenceJobCommand.d.ts +16 -0
  21. package/dist-types/commands/StartPHIDetectionJobCommand.d.ts +16 -0
  22. package/dist-types/commands/StartRxNormInferenceJobCommand.d.ts +16 -0
  23. package/dist-types/commands/StartSNOMEDCTInferenceJobCommand.d.ts +16 -0
  24. package/dist-types/commands/StopEntitiesDetectionV2JobCommand.d.ts +16 -0
  25. package/dist-types/commands/StopICD10CMInferenceJobCommand.d.ts +16 -0
  26. package/dist-types/commands/StopPHIDetectionJobCommand.d.ts +16 -0
  27. package/dist-types/commands/StopRxNormInferenceJobCommand.d.ts +16 -0
  28. package/dist-types/commands/StopSNOMEDCTInferenceJobCommand.d.ts +16 -0
  29. package/dist-types/models/ComprehendMedicalServiceException.d.ts +2 -0
  30. package/dist-types/models/models_0.d.ts +246 -0
  31. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
5
5
  import { StartRxNormInferenceJobRequest, StartRxNormInferenceJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartRxNormInferenceJobCommand}.
8
10
  */
9
11
  export interface StartRxNormInferenceJobCommandInput extends StartRxNormInferenceJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartRxNormInferenceJobCommand}.
13
17
  */
14
18
  export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferenceJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Starts an asynchronous job to detect medication entities and link them to the RxNorm
18
23
  * ontology. Use the <code>DescribeRxNormInferenceJob</code> operation to track the status of a
19
24
  * job.</p>
@@ -27,6 +32,8 @@ export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferen
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param StartRxNormInferenceJobCommandInput - {@link StartRxNormInferenceJobCommandInput}
36
+ * @returns {@link StartRxNormInferenceJobCommandOutput}
30
37
  * @see {@link StartRxNormInferenceJobCommandInput} for command's `input` shape.
31
38
  * @see {@link StartRxNormInferenceJobCommandOutput} for command's `response` shape.
32
39
  * @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferen
52
59
  export declare class StartRxNormInferenceJobCommand extends $Command<StartRxNormInferenceJobCommandInput, StartRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
53
60
  readonly input: StartRxNormInferenceJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StartRxNormInferenceJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartRxNormInferenceJobCommandInput, StartRxNormInferenceJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
5
5
  import { StartSNOMEDCTInferenceJobRequest, StartSNOMEDCTInferenceJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartSNOMEDCTInferenceJobCommand}.
8
10
  */
9
11
  export interface StartSNOMEDCTInferenceJobCommandInput extends StartSNOMEDCTInferenceJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartSNOMEDCTInferenceJobCommand}.
13
17
  */
14
18
  export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInferenceJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Starts an asynchronous job to detect medical concepts and link them to the SNOMED-CT ontology. Use the DescribeSNOMEDCTInferenceJob operation to track the status of a job.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInf
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param StartSNOMEDCTInferenceJobCommandInput - {@link StartSNOMEDCTInferenceJobCommandInput}
36
+ * @returns {@link StartSNOMEDCTInferenceJobCommandOutput}
30
37
  * @see {@link StartSNOMEDCTInferenceJobCommandInput} for command's `input` shape.
31
38
  * @see {@link StartSNOMEDCTInferenceJobCommandOutput} for command's `response` shape.
32
39
  * @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInf
52
59
  export declare class StartSNOMEDCTInferenceJobCommand extends $Command<StartSNOMEDCTInferenceJobCommandInput, StartSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
53
60
  readonly input: StartSNOMEDCTInferenceJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StartSNOMEDCTInferenceJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSNOMEDCTInferenceJobCommandInput, StartSNOMEDCTInferenceJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
5
5
  import { StopEntitiesDetectionV2JobRequest, StopEntitiesDetectionV2JobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopEntitiesDetectionV2JobCommand}.
8
10
  */
9
11
  export interface StopEntitiesDetectionV2JobCommandInput extends StopEntitiesDetectionV2JobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopEntitiesDetectionV2JobCommand}.
13
17
  */
14
18
  export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDetectionV2JobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops a medical entities detection job in progress.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDet
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopEntitiesDetectionV2JobCommandInput - {@link StopEntitiesDetectionV2JobCommandInput}
34
+ * @returns {@link StopEntitiesDetectionV2JobCommandOutput}
28
35
  * @see {@link StopEntitiesDetectionV2JobCommandInput} for command's `input` shape.
29
36
  * @see {@link StopEntitiesDetectionV2JobCommandOutput} for command's `response` shape.
30
37
  * @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
@@ -45,11 +52,20 @@ export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDet
45
52
  export declare class StopEntitiesDetectionV2JobCommand extends $Command<StopEntitiesDetectionV2JobCommandInput, StopEntitiesDetectionV2JobCommandOutput, ComprehendMedicalClientResolvedConfig> {
46
53
  readonly input: StopEntitiesDetectionV2JobCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: StopEntitiesDetectionV2JobCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopEntitiesDetectionV2JobCommandInput, StopEntitiesDetectionV2JobCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
5
5
  import { StopICD10CMInferenceJobRequest, StopICD10CMInferenceJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopICD10CMInferenceJobCommand}.
8
10
  */
9
11
  export interface StopICD10CMInferenceJobCommandInput extends StopICD10CMInferenceJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopICD10CMInferenceJobCommand}.
13
17
  */
14
18
  export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferenceJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops an InferICD10CM inference job in progress.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferen
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopICD10CMInferenceJobCommandInput - {@link StopICD10CMInferenceJobCommandInput}
34
+ * @returns {@link StopICD10CMInferenceJobCommandOutput}
28
35
  * @see {@link StopICD10CMInferenceJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StopICD10CMInferenceJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
@@ -45,11 +52,20 @@ export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferen
45
52
  export declare class StopICD10CMInferenceJobCommand extends $Command<StopICD10CMInferenceJobCommandInput, StopICD10CMInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
46
53
  readonly input: StopICD10CMInferenceJobCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: StopICD10CMInferenceJobCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopICD10CMInferenceJobCommandInput, StopICD10CMInferenceJobCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
5
5
  import { StopPHIDetectionJobRequest, StopPHIDetectionJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopPHIDetectionJobCommand}.
8
10
  */
9
11
  export interface StopPHIDetectionJobCommandInput extends StopPHIDetectionJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopPHIDetectionJobCommand}.
13
17
  */
14
18
  export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops a protected health information (PHI) detection job in progress.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopPHIDetectionJobCommandInput - {@link StopPHIDetectionJobCommandInput}
34
+ * @returns {@link StopPHIDetectionJobCommandOutput}
28
35
  * @see {@link StopPHIDetectionJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StopPHIDetectionJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
@@ -45,11 +52,20 @@ export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobRes
45
52
  export declare class StopPHIDetectionJobCommand extends $Command<StopPHIDetectionJobCommandInput, StopPHIDetectionJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
46
53
  readonly input: StopPHIDetectionJobCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: StopPHIDetectionJobCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopPHIDetectionJobCommandInput, StopPHIDetectionJobCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
5
5
  import { StopRxNormInferenceJobRequest, StopRxNormInferenceJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopRxNormInferenceJobCommand}.
8
10
  */
9
11
  export interface StopRxNormInferenceJobCommandInput extends StopRxNormInferenceJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopRxNormInferenceJobCommand}.
13
17
  */
14
18
  export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInferenceJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops an InferRxNorm inference job in progress.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInference
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopRxNormInferenceJobCommandInput - {@link StopRxNormInferenceJobCommandInput}
34
+ * @returns {@link StopRxNormInferenceJobCommandOutput}
28
35
  * @see {@link StopRxNormInferenceJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StopRxNormInferenceJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
@@ -45,11 +52,20 @@ export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInference
45
52
  export declare class StopRxNormInferenceJobCommand extends $Command<StopRxNormInferenceJobCommandInput, StopRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
46
53
  readonly input: StopRxNormInferenceJobCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: StopRxNormInferenceJobCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopRxNormInferenceJobCommandInput, StopRxNormInferenceJobCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
5
5
  import { StopSNOMEDCTInferenceJobRequest, StopSNOMEDCTInferenceJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopSNOMEDCTInferenceJobCommand}.
8
10
  */
9
11
  export interface StopSNOMEDCTInferenceJobCommandInput extends StopSNOMEDCTInferenceJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopSNOMEDCTInferenceJobCommand}.
13
17
  */
14
18
  export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInferenceJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Stops an InferSNOMEDCT inference job in progress.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInfer
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param StopSNOMEDCTInferenceJobCommandInput - {@link StopSNOMEDCTInferenceJobCommandInput}
36
+ * @returns {@link StopSNOMEDCTInferenceJobCommandOutput}
30
37
  * @see {@link StopSNOMEDCTInferenceJobCommandInput} for command's `input` shape.
31
38
  * @see {@link StopSNOMEDCTInferenceJobCommandOutput} for command's `response` shape.
32
39
  * @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInfer
52
59
  export declare class StopSNOMEDCTInferenceJobCommand extends $Command<StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
53
60
  readonly input: StopSNOMEDCTInferenceJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StopSNOMEDCTInferenceJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ComprehendMedical service.
4
6
  */
5
7
  export declare class ComprehendMedicalServiceException extends __ServiceException {