@aws-sdk/client-appintegrations 3.50.0 → 3.53.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 (41) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/AppIntegrationsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +100 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +184 -635
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/AppIntegrationsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +93 -1
  9. package/dist-es/protocols/Aws_restJson1.js +363 -703
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/AppIntegrationsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +51 -22
  13. package/dist-types/ts3.4/AppIntegrations.d.ts +80 -0
  14. package/dist-types/ts3.4/AppIntegrationsClient.d.ts +88 -0
  15. package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  32. package/dist-types/ts3.4/index.d.ts +5 -0
  33. package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +6 -0
  34. package/dist-types/ts3.4/models/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +482 -0
  36. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +47 -0
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  41. package/package.json +33 -33
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class AppIntegrationsServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,482 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
+ }
11
+
12
+ export interface ScheduleConfiguration {
13
+
14
+ FirstExecutionFrom?: string;
15
+
16
+ Object?: string;
17
+
18
+ ScheduleExpression?: string;
19
+ }
20
+ export declare namespace ScheduleConfiguration {
21
+
22
+ const filterSensitiveLog: (obj: ScheduleConfiguration) => any;
23
+ }
24
+ export interface CreateDataIntegrationRequest {
25
+
26
+ Name: string | undefined;
27
+
28
+ Description?: string;
29
+
30
+ KmsKey?: string;
31
+
32
+ SourceURI?: string;
33
+
34
+ ScheduleConfig?: ScheduleConfiguration;
35
+
36
+ Tags?: {
37
+ [key: string]: string;
38
+ };
39
+
40
+ ClientToken?: string;
41
+ }
42
+ export declare namespace CreateDataIntegrationRequest {
43
+
44
+ const filterSensitiveLog: (obj: CreateDataIntegrationRequest) => any;
45
+ }
46
+ export interface CreateDataIntegrationResponse {
47
+
48
+ Arn?: string;
49
+
50
+ Id?: string;
51
+
52
+ Name?: string;
53
+
54
+ Description?: string;
55
+
56
+ KmsKey?: string;
57
+
58
+ SourceURI?: string;
59
+
60
+ ScheduleConfiguration?: ScheduleConfiguration;
61
+
62
+ Tags?: {
63
+ [key: string]: string;
64
+ };
65
+
66
+ ClientToken?: string;
67
+ }
68
+ export declare namespace CreateDataIntegrationResponse {
69
+
70
+ const filterSensitiveLog: (obj: CreateDataIntegrationResponse) => any;
71
+ }
72
+
73
+ export declare class DuplicateResourceException extends __BaseException {
74
+ readonly name: "DuplicateResourceException";
75
+ readonly $fault: "client";
76
+ Message?: string;
77
+
78
+ constructor(opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>);
79
+ }
80
+
81
+ export declare class InternalServiceError extends __BaseException {
82
+ readonly name: "InternalServiceError";
83
+ readonly $fault: "server";
84
+ Message?: string;
85
+
86
+ constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
87
+ }
88
+
89
+ export declare class InvalidRequestException extends __BaseException {
90
+ readonly name: "InvalidRequestException";
91
+ readonly $fault: "client";
92
+ Message?: string;
93
+
94
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
95
+ }
96
+
97
+ export declare class ResourceQuotaExceededException extends __BaseException {
98
+ readonly name: "ResourceQuotaExceededException";
99
+ readonly $fault: "client";
100
+ Message?: string;
101
+
102
+ constructor(opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>);
103
+ }
104
+
105
+ export declare class ThrottlingException extends __BaseException {
106
+ readonly name: "ThrottlingException";
107
+ readonly $fault: "client";
108
+ Message?: string;
109
+
110
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
111
+ }
112
+
113
+ export interface EventFilter {
114
+
115
+ Source: string | undefined;
116
+ }
117
+ export declare namespace EventFilter {
118
+
119
+ const filterSensitiveLog: (obj: EventFilter) => any;
120
+ }
121
+ export interface CreateEventIntegrationRequest {
122
+
123
+ Name: string | undefined;
124
+
125
+ Description?: string;
126
+
127
+ EventFilter: EventFilter | undefined;
128
+
129
+ EventBridgeBus: string | undefined;
130
+
131
+ ClientToken?: string;
132
+
133
+ Tags?: {
134
+ [key: string]: string;
135
+ };
136
+ }
137
+ export declare namespace CreateEventIntegrationRequest {
138
+
139
+ const filterSensitiveLog: (obj: CreateEventIntegrationRequest) => any;
140
+ }
141
+ export interface CreateEventIntegrationResponse {
142
+
143
+ EventIntegrationArn?: string;
144
+ }
145
+ export declare namespace CreateEventIntegrationResponse {
146
+
147
+ const filterSensitiveLog: (obj: CreateEventIntegrationResponse) => any;
148
+ }
149
+ export interface DeleteDataIntegrationRequest {
150
+
151
+ DataIntegrationIdentifier: string | undefined;
152
+ }
153
+ export declare namespace DeleteDataIntegrationRequest {
154
+
155
+ const filterSensitiveLog: (obj: DeleteDataIntegrationRequest) => any;
156
+ }
157
+ export interface DeleteDataIntegrationResponse {
158
+ }
159
+ export declare namespace DeleteDataIntegrationResponse {
160
+
161
+ const filterSensitiveLog: (obj: DeleteDataIntegrationResponse) => any;
162
+ }
163
+
164
+ export declare class ResourceNotFoundException extends __BaseException {
165
+ readonly name: "ResourceNotFoundException";
166
+ readonly $fault: "client";
167
+ Message?: string;
168
+
169
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
170
+ }
171
+ export interface DeleteEventIntegrationRequest {
172
+
173
+ Name: string | undefined;
174
+ }
175
+ export declare namespace DeleteEventIntegrationRequest {
176
+
177
+ const filterSensitiveLog: (obj: DeleteEventIntegrationRequest) => any;
178
+ }
179
+ export interface DeleteEventIntegrationResponse {
180
+ }
181
+ export declare namespace DeleteEventIntegrationResponse {
182
+
183
+ const filterSensitiveLog: (obj: DeleteEventIntegrationResponse) => any;
184
+ }
185
+ export interface GetDataIntegrationRequest {
186
+
187
+ Identifier: string | undefined;
188
+ }
189
+ export declare namespace GetDataIntegrationRequest {
190
+
191
+ const filterSensitiveLog: (obj: GetDataIntegrationRequest) => any;
192
+ }
193
+ export interface GetDataIntegrationResponse {
194
+
195
+ Arn?: string;
196
+
197
+ Id?: string;
198
+
199
+ Name?: string;
200
+
201
+ Description?: string;
202
+
203
+ KmsKey?: string;
204
+
205
+ SourceURI?: string;
206
+
207
+ ScheduleConfiguration?: ScheduleConfiguration;
208
+
209
+ Tags?: {
210
+ [key: string]: string;
211
+ };
212
+ }
213
+ export declare namespace GetDataIntegrationResponse {
214
+
215
+ const filterSensitiveLog: (obj: GetDataIntegrationResponse) => any;
216
+ }
217
+ export interface GetEventIntegrationRequest {
218
+
219
+ Name: string | undefined;
220
+ }
221
+ export declare namespace GetEventIntegrationRequest {
222
+
223
+ const filterSensitiveLog: (obj: GetEventIntegrationRequest) => any;
224
+ }
225
+ export interface GetEventIntegrationResponse {
226
+
227
+ Name?: string;
228
+
229
+ Description?: string;
230
+
231
+ EventIntegrationArn?: string;
232
+
233
+ EventBridgeBus?: string;
234
+
235
+ EventFilter?: EventFilter;
236
+
237
+ Tags?: {
238
+ [key: string]: string;
239
+ };
240
+ }
241
+ export declare namespace GetEventIntegrationResponse {
242
+
243
+ const filterSensitiveLog: (obj: GetEventIntegrationResponse) => any;
244
+ }
245
+ export interface ListDataIntegrationAssociationsRequest {
246
+
247
+ DataIntegrationIdentifier: string | undefined;
248
+
249
+ NextToken?: string;
250
+
251
+ MaxResults?: number;
252
+ }
253
+ export declare namespace ListDataIntegrationAssociationsRequest {
254
+
255
+ const filterSensitiveLog: (obj: ListDataIntegrationAssociationsRequest) => any;
256
+ }
257
+
258
+ export interface DataIntegrationAssociationSummary {
259
+
260
+ DataIntegrationAssociationArn?: string;
261
+
262
+ DataIntegrationArn?: string;
263
+
264
+ ClientId?: string;
265
+ }
266
+ export declare namespace DataIntegrationAssociationSummary {
267
+
268
+ const filterSensitiveLog: (obj: DataIntegrationAssociationSummary) => any;
269
+ }
270
+ export interface ListDataIntegrationAssociationsResponse {
271
+
272
+ DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
273
+
274
+ NextToken?: string;
275
+ }
276
+ export declare namespace ListDataIntegrationAssociationsResponse {
277
+
278
+ const filterSensitiveLog: (obj: ListDataIntegrationAssociationsResponse) => any;
279
+ }
280
+ export interface ListDataIntegrationsRequest {
281
+
282
+ NextToken?: string;
283
+
284
+ MaxResults?: number;
285
+ }
286
+ export declare namespace ListDataIntegrationsRequest {
287
+
288
+ const filterSensitiveLog: (obj: ListDataIntegrationsRequest) => any;
289
+ }
290
+
291
+ export interface DataIntegrationSummary {
292
+
293
+ Arn?: string;
294
+
295
+ Name?: string;
296
+
297
+ SourceURI?: string;
298
+ }
299
+ export declare namespace DataIntegrationSummary {
300
+
301
+ const filterSensitiveLog: (obj: DataIntegrationSummary) => any;
302
+ }
303
+ export interface ListDataIntegrationsResponse {
304
+
305
+ DataIntegrations?: DataIntegrationSummary[];
306
+
307
+ NextToken?: string;
308
+ }
309
+ export declare namespace ListDataIntegrationsResponse {
310
+
311
+ const filterSensitiveLog: (obj: ListDataIntegrationsResponse) => any;
312
+ }
313
+ export interface ListEventIntegrationAssociationsRequest {
314
+
315
+ EventIntegrationName: string | undefined;
316
+
317
+ NextToken?: string;
318
+
319
+ MaxResults?: number;
320
+ }
321
+ export declare namespace ListEventIntegrationAssociationsRequest {
322
+
323
+ const filterSensitiveLog: (obj: ListEventIntegrationAssociationsRequest) => any;
324
+ }
325
+
326
+ export interface EventIntegrationAssociation {
327
+
328
+ EventIntegrationAssociationArn?: string;
329
+
330
+ EventIntegrationAssociationId?: string;
331
+
332
+ EventIntegrationName?: string;
333
+
334
+ ClientId?: string;
335
+
336
+ EventBridgeRuleName?: string;
337
+
338
+ ClientAssociationMetadata?: {
339
+ [key: string]: string;
340
+ };
341
+ }
342
+ export declare namespace EventIntegrationAssociation {
343
+
344
+ const filterSensitiveLog: (obj: EventIntegrationAssociation) => any;
345
+ }
346
+ export interface ListEventIntegrationAssociationsResponse {
347
+
348
+ EventIntegrationAssociations?: EventIntegrationAssociation[];
349
+
350
+ NextToken?: string;
351
+ }
352
+ export declare namespace ListEventIntegrationAssociationsResponse {
353
+
354
+ const filterSensitiveLog: (obj: ListEventIntegrationAssociationsResponse) => any;
355
+ }
356
+ export interface ListEventIntegrationsRequest {
357
+
358
+ NextToken?: string;
359
+
360
+ MaxResults?: number;
361
+ }
362
+ export declare namespace ListEventIntegrationsRequest {
363
+
364
+ const filterSensitiveLog: (obj: ListEventIntegrationsRequest) => any;
365
+ }
366
+
367
+ export interface EventIntegration {
368
+
369
+ EventIntegrationArn?: string;
370
+
371
+ Name?: string;
372
+
373
+ Description?: string;
374
+
375
+ EventFilter?: EventFilter;
376
+
377
+ EventBridgeBus?: string;
378
+
379
+ Tags?: {
380
+ [key: string]: string;
381
+ };
382
+ }
383
+ export declare namespace EventIntegration {
384
+
385
+ const filterSensitiveLog: (obj: EventIntegration) => any;
386
+ }
387
+ export interface ListEventIntegrationsResponse {
388
+
389
+ EventIntegrations?: EventIntegration[];
390
+
391
+ NextToken?: string;
392
+ }
393
+ export declare namespace ListEventIntegrationsResponse {
394
+
395
+ const filterSensitiveLog: (obj: ListEventIntegrationsResponse) => any;
396
+ }
397
+ export interface ListTagsForResourceRequest {
398
+
399
+ resourceArn: string | undefined;
400
+ }
401
+ export declare namespace ListTagsForResourceRequest {
402
+
403
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
404
+ }
405
+ export interface ListTagsForResourceResponse {
406
+
407
+ tags?: {
408
+ [key: string]: string;
409
+ };
410
+ }
411
+ export declare namespace ListTagsForResourceResponse {
412
+
413
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
414
+ }
415
+ export interface TagResourceRequest {
416
+
417
+ resourceArn: string | undefined;
418
+
419
+ tags: {
420
+ [key: string]: string;
421
+ } | undefined;
422
+ }
423
+ export declare namespace TagResourceRequest {
424
+
425
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
426
+ }
427
+ export interface TagResourceResponse {
428
+ }
429
+ export declare namespace TagResourceResponse {
430
+
431
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
432
+ }
433
+ export interface UntagResourceRequest {
434
+
435
+ resourceArn: string | undefined;
436
+
437
+ tagKeys: string[] | undefined;
438
+ }
439
+ export declare namespace UntagResourceRequest {
440
+
441
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
442
+ }
443
+ export interface UntagResourceResponse {
444
+ }
445
+ export declare namespace UntagResourceResponse {
446
+
447
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
448
+ }
449
+ export interface UpdateDataIntegrationRequest {
450
+
451
+ Identifier: string | undefined;
452
+
453
+ Name?: string;
454
+
455
+ Description?: string;
456
+ }
457
+ export declare namespace UpdateDataIntegrationRequest {
458
+
459
+ const filterSensitiveLog: (obj: UpdateDataIntegrationRequest) => any;
460
+ }
461
+ export interface UpdateDataIntegrationResponse {
462
+ }
463
+ export declare namespace UpdateDataIntegrationResponse {
464
+
465
+ const filterSensitiveLog: (obj: UpdateDataIntegrationResponse) => any;
466
+ }
467
+ export interface UpdateEventIntegrationRequest {
468
+
469
+ Name: string | undefined;
470
+
471
+ Description?: string;
472
+ }
473
+ export declare namespace UpdateEventIntegrationRequest {
474
+
475
+ const filterSensitiveLog: (obj: UpdateEventIntegrationRequest) => any;
476
+ }
477
+ export interface UpdateEventIntegrationResponse {
478
+ }
479
+ export declare namespace UpdateEventIntegrationResponse {
480
+
481
+ const filterSensitiveLog: (obj: UpdateEventIntegrationResponse) => any;
482
+ }
@@ -0,0 +1,47 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput } from "../commands/CreateDataIntegrationCommand";
4
+ import { CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput } from "../commands/CreateEventIntegrationCommand";
5
+ import { DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput } from "../commands/DeleteDataIntegrationCommand";
6
+ import { DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput } from "../commands/DeleteEventIntegrationCommand";
7
+ import { GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput } from "../commands/GetDataIntegrationCommand";
8
+ import { GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput } from "../commands/GetEventIntegrationCommand";
9
+ import { ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput } from "../commands/ListDataIntegrationAssociationsCommand";
10
+ import { ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput } from "../commands/ListDataIntegrationsCommand";
11
+ import { ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput } from "../commands/ListEventIntegrationAssociationsCommand";
12
+ import { ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput } from "../commands/ListEventIntegrationsCommand";
13
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
15
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
16
+ import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "../commands/UpdateDataIntegrationCommand";
17
+ import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "../commands/UpdateEventIntegrationCommand";
18
+ export declare const serializeAws_restJson1CreateDataIntegrationCommand: (input: CreateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1CreateEventIntegrationCommand: (input: CreateEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1DeleteDataIntegrationCommand: (input: DeleteDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1DeleteEventIntegrationCommand: (input: DeleteEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1GetDataIntegrationCommand: (input: GetDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1GetEventIntegrationCommand: (input: GetEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1ListDataIntegrationAssociationsCommand: (input: ListDataIntegrationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1ListDataIntegrationsCommand: (input: ListDataIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1ListEventIntegrationAssociationsCommand: (input: ListEventIntegrationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1ListEventIntegrationsCommand: (input: ListEventIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_restJson1UpdateDataIntegrationCommand: (input: UpdateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_restJson1UpdateEventIntegrationCommand: (input: UpdateEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const deserializeAws_restJson1CreateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataIntegrationCommandOutput>;
34
+ export declare const deserializeAws_restJson1CreateEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventIntegrationCommandOutput>;
35
+ export declare const deserializeAws_restJson1DeleteDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataIntegrationCommandOutput>;
36
+ export declare const deserializeAws_restJson1DeleteEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventIntegrationCommandOutput>;
37
+ export declare const deserializeAws_restJson1GetDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataIntegrationCommandOutput>;
38
+ export declare const deserializeAws_restJson1GetEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventIntegrationCommandOutput>;
39
+ export declare const deserializeAws_restJson1ListDataIntegrationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationAssociationsCommandOutput>;
40
+ export declare const deserializeAws_restJson1ListDataIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationsCommandOutput>;
41
+ export declare const deserializeAws_restJson1ListEventIntegrationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventIntegrationAssociationsCommandOutput>;
42
+ export declare const deserializeAws_restJson1ListEventIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventIntegrationsCommandOutput>;
43
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
44
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
45
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
46
+ export declare const deserializeAws_restJson1UpdateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataIntegrationCommandOutput>;
47
+ export declare const deserializeAws_restJson1UpdateEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventIntegrationCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
2
+
3
+ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };