@aws-sdk/client-connecthealth 3.1087.0 → 3.1089.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.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ConnectHealth.d.ts +54 -71
- package/dist-types/ts3.4/ConnectHealthClient.d.ts +10 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -14
- package/dist-types/ts3.4/commands/ActivateSubscriptionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateSubscriptionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeactivateSubscriptionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetMedicalScribeListeningSessionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetPatientInsightsJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartMedicalScribeListeningSessionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartPatientInsightsJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +3 -9
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +41 -41
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeactivateSubscriptionInput,
|
|
4
|
-
DeactivateSubscriptionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeactivateSubscriptionInput, DeactivateSubscriptionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeactivateSubscriptionCommandInput
|
|
8
|
-
extends DeactivateSubscriptionInput {}
|
|
4
|
+
export interface DeactivateSubscriptionCommandInput extends DeactivateSubscriptionInput {}
|
|
9
5
|
export interface DeactivateSubscriptionCommandOutput
|
|
10
|
-
extends DeactivateSubscriptionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeactivateSubscriptionOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeactivateSubscriptionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeactivateSubscriptionCommandInput
|
|
9
|
+
input: DeactivateSubscriptionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeactivateSubscriptionCommandInput,
|
|
17
12
|
DeactivateSubscriptionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeactivateSubscriptionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeactivateSubscriptionCommandInput
|
|
18
|
+
input: DeactivateSubscriptionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeactivateSubscriptionCommandInput,
|
|
26
21
|
DeactivateSubscriptionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteDomainInput, DeleteDomainOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteDomainCommandInput extends DeleteDomainInput {}
|
|
5
|
-
export interface DeleteDomainCommandOutput
|
|
6
|
-
extends DeleteDomainOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDomainCommandOutput extends DeleteDomainOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteDomainCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteDomainCommandInput
|
|
8
|
+
input: DeleteDomainCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteDomainCommandInput,
|
|
13
11
|
DeleteDomainCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteDomainCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteDomainCommandInput
|
|
17
|
+
input: DeleteDomainCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteDomainCommandInput,
|
|
22
20
|
DeleteDomainCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetDomainInput, GetDomainOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDomainCommandInput extends GetDomainInput {}
|
|
5
|
-
export interface GetDomainCommandOutput
|
|
6
|
-
extends GetDomainOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetDomainCommandOutput extends GetDomainOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetDomainCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetDomainCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetDomainCommandInput,
|
|
11
11
|
GetDomainCommandOutput,
|
|
12
12
|
import("..").ConnectHealthClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetDomainCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetDomainCommandInput,
|
|
18
20
|
GetDomainCommandOutput,
|
|
19
21
|
import("..").ConnectHealthClientResolvedConfig,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetMedicalScribeListeningSessionOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetMedicalScribeListeningSessionCommandInput
|
|
8
|
-
extends GetMedicalScribeListeningSessionInput {}
|
|
7
|
+
export interface GetMedicalScribeListeningSessionCommandInput extends GetMedicalScribeListeningSessionInput {}
|
|
9
8
|
export interface GetMedicalScribeListeningSessionCommandOutput
|
|
10
|
-
extends GetMedicalScribeListeningSessionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetMedicalScribeListeningSessionOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetMedicalScribeListeningSessionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetMedicalScribeListeningSessionCommandInput
|
|
12
|
+
input: GetMedicalScribeListeningSessionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetMedicalScribeListeningSessionCommandInput,
|
|
17
15
|
GetMedicalScribeListeningSessionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetMedicalScribeListeningSessionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetMedicalScribeListeningSessionCommandInput
|
|
21
|
+
input: GetMedicalScribeListeningSessionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetMedicalScribeListeningSessionCommandInput,
|
|
26
24
|
GetMedicalScribeListeningSessionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetPatientInsightsJobRequest,
|
|
4
|
-
GetPatientInsightsJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetPatientInsightsJobRequest, GetPatientInsightsJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetPatientInsightsJobCommandInput
|
|
8
|
-
extends GetPatientInsightsJobRequest {}
|
|
4
|
+
export interface GetPatientInsightsJobCommandInput extends GetPatientInsightsJobRequest {}
|
|
9
5
|
export interface GetPatientInsightsJobCommandOutput
|
|
10
|
-
extends GetPatientInsightsJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetPatientInsightsJobResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetPatientInsightsJobCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetPatientInsightsJobCommandInput
|
|
9
|
+
input: GetPatientInsightsJobCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetPatientInsightsJobCommandInput,
|
|
17
12
|
GetPatientInsightsJobCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetPatientInsightsJobCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetPatientInsightsJobCommandInput
|
|
18
|
+
input: GetPatientInsightsJobCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetPatientInsightsJobCommandInput,
|
|
26
21
|
GetPatientInsightsJobCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSubscriptionInput,
|
|
4
|
-
GetSubscriptionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSubscriptionInput, GetSubscriptionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSubscriptionCommandInput extends GetSubscriptionInput {}
|
|
8
|
-
export interface GetSubscriptionCommandOutput
|
|
9
|
-
extends GetSubscriptionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSubscriptionCommandOutput extends GetSubscriptionOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetSubscriptionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSubscriptionCommandInput
|
|
8
|
+
input: GetSubscriptionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSubscriptionCommandInput,
|
|
16
11
|
GetSubscriptionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetSubscriptionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetSubscriptionCommandInput
|
|
17
|
+
input: GetSubscriptionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetSubscriptionCommandInput,
|
|
25
20
|
GetSubscriptionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListDomainsInput, ListDomainsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListDomainsCommandInput extends ListDomainsInput {}
|
|
5
|
-
export interface ListDomainsCommandOutput
|
|
6
|
-
extends ListDomainsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDomainsCommandOutput extends ListDomainsOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListDomainsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListDomainsCommandInput
|
|
8
|
+
input: ListDomainsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListDomainsCommandInput,
|
|
13
11
|
ListDomainsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSubscriptionsInput,
|
|
4
|
-
ListSubscriptionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSubscriptionsInput, ListSubscriptionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListSubscriptionsCommandInput extends ListSubscriptionsInput {}
|
|
8
|
-
export interface ListSubscriptionsCommandOutput
|
|
9
|
-
extends ListSubscriptionsOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSubscriptionsCommandOutput extends ListSubscriptionsOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListSubscriptionsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListSubscriptionsCommandInput
|
|
8
|
+
input: ListSubscriptionsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListSubscriptionsCommandInput,
|
|
16
11
|
ListSubscriptionsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListSubscriptionsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListSubscriptionsCommandInput
|
|
17
|
+
input: ListSubscriptionsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListSubscriptionsCommandInput,
|
|
25
20
|
ListSubscriptionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartMedicalScribeListeningSessionOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartMedicalScribeListeningSessionCommandInput
|
|
8
|
-
extends StartMedicalScribeListeningSessionInput {}
|
|
7
|
+
export interface StartMedicalScribeListeningSessionCommandInput extends StartMedicalScribeListeningSessionInput {}
|
|
9
8
|
export interface StartMedicalScribeListeningSessionCommandOutput
|
|
10
|
-
extends StartMedicalScribeListeningSessionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartMedicalScribeListeningSessionOutput, __MetadataBearer {}
|
|
12
10
|
declare const StartMedicalScribeListeningSessionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartMedicalScribeListeningSessionCommandInput
|
|
12
|
+
input: StartMedicalScribeListeningSessionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartMedicalScribeListeningSessionCommandInput,
|
|
17
15
|
StartMedicalScribeListeningSessionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartMedicalScribeListeningSessionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartMedicalScribeListeningSessionCommandInput
|
|
21
|
+
input: StartMedicalScribeListeningSessionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartMedicalScribeListeningSessionCommandInput,
|
|
26
24
|
StartMedicalScribeListeningSessionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartPatientInsightsJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartPatientInsightsJobCommandInput
|
|
8
|
-
extends StartPatientInsightsJobRequest {}
|
|
7
|
+
export interface StartPatientInsightsJobCommandInput extends StartPatientInsightsJobRequest {}
|
|
9
8
|
export interface StartPatientInsightsJobCommandOutput
|
|
10
|
-
extends StartPatientInsightsJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartPatientInsightsJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartPatientInsightsJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartPatientInsightsJobCommandInput
|
|
12
|
+
input: StartPatientInsightsJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartPatientInsightsJobCommandInput,
|
|
17
15
|
StartPatientInsightsJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartPatientInsightsJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartPatientInsightsJobCommandInput
|
|
21
|
+
input: StartPatientInsightsJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartPatientInsightsJobCommandInput,
|
|
26
24
|
StartPatientInsightsJobCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceInput {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
|
5
5
|
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UntagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UntagResourceCommandInput,
|
|
11
11
|
UntagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UntagResourceCommandInput,
|
|
20
20
|
UntagResourceCommandOutput,
|
|
@@ -22,7 +22,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
22
22
|
defaultSigningName: string;
|
|
23
23
|
};
|
|
24
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
-
options: T & ClientInputEndpointParameters
|
|
25
|
+
options: T & ClientInputEndpointParameters,
|
|
26
26
|
) => T & ClientResolvedEndpointParameters;
|
|
27
27
|
export declare const commonParams: {
|
|
28
28
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ConnectHealthExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,8 +3,7 @@ export declare const SubscriptionStatus: {
|
|
|
3
3
|
readonly DELETED: "DELETED";
|
|
4
4
|
readonly INACTIVE: "INACTIVE";
|
|
5
5
|
};
|
|
6
|
-
export type SubscriptionStatus =
|
|
7
|
-
(typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
6
|
+
export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
8
7
|
export declare const PostStreamArtifactGenerationStatus: {
|
|
9
8
|
readonly COMPLETED: "COMPLETED";
|
|
10
9
|
readonly FAILED: "FAILED";
|
|
@@ -20,8 +19,7 @@ export declare const CustomTemplateBase: {
|
|
|
20
19
|
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
21
20
|
readonly SIRP: "SIRP";
|
|
22
21
|
};
|
|
23
|
-
export type CustomTemplateBase =
|
|
24
|
-
(typeof CustomTemplateBase)[keyof typeof CustomTemplateBase];
|
|
22
|
+
export type CustomTemplateBase = (typeof CustomTemplateBase)[keyof typeof CustomTemplateBase];
|
|
25
23
|
export declare const ManagedNoteTemplate: {
|
|
26
24
|
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
27
25
|
readonly BIRP: "BIRP";
|
|
@@ -31,14 +29,12 @@ export declare const ManagedNoteTemplate: {
|
|
|
31
29
|
readonly PHYSICAL_SOAP: "PHYSICAL_SOAP";
|
|
32
30
|
readonly SIRP: "SIRP";
|
|
33
31
|
};
|
|
34
|
-
export type ManagedNoteTemplate =
|
|
35
|
-
(typeof ManagedNoteTemplate)[keyof typeof ManagedNoteTemplate];
|
|
32
|
+
export type ManagedNoteTemplate = (typeof ManagedNoteTemplate)[keyof typeof ManagedNoteTemplate];
|
|
36
33
|
export declare const EncryptionType: {
|
|
37
34
|
readonly AWS_OWNED_KEY: "AWS_OWNED_KEY";
|
|
38
35
|
readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY";
|
|
39
36
|
};
|
|
40
|
-
export type EncryptionType =
|
|
41
|
-
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
37
|
+
export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
|
|
42
38
|
export declare const DomainStatus: {
|
|
43
39
|
readonly ACTIVE: "ACTIVE";
|
|
44
40
|
readonly DELETED: "DELETED";
|
|
@@ -3,31 +3,23 @@ import { ConnectHealthServiceException as __BaseException } from "./ConnectHealt
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class InternalServerException extends __BaseException {
|
|
11
9
|
readonly name: "InternalServerException";
|
|
12
10
|
readonly $fault: "server";
|
|
13
11
|
$retryable: {};
|
|
14
|
-
constructor(
|
|
15
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
16
|
-
);
|
|
12
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
17
13
|
}
|
|
18
14
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
19
15
|
readonly name: "ResourceNotFoundException";
|
|
20
16
|
readonly $fault: "client";
|
|
21
|
-
constructor(
|
|
22
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
23
|
-
);
|
|
17
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
24
18
|
}
|
|
25
19
|
export declare class ValidationException extends __BaseException {
|
|
26
20
|
readonly name: "ValidationException";
|
|
27
21
|
readonly $fault: "client";
|
|
28
|
-
constructor(
|
|
29
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
30
|
-
);
|
|
22
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
31
23
|
}
|
|
32
24
|
export declare class ConflictException extends __BaseException {
|
|
33
25
|
readonly name: "ConflictException";
|
|
@@ -37,9 +29,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
37
29
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
38
30
|
readonly name: "ServiceQuotaExceededException";
|
|
39
31
|
readonly $fault: "client";
|
|
40
|
-
constructor(
|
|
41
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
42
|
-
);
|
|
32
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
43
33
|
}
|
|
44
34
|
export declare class ThrottlingException extends __BaseException {
|
|
45
35
|
readonly name: "ThrottlingException";
|
|
@@ -47,7 +37,5 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
47
37
|
$retryable: {
|
|
48
38
|
throttling: boolean;
|
|
49
39
|
};
|
|
50
|
-
constructor(
|
|
51
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
52
|
-
);
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
53
41
|
}
|
|
@@ -207,9 +207,7 @@ export interface MedicalScribePostStreamActionsResult {
|
|
|
207
207
|
}
|
|
208
208
|
export interface MedicalScribePostStreamActionSettingsResponse {
|
|
209
209
|
outputS3Uri: string | undefined;
|
|
210
|
-
clinicalNoteGenerationSettings:
|
|
211
|
-
| ClinicalNoteGenerationSettingsResponse
|
|
212
|
-
| undefined;
|
|
210
|
+
clinicalNoteGenerationSettings: ClinicalNoteGenerationSettingsResponse | undefined;
|
|
213
211
|
}
|
|
214
212
|
export interface MedicalScribeListeningSessionDetails {
|
|
215
213
|
sessionId?: string | undefined;
|
|
@@ -219,9 +217,7 @@ export interface MedicalScribeListeningSessionDetails {
|
|
|
219
217
|
mediaSampleRateHertz?: number | undefined;
|
|
220
218
|
mediaEncoding?: MedicalScribeMediaEncoding | undefined;
|
|
221
219
|
channelDefinitions?: MedicalScribeChannelDefinition[] | undefined;
|
|
222
|
-
postStreamActionSettings?:
|
|
223
|
-
| MedicalScribePostStreamActionSettingsResponse
|
|
224
|
-
| undefined;
|
|
220
|
+
postStreamActionSettings?: MedicalScribePostStreamActionSettingsResponse | undefined;
|
|
225
221
|
postStreamActionResult?: MedicalScribePostStreamActionsResult | undefined;
|
|
226
222
|
encounterContextProvided?: boolean | undefined;
|
|
227
223
|
streamStatus?: MedicalScribeStreamStatus | undefined;
|
|
@@ -229,9 +225,7 @@ export interface MedicalScribeListeningSessionDetails {
|
|
|
229
225
|
streamEndTime?: Date | undefined;
|
|
230
226
|
}
|
|
231
227
|
export interface GetMedicalScribeListeningSessionOutput {
|
|
232
|
-
medicalScribeListeningSessionDetails?:
|
|
233
|
-
| MedicalScribeListeningSessionDetails
|
|
234
|
-
| undefined;
|
|
228
|
+
medicalScribeListeningSessionDetails?: MedicalScribeListeningSessionDetails | undefined;
|
|
235
229
|
}
|
|
236
230
|
export interface GetPatientInsightsJobRequest {
|
|
237
231
|
domainId: string | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ConnectHealthClient } from "../ConnectHealthClient";
|
|
3
|
-
export interface ConnectHealthPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ConnectHealthPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ConnectHealthClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDomainsCommandInput,
|
|
4
|
-
ListDomainsCommandOutput,
|
|
5
|
-
} from "../commands/ListDomainsCommand";
|
|
2
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
6
3
|
import { ConnectHealthPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListDomains: (
|
|
8
5
|
config: ConnectHealthPaginationConfiguration,
|
|
@@ -8,26 +8,18 @@ export declare const getRuntimeConfig: (config: ConnectHealthClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
|
|
18
16
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
19
17
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
18
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
19
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
20
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
21
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
22
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
23
|
) => Promise<Uint8Array>;
|
|
32
24
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
25
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +47,8 @@ export declare const getRuntimeConfig: (config: ConnectHealthClientConfig) => {
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
51
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
52
|
endpoint?:
|
|
66
53
|
| ((
|
|
67
54
|
| string
|
|
@@ -83,7 +70,7 @@ export declare const getRuntimeConfig: (config: ConnectHealthClientConfig) => {
|
|
|
83
70
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
71
|
context?: {
|
|
85
72
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
73
|
+
},
|
|
87
74
|
) => import("@smithy/types").EndpointV2;
|
|
88
75
|
tls?: boolean;
|
|
89
76
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +83,13 @@ export declare const getRuntimeConfig: (config: ConnectHealthClientConfig) => {
|
|
|
96
83
|
signer?:
|
|
97
84
|
| import("@smithy/types").RequestSigner
|
|
98
85
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
86
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
87
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
88
|
signingEscapePath?: boolean;
|
|
102
89
|
systemClockOffset?: number;
|
|
103
90
|
signingRegion?: string;
|
|
104
91
|
signerConstructor?: new (
|
|
105
92
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
93
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
94
|
) => import("@smithy/types").RequestSigner;
|
|
108
95
|
};
|