@aws-sdk/client-appintegrations 3.128.0 → 3.137.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 (38) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/commands/CreateDataIntegrationCommand.js +2 -2
  3. package/dist-cjs/commands/CreateEventIntegrationCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteDataIntegrationCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteEventIntegrationCommand.js +2 -2
  6. package/dist-cjs/commands/GetDataIntegrationCommand.js +2 -2
  7. package/dist-cjs/commands/GetEventIntegrationCommand.js +2 -2
  8. package/dist-cjs/commands/ListDataIntegrationAssociationsCommand.js +2 -2
  9. package/dist-cjs/commands/ListDataIntegrationsCommand.js +2 -2
  10. package/dist-cjs/commands/ListEventIntegrationAssociationsCommand.js +2 -2
  11. package/dist-cjs/commands/ListEventIntegrationsCommand.js +2 -2
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  13. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  14. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  15. package/dist-cjs/commands/UpdateDataIntegrationCommand.js +2 -2
  16. package/dist-cjs/commands/UpdateEventIntegrationCommand.js +2 -2
  17. package/dist-cjs/models/models_0.js +145 -217
  18. package/dist-cjs/protocols/Aws_restJson1.js +3 -0
  19. package/dist-es/commands/CreateDataIntegrationCommand.js +3 -3
  20. package/dist-es/commands/CreateEventIntegrationCommand.js +3 -3
  21. package/dist-es/commands/DeleteDataIntegrationCommand.js +3 -3
  22. package/dist-es/commands/DeleteEventIntegrationCommand.js +3 -3
  23. package/dist-es/commands/GetDataIntegrationCommand.js +3 -3
  24. package/dist-es/commands/GetEventIntegrationCommand.js +3 -3
  25. package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +3 -3
  26. package/dist-es/commands/ListDataIntegrationsCommand.js +3 -3
  27. package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +3 -3
  28. package/dist-es/commands/ListEventIntegrationsCommand.js +3 -3
  29. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  30. package/dist-es/commands/TagResourceCommand.js +3 -3
  31. package/dist-es/commands/UntagResourceCommand.js +3 -3
  32. package/dist-es/commands/UpdateDataIntegrationCommand.js +3 -3
  33. package/dist-es/commands/UpdateEventIntegrationCommand.js +3 -3
  34. package/dist-es/models/models_0.js +36 -144
  35. package/dist-es/protocols/Aws_restJson1.js +3 -0
  36. package/dist-types/models/models_0.d.ts +144 -216
  37. package/dist-types/ts3.4/models/models_0.d.ts +72 -144
  38. package/package.json +9 -9
@@ -29,12 +29,6 @@ export interface ScheduleConfiguration {
29
29
  */
30
30
  ScheduleExpression?: string;
31
31
  }
32
- export declare namespace ScheduleConfiguration {
33
- /**
34
- * @internal
35
- */
36
- const filterSensitiveLog: (obj: ScheduleConfiguration) => any;
37
- }
38
32
  export interface CreateDataIntegrationRequest {
39
33
  /**
40
34
  * <p>The name of the DataIntegration.</p>
@@ -66,12 +60,6 @@ export interface CreateDataIntegrationRequest {
66
60
  */
67
61
  ClientToken?: string;
68
62
  }
69
- export declare namespace CreateDataIntegrationRequest {
70
- /**
71
- * @internal
72
- */
73
- const filterSensitiveLog: (obj: CreateDataIntegrationRequest) => any;
74
- }
75
63
  export interface CreateDataIntegrationResponse {
76
64
  /**
77
65
  * <p>The Amazon Resource Name (ARN)</p>
@@ -111,12 +99,6 @@ export interface CreateDataIntegrationResponse {
111
99
  */
112
100
  ClientToken?: string;
113
101
  }
114
- export declare namespace CreateDataIntegrationResponse {
115
- /**
116
- * @internal
117
- */
118
- const filterSensitiveLog: (obj: CreateDataIntegrationResponse) => any;
119
- }
120
102
  /**
121
103
  * <p>A resource with the specified name already exists.</p>
122
104
  */
