@aws-sdk/client-connecthealth 3.1003.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/LICENSE +201 -0
- package/README.md +313 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +483 -0
- package/dist-cjs/models/ConnectHealthServiceException.js +12 -0
- package/dist-cjs/models/errors.js +99 -0
- package/dist-cjs/runtimeConfig.browser.js +43 -0
- package/dist-cjs/runtimeConfig.js +60 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +691 -0
- package/dist-es/ConnectHealth.js +45 -0
- package/dist-es/ConnectHealthClient.js +54 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/ActivateSubscriptionCommand.js +16 -0
- package/dist-es/commands/CreateDomainCommand.js +16 -0
- package/dist-es/commands/CreateSubscriptionCommand.js +16 -0
- package/dist-es/commands/DeactivateSubscriptionCommand.js +16 -0
- package/dist-es/commands/DeleteDomainCommand.js +16 -0
- package/dist-es/commands/GetDomainCommand.js +16 -0
- package/dist-es/commands/GetMedicalScribeListeningSessionCommand.js +16 -0
- package/dist-es/commands/GetPatientInsightsJobCommand.js +16 -0
- package/dist-es/commands/GetSubscriptionCommand.js +16 -0
- package/dist-es/commands/ListDomainsCommand.js +16 -0
- package/dist-es/commands/ListSubscriptionsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/StartMedicalScribeListeningSessionCommand.js +25 -0
- package/dist-es/commands/StartPatientInsightsJobCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/ConnectHealthServiceException.js +8 -0
- package/dist-es/models/enums.js +76 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDomainsPaginator.js +4 -0
- package/dist-es/pagination/ListSubscriptionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/runtimeConfig.browser.js +38 -0
- package/dist-es/runtimeConfig.js +55 -0
- package/dist-es/runtimeConfig.native.js +15 -0
- package/dist-es/runtimeConfig.shared.js +39 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +687 -0
- package/dist-types/ConnectHealth.d.ts +137 -0
- package/dist-types/ConnectHealthClient.d.ts +215 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/ActivateSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +101 -0
- package/dist-types/commands/CreateSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/DeactivateSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +79 -0
- package/dist-types/commands/GetDomainCommand.d.ts +95 -0
- package/dist-types/commands/GetMedicalScribeListeningSessionCommand.d.ts +140 -0
- package/dist-types/commands/GetPatientInsightsJobCommand.d.ts +128 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +85 -0
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +100 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +76 -0
- package/dist-types/commands/StartMedicalScribeListeningSessionCommand.d.ts +159 -0
- package/dist-types/commands/StartPatientInsightsJobCommand.d.ts +125 -0
- package/dist-types/commands/TagResourceCommand.d.ts +75 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +75 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/ConnectHealthServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +204 -0
- package/dist-types/models/errors.d.ts +90 -0
- package/dist-types/models/models_0.d.ts +1519 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSubscriptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/dist-types/runtimeConfig.d.ts +57 -0
- package/dist-types/runtimeConfig.native.d.ts +56 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +100 -0
- package/dist-types/ts3.4/ConnectHealth.d.ts +304 -0
- package/dist-types/ts3.4/ConnectHealthClient.d.ts +232 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/ActivateSubscriptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeactivateSubscriptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetMedicalScribeListeningSessionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPatientInsightsJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartMedicalScribeListeningSessionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartPatientInsightsJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/ConnectHealthServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +102 -0
- package/dist-types/ts3.4/models/errors.d.ts +53 -0
- package/dist-types/ts3.4/models/models_0.d.ts +470 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSubscriptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +105 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +100 -0
- package/package.json +105 -0
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EventStreamInputConfig,
|
|
3
|
+
EventStreamResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-eventstream";
|
|
5
|
+
import {
|
|
6
|
+
HostHeaderInputConfig,
|
|
7
|
+
HostHeaderResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-host-header";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EventStreamSerdeInputConfig,
|
|
20
|
+
EventStreamSerdeResolvedConfig,
|
|
21
|
+
} from "@smithy/eventstream-serde-config-resolver";
|
|
22
|
+
import {
|
|
23
|
+
EndpointInputConfig,
|
|
24
|
+
EndpointResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-endpoint";
|
|
26
|
+
import {
|
|
27
|
+
RetryInputConfig,
|
|
28
|
+
RetryResolvedConfig,
|
|
29
|
+
} from "@smithy/middleware-retry";
|
|
30
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
31
|
+
import {
|
|
32
|
+
DefaultsMode as __DefaultsMode,
|
|
33
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
34
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
35
|
+
Client as __Client,
|
|
36
|
+
} from "@smithy/smithy-client";
|
|
37
|
+
import {
|
|
38
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
39
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
40
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
41
|
+
Decoder as __Decoder,
|
|
42
|
+
Encoder as __Encoder,
|
|
43
|
+
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
44
|
+
HashConstructor as __HashConstructor,
|
|
45
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
46
|
+
Logger as __Logger,
|
|
47
|
+
Provider as __Provider,
|
|
48
|
+
StreamCollector as __StreamCollector,
|
|
49
|
+
UrlParser as __UrlParser,
|
|
50
|
+
AwsCredentialIdentityProvider,
|
|
51
|
+
Provider,
|
|
52
|
+
UserAgent as __UserAgent,
|
|
53
|
+
} from "@smithy/types";
|
|
54
|
+
import {
|
|
55
|
+
HttpAuthSchemeInputConfig,
|
|
56
|
+
HttpAuthSchemeResolvedConfig,
|
|
57
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
58
|
+
import {
|
|
59
|
+
ActivateSubscriptionCommandInput,
|
|
60
|
+
ActivateSubscriptionCommandOutput,
|
|
61
|
+
} from "./commands/ActivateSubscriptionCommand";
|
|
62
|
+
import {
|
|
63
|
+
CreateDomainCommandInput,
|
|
64
|
+
CreateDomainCommandOutput,
|
|
65
|
+
} from "./commands/CreateDomainCommand";
|
|
66
|
+
import {
|
|
67
|
+
CreateSubscriptionCommandInput,
|
|
68
|
+
CreateSubscriptionCommandOutput,
|
|
69
|
+
} from "./commands/CreateSubscriptionCommand";
|
|
70
|
+
import {
|
|
71
|
+
DeactivateSubscriptionCommandInput,
|
|
72
|
+
DeactivateSubscriptionCommandOutput,
|
|
73
|
+
} from "./commands/DeactivateSubscriptionCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteDomainCommandInput,
|
|
76
|
+
DeleteDomainCommandOutput,
|
|
77
|
+
} from "./commands/DeleteDomainCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetDomainCommandInput,
|
|
80
|
+
GetDomainCommandOutput,
|
|
81
|
+
} from "./commands/GetDomainCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetMedicalScribeListeningSessionCommandInput,
|
|
84
|
+
GetMedicalScribeListeningSessionCommandOutput,
|
|
85
|
+
} from "./commands/GetMedicalScribeListeningSessionCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetPatientInsightsJobCommandInput,
|
|
88
|
+
GetPatientInsightsJobCommandOutput,
|
|
89
|
+
} from "./commands/GetPatientInsightsJobCommand";
|
|
90
|
+
import {
|
|
91
|
+
GetSubscriptionCommandInput,
|
|
92
|
+
GetSubscriptionCommandOutput,
|
|
93
|
+
} from "./commands/GetSubscriptionCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListDomainsCommandInput,
|
|
96
|
+
ListDomainsCommandOutput,
|
|
97
|
+
} from "./commands/ListDomainsCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListSubscriptionsCommandInput,
|
|
100
|
+
ListSubscriptionsCommandOutput,
|
|
101
|
+
} from "./commands/ListSubscriptionsCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListTagsForResourceCommandInput,
|
|
104
|
+
ListTagsForResourceCommandOutput,
|
|
105
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
106
|
+
import {
|
|
107
|
+
StartMedicalScribeListeningSessionCommandInput,
|
|
108
|
+
StartMedicalScribeListeningSessionCommandOutput,
|
|
109
|
+
} from "./commands/StartMedicalScribeListeningSessionCommand";
|
|
110
|
+
import {
|
|
111
|
+
StartPatientInsightsJobCommandInput,
|
|
112
|
+
StartPatientInsightsJobCommandOutput,
|
|
113
|
+
} from "./commands/StartPatientInsightsJobCommand";
|
|
114
|
+
import {
|
|
115
|
+
TagResourceCommandInput,
|
|
116
|
+
TagResourceCommandOutput,
|
|
117
|
+
} from "./commands/TagResourceCommand";
|
|
118
|
+
import {
|
|
119
|
+
UntagResourceCommandInput,
|
|
120
|
+
UntagResourceCommandOutput,
|
|
121
|
+
} from "./commands/UntagResourceCommand";
|
|
122
|
+
import {
|
|
123
|
+
ClientInputEndpointParameters,
|
|
124
|
+
ClientResolvedEndpointParameters,
|
|
125
|
+
EndpointParameters,
|
|
126
|
+
} from "./endpoint/EndpointParameters";
|
|
127
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
128
|
+
export { __Client };
|
|
129
|
+
export type ServiceInputTypes =
|
|
130
|
+
| ActivateSubscriptionCommandInput
|
|
131
|
+
| CreateDomainCommandInput
|
|
132
|
+
| CreateSubscriptionCommandInput
|
|
133
|
+
| DeactivateSubscriptionCommandInput
|
|
134
|
+
| DeleteDomainCommandInput
|
|
135
|
+
| GetDomainCommandInput
|
|
136
|
+
| GetMedicalScribeListeningSessionCommandInput
|
|
137
|
+
| GetPatientInsightsJobCommandInput
|
|
138
|
+
| GetSubscriptionCommandInput
|
|
139
|
+
| ListDomainsCommandInput
|
|
140
|
+
| ListSubscriptionsCommandInput
|
|
141
|
+
| ListTagsForResourceCommandInput
|
|
142
|
+
| StartMedicalScribeListeningSessionCommandInput
|
|
143
|
+
| StartPatientInsightsJobCommandInput
|
|
144
|
+
| TagResourceCommandInput
|
|
145
|
+
| UntagResourceCommandInput;
|
|
146
|
+
export type ServiceOutputTypes =
|
|
147
|
+
| ActivateSubscriptionCommandOutput
|
|
148
|
+
| CreateDomainCommandOutput
|
|
149
|
+
| CreateSubscriptionCommandOutput
|
|
150
|
+
| DeactivateSubscriptionCommandOutput
|
|
151
|
+
| DeleteDomainCommandOutput
|
|
152
|
+
| GetDomainCommandOutput
|
|
153
|
+
| GetMedicalScribeListeningSessionCommandOutput
|
|
154
|
+
| GetPatientInsightsJobCommandOutput
|
|
155
|
+
| GetSubscriptionCommandOutput
|
|
156
|
+
| ListDomainsCommandOutput
|
|
157
|
+
| ListSubscriptionsCommandOutput
|
|
158
|
+
| ListTagsForResourceCommandOutput
|
|
159
|
+
| StartMedicalScribeListeningSessionCommandOutput
|
|
160
|
+
| StartPatientInsightsJobCommandOutput
|
|
161
|
+
| TagResourceCommandOutput
|
|
162
|
+
| UntagResourceCommandOutput;
|
|
163
|
+
export interface ClientDefaults
|
|
164
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
165
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
166
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
167
|
+
urlParser?: __UrlParser;
|
|
168
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
169
|
+
streamCollector?: __StreamCollector;
|
|
170
|
+
base64Decoder?: __Decoder;
|
|
171
|
+
base64Encoder?: __Encoder;
|
|
172
|
+
utf8Decoder?: __Decoder;
|
|
173
|
+
utf8Encoder?: __Encoder;
|
|
174
|
+
runtime?: string;
|
|
175
|
+
disableHostPrefix?: boolean;
|
|
176
|
+
serviceId?: string;
|
|
177
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
178
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
179
|
+
region?: string | __Provider<string>;
|
|
180
|
+
profile?: string;
|
|
181
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
182
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
183
|
+
maxAttempts?: number | __Provider<number>;
|
|
184
|
+
retryMode?: string | __Provider<string>;
|
|
185
|
+
logger?: __Logger;
|
|
186
|
+
extensions?: RuntimeExtension[];
|
|
187
|
+
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
188
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
189
|
+
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
190
|
+
}
|
|
191
|
+
export type ConnectHealthClientConfigType = Partial<
|
|
192
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
193
|
+
> &
|
|
194
|
+
ClientDefaults &
|
|
195
|
+
UserAgentInputConfig &
|
|
196
|
+
RetryInputConfig &
|
|
197
|
+
RegionInputConfig &
|
|
198
|
+
HostHeaderInputConfig &
|
|
199
|
+
EndpointInputConfig<EndpointParameters> &
|
|
200
|
+
EventStreamSerdeInputConfig &
|
|
201
|
+
HttpAuthSchemeInputConfig &
|
|
202
|
+
EventStreamInputConfig &
|
|
203
|
+
ClientInputEndpointParameters;
|
|
204
|
+
export interface ConnectHealthClientConfig
|
|
205
|
+
extends ConnectHealthClientConfigType {}
|
|
206
|
+
export type ConnectHealthClientResolvedConfigType =
|
|
207
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
208
|
+
Required<ClientDefaults> &
|
|
209
|
+
RuntimeExtensionsConfig &
|
|
210
|
+
UserAgentResolvedConfig &
|
|
211
|
+
RetryResolvedConfig &
|
|
212
|
+
RegionResolvedConfig &
|
|
213
|
+
HostHeaderResolvedConfig &
|
|
214
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
215
|
+
EventStreamSerdeResolvedConfig &
|
|
216
|
+
HttpAuthSchemeResolvedConfig &
|
|
217
|
+
EventStreamResolvedConfig &
|
|
218
|
+
ClientResolvedEndpointParameters;
|
|
219
|
+
export interface ConnectHealthClientResolvedConfig
|
|
220
|
+
extends ConnectHealthClientResolvedConfigType {}
|
|
221
|
+
export declare class ConnectHealthClient extends __Client<
|
|
222
|
+
__HttpHandlerOptions,
|
|
223
|
+
ServiceInputTypes,
|
|
224
|
+
ServiceOutputTypes,
|
|
225
|
+
ConnectHealthClientResolvedConfig
|
|
226
|
+
> {
|
|
227
|
+
readonly config: ConnectHealthClientResolvedConfig;
|
|
228
|
+
constructor(
|
|
229
|
+
...[configuration]: __CheckOptionalClientConfig<ConnectHealthClientConfig>
|
|
230
|
+
);
|
|
231
|
+
destroy(): void;
|
|
232
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpAuthScheme,
|
|
3
|
+
AwsCredentialIdentity,
|
|
4
|
+
AwsCredentialIdentityProvider,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { ConnectHealthHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): ConnectHealthHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { ConnectHealthClientResolvedConfig } from "../ConnectHealthClient";
|
|
15
|
+
export interface ConnectHealthHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface ConnectHealthHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
ConnectHealthClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
ConnectHealthHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultConnectHealthHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: ConnectHealthClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<ConnectHealthHttpAuthSchemeParameters>;
|
|
31
|
+
export interface ConnectHealthHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<ConnectHealthHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultConnectHealthHttpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: ConnectHealthHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
ActivateSubscriptionInput,
|
|
10
|
+
ActivateSubscriptionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ActivateSubscriptionCommandInput
|
|
15
|
+
extends ActivateSubscriptionInput {}
|
|
16
|
+
export interface ActivateSubscriptionCommandOutput
|
|
17
|
+
extends ActivateSubscriptionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ActivateSubscriptionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ActivateSubscriptionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ActivateSubscriptionCommandInput,
|
|
24
|
+
ActivateSubscriptionCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ActivateSubscriptionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ActivateSubscriptionCommandInput,
|
|
33
|
+
ActivateSubscriptionCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ActivateSubscriptionCommand extends ActivateSubscriptionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ActivateSubscriptionInput;
|
|
44
|
+
output: ActivateSubscriptionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ActivateSubscriptionCommandInput;
|
|
48
|
+
output: ActivateSubscriptionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import { CreateDomainInput, CreateDomainOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateDomainCommandInput extends CreateDomainInput {}
|
|
12
|
+
export interface CreateDomainCommandOutput
|
|
13
|
+
extends CreateDomainOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateDomainCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateDomainCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreateDomainCommandInput,
|
|
20
|
+
CreateDomainCommandOutput,
|
|
21
|
+
ConnectHealthClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateDomainCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreateDomainCommandInput,
|
|
29
|
+
CreateDomainCommandOutput,
|
|
30
|
+
ConnectHealthClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreateDomainCommand extends CreateDomainCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateDomainInput;
|
|
40
|
+
output: CreateDomainOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateDomainCommandInput;
|
|
44
|
+
output: CreateDomainCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateSubscriptionInput,
|
|
10
|
+
CreateSubscriptionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateSubscriptionCommandInput
|
|
15
|
+
extends CreateSubscriptionInput {}
|
|
16
|
+
export interface CreateSubscriptionCommandOutput
|
|
17
|
+
extends CreateSubscriptionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateSubscriptionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateSubscriptionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateSubscriptionCommandInput,
|
|
24
|
+
CreateSubscriptionCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateSubscriptionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateSubscriptionCommandInput,
|
|
33
|
+
CreateSubscriptionCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateSubscriptionCommand extends CreateSubscriptionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateSubscriptionInput;
|
|
44
|
+
output: CreateSubscriptionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateSubscriptionCommandInput;
|
|
48
|
+
output: CreateSubscriptionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
DeactivateSubscriptionInput,
|
|
10
|
+
DeactivateSubscriptionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeactivateSubscriptionCommandInput
|
|
15
|
+
extends DeactivateSubscriptionInput {}
|
|
16
|
+
export interface DeactivateSubscriptionCommandOutput
|
|
17
|
+
extends DeactivateSubscriptionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeactivateSubscriptionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeactivateSubscriptionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeactivateSubscriptionCommandInput,
|
|
24
|
+
DeactivateSubscriptionCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeactivateSubscriptionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeactivateSubscriptionCommandInput,
|
|
33
|
+
DeactivateSubscriptionCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeactivateSubscriptionCommand extends DeactivateSubscriptionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeactivateSubscriptionInput;
|
|
44
|
+
output: DeactivateSubscriptionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeactivateSubscriptionCommandInput;
|
|
48
|
+
output: DeactivateSubscriptionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import { DeleteDomainInput, DeleteDomainOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteDomainCommandInput extends DeleteDomainInput {}
|
|
12
|
+
export interface DeleteDomainCommandOutput
|
|
13
|
+
extends DeleteDomainOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteDomainCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteDomainCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteDomainCommandInput,
|
|
20
|
+
DeleteDomainCommandOutput,
|
|
21
|
+
ConnectHealthClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteDomainCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteDomainCommandInput,
|
|
29
|
+
DeleteDomainCommandOutput,
|
|
30
|
+
ConnectHealthClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteDomainCommand extends DeleteDomainCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteDomainInput;
|
|
40
|
+
output: DeleteDomainOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteDomainCommandInput;
|
|
44
|
+
output: DeleteDomainCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import { GetDomainInput, GetDomainOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetDomainCommandInput extends GetDomainInput {}
|
|
12
|
+
export interface GetDomainCommandOutput
|
|
13
|
+
extends GetDomainOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetDomainCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetDomainCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetDomainCommandInput,
|
|
20
|
+
GetDomainCommandOutput,
|
|
21
|
+
ConnectHealthClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetDomainCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetDomainCommandInput,
|
|
29
|
+
GetDomainCommandOutput,
|
|
30
|
+
ConnectHealthClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetDomainCommand extends GetDomainCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetDomainInput;
|
|
40
|
+
output: GetDomainOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetDomainCommandInput;
|
|
44
|
+
output: GetDomainCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
GetMedicalScribeListeningSessionInput,
|
|
10
|
+
GetMedicalScribeListeningSessionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetMedicalScribeListeningSessionCommandInput
|
|
15
|
+
extends GetMedicalScribeListeningSessionInput {}
|
|
16
|
+
export interface GetMedicalScribeListeningSessionCommandOutput
|
|
17
|
+
extends GetMedicalScribeListeningSessionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetMedicalScribeListeningSessionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetMedicalScribeListeningSessionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetMedicalScribeListeningSessionCommandInput,
|
|
24
|
+
GetMedicalScribeListeningSessionCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetMedicalScribeListeningSessionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetMedicalScribeListeningSessionCommandInput,
|
|
33
|
+
GetMedicalScribeListeningSessionCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetMedicalScribeListeningSessionCommand extends GetMedicalScribeListeningSessionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetMedicalScribeListeningSessionInput;
|
|
44
|
+
output: GetMedicalScribeListeningSessionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetMedicalScribeListeningSessionCommandInput;
|
|
48
|
+
output: GetMedicalScribeListeningSessionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|