@aws-sdk/client-connecthealth 3.1077.0 → 3.1079.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 (56) hide show
  1. package/dist-cjs/index.js +27 -171
  2. package/dist-es/commandBuilder.js +10 -0
  3. package/dist-es/commands/ActivateSubscriptionCommand.js +2 -14
  4. package/dist-es/commands/CreateDomainCommand.js +2 -14
  5. package/dist-es/commands/CreateSubscriptionCommand.js +2 -14
  6. package/dist-es/commands/DeactivateSubscriptionCommand.js +2 -14
  7. package/dist-es/commands/DeleteDomainCommand.js +2 -14
  8. package/dist-es/commands/GetDomainCommand.js +2 -14
  9. package/dist-es/commands/GetMedicalScribeListeningSessionCommand.js +2 -14
  10. package/dist-es/commands/GetPatientInsightsJobCommand.js +2 -14
  11. package/dist-es/commands/GetSubscriptionCommand.js +2 -14
  12. package/dist-es/commands/ListDomainsCommand.js +2 -14
  13. package/dist-es/commands/ListSubscriptionsCommand.js +2 -14
  14. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  15. package/dist-es/commands/StartMedicalScribeListeningSessionCommand.js +2 -23
  16. package/dist-es/commands/StartPatientInsightsJobCommand.js +2 -14
  17. package/dist-es/commands/TagResourceCommand.js +2 -14
  18. package/dist-es/commands/UntagResourceCommand.js +2 -14
  19. package/dist-es/index.js +1 -0
  20. package/dist-types/commandBuilder.d.ts +22 -0
  21. package/dist-types/commands/ActivateSubscriptionCommand.d.ts +3 -8
  22. package/dist-types/commands/CreateDomainCommand.d.ts +3 -8
  23. package/dist-types/commands/CreateSubscriptionCommand.d.ts +3 -8
  24. package/dist-types/commands/DeactivateSubscriptionCommand.d.ts +3 -8
  25. package/dist-types/commands/DeleteDomainCommand.d.ts +3 -8
  26. package/dist-types/commands/GetDomainCommand.d.ts +3 -8
  27. package/dist-types/commands/GetMedicalScribeListeningSessionCommand.d.ts +3 -8
  28. package/dist-types/commands/GetPatientInsightsJobCommand.d.ts +3 -8
  29. package/dist-types/commands/GetSubscriptionCommand.d.ts +3 -8
  30. package/dist-types/commands/ListDomainsCommand.d.ts +3 -8
  31. package/dist-types/commands/ListSubscriptionsCommand.d.ts +3 -8
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  33. package/dist-types/commands/StartMedicalScribeListeningSessionCommand.d.ts +3 -8
  34. package/dist-types/commands/StartPatientInsightsJobCommand.d.ts +3 -8
  35. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  36. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  37. package/dist-types/index.d.ts +1 -0
  38. package/dist-types/ts3.4/commandBuilder.d.ts +52 -0
  39. package/dist-types/ts3.4/commands/ActivateSubscriptionCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/CreateSubscriptionCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/DeactivateSubscriptionCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/GetMedicalScribeListeningSessionCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/GetPatientInsightsJobCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/StartMedicalScribeListeningSessionCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/StartPatientInsightsJobCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/index.d.ts +1 -0
  56. package/package.json +11 -11
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  CreateSubscriptionInput,
10
4
  CreateSubscriptionOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateSubscriptionCommandInput
15
8
  extends CreateSubscriptionInput {}
16
9
  export interface CreateSubscriptionCommandOutput
@@ -22,22 +15,20 @@ declare const CreateSubscriptionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateSubscriptionCommandInput,
24
17
  CreateSubscriptionCommandOutput,
25
- ConnectHealthClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ConnectHealthClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateSubscriptionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateSubscriptionCommandInput,
33
26
  CreateSubscriptionCommandOutput,
34
- ConnectHealthClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ConnectHealthClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreateSubscriptionCommand extends CreateSubscriptionCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  DeactivateSubscriptionInput,
10
4
  DeactivateSubscriptionOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeactivateSubscriptionCommandInput
15
8
  extends DeactivateSubscriptionInput {}
16
9
  export interface DeactivateSubscriptionCommandOutput
@@ -22,22 +15,20 @@ declare const DeactivateSubscriptionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeactivateSubscriptionCommandInput,
24
17
  DeactivateSubscriptionCommandOutput,