@@ -186,12 +168,6 @@ export interface EventFilter {
186
168
  */
187
169
  Source: string | undefined;
188
170
  }
189
- export declare namespace EventFilter {
190
- /**
191
- * @internal
192
- */
193
- const filterSensitiveLog: (obj: EventFilter) => any;
194
- }
195
171
  export interface CreateEventIntegrationRequest {
196
172
  /**
197
173
  * <p>The name of the event integration.</p>
@@ -219,44 +195,20 @@ export interface CreateEventIntegrationRequest {
219
195
  */
220
196
  Tags?: Record<string, string>;
221
197
  }
222
- export declare namespace CreateEventIntegrationRequest {
223
- /**
224
- * @internal
225
- */
226
- const filterSensitiveLog: (obj: CreateEventIntegrationRequest) => any;
227
- }
228
198
  export interface CreateEventIntegrationResponse {
229
199
  /**
230
200
  * <p>The Amazon Resource Name (ARN) of the event integration. </p>
231
201
  */
232
202
  EventIntegrationArn?: string;
233
203
  }
234
- export declare namespace CreateEventIntegrationResponse {
235
- /**
236
- * @internal
237
- */
238
- const filterSensitiveLog: (obj: CreateEventIntegrationResponse) => any;
239
- }
240
204
  export interface DeleteDataIntegrationRequest {
241
205
  /**
242
206
  * <p>A unique identifier for the DataIntegration.</p>
243
207
  */
244
208
  DataIntegrationIdentifier: string | undefined;
245
209
  }
246
- export declare namespace DeleteDataIntegrationRequest {
247
- /**
248
- * @internal
249
- */
250
- const filterSensitiveLog: (obj: DeleteDataIntegrationRequest) => any;
251
- }
252
210
  export interface DeleteDataIntegrationResponse {
253
211
  }
254
- export declare namespace DeleteDataIntegrationResponse {
255
- /**
256
- * @internal
257
- */
258
- const filterSensitiveLog: (obj: DeleteDataIntegrationResponse) => any;
259
- }
260
212
  /**
261
213
  * <p>The specified resource was not found.</p>
262
214
  */
@@ -275,32 +227,14 @@ export interface DeleteEventIntegrationRequest {
275
227
  */
276
228
  Name: string | undefined;
277
229
  }
278
- export declare namespace DeleteEventIntegrationRequest {
279
- /**
280
- * @internal
281
- */
282
- const filterSensitiveLog: (obj: DeleteEventIntegrationRequest) => any;
283
- }
284
230
  export interface DeleteEventIntegrationResponse {
285
231
  }
286
- export declare namespace DeleteEventIntegrationResponse {
287
- /**
288
- * @internal
289
- */
290
- const filterSensitiveLog: (obj: DeleteEventIntegrationResponse) => any;
291
- }
292
232
  export interface GetDataIntegrationRequest {
293
233
  /**
294
234
  * <p>A unique identifier.</p>
295
235
  */
296
236
  Identifier: string | undefined;
297
237
  }
298
- export declare namespace GetDataIntegrationRequest {
299
- /**
300
- * @internal
301
- */
302
- const filterSensitiveLog: (obj: GetDataIntegrationRequest) => any;
303
- }
304
238
  export interface GetDataIntegrationResponse {
305
239
  /**
306
240
  * <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
@@ -335,24 +269,12 @@ export interface GetDataIntegrationResponse {
335
269
  */
336
270
  Tags?: Record<string, string>;
337
271
  }
338
- export declare namespace GetDataIntegrationResponse {
339
- /**
340
- * @internal
341
- */
342
- const filterSensitiveLog: (obj: GetDataIntegrationResponse) => any;
343
- }
344
272
  export interface GetEventIntegrationRequest {
345
273
  /**
346
274
  * <p>The name of the event integration. </p>
347
275
  */
348
276
  Name: string | undefined;
349
277
  }
