@aws-sdk/client-appintegrations 3.130.0 → 3.141.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/CHANGELOG.md +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateDataIntegrationCommand.js +2 -2
- package/dist-cjs/commands/CreateEventIntegrationCommand.js +2 -2
- package/dist-cjs/commands/DeleteDataIntegrationCommand.js +2 -2
- package/dist-cjs/commands/DeleteEventIntegrationCommand.js +2 -2
- package/dist-cjs/commands/GetDataIntegrationCommand.js +2 -2
- package/dist-cjs/commands/GetEventIntegrationCommand.js +2 -2
- package/dist-cjs/commands/ListDataIntegrationAssociationsCommand.js +2 -2
- package/dist-cjs/commands/ListDataIntegrationsCommand.js +2 -2
- package/dist-cjs/commands/ListEventIntegrationAssociationsCommand.js +2 -2
- package/dist-cjs/commands/ListEventIntegrationsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateDataIntegrationCommand.js +2 -2
- package/dist-cjs/commands/UpdateEventIntegrationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +145 -217
- package/dist-es/commands/CreateDataIntegrationCommand.js +3 -3
- package/dist-es/commands/CreateEventIntegrationCommand.js +3 -3
- package/dist-es/commands/DeleteDataIntegrationCommand.js +3 -3
- package/dist-es/commands/DeleteEventIntegrationCommand.js +3 -3
- package/dist-es/commands/GetDataIntegrationCommand.js +3 -3
- package/dist-es/commands/GetEventIntegrationCommand.js +3 -3
- package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +3 -3
- package/dist-es/commands/ListDataIntegrationsCommand.js +3 -3
- package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +3 -3
- package/dist-es/commands/ListEventIntegrationsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateDataIntegrationCommand.js +3 -3
- package/dist-es/commands/UpdateEventIntegrationCommand.js +3 -3
- package/dist-es/models/models_0.js +36 -144
- package/dist-types/models/models_0.d.ts +144 -216
- package/dist-types/ts3.4/models/models_0.d.ts +72 -144
- package/package.json +7 -7
|
@@ -17,10 +17,6 @@ export interface ScheduleConfiguration {
|
|
|
17
17
|
|
|
18
18
|
ScheduleExpression?: string;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace ScheduleConfiguration {
|
|
21
|
-
|
|
22
|
-
const filterSensitiveLog: (obj: ScheduleConfiguration) => any;
|
|
23
|
-
}
|
|
24
20
|
export interface CreateDataIntegrationRequest {
|
|
25
21
|
|
|
26
22
|
Name: string | undefined;
|
|
@@ -37,10 +33,6 @@ export interface CreateDataIntegrationRequest {
|
|
|
37
33
|
|
|
38
34
|
ClientToken?: string;
|
|
39
35
|
}
|
|
40
|
-
export declare namespace CreateDataIntegrationRequest {
|
|
41
|
-
|
|
42
|
-
const filterSensitiveLog: (obj: CreateDataIntegrationRequest) => any;
|
|
43
|
-
}
|
|
44
36
|
export interface CreateDataIntegrationResponse {
|
|
45
37
|
|
|
46
38
|
Arn?: string;
|
|
@@ -61,10 +53,6 @@ export interface CreateDataIntegrationResponse {
|
|
|
61
53
|
|
|
62
54
|
ClientToken?: string;
|
|
63
55
|
}
|
|
64
|
-
export declare namespace CreateDataIntegrationResponse {
|
|
65
|
-
|
|
66
|
-
const filterSensitiveLog: (obj: CreateDataIntegrationResponse) => any;
|
|
67
|
-
}
|
|
68
56
|
|
|
69
57
|
export declare class DuplicateResourceException extends __BaseException {
|
|
70
58
|
readonly name: "DuplicateResourceException";
|
|
@@ -110,10 +98,6 @@ export interface EventFilter {
|
|
|
110
98
|
|
|
111
99
|
Source: string | undefined;
|
|
112
100
|
}
|
|
113
|
-
export declare namespace EventFilter {
|
|
114
|
-
|
|
115
|
-
const filterSensitiveLog: (obj: EventFilter) => any;
|
|
116
|
-
}
|
|
117
101
|
export interface CreateEventIntegrationRequest {
|
|
118
102
|
|
|
119
103
|
Name: string | undefined;
|
|
@@ -128,32 +112,16 @@ export interface CreateEventIntegrationRequest {
|
|
|
128
112
|
|
|
129
113
|
Tags?: Record<string, string>;
|
|
130
114
|
}
|
|
131
|
-
export declare namespace CreateEventIntegrationRequest {
|
|
132
|
-
|
|
133
|
-
const filterSensitiveLog: (obj: CreateEventIntegrationRequest) => any;
|
|
134
|
-
}
|
|
135
115
|
export interface CreateEventIntegrationResponse {
|
|
136
116
|
|
|
137
117
|
EventIntegrationArn?: string;
|
|
138
118
|
}
|
|
139
|
-
export declare namespace CreateEventIntegrationResponse {
|
|
140
|
-
|
|
141
|
-
const filterSensitiveLog: (obj: CreateEventIntegrationResponse) => any;
|
|
142
|
-
}
|
|
143
119
|
export interface DeleteDataIntegrationRequest {
|
|
144
120
|
|
|
145
121
|
DataIntegrationIdentifier: string | undefined;
|
|
146
122
|
}
|
|
147
|
-
export declare namespace DeleteDataIntegrationRequest {
|
|
148
|
-
|
|
149
|
-
const filterSensitiveLog: (obj: DeleteDataIntegrationRequest) => any;
|
|
150
|
-
}
|
|
151
123
|
export interface DeleteDataIntegrationResponse {
|
|
152
124
|
}
|
|
153
|
-
export declare namespace DeleteDataIntegrationResponse {
|
|
154
|
-
|
|
155
|
-
const filterSensitiveLog: (obj: DeleteDataIntegrationResponse) => any;
|
|
156
|
-
}
|
|
157
125
|
|
|
158
126
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
159
127
|
readonly name: "ResourceNotFoundException";
|
|
@@ -166,24 +134,12 @@ export interface DeleteEventIntegrationRequest {
|
|
|
166
134
|
|
|
167
135
|
Name: string | undefined;
|
|
168
136
|
}
|
|
169
|
-
export declare namespace DeleteEventIntegrationRequest {
|
|
170
|
-
|
|
171
|
-
const filterSensitiveLog: (obj: DeleteEventIntegrationRequest) => any;
|
|
172
|
-
}
|
|
173
137
|
export interface DeleteEventIntegrationResponse {
|
|
174
138
|
}
|
|
175
|
-
export declare namespace DeleteEventIntegrationResponse {
|
|
176
|
-
|
|
177
|
-
const filterSensitiveLog: (obj: DeleteEventIntegrationResponse) => any;
|
|
178
|
-
}
|
|
179
139
|
export interface GetDataIntegrationRequest {
|
|
180
140
|
|
|
181
141
|
Identifier: string | undefined;
|
|
182
142
|
}
|
|
183
|
-
export declare namespace GetDataIntegrationRequest {
|
|
184
|
-
|
|
185
|
-
const filterSensitiveLog: (obj: GetDataIntegrationRequest) => any;
|
|
186
|
-
}
|
|
187
143
|
export interface GetDataIntegrationResponse {
|
|
188
144
|
|
|
189
145
|
Arn?: string;
|
|
@@ -202,18 +158,10 @@ export interface GetDataIntegrationResponse {
|
|
|
202
158
|
|
|
203
159
|
Tags?: Record<string, string>;
|
|
204
160
|
}
|
|
205
|
-
export declare namespace GetDataIntegrationResponse {
|
|
206
|
-
|
|
207
|
-
const filterSensitiveLog: (obj: GetDataIntegrationResponse) => any;
|
|
208
|
-
}
|
|
209
161
|
export interface GetEventIntegrationRequest {
|
|
210
162
|
|
|
211
163
|
Name: string | undefined;
|
|
212
164
|
}
|
|
213
|
-
export declare namespace GetEventIntegrationRequest {
|
|
214
|
-
|
|
215
|
-
const filterSensitiveLog: (obj: GetEventIntegrationRequest) => any;
|
|
216
|
-
}
|
|
217
165
|
export interface GetEventIntegrationResponse {
|
|
218
166
|
|
|
219
167
|
Name?: string;
|
|
@@ -228,10 +176,6 @@ export interface GetEventIntegrationResponse {
|
|
|
228
176
|
|
|
229
177
|
Tags?: Record<string, string>;
|
|
230
178
|
}
|
|
231
|
-
export declare namespace GetEventIntegrationResponse {
|
|
232
|
-
|
|
233
|
-
const filterSensitiveLog: (obj: GetEventIntegrationResponse) => any;
|
|
234
|
-
}
|
|
235
179
|
export interface ListDataIntegrationAssociationsRequest {
|
|
236
180
|
|
|
237
181
|
DataIntegrationIdentifier: string | undefined;
|
|
@@ -240,10 +184,6 @@ export interface ListDataIntegrationAssociationsRequest {
|
|
|
240
184
|
|
|
241
185
|
MaxResults?: number;
|
|
242
186
|
}
|
|
243
|
-
export declare namespace ListDataIntegrationAssociationsRequest {
|
|
244
|
-
|
|
245
|
-
const filterSensitiveLog: (obj: ListDataIntegrationAssociationsRequest) => any;
|
|
246
|
-
}
|
|
247
187
|
|
|
248
188
|
export interface DataIntegrationAssociationSummary {
|
|
249
189
|
|
|
@@ -253,30 +193,18 @@ export interface DataIntegrationAssociationSummary {
|
|
|
253
193
|
|
|
254
194
|
ClientId?: string;
|
|
255
195
|
}
|
|
256
|
-
export declare namespace DataIntegrationAssociationSummary {
|
|
257
|
-
|
|
258
|
-
const filterSensitiveLog: (obj: DataIntegrationAssociationSummary) => any;
|
|
259
|
-
}
|
|
260
196
|
export interface ListDataIntegrationAssociationsResponse {
|
|
261
197
|
|
|
262
198
|
DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
|
|
263
199
|
|
|
264
200
|
NextToken?: string;
|
|
265
201
|
}
|
|
266
|
-
export declare namespace ListDataIntegrationAssociationsResponse {
|
|
267
|
-
|
|
268
|
-
const filterSensitiveLog: (obj: ListDataIntegrationAssociationsResponse) => any;
|
|
269
|
-
}
|
|
270
202
|
export interface ListDataIntegrationsRequest {
|
|
271
203
|
|
|
272
204
|
NextToken?: string;
|
|
273
205
|
|
|
274
206
|
MaxResults?: number;
|
|
275
207
|
}
|
|
276
|
-
export declare namespace ListDataIntegrationsRequest {
|
|
277
|
-
|
|
278
|
-
const filterSensitiveLog: (obj: ListDataIntegrationsRequest) => any;
|
|
279
|
-
}
|
|
280
208
|
|
|
281
209
|
export interface DataIntegrationSummary {
|
|
282
210
|
|
|
@@ -286,20 +214,12 @@ export interface DataIntegrationSummary {
|
|
|
286
214
|
|
|
287
215
|
SourceURI?: string;
|
|
288
216
|
}
|
|
289
|
-
export declare namespace DataIntegrationSummary {
|
|
290
|
-
|
|
291
|
-
const filterSensitiveLog: (obj: DataIntegrationSummary) => any;
|
|
292
|
-
}
|
|
293
217
|
export interface ListDataIntegrationsResponse {
|
|
294
218
|
|
|
295
219
|
DataIntegrations?: DataIntegrationSummary[];
|
|
296
220
|
|
|
297
221
|
NextToken?: string;
|
|
298
222
|
}
|
|
299
|
-
export declare namespace ListDataIntegrationsResponse {
|
|
300
|
-
|
|
301
|
-
const filterSensitiveLog: (obj: ListDataIntegrationsResponse) => any;
|
|
302
|
-
}
|
|
303
223
|
export interface ListEventIntegrationAssociationsRequest {
|
|
304
224
|
|
|
305
225
|
EventIntegrationName: string | undefined;
|
|
@@ -308,10 +228,6 @@ export interface ListEventIntegrationAssociationsRequest {
|
|
|
308
228
|
|
|
309
229
|
MaxResults?: number;
|
|
310
230
|
}
|
|
311
|
-
export declare namespace ListEventIntegrationAssociationsRequest {
|
|
312
|
-
|
|
313
|
-
const filterSensitiveLog: (obj: ListEventIntegrationAssociationsRequest) => any;
|
|
314
|
-
}
|
|
315
231
|
|
|
316
232
|
export interface EventIntegrationAssociation {
|
|
317
233
|
|
|
@@ -327,30 +243,18 @@ export interface EventIntegrationAssociation {
|
|
|
327
243
|
|
|
328
244
|
ClientAssociationMetadata?: Record<string, string>;
|
|
329
245
|
}
|
|
330
|
-
export declare namespace EventIntegrationAssociation {
|
|
331
|
-
|
|
332
|
-
const filterSensitiveLog: (obj: EventIntegrationAssociation) => any;
|
|
333
|
-
}
|
|
334
246
|
export interface ListEventIntegrationAssociationsResponse {
|
|
335
247
|
|
|
336
248
|
EventIntegrationAssociations?: EventIntegrationAssociation[];
|
|
337
249
|
|
|
338
250
|
NextToken?: string;
|
|
339
251
|
}
|
|
340
|
-
export declare namespace ListEventIntegrationAssociationsResponse {
|
|
341
|
-
|
|
342
|
-
const filterSensitiveLog: (obj: ListEventIntegrationAssociationsResponse) => any;
|
|
343
|
-
}
|
|
344
252
|
export interface ListEventIntegrationsRequest {
|
|
345
253
|
|
|
346
254
|
NextToken?: string;
|
|
347
255
|
|
|
348
256
|
MaxResults?: number;
|
|
349
257
|
}
|
|
350
|
-
export declare namespace ListEventIntegrationsRequest {
|
|
351
|
-
|
|
352
|
-
const filterSensitiveLog: (obj: ListEventIntegrationsRequest) => any;
|
|
353
|
-
}
|
|
354
258
|
|
|
355
259
|
export interface EventIntegration {
|
|
356
260
|
|
|
@@ -366,68 +270,36 @@ export interface EventIntegration {
|
|
|
366
270
|
|
|
367
271
|
Tags?: Record<string, string>;
|
|
368
272
|
}
|
|
369
|
-
export declare namespace EventIntegration {
|
|
370
|
-
|
|
371
|
-
const filterSensitiveLog: (obj: EventIntegration) => any;
|
|
372
|
-
}
|
|
373
273
|
export interface ListEventIntegrationsResponse {
|
|
374
274
|
|
|
375
275
|
EventIntegrations?: EventIntegration[];
|
|
376
276
|
|
|
377
277
|
NextToken?: string;
|
|
378
278
|
}
|
|
379
|
-
export declare namespace ListEventIntegrationsResponse {
|
|
380
|
-
|
|
381
|
-
const filterSensitiveLog: (obj: ListEventIntegrationsResponse) => any;
|
|
382
|
-
}
|
|
383
279
|
export interface ListTagsForResourceRequest {
|
|
384
280
|
|
|
385
281
|
resourceArn: string | undefined;
|
|
386
282
|
}
|
|
387
|
-
export declare namespace ListTagsForResourceRequest {
|
|
388
|
-
|
|
389
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
390
|
-
}
|
|
391
283
|
export interface ListTagsForResourceResponse {
|
|
392
284
|
|
|
393
285
|
tags?: Record<string, string>;
|
|
394
286
|
}
|
|
395
|
-
export declare namespace ListTagsForResourceResponse {
|
|
396
|
-
|
|
397
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
398
|
-
}
|
|
399
287
|
export interface TagResourceRequest {
|
|
400
288
|
|
|
401
289
|
resourceArn: string | undefined;
|
|
402
290
|
|
|
403
291
|
tags: Record<string, string> | undefined;
|
|
404
292
|
}
|
|
405
|
-
export declare namespace TagResourceRequest {
|
|
406
|
-
|
|
407
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
408
|
-
}
|
|
409
293
|
export interface TagResourceResponse {
|
|
410
294
|
}
|
|
411
|
-
export declare namespace TagResourceResponse {
|
|
412
|
-
|
|
413
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
414
|
-
}
|
|
415
295
|
export interface UntagResourceRequest {
|
|
416
296
|
|
|
417
297
|
resourceArn: string | undefined;
|
|
418
298
|
|
|
419
299
|
tagKeys: string[] | undefined;
|
|
420
300
|
}
|
|
421
|
-
export declare namespace UntagResourceRequest {
|
|
422
|
-
|
|
423
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
424
|
-
}
|
|
425
301
|
export interface UntagResourceResponse {
|
|
426
302
|
}
|
|
427
|
-
export declare namespace UntagResourceResponse {
|
|
428
|
-
|
|
429
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
430
|
-
}
|
|
431
303
|
export interface UpdateDataIntegrationRequest {
|
|
432
304
|
|
|
433
305
|
Identifier: string | undefined;
|
|
@@ -436,29 +308,85 @@ export interface UpdateDataIntegrationRequest {
|
|
|
436
308
|
|
|
437
309
|
Description?: string;
|
|
438
310
|
}
|
|
439
|
-
export declare namespace UpdateDataIntegrationRequest {
|
|
440
|
-
|
|
441
|
-
const filterSensitiveLog: (obj: UpdateDataIntegrationRequest) => any;
|
|
442
|
-
}
|
|
443
311
|
export interface UpdateDataIntegrationResponse {
|
|
444
312
|
}
|
|
445
|
-
export declare namespace UpdateDataIntegrationResponse {
|
|
446
|
-
|
|
447
|
-
const filterSensitiveLog: (obj: UpdateDataIntegrationResponse) => any;
|
|
448
|
-
}
|
|
449
313
|
export interface UpdateEventIntegrationRequest {
|
|
450
314
|
|
|
451
315
|
Name: string | undefined;
|
|
452
316
|
|
|
453
317
|
Description?: string;
|
|
454
318
|
}
|
|
455
|
-
export declare namespace UpdateEventIntegrationRequest {
|
|
456
|
-
|
|
457
|
-
const filterSensitiveLog: (obj: UpdateEventIntegrationRequest) => any;
|
|
458
|
-
}
|
|
459
319
|
export interface UpdateEventIntegrationResponse {
|
|
460
320
|
}
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
321
|
+
|
|
322
|
+
export declare const ScheduleConfigurationFilterSensitiveLog: (obj: ScheduleConfiguration) => any;
|
|
323
|
+
|
|
324
|
+
export declare const CreateDataIntegrationRequestFilterSensitiveLog: (obj: CreateDataIntegrationRequest) => any;
|
|
325
|
+
|
|
326
|
+
export declare const CreateDataIntegrationResponseFilterSensitiveLog: (obj: CreateDataIntegrationResponse) => any;
|
|
327
|
+
|
|
328
|
+
export declare const EventFilterFilterSensitiveLog: (obj: EventFilter) => any;
|
|
329
|
+
|
|
330
|
+
export declare const CreateEventIntegrationRequestFilterSensitiveLog: (obj: CreateEventIntegrationRequest) => any;
|
|
331
|
+
|
|
332
|
+
export declare const CreateEventIntegrationResponseFilterSensitiveLog: (obj: CreateEventIntegrationResponse) => any;
|
|
333
|
+
|
|
334
|
+
export declare const DeleteDataIntegrationRequestFilterSensitiveLog: (obj: DeleteDataIntegrationRequest) => any;
|
|
335
|
+
|
|
336
|
+
export declare const DeleteDataIntegrationResponseFilterSensitiveLog: (obj: DeleteDataIntegrationResponse) => any;
|
|
337
|
+
|
|
338
|
+
export declare const DeleteEventIntegrationRequestFilterSensitiveLog: (obj: DeleteEventIntegrationRequest) => any;
|
|
339
|
+
|
|
340
|
+
export declare const DeleteEventIntegrationResponseFilterSensitiveLog: (obj: DeleteEventIntegrationResponse) => any;
|
|
341
|
+
|
|
342
|
+
export declare const GetDataIntegrationRequestFilterSensitiveLog: (obj: GetDataIntegrationRequest) => any;
|
|
343
|
+
|
|
344
|
+
export declare const GetDataIntegrationResponseFilterSensitiveLog: (obj: GetDataIntegrationResponse) => any;
|
|
345
|
+
|
|
346
|
+
export declare const GetEventIntegrationRequestFilterSensitiveLog: (obj: GetEventIntegrationRequest) => any;
|
|
347
|
+
|
|
348
|
+
export declare const GetEventIntegrationResponseFilterSensitiveLog: (obj: GetEventIntegrationResponse) => any;
|
|
349
|
+
|
|
350
|
+
export declare const ListDataIntegrationAssociationsRequestFilterSensitiveLog: (obj: ListDataIntegrationAssociationsRequest) => any;
|
|
351
|
+
|
|
352
|
+
export declare const DataIntegrationAssociationSummaryFilterSensitiveLog: (obj: DataIntegrationAssociationSummary) => any;
|
|
353
|
+
|
|
354
|
+
export declare const ListDataIntegrationAssociationsResponseFilterSensitiveLog: (obj: ListDataIntegrationAssociationsResponse) => any;
|
|
355
|
+
|
|
356
|
+
export declare const ListDataIntegrationsRequestFilterSensitiveLog: (obj: ListDataIntegrationsRequest) => any;
|
|
357
|
+
|
|
358
|
+
export declare const DataIntegrationSummaryFilterSensitiveLog: (obj: DataIntegrationSummary) => any;
|
|
359
|
+
|
|
360
|
+
export declare const ListDataIntegrationsResponseFilterSensitiveLog: (obj: ListDataIntegrationsResponse) => any;
|
|
361
|
+
|
|
362
|
+
export declare const ListEventIntegrationAssociationsRequestFilterSensitiveLog: (obj: ListEventIntegrationAssociationsRequest) => any;
|
|
363
|
+
|
|
364
|
+
export declare const EventIntegrationAssociationFilterSensitiveLog: (obj: EventIntegrationAssociation) => any;
|
|
365
|
+
|
|
366
|
+
export declare const ListEventIntegrationAssociationsResponseFilterSensitiveLog: (obj: ListEventIntegrationAssociationsResponse) => any;
|
|
367
|
+
|
|
368
|
+
export declare const ListEventIntegrationsRequestFilterSensitiveLog: (obj: ListEventIntegrationsRequest) => any;
|
|
369
|
+
|
|
370
|
+
export declare const EventIntegrationFilterSensitiveLog: (obj: EventIntegration) => any;
|
|
371
|
+
|
|
372
|
+
export declare const ListEventIntegrationsResponseFilterSensitiveLog: (obj: ListEventIntegrationsResponse) => any;
|
|
373
|
+
|
|
374
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
375
|
+
|
|
376
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
377
|
+
|
|
378
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
379
|
+
|
|
380
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
381
|
+
|
|
382
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
383
|
+
|
|
384
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
385
|
+
|
|
386
|
+
export declare const UpdateDataIntegrationRequestFilterSensitiveLog: (obj: UpdateDataIntegrationRequest) => any;
|
|
387
|
+
|
|
388
|
+
export declare const UpdateDataIntegrationResponseFilterSensitiveLog: (obj: UpdateDataIntegrationResponse) => any;
|
|
389
|
+
|
|
390
|
+
export declare const UpdateEventIntegrationRequestFilterSensitiveLog: (obj: UpdateEventIntegrationRequest) => any;
|
|
391
|
+
|
|
392
|
+
export declare const UpdateEventIntegrationResponseFilterSensitiveLog: (obj: UpdateEventIntegrationResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.141.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.141.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.141.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|