@aws-sdk/client-connecthealth 3.1087.0 → 3.1088.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 (36) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/ConnectHealth.d.ts +54 -71
  3. package/dist-types/ts3.4/ConnectHealthClient.d.ts +10 -32
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +8 -14
  7. package/dist-types/ts3.4/commands/ActivateSubscriptionCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +3 -5
  9. package/dist-types/ts3.4/commands/CreateSubscriptionCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/DeactivateSubscriptionCommand.d.ts +5 -10
  11. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +3 -5
  12. package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +7 -5
  13. package/dist-types/ts3.4/commands/GetMedicalScribeListeningSessionCommand.d.ts +4 -6
  14. package/dist-types/ts3.4/commands/GetPatientInsightsJobCommand.d.ts +5 -10
  15. package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +2 -4
  17. package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  19. package/dist-types/ts3.4/commands/StartMedicalScribeListeningSessionCommand.d.ts +4 -6
  20. package/dist-types/ts3.4/commands/StartPatientInsightsJobCommand.d.ts +4 -6
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
  23. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  24. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  25. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  26. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  27. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  28. package/dist-types/ts3.4/models/models_0.d.ts +3 -9
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  30. package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +1 -4
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  35. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  36. package/package.json +41 -41
package/dist-cjs/index.js CHANGED
@@ -70,7 +70,7 @@ const commonParams = {
70
70
  Region: { type: "builtInParams", name: "region" },
71
71
  };
72
72
 
73
- var version = "3.1086.0";
73
+ var version = "3.1087.0";
74
74
  var packageInfo = {
75
75
  version: version};
76
76
 
@@ -23,10 +23,7 @@ import {
23
23
  DeleteDomainCommandInput,
24
24
  DeleteDomainCommandOutput,
25
25
  } from "./commands/DeleteDomainCommand";