350
- export declare namespace GetEventIntegrationRequest {
351
- /**
352
- * @internal
353
- */
354
- const filterSensitiveLog: (obj: GetEventIntegrationRequest) => any;
355
- }
356
278
  export interface GetEventIntegrationResponse {
357
279
  /**
358
280
  * <p>The name of the event integration. </p>
@@ -379,12 +301,6 @@ export interface GetEventIntegrationResponse {
379
301
  */
380
302
  Tags?: Record<string, string>;
381
303
  }
382
- export declare namespace GetEventIntegrationResponse {
383
- /**
384
- * @internal
385
- */
386
- const filterSensitiveLog: (obj: GetEventIntegrationResponse) => any;
387
- }
388
304
  export interface ListDataIntegrationAssociationsRequest {
389
305
  /**
390
306
  * <p>A unique identifier for the DataIntegration.</p>
@@ -400,12 +316,6 @@ export interface ListDataIntegrationAssociationsRequest {
400
316
  */
401
317
  MaxResults?: number;
402
318
  }
403
- export declare namespace ListDataIntegrationAssociationsRequest {
404
- /**
405
- * @internal
406
- */
407
- const filterSensitiveLog: (obj: ListDataIntegrationAssociationsRequest) => any;
408
- }
409
319
  /**
410
320
  * <p>Summary information about the DataIntegration association.</p>
411
321
  */
@@ -424,12 +334,6 @@ export interface DataIntegrationAssociationSummary {
424
334
  */
425
335
  ClientId?: string;
426
336
  }
427
- export declare namespace DataIntegrationAssociationSummary {
428
- /**
429
- * @internal
430
- */
431
- const filterSensitiveLog: (obj: DataIntegrationAssociationSummary) => any;
432
- }
433
337
  export interface ListDataIntegrationAssociationsResponse {
434
338
  /**
435
339
  * <p>The Amazon Resource Name (ARN) and unique ID of the DataIntegration association.</p>
@@ -440,12 +344,6 @@ export interface ListDataIntegrationAssociationsResponse {
440
344
  */
441
345
  NextToken?: string;
442
346
  }
443
- export declare namespace ListDataIntegrationAssociationsResponse {
444
- /**
445
- * @internal
446
- */
447
- const filterSensitiveLog: (obj: ListDataIntegrationAssociationsResponse) => any;
448
- }
449
347
  export interface ListDataIntegrationsRequest {
450
348
  /**
451
349
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -457,12 +355,6 @@ export interface ListDataIntegrationsRequest {
457
355
  */
458
356
  MaxResults?: number;
459
357
  }
460
- export declare namespace ListDataIntegrationsRequest {
461
- /**
462
- * @internal
463
- */
464
- const filterSensitiveLog: (obj: ListDataIntegrationsRequest) => any;
465
- }
466
358
  /**
467
359
  * <p>Summary information about the DataIntegration.</p>
468
360
  */
@@ -480,12 +372,6 @@ export interface DataIntegrationSummary {
480
372
  */
481
373
  SourceURI?: string;
482
374
  }
483
- export declare namespace DataIntegrationSummary {
484
- /**
485
- * @internal
486
- */
487
- const filterSensitiveLog: (obj: DataIntegrationSummary) => any;
488
- }
489
375
  export interface ListDataIntegrationsResponse {
490
376
  /**
491
377
  * <p>The DataIntegrations associated with this account.</p>
@@ -496,12 +382,6 @@ export interface ListDataIntegrationsResponse {
496
382
  */
497
383
  NextToken?: string;
498
384
  }
499
- export declare namespace ListDataIntegrationsResponse {
500
- /**
501
- * @internal
502
- */
503
- const filterSensitiveLog: (obj: ListDataIntegrationsResponse) => any;
504
- }
505
385
  export interface ListEventIntegrationAssociationsRequest {
506
386
  /**
507
387
  * <p>The name of the event integration. </p>
@@ -517,12 +397,6 @@ export interface ListEventIntegrationAssociationsRequest {
517
397
  */
518
398
  MaxResults?: number;
519
399
  }