25
- ConnectHealthClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ConnectHealthClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeactivateSubscriptionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeactivateSubscriptionCommandInput,
33
26
  DeactivateSubscriptionCommandOutput,
34
- ConnectHealthClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ConnectHealthClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DeactivateSubscriptionCommand extends DeactivateSubscriptionCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import { DeleteDomainInput, DeleteDomainOutput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteDomainCommandInput extends DeleteDomainInput {}
12
5
  export interface DeleteDomainCommandOutput
13
6
  extends DeleteDomainOutput,
@@ -18,22 +11,20 @@ declare const DeleteDomainCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteDomainCommandInput,
20
13
  DeleteDomainCommandOutput,
21
- ConnectHealthClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ConnectHealthClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteDomainCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteDomainCommandInput,
29
22
  DeleteDomainCommandOutput,
30
- ConnectHealthClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ConnectHealthClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeleteDomainCommand extends DeleteDomainCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import { GetDomainInput, GetDomainOutput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetDomainCommandInput extends GetDomainInput {}
12
5
  export interface GetDomainCommandOutput
13
6
  extends GetDomainOutput,
@@ -16,20 +9,18 @@ declare const GetDomainCommand_base: {
16
9
  new (input: GetDomainCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GetDomainCommandInput,
18
11
  GetDomainCommandOutput,
19
- ConnectHealthClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").ConnectHealthClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: GetDomainCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetDomainCommandInput,
25
18
  GetDomainCommandOutput,
26
- ConnectHealthClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").ConnectHealthClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class GetDomainCommand extends GetDomainCommand_base {
35
26
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  GetMedicalScribeListeningSessionInput,
10
4
  GetMedicalScribeListeningSessionOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetMedicalScribeListeningSessionCommandInput
15
8
  extends GetMedicalScribeListeningSessionInput {}
16
9
  export interface GetMedicalScribeListeningSessionCommandOutput
@@ -22,22 +15,20 @@ declare const GetMedicalScribeListeningSessionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetMedicalScribeListeningSessionCommandInput,
24
17
  GetMedicalScribeListeningSessionCommandOutput,
25
- ConnectHealthClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ConnectHealthClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetMedicalScribeListeningSessionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetMedicalScribeListeningSessionCommandInput,
33
26
  GetMedicalScribeListeningSessionCommandOutput,
34
- ConnectHealthClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ConnectHealthClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetMedicalScribeListeningSessionCommand extends GetMedicalScribeListeningSessionCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  GetPatientInsightsJobRequest,
10
4
  GetPatientInsightsJobResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetPatientInsightsJobCommandInput
15
8
  extends GetPatientInsightsJobRequest {}
16
9
  export interface GetPatientInsightsJobCommandOutput
@@ -22,22 +15,20 @@ declare const GetPatientInsightsJobCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetPatientInsightsJobCommandInput,
24
17
  GetPatientInsightsJobCommandOutput,
25
- ConnectHealthClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ConnectHealthClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetPatientInsightsJobCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetPatientInsightsJobCommandInput,
33
26
  GetPatientInsightsJobCommandOutput,
34
- ConnectHealthClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ConnectHealthClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetPatientInsightsJobCommand extends GetPatientInsightsJobCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  GetSubscriptionInput,
10
4
  GetSubscriptionOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetSubscriptionCommandInput extends GetSubscriptionInput {}
15
8
  export interface GetSubscriptionCommandOutput
16
9
  extends GetSubscriptionOutput,
@@ -21,22 +14,20 @@ declare const GetSubscriptionCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetSubscriptionCommandInput,
23
16
  GetSubscriptionCommandOutput,
24
- ConnectHealthClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").ConnectHealthClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: GetSubscriptionCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetSubscriptionCommandInput,
32
25
  GetSubscriptionCommandOutput,
33
- ConnectHealthClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").ConnectHealthClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetSubscriptionCommand extends GetSubscriptionCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import { ListDomainsInput, ListDomainsOutput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListDomainsCommandInput extends ListDomainsInput {}
12
5
  export interface ListDomainsCommandOutput
13
6
  extends ListDomainsOutput,
@@ -18,22 +11,20 @@ declare const ListDomainsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListDomainsCommandInput,
20
13
  ListDomainsCommandOutput,
21
- ConnectHealthClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ConnectHealthClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [ListDomainsCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListDomainsCommandInput,
29
22
  ListDomainsCommandOutput,
30
- ConnectHealthClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ConnectHealthClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListDomainsCommand extends ListDomainsCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  ListSubscriptionsInput,
10
4
  ListSubscriptionsOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListSubscriptionsCommandInput extends ListSubscriptionsInput {}
15
8
  export interface ListSubscriptionsCommandOutput
16
9
  extends ListSubscriptionsOutput,
@@ -21,22 +14,20 @@ declare const ListSubscriptionsCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListSubscriptionsCommandInput,
23
16
  ListSubscriptionsCommandOutput,
24
- ConnectHealthClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").ConnectHealthClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: ListSubscriptionsCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListSubscriptionsCommandInput,
32
25
  ListSubscriptionsCommandOutput,
33
- ConnectHealthClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").ConnectHealthClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListSubscriptionsCommand extends ListSubscriptionsCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  ListTagsForResourceInput,
10
4
  ListTagsForResourceOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceInput {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- ConnectHealthClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ConnectHealthClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- ConnectHealthClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ConnectHealthClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  StartMedicalScribeListeningSessionInput,
10
4
  StartMedicalScribeListeningSessionOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface StartMedicalScribeListeningSessionCommandInput
15
8
  extends StartMedicalScribeListeningSessionInput {}
16
9
  export interface StartMedicalScribeListeningSessionCommandOutput
@@ -22,22 +15,20 @@ declare const StartMedicalScribeListeningSessionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  StartMedicalScribeListeningSessionCommandInput,
24
17
  StartMedicalScribeListeningSessionCommandOutput,
25
- ConnectHealthClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ConnectHealthClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: StartMedicalScribeListeningSessionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  StartMedicalScribeListeningSessionCommandInput,
33
26
  StartMedicalScribeListeningSessionCommandOutput,
34
- ConnectHealthClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ConnectHealthClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class StartMedicalScribeListeningSessionCommand extends StartMedicalScribeListeningSessionCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import {
9
3
  StartPatientInsightsJobRequest,
10
4
  StartPatientInsightsJobResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface StartPatientInsightsJobCommandInput
15
8
  extends StartPatientInsightsJobRequest {}
16
9
  export interface StartPatientInsightsJobCommandOutput
@@ -22,22 +15,20 @@ declare const StartPatientInsightsJobCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  StartPatientInsightsJobCommandInput,
24
17
  StartPatientInsightsJobCommandOutput,
25
- ConnectHealthClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ConnectHealthClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: StartPatientInsightsJobCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  StartPatientInsightsJobCommandInput,
33
26
  StartPatientInsightsJobCommandOutput,
34
- ConnectHealthClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ConnectHealthClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class StartPatientInsightsJobCommand extends StartPatientInsightsJobCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import { TagResourceInput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface TagResourceCommandInput extends TagResourceInput {}
12
5
  export interface TagResourceCommandOutput extends __MetadataBearer {}
13
6
  declare const TagResourceCommand_base: {
@@ -16,22 +9,20 @@ declare const TagResourceCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  TagResourceCommandInput,
18
11
  TagResourceCommandOutput,
19
- ConnectHealthClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").ConnectHealthClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: TagResourceCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  TagResourceCommandInput,
27
20
  TagResourceCommandOutput,
28
- ConnectHealthClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").ConnectHealthClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class TagResourceCommand extends TagResourceCommand_base {
37
28
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ConnectHealthClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ConnectHealthClient";
8
2
  import { UntagResourceInput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface UntagResourceCommandInput extends UntagResourceInput {}
12
5
  export interface UntagResourceCommandOutput extends __MetadataBearer {}
13
6
  declare const UntagResourceCommand_base: {
@@ -16,22 +9,20 @@ declare const UntagResourceCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  UntagResourceCommandInput,
18
11
  UntagResourceCommandOutput,
19
- ConnectHealthClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").ConnectHealthClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: UntagResourceCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  UntagResourceCommandInput,
27
20
  UntagResourceCommandOutput,
28
- ConnectHealthClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").ConnectHealthClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
37
28
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ConnectHealthExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./pagination";
9
10
  export * from "./models/enums";