26
- import {
27
- GetDomainCommandInput,
28
- GetDomainCommandOutput,
29
- } from "./commands/GetDomainCommand";
26
+ import { GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
30
27
  import {
31
28
  GetMedicalScribeListeningSessionCommandInput,
32
29
  GetMedicalScribeListeningSessionCommandOutput,
@@ -39,10 +36,7 @@ import {
39
36
  GetSubscriptionCommandInput,
40
37
  GetSubscriptionCommandOutput,
41
38
  } from "./commands/GetSubscriptionCommand";
42
- import {
43
- ListDomainsCommandInput,
44
- ListDomainsCommandOutput,
45
- } from "./commands/ListDomainsCommand";
39
+ import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
46
40
  import {
47
41
  ListSubscriptionsCommandInput,
48
42
  ListSubscriptionsCommandOutput,
@@ -59,10 +53,7 @@ import {
59
53
  StartPatientInsightsJobCommandInput,
60
54
  StartPatientInsightsJobCommandOutput,
61
55
  } from "./commands/StartPatientInsightsJobCommand";
62
- import {
63
- TagResourceCommandInput,
64
- TagResourceCommandOutput,
65
- } from "./commands/TagResourceCommand";
56
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
66
57
  import {
67
58
  UntagResourceCommandInput,
68
59
  UntagResourceCommandOutput,
@@ -71,234 +62,226 @@ import { ConnectHealthClient } from "./ConnectHealthClient";
71
62
  export interface ConnectHealth {
72
63
  activateSubscription(
73
64
  args: ActivateSubscriptionCommandInput,
74
- options?: __HttpHandlerOptions
65
+ options?: __HttpHandlerOptions,
75
66
  ): Promise<ActivateSubscriptionCommandOutput>;
76
67
  activateSubscription(
77
68
  args: ActivateSubscriptionCommandInput,
78
- cb: (err: any, data?: ActivateSubscriptionCommandOutput) => void
69
+ cb: (err: any, data?: ActivateSubscriptionCommandOutput) => void,
79
70
  ): void;
80
71
  activateSubscription(
81
72
  args: ActivateSubscriptionCommandInput,
82
73
  options: __HttpHandlerOptions,
83
- cb: (err: any, data?: ActivateSubscriptionCommandOutput) => void
74
+ cb: (err: any, data?: ActivateSubscriptionCommandOutput) => void,
84
75
  ): void;
85
76
  createDomain(
86
77
  args: CreateDomainCommandInput,
87
- options?: __HttpHandlerOptions
78
+ options?: __HttpHandlerOptions,
88
79
  ): Promise<CreateDomainCommandOutput>;
89
80
  createDomain(
90
81
  args: CreateDomainCommandInput,
91
- cb: (err: any, data?: CreateDomainCommandOutput) => void
82
+ cb: (err: any, data?: CreateDomainCommandOutput) => void,
92
83
  ): void;
93
84
  createDomain(
94
85
  args: CreateDomainCommandInput,
95
86
  options: __HttpHandlerOptions,
96
- cb: (err: any, data?: CreateDomainCommandOutput) => void
87
+ cb: (err: any, data?: CreateDomainCommandOutput) => void,
97
88
  ): void;
98
89
  createSubscription(
99
90
  args: CreateSubscriptionCommandInput,
100
- options?: __HttpHandlerOptions
91
+ options?: __HttpHandlerOptions,
101
92
  ): Promise<CreateSubscriptionCommandOutput>;
102
93
  createSubscription(
103
94
  args: CreateSubscriptionCommandInput,
104
- cb: (err: any, data?: CreateSubscriptionCommandOutput) => void
95
+ cb: (err: any, data?: CreateSubscriptionCommandOutput) => void,
105
96
  ): void;
106
97
  createSubscription(
107
98
  args: CreateSubscriptionCommandInput,
108
99
  options: __HttpHandlerOptions,
109
- cb: (err: any, data?: CreateSubscriptionCommandOutput) => void
100
+ cb: (err: any, data?: CreateSubscriptionCommandOutput) => void,
110
101
  ): void;
111
102
  deactivateSubscription(
112
103
  args: DeactivateSubscriptionCommandInput,
113
- options?: __HttpHandlerOptions
104
+ options?: __HttpHandlerOptions,
114
105
  ): Promise<DeactivateSubscriptionCommandOutput>;
115
106
  deactivateSubscription(
116
107
  args: DeactivateSubscriptionCommandInput,
117
- cb: (err: any, data?: DeactivateSubscriptionCommandOutput) => void
108
+ cb: (err: any, data?: DeactivateSubscriptionCommandOutput) => void,
118
109
  ): void;
119
110
  deactivateSubscription(
120
111
  args: DeactivateSubscriptionCommandInput,
121
112
  options: __HttpHandlerOptions,
122
- cb: (err: any, data?: DeactivateSubscriptionCommandOutput) => void
113
+ cb: (err: any, data?: DeactivateSubscriptionCommandOutput) => void,
123
114
  ): void;
124
115
  deleteDomain(
125
116
  args: DeleteDomainCommandInput,
126
- options?: __HttpHandlerOptions
117
+ options?: __HttpHandlerOptions,
127
118
  ): Promise<DeleteDomainCommandOutput>;
128
119
  deleteDomain(
129
120
  args: DeleteDomainCommandInput,
130
- cb: (err: any, data?: DeleteDomainCommandOutput) => void
121
+ cb: (err: any, data?: DeleteDomainCommandOutput) => void,
131
122
  ): void;
132
123
  deleteDomain(
133
124
  args: DeleteDomainCommandInput,
134
125
  options: __HttpHandlerOptions,
135
- cb: (err: any, data?: DeleteDomainCommandOutput) => void
126
+ cb: (err: any, data?: DeleteDomainCommandOutput) => void,
136
127
  ): void;
137
128
  getDomain(
138
129
  args: GetDomainCommandInput,
139
- options?: __HttpHandlerOptions
130
+ options?: __HttpHandlerOptions,
140
131
  ): Promise<GetDomainCommandOutput>;
141
132
  getDomain(
142
133
  args: GetDomainCommandInput,
143
- cb: (err: any, data?: GetDomainCommandOutput) => void
134
+ cb: (err: any, data?: GetDomainCommandOutput) => void,
144
135
  ): void;
145
136
  getDomain(
146
137
  args: GetDomainCommandInput,
147
138
  options: __HttpHandlerOptions,
148
- cb: (err: any, data?: GetDomainCommandOutput) => void
139
+ cb: (err: any, data?: GetDomainCommandOutput) => void,
149
140
  ): void;
150
141
  getMedicalScribeListeningSession(
151
142
  args: GetMedicalScribeListeningSessionCommandInput,
152
- options?: __HttpHandlerOptions
143
+ options?: __HttpHandlerOptions,
153
144
  ): Promise<GetMedicalScribeListeningSessionCommandOutput>;
154
145
  getMedicalScribeListeningSession(
155
146
  args: GetMedicalScribeListeningSessionCommandInput,
156
- cb: (err: any, data?: GetMedicalScribeListeningSessionCommandOutput) => void
147
+ cb: (err: any, data?: GetMedicalScribeListeningSessionCommandOutput) => void,
157
148
  ): void;
158
149
  getMedicalScribeListeningSession(
159
150
  args: GetMedicalScribeListeningSessionCommandInput,
160
151
  options: __HttpHandlerOptions,
161
- cb: (err: any, data?: GetMedicalScribeListeningSessionCommandOutput) => void
152
+ cb: (err: any, data?: GetMedicalScribeListeningSessionCommandOutput) => void,
162
153
  ): void;
163
154
  getPatientInsightsJob(
164
155
  args: GetPatientInsightsJobCommandInput,
165
- options?: __HttpHandlerOptions
156
+ options?: __HttpHandlerOptions,
166
157
  ): Promise<GetPatientInsightsJobCommandOutput>;
167
158
  getPatientInsightsJob(
168
159
  args: GetPatientInsightsJobCommandInput,
169
- cb: (err: any, data?: GetPatientInsightsJobCommandOutput) => void
160
+ cb: (err: any, data?: GetPatientInsightsJobCommandOutput) => void,
170
161
  ): void;
171
162
  getPatientInsightsJob(
172
163
  args: GetPatientInsightsJobCommandInput,
173
164
  options: __HttpHandlerOptions,
174
- cb: (err: any, data?: GetPatientInsightsJobCommandOutput) => void
165
+ cb: (err: any, data?: GetPatientInsightsJobCommandOutput) => void,
175
166
  ): void;
176
167
  getSubscription(
177
168
  args: GetSubscriptionCommandInput,
178
- options?: __HttpHandlerOptions
169
+ options?: __HttpHandlerOptions,
179
170
  ): Promise<GetSubscriptionCommandOutput>;
180
171
  getSubscription(
181
172
  args: GetSubscriptionCommandInput,
182
- cb: (err: any, data?: GetSubscriptionCommandOutput) => void
173
+ cb: (err: any, data?: GetSubscriptionCommandOutput) => void,
183
174
  ): void;
184
175
  getSubscription(
185
176
  args: GetSubscriptionCommandInput,
186
177
  options: __HttpHandlerOptions,
187
- cb: (err: any, data?: GetSubscriptionCommandOutput) => void
178
+ cb: (err: any, data?: GetSubscriptionCommandOutput) => void,
188
179
  ): void;
189
180
  listDomains(): Promise<ListDomainsCommandOutput>;
190
181
  listDomains(
191
182
  args: ListDomainsCommandInput,
192
- options?: __HttpHandlerOptions
183
+ options?: __HttpHandlerOptions,
193
184
  ): Promise<ListDomainsCommandOutput>;
194
185
  listDomains(
195
186
  args: ListDomainsCommandInput,
196
- cb: (err: any, data?: ListDomainsCommandOutput) => void
187
+ cb: (err: any, data?: ListDomainsCommandOutput) => void,
197
188
  ): void;
198
189
  listDomains(
199
190
  args: ListDomainsCommandInput,
200
191
  options: __HttpHandlerOptions,
201
- cb: (err: any, data?: ListDomainsCommandOutput) => void
192
+ cb: (err: any, data?: ListDomainsCommandOutput) => void,
202
193
  ): void;
203
194
  listSubscriptions(
204
195
  args: ListSubscriptionsCommandInput,
205
- options?: __HttpHandlerOptions
196
+ options?: __HttpHandlerOptions,
206
197
  ): Promise<ListSubscriptionsCommandOutput>;
207
198
  listSubscriptions(
208
199
  args: ListSubscriptionsCommandInput,
209
- cb: (err: any, data?: ListSubscriptionsCommandOutput) => void
200
+ cb: (err: any, data?: ListSubscriptionsCommandOutput) => void,
210
201
  ): void;
211
202
  listSubscriptions(
212
203
  args: ListSubscriptionsCommandInput,
213
204
  options: __HttpHandlerOptions,
214
- cb: (err: any, data?: ListSubscriptionsCommandOutput) => void
205
+ cb: (err: any, data?: ListSubscriptionsCommandOutput) => void,
215
206
  ): void;
216
207
  listTagsForResource(
217
208
  args: ListTagsForResourceCommandInput,
218
- options?: __HttpHandlerOptions
209
+ options?: __HttpHandlerOptions,
219
210
  ): Promise<ListTagsForResourceCommandOutput>;
220
211
  listTagsForResource(
221
212
  args: ListTagsForResourceCommandInput,
222
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
213
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
223
214
  ): void;
224
215
  listTagsForResource(
225
216
  args: ListTagsForResourceCommandInput,
226
217
  options: __HttpHandlerOptions,
227
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
218
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
228
219
  ): void;
229
220
  startMedicalScribeListeningSession(
230
221
  args: StartMedicalScribeListeningSessionCommandInput,
231
- options?: __HttpHandlerOptions
222
+ options?: __HttpHandlerOptions,
232
223
  ): Promise<StartMedicalScribeListeningSessionCommandOutput>;
233
224
  startMedicalScribeListeningSession(
234
225
  args: StartMedicalScribeListeningSessionCommandInput,
235
- cb: (
236
- err: any,
237
- data?: StartMedicalScribeListeningSessionCommandOutput
238
- ) => void
226
+ cb: (err: any, data?: StartMedicalScribeListeningSessionCommandOutput) => void,
239
227
  ): void;
240
228
  startMedicalScribeListeningSession(
241
229
  args: StartMedicalScribeListeningSessionCommandInput,
242
230
  options: __HttpHandlerOptions,
243
- cb: (
244
- err: any,
245
- data?: StartMedicalScribeListeningSessionCommandOutput
246
- ) => void
231
+ cb: (err: any, data?: StartMedicalScribeListeningSessionCommandOutput) => void,
247
232
  ): void;
248
233
  startPatientInsightsJob(
249
234
  args: StartPatientInsightsJobCommandInput,
250
- options?: __HttpHandlerOptions
235
+ options?: __HttpHandlerOptions,
251
236
  ): Promise<StartPatientInsightsJobCommandOutput>;
252
237
  startPatientInsightsJob(
253
238
  args: StartPatientInsightsJobCommandInput,
254
- cb: (err: any, data?: StartPatientInsightsJobCommandOutput) => void
239
+ cb: (err: any, data?: StartPatientInsightsJobCommandOutput) => void,
255
240
  ): void;
256
241
  startPatientInsightsJob(
257
242
  args: StartPatientInsightsJobCommandInput,
258
243
  options: __HttpHandlerOptions,
259
- cb: (err: any, data?: StartPatientInsightsJobCommandOutput) => void
244
+ cb: (err: any, data?: StartPatientInsightsJobCommandOutput) => void,
260
245
  ): void;
261
246
  tagResource(
262
247
  args: TagResourceCommandInput,
263
- options?: __HttpHandlerOptions
248
+ options?: __HttpHandlerOptions,
264
249
  ): Promise<TagResourceCommandOutput>;
265
250
  tagResource(
266
251
  args: TagResourceCommandInput,
267
- cb: (err: any, data?: TagResourceCommandOutput) => void
252
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
268
253
  ): void;
269
254
  tagResource(
270
255
  args: TagResourceCommandInput,
271
256
  options: __HttpHandlerOptions,
272
- cb: (err: any, data?: TagResourceCommandOutput) => void
257
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
273
258
  ): void;
274
259
  untagResource(
275
260
  args: UntagResourceCommandInput,
276
- options?: __HttpHandlerOptions
261
+ options?: __HttpHandlerOptions,
277
262
  ): Promise<UntagResourceCommandOutput>;
278
263
  untagResource(
279
264
  args: UntagResourceCommandInput,
280
- cb: (err: any, data?: UntagResourceCommandOutput) => void
265
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
281
266
  ): void;
282
267
  untagResource(
283
268
  args: UntagResourceCommandInput,
284
269
  options: __HttpHandlerOptions,
285
- cb: (err: any, data?: UntagResourceCommandOutput) => void
270
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
286
271
  ): void;
287
272
  paginateListDomains(
288
273
  args?: ListDomainsCommandInput,
289
274
  paginationConfig?: Pick<
290
275
  PaginationConfiguration,
291
276
  Exclude<keyof PaginationConfiguration, "client">
292
- >
277
+ >,
293
278
  ): Paginator<ListDomainsCommandOutput>;
294
279
  paginateListSubscriptions(
295
280
  args: ListSubscriptionsCommandInput,
296
281
  paginationConfig?: Pick<
297
282
  PaginationConfiguration,
298
283
  Exclude<keyof PaginationConfiguration, "client">
299
- >
284
+ >,
300
285
  ): Paginator<ListSubscriptionsCommandOutput>;
301
286
  }
302
- export declare class ConnectHealth
303
- extends ConnectHealthClient
304
- implements ConnectHealth {}
287
+ export declare class ConnectHealth extends ConnectHealthClient implements ConnectHealth {}
@@ -4,10 +4,7 @@ import {
4
4
  UserAgentInputConfig,
5
5
  UserAgentResolvedConfig,
6
6
  } from "@aws-sdk/core/client";
7
- import {
8
- EventStreamInputConfig,
9
- EventStreamResolvedConfig,
10
- } from "@aws-sdk/middleware-eventstream";
7
+ import { EventStreamInputConfig, EventStreamResolvedConfig } from "@aws-sdk/middleware-eventstream";
11
8
  import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
12
9
  import {
13
10
  DefaultsMode as __DefaultsMode,
@@ -16,10 +13,7 @@ import {
16
13
  Client as __Client,
17
14
  } from "@smithy/core/client";
18
15
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
19
- import {
20
- EndpointInputConfig,
21
- EndpointResolvedConfig,
22
- } from "@smithy/core/endpoints";
16
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
23
17
  import {
24
18
  EventStreamSerdeInputConfig,
25
19
  EventStreamSerdeResolvedConfig,
@@ -66,10 +60,7 @@ import {
66
60
  DeleteDomainCommandInput,
67
61
  DeleteDomainCommandOutput,
68
62
  } from "./commands/DeleteDomainCommand";
69
- import {
70
- GetDomainCommandInput,
71
- GetDomainCommandOutput,
72
- } from "./commands/GetDomainCommand";
63
+ import { GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
73
64
  import {
74
65
  GetMedicalScribeListeningSessionCommandInput,
75
66
  GetMedicalScribeListeningSessionCommandOutput,
@@ -82,10 +73,7 @@ import {
82
73
  GetSubscriptionCommandInput,
83
74
  GetSubscriptionCommandOutput,
84
75
  } from "./commands/GetSubscriptionCommand";
85
- import {
86
- ListDomainsCommandInput,
87
- ListDomainsCommandOutput,
88
- } from "./commands/ListDomainsCommand";
76
+ import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
89
77
  import {
90
78
  ListSubscriptionsCommandInput,
91
79
  ListSubscriptionsCommandOutput,
@@ -102,10 +90,7 @@ import {
102
90
  StartPatientInsightsJobCommandInput,
103
91
  StartPatientInsightsJobCommandOutput,
104
92
  } from "./commands/StartPatientInsightsJobCommand";
105
- import {
106
- TagResourceCommandInput,
107
- TagResourceCommandOutput,
108
- } from "./commands/TagResourceCommand";
93
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
109
94
  import {
110
95
  UntagResourceCommandInput,
111
96
  UntagResourceCommandOutput,
@@ -151,8 +136,7 @@ export type ServiceOutputTypes =
151
136
  | StartPatientInsightsJobCommandOutput
152
137
  | TagResourceCommandOutput
153
138
  | UntagResourceCommandOutput;
154
- export interface ClientDefaults
155
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
139
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
156
140
  requestHandler?: __HttpHandlerUserInput;
157
141
  sha256?: __ChecksumConstructor | __HashConstructor;
158
142
  urlParser?: __UrlParser;
@@ -179,9 +163,7 @@ export interface ClientDefaults
179
163
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
180
164
  eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
181
165
  }
182
- export type ConnectHealthClientConfigType = Partial<
183
- __SmithyConfiguration<__HttpHandlerOptions>
184
- > &
166
+ export type ConnectHealthClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
185
167
  ClientDefaults &
186
168
  UserAgentInputConfig &
187
169
  RetryInputConfig &
@@ -192,8 +174,7 @@ export type ConnectHealthClientConfigType = Partial<
192
174
  HttpAuthSchemeInputConfig &
193
175
  EventStreamInputConfig &
194
176
  ClientInputEndpointParameters;
195
- export interface ConnectHealthClientConfig
196
- extends ConnectHealthClientConfigType {}
177
+ export interface ConnectHealthClientConfig extends ConnectHealthClientConfigType {}
197
178
  export type ConnectHealthClientResolvedConfigType =
198
179
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
199
180
  Required<ClientDefaults> &
@@ -207,8 +188,7 @@ export type ConnectHealthClientResolvedConfigType =
207
188
  HttpAuthSchemeResolvedConfig &
208
189
  EventStreamResolvedConfig &
209
190
  ClientResolvedEndpointParameters;
210
- export interface ConnectHealthClientResolvedConfig
211
- extends ConnectHealthClientResolvedConfigType {}
191
+ export interface ConnectHealthClientResolvedConfig extends ConnectHealthClientResolvedConfigType {}
212
192
  export declare class ConnectHealthClient extends __Client<
213
193
  __HttpHandlerOptions,
214
194
  ServiceInputTypes,
@@ -216,8 +196,6 @@ export declare class ConnectHealthClient extends __Client<
216
196
  ConnectHealthClientResolvedConfig
217
197
  > {
218
198
  readonly config: ConnectHealthClientResolvedConfig;
219
- constructor(
220
- ...[configuration]: __CheckOptionalClientConfig<ConnectHealthClientConfig>
221
- );
199
+ constructor(...[configuration]: __CheckOptionalClientConfig<ConnectHealthClientConfig>);
222
200
  destroy(): void;
223
201
  }
@@ -7,17 +7,10 @@ import { ConnectHealthHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): ConnectHealthHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { ConnectHealthClientResolvedConfig } from "../ConnectHealthClient";
15
- export interface ConnectHealthHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface ConnectHealthHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface ConnectHealthHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- ConnectHealthClientResolvedConfig,
22
- HandlerExecutionContext,
23
- ConnectHealthHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface ConnectHealthHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ ConnectHealthClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ ConnectHealthHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultConnectHealthHttpAuthSchemeParametersProvider: (
27
25
  config: ConnectHealthClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<ConnectHealthHttpAuthSchemeParameters>;
31
- export interface ConnectHealthHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<ConnectHealthHttpAuthSchemeParameters> {}
29
+ export interface ConnectHealthHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ConnectHealthHttpAuthSchemeParameters> {}
33
30
  export declare const defaultConnectHealthHttpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: ConnectHealthHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: ConnectHealthHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./ConnectHealthClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  ConnectHealthClientResolvedConfig,
@@ -38,15 +37,10 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
47
41
  export declare const _mw1: (
48
42
  Command: any,
49
43
  cs: any,
50
44
  config: any,
51
- o: any
45
+ o: any,
52
46
  ) => import("@smithy/types").Pluggable<any, any>[];
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ActivateSubscriptionInput,
4
- ActivateSubscriptionOutput,
5
- } from "../models/models_0";
2
+ import { ActivateSubscriptionInput, ActivateSubscriptionOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ActivateSubscriptionCommandInput
8
- extends ActivateSubscriptionInput {}
4
+ export interface ActivateSubscriptionCommandInput extends ActivateSubscriptionInput {}
9
5
  export interface ActivateSubscriptionCommandOutput
10
- extends ActivateSubscriptionOutput,
11
- __MetadataBearer {}
6
+ extends ActivateSubscriptionOutput, __MetadataBearer {}
12
7
  declare const ActivateSubscriptionCommand_base: {
13
8
  new (
14
- input: ActivateSubscriptionCommandInput
9
+ input: ActivateSubscriptionCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ActivateSubscriptionCommandInput,
17
12
  ActivateSubscriptionCommandOutput,
@@ -20,7 +15,7 @@ declare const ActivateSubscriptionCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ActivateSubscriptionCommandInput
18
+ input: ActivateSubscriptionCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ActivateSubscriptionCommandInput,
26
21
  ActivateSubscriptionCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { CreateDomainInput, CreateDomainOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface CreateDomainCommandInput extends CreateDomainInput {}
5
- export interface CreateDomainCommandOutput
6
- extends CreateDomainOutput,
7
- __MetadataBearer {}
5
+ export interface CreateDomainCommandOutput extends CreateDomainOutput, __MetadataBearer {}
8
6
  declare const CreateDomainCommand_base: {
9
7
  new (
10
- input: CreateDomainCommandInput
8
+ input: CreateDomainCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  CreateDomainCommandInput,
13
11
  CreateDomainCommandOutput,
@@ -16,7 +14,7 @@ declare const CreateDomainCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: CreateDomainCommandInput
17
+ input: CreateDomainCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  CreateDomainCommandInput,
22
20
  CreateDomainCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateSubscriptionInput,
4
- CreateSubscriptionOutput,
5
- } from "../models/models_0";
2
+ import { CreateSubscriptionInput, CreateSubscriptionOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateSubscriptionCommandInput
8
- extends CreateSubscriptionInput {}
4
+ export interface CreateSubscriptionCommandInput extends CreateSubscriptionInput {}
9
5
  export interface CreateSubscriptionCommandOutput
10
- extends CreateSubscriptionOutput,
11
- __MetadataBearer {}
6
+ extends CreateSubscriptionOutput, __MetadataBearer {}
12
7
  declare const CreateSubscriptionCommand_base: {
13
8
  new (
14
- input: CreateSubscriptionCommandInput
9
+ input: CreateSubscriptionCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateSubscriptionCommandInput,
17
12
  CreateSubscriptionCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateSubscriptionCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateSubscriptionCommandInput
18
+ input: CreateSubscriptionCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateSubscriptionCommandInput,
26
21
  CreateSubscriptionCommandOutput,