520
- export declare namespace ListEventIntegrationAssociationsRequest {
521
- /**
522
- * @internal
523
- */
524
- const filterSensitiveLog: (obj: ListEventIntegrationAssociationsRequest) => any;
525
- }
526
400
  /**
527
401
  * <p>The event integration association.</p>
528
402
  */
@@ -552,12 +426,6 @@ export interface EventIntegrationAssociation {
552
426
  */
553
427
  ClientAssociationMetadata?: Record<string, string>;
554
428
  }
555
- export declare namespace EventIntegrationAssociation {
556
- /**
557
- * @internal
558
- */
559
- const filterSensitiveLog: (obj: EventIntegrationAssociation) => any;
560
- }
561
429
  export interface ListEventIntegrationAssociationsResponse {
562
430
  /**
563
431
  * <p>The event integration associations.</p>
@@ -568,12 +436,6 @@ export interface ListEventIntegrationAssociationsResponse {
568
436
  */
569
437
  NextToken?: string;
570
438
  }
571
- export declare namespace ListEventIntegrationAssociationsResponse {
572
- /**
573
- * @internal
574
- */
575
- const filterSensitiveLog: (obj: ListEventIntegrationAssociationsResponse) => any;
576
- }
577
439
  export interface ListEventIntegrationsRequest {
578
440
  /**
579
441
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -585,12 +447,6 @@ export interface ListEventIntegrationsRequest {
585
447
  */
586
448
  MaxResults?: number;
587
449
  }
588
- export declare namespace ListEventIntegrationsRequest {
589
- /**
590
- * @internal
591
- */
592
- const filterSensitiveLog: (obj: ListEventIntegrationsRequest) => any;
593
- }
594
450
  /**
595
451
  * <p>The event integration.</p>
596
452
  */
@@ -620,12 +476,6 @@ export interface EventIntegration {
620
476
  */
621
477
  Tags?: Record<string, string>;
622
478
  }
623
- export declare namespace EventIntegration {
624
- /**
625
- * @internal
626
- */
627
- const filterSensitiveLog: (obj: EventIntegration) => any;
628
- }
629
479
  export interface ListEventIntegrationsResponse {
630
480
  /**
631
481
  * <p>The event integrations.</p>
@@ -636,36 +486,18 @@ export interface ListEventIntegrationsResponse {
636
486
  */
637
487
  NextToken?: string;
638
488
  }
639
- export declare namespace ListEventIntegrationsResponse {
640
- /**
641
- * @internal
642
- */
643
- const filterSensitiveLog: (obj: ListEventIntegrationsResponse) => any;
644
- }
645
489
  export interface ListTagsForResourceRequest {
646
490
  /**
647
491
  * <p>The Amazon Resource Name (ARN) of the resource. </p>
648
492
  */
649
493
  resourceArn: string | undefined;
650
494
  }
651
- export declare namespace ListTagsForResourceRequest {
652
- /**
653
- * @internal
654
- */
655
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
656
- }
657
495
  export interface ListTagsForResourceResponse {
658
496
  /**
659
497
  * <p>Information about the tags.</p>
660
498
  */
661
499
  tags?: Record<string, string>;
662
500
  }
663
- export declare namespace ListTagsForResourceResponse {
664
- /**
665
- * @internal
666
- */
667
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
668
- }
669
501
  export interface TagResourceRequest {
670
502
  /**
671
503
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -676,20 +508,8 @@ export interface TagResourceRequest {
676
508
  */
677
509
  tags: Record<string, string> | undefined;
678
510
  }
679
- export declare namespace TagResourceRequest {
680
- /**
681
- * @internal
682
- */
683
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
684
- }
685
511
  export interface TagResourceResponse {
686
512
  }
687
- export declare namespace TagResourceResponse {
688
- /**
689
- * @internal
690
- */
691
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
692
- }
693
513
  export interface UntagResourceRequest {
694
514
  /**
695
515
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -700,20 +520,8 @@ export interface UntagResourceRequest {
700
520
  */
701
521
  tagKeys: string[] | undefined;
702
522
  }
703
- export declare namespace UntagResourceRequest {
704
- /**
705
- * @internal
706
- */
707
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
708
- }
709
523
  export interface UntagResourceResponse {
710
524
  }
711
- export declare namespace UntagResourceResponse {
712
- /**
713
- * @internal
714
- */
715
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
716
- }
717
525
  export interface UpdateDataIntegrationRequest {
718
526
  /**
719
527
  * <p>A unique identifier for the DataIntegration.</p>
@@ -728,20 +536,8 @@ export interface UpdateDataIntegrationRequest {
728
536
  */
729
537
  Description?: string;
730
538
  }
731
- export declare namespace UpdateDataIntegrationRequest {
732
- /**
733
- * @internal
734
- */
735
- const filterSensitiveLog: (obj: UpdateDataIntegrationRequest) => any;
736
- }
737
539
  export interface UpdateDataIntegrationResponse {
738
540
  }
739
- export declare namespace UpdateDataIntegrationResponse {
740
- /**
741
- * @internal
742
- */
743
- const filterSensitiveLog: (obj: UpdateDataIntegrationResponse) => any;
744
- }
745
541
  export interface UpdateEventIntegrationRequest {
746
542
  /**
747
543
  * <p>The name of the event integration.</p>
@@ -752,17 +548,149 @@ export interface UpdateEventIntegrationRequest {
752
548
  */
753
549
  Description?: string;
754
550
  }
755
- export declare namespace UpdateEventIntegrationRequest {
756
- /**
757
- * @internal
758
- */
759
- const filterSensitiveLog: (obj: UpdateEventIntegrationRequest) => any;
760
- }
761
551
  export interface UpdateEventIntegrationResponse {
762
552
  }
763
- export declare namespace UpdateEventIntegrationResponse {
764
- /**
765
- * @internal
766
- */
767
- const filterSensitiveLog: (obj: UpdateEventIntegrationResponse) => any;
768
- }
553
+ /**
554
+ * @internal
555
+ */
556
+ export declare const ScheduleConfigurationFilterSensitiveLog: (obj: ScheduleConfiguration) => any;
557
+ /**
558
+ * @internal
559
+ */
560
+ export declare const CreateDataIntegrationRequestFilterSensitiveLog: (obj: CreateDataIntegrationRequest) => any;
561
+ /**
562
+ * @internal
563
+ */
564
+ export declare const CreateDataIntegrationResponseFilterSensitiveLog: (obj: CreateDataIntegrationResponse) => any;
565
+ /**
566
+ * @internal
567
+ */
568
+ export declare const EventFilterFilterSensitiveLog: (obj: EventFilter) => any;
569
+ /**
570
+ * @internal
571
+ */
572
+ export declare const CreateEventIntegrationRequestFilterSensitiveLog: (obj: CreateEventIntegrationRequest) => any;
573
+ /**
574
+ * @internal
575
+ */
576
+ export declare const CreateEventIntegrationResponseFilterSensitiveLog: (obj: CreateEventIntegrationResponse) => any;
577
+ /**
578
+ * @internal
579
+ */
580
+ export declare const DeleteDataIntegrationRequestFilterSensitiveLog: (obj: DeleteDataIntegrationRequest) => any;
581
+ /**
582
+ * @internal
583
+ */
584
+ export declare const DeleteDataIntegrationResponseFilterSensitiveLog: (obj: DeleteDataIntegrationResponse) => any;
585
+ /**
586
+ * @internal
587
+ */
588
+ export declare const DeleteEventIntegrationRequestFilterSensitiveLog: (obj: DeleteEventIntegrationRequest) => any;
589
+ /**
590
+ * @internal
591
+ */
592
+ export declare const DeleteEventIntegrationResponseFilterSensitiveLog: (obj: DeleteEventIntegrationResponse) => any;
593
+ /**
594
+ * @internal
595
+ */
596
+ export declare const GetDataIntegrationRequestFilterSensitiveLog: (obj: GetDataIntegrationRequest) => any;
597
+ /**
598
+ * @internal
599
+ */
600
+ export declare const GetDataIntegrationResponseFilterSensitiveLog: (obj: GetDataIntegrationResponse) => any;
601
+ /**
602
+ * @internal
603
+ */
604
+ export declare const GetEventIntegrationRequestFilterSensitiveLog: (obj: GetEventIntegrationRequest) => any;
605
+ /**
606
+ * @internal
607
+ */
608
+ export declare const GetEventIntegrationResponseFilterSensitiveLog: (obj: GetEventIntegrationResponse) => any;
609
+ /**
610
+ * @internal
611
+ */
612
+ export declare const ListDataIntegrationAssociationsRequestFilterSensitiveLog: (obj: ListDataIntegrationAssociationsRequest) => any;
613
+ /**
614
+ * @internal
615
+ */
616
+ export declare const DataIntegrationAssociationSummaryFilterSensitiveLog: (obj: DataIntegrationAssociationSummary) => any;
617
+ /**
618
+ * @internal
619
+ */
620
+ export declare const ListDataIntegrationAssociationsResponseFilterSensitiveLog: (obj: ListDataIntegrationAssociationsResponse) => any;
621
+ /**
622
+ * @internal
623
+ */
624
+ export declare const ListDataIntegrationsRequestFilterSensitiveLog: (obj: ListDataIntegrationsRequest) => any;
625
+ /**
626
+ * @internal
627
+ */
628
+ export declare const DataIntegrationSummaryFilterSensitiveLog: (obj: DataIntegrationSummary) => any;
629
+ /**
630
+ * @internal
631
+ */
632
+ export declare const ListDataIntegrationsResponseFilterSensitiveLog: (obj: ListDataIntegrationsResponse) => any;
633
+ /**
634
+ * @internal
635
+ */
636
+ export declare const ListEventIntegrationAssociationsRequestFilterSensitiveLog: (obj: ListEventIntegrationAssociationsRequest) => any;
637
+ /**
638
+ * @internal
639
+ */
640
+ export declare const EventIntegrationAssociationFilterSensitiveLog: (obj: EventIntegrationAssociation) => any;
641
+ /**
642
+ * @internal
643
+ */
644
+ export declare const ListEventIntegrationAssociationsResponseFilterSensitiveLog: (obj: ListEventIntegrationAssociationsResponse) => any;
645
+ /**
646
+ * @internal
647
+ */
648
+ export declare const ListEventIntegrationsRequestFilterSensitiveLog: (obj: ListEventIntegrationsRequest) => any;
649
+ /**
650
+ * @internal
651
+ */
652
+ export declare const EventIntegrationFilterSensitiveLog: (obj: EventIntegration) => any;
653
+ /**
654
+ * @internal
655
+ */
656
+ export declare const ListEventIntegrationsResponseFilterSensitiveLog: (obj: ListEventIntegrationsResponse) => any;
657
+ /**
658
+ * @internal
659
+ */
660
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
661
+ /**
662
+ * @internal
663
+ */
664
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
665
+ /**
666
+ * @internal
667
+ */
668
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
669
+ /**
670
+ * @internal
671
+ */
672
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
673
+ /**
674
+ * @internal
675
+ */
676
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
677
+ /**
678
+ * @internal
679
+ */
680
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
681
+ /**
682
+ * @internal
683
+ */
684
+ export declare const UpdateDataIntegrationRequestFilterSensitiveLog: (obj: UpdateDataIntegrationRequest) => any;
685
+ /**
686
+ * @internal
687
+ */
688
+ export declare const UpdateDataIntegrationResponseFilterSensitiveLog: (obj: UpdateDataIntegrationResponse) => any;
689
+ /**
690
+ * @internal
691
+ */
692
+ export declare const UpdateEventIntegrationRequestFilterSensitiveLog: (obj: UpdateEventIntegrationRequest) => any;
693
+ /**
694
+ * @internal
695
+ */
696
+ export declare const UpdateEventIntegrationResponseFilterSensitiveLog: (obj: UpdateEventIntegrationResponse) => any;