@aws-sdk/client-dataexchange 3.170.0 → 3.171.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 (39) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/DataExchange.d.ts +0 -29
  3. package/dist-types/ts3.4/DataExchangeClient.d.ts +0 -25
  4. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +0 -2
  5. package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +0 -2
  6. package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +0 -2
  7. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/models/DataExchangeServiceException.d.ts +0 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +0 -454
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  39. package/package.json +26 -26
@@ -1,12 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException";
3
-
4
3
  export declare class AccessDeniedException extends __BaseException {
5
4
  readonly name: "AccessDeniedException";
6
5
  readonly $fault: "client";
7
-
8
6
  Message: string | undefined;
9
-
10
7
  constructor(
11
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
12
9
  );
@@ -15,73 +12,49 @@ export declare enum ServerSideEncryptionTypes {
15
12
  AES256 = "AES256",
16
13
  aws_kms = "aws:kms",
17
14
  }
18
-
19
15
  export interface ExportServerSideEncryption {
20
16
  KmsKeyArn?: string;
21
-
22
17
  Type: ServerSideEncryptionTypes | string | undefined;
23
18
  }
24
-
25
19
  export interface AutoExportRevisionDestinationEntry {
26
20
  Bucket: string | undefined;
27
-
28
21
  KeyPattern?: string;
29
22
  }
30
-
31
23
  export interface AutoExportRevisionToS3RequestDetails {
32
24
  Encryption?: ExportServerSideEncryption;
33
-
34
25
  RevisionDestination: AutoExportRevisionDestinationEntry | undefined;
35
26
  }
36
-
37
27
  export interface Action {
38
28
  ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
39
29
  }
40
30
  export declare enum ProtocolType {
41
31
  REST = "REST",
42
32
  }
43
-
44
33
  export interface ApiGatewayApiAsset {
45
34
  ApiDescription?: string;
46
-
47
35
  ApiEndpoint?: string;
48
-
49
36
  ApiId?: string;
50
-
51
37
  ApiKey?: string;
52
-
53
38
  ApiName?: string;
54
-
55
39
  ApiSpecificationDownloadUrl?: string;
56
-
57
40
  ApiSpecificationDownloadUrlExpiresAt?: Date;
58
-
59
41
  ProtocolType?: ProtocolType | string;
60
-
61
42
  Stage?: string;
62
43
  }
63
-
64
44
  export interface AssetDestinationEntry {
65
45
  AssetId: string | undefined;
66
-
67
46
  Bucket: string | undefined;
68
-
69
47
  Key?: string;
70
48
  }
71
-
72
49
  export interface RedshiftDataShareAsset {
73
50
  Arn: string | undefined;
74
51
  }
75
-
76
52
  export interface S3SnapshotAsset {
77
53
  Size: number | undefined;
78
54
  }
79
-
80
55
  export interface AssetDetails {
81
56
  S3SnapshotAsset?: S3SnapshotAsset;
82
-
83
57
  RedshiftDataShareAsset?: RedshiftDataShareAsset;
84
-
85
58
  ApiGatewayApiAsset?: ApiGatewayApiAsset;
86
59
  }
87
60
  export declare enum AssetType {
@@ -89,32 +62,20 @@ export declare enum AssetType {
89
62
  REDSHIFT_DATA_SHARE = "REDSHIFT_DATA_SHARE",
90
63
  S3_SNAPSHOT = "S3_SNAPSHOT",
91
64
  }
92
-
93
65
  export interface AssetEntry {
94
66
  Arn: string | undefined;
95
-
96
67
  AssetDetails: AssetDetails | undefined;
97
-
98
68
  AssetType: AssetType | string | undefined;
99
-
100
69
  CreatedAt: Date | undefined;
101
-
102
70
  DataSetId: string | undefined;
103
-
104
71
  Id: string | undefined;
105
-
106
72
  Name: string | undefined;
107
-
108
73
  RevisionId: string | undefined;
109
-
110
74
  SourceId?: string;
111
-
112
75
  UpdatedAt: Date | undefined;
113
76
  }
114
-
115
77
  export interface AssetSourceEntry {
116
78
  Bucket: string | undefined;
117
-
118
79
  Key: string | undefined;
119
80
  }
120
81
  export interface CancelJobRequest {
@@ -127,52 +88,36 @@ export declare enum ResourceType {
127
88
  JOB = "JOB",
128
89
  REVISION = "REVISION",
129
90
  }
130
-
131
91
  export declare class ConflictException extends __BaseException {
132
92
  readonly name: "ConflictException";
133
93
  readonly $fault: "client";
134
-
135
94
  Message: string | undefined;
136
-
137
95
  ResourceId?: string;
138
-
139
96
  ResourceType?: ResourceType | string;
140
-
141
97
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
142
98
  }
143
-
144
99
  export declare class InternalServerException extends __BaseException {
145
100
  readonly name: "InternalServerException";
146
101
  readonly $fault: "server";
147
-
148
102
  Message: string | undefined;
149
-
150
103
  constructor(
151
104
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
152
105
  );
153
106
  }
154
-
155
107
  export declare class ResourceNotFoundException extends __BaseException {
156
108
  readonly name: "ResourceNotFoundException";
157
109
  readonly $fault: "client";
158
-
159
110
  Message: string | undefined;
160
-
161
111
  ResourceId?: string;
162
-
163
112
  ResourceType?: ResourceType | string;
164
-
165
113
  constructor(
166
114
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
167
115
  );
168
116
  }
169
-
170
117
  export declare class ThrottlingException extends __BaseException {
171
118
  readonly name: "ThrottlingException";
172
119
  readonly $fault: "client";
173
-
174
120
  Message: string | undefined;
175
-
176
121
  constructor(
177
122
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
178
123
  );
@@ -181,15 +126,11 @@ export declare enum ExceptionCause {
181
126
  InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
182
127
  S3AccessDenied = "S3AccessDenied",
183
128
  }
184
-
185
129
  export declare class ValidationException extends __BaseException {
186
130
  readonly name: "ValidationException";
187
131
  readonly $fault: "client";
188
-
189
132
  Message: string | undefined;
190
-
191
133
  ExceptionCause?: ExceptionCause | string;
192
-
193
134
  constructor(
194
135
  opts: __ExceptionOptionType<ValidationException, __BaseException>
195
136
  );
@@ -205,42 +146,28 @@ export declare enum Code {
205
146
  }
206
147
  export interface CreateDataSetRequest {
207
148
  AssetType: AssetType | string | undefined;
208
-
209
149
  Description: string | undefined;
210
-
211
150
  Name: string | undefined;
212
-
213
151
  Tags?: Record<string, string>;
214
152
  }
215
153
  export declare enum Origin {
216
154
  ENTITLED = "ENTITLED",
217
155
  OWNED = "OWNED",
218
156
  }
219
-
220
157
  export interface OriginDetails {
221
158
  ProductId: string | undefined;
222
159
  }
223
160
  export interface CreateDataSetResponse {
224
161
  Arn?: string;
225
-
226
162
  AssetType?: AssetType | string;
227
-
228
163
  CreatedAt?: Date;
229
-
230
164
  Description?: string;
231
-
232
165
  Id?: string;
233
-
234
166
  Name?: string;
235
-
236
167
  Origin?: Origin | string;
237
-
238
168
  OriginDetails?: OriginDetails;
239
-
240
169
  SourceId?: string;
241
-
242
170
  Tags?: Record<string, string>;
243
-
244
171
  UpdatedAt?: Date;
245
172
  }
246
173
  export declare enum LimitName {
@@ -267,145 +194,92 @@ export declare enum LimitName {
267
194
  Revisions_per_Amazon_Redshift_datashare_data_set = "Revisions per Amazon Redshift datashare data set",
268
195
  Revisions_per_data_set = "Revisions per data set",
269
196
  }
270
-
271
197
  export declare class ServiceLimitExceededException extends __BaseException {
272
198
  readonly name: "ServiceLimitExceededException";
273
199
  readonly $fault: "client";
274
-
275
200
  LimitName?: LimitName | string;
276
-
277
201
  LimitValue?: number;
278
-
279
202
  Message: string | undefined;
280
-
281
203
  constructor(
282
204
  opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
283
205
  );
284
206
  }
285
-
286
207
  export interface RevisionPublished {
287
208
  DataSetId: string | undefined;
288
209
  }
289
-
290
210
  export interface Event {
291
211
  RevisionPublished?: RevisionPublished;
292
212
  }
293
213
  export interface CreateEventActionRequest {
294
214
  Action: Action | undefined;
295
-
296
215
  Event: Event | undefined;
297
216
  }
298
217
  export interface CreateEventActionResponse {
299
218
  Action?: Action;
300
-
301
219
  Arn?: string;
302
-
303
220
  CreatedAt?: Date;
304
-
305
221
  Event?: Event;
306
-
307
222
  Id?: string;
308
-
309
223
  UpdatedAt?: Date;
310
224
  }
311
-
312
225
  export interface ExportAssetsToS3RequestDetails {
313
226
  AssetDestinations: AssetDestinationEntry[] | undefined;
314
-
315
227
  DataSetId: string | undefined;
316
-
317
228
  Encryption?: ExportServerSideEncryption;
318
-
319
229
  RevisionId: string | undefined;
320
230
  }
321
-
322
231
  export interface ExportAssetToSignedUrlRequestDetails {
323
232
  AssetId: string | undefined;
324
-
325
233
  DataSetId: string | undefined;
326
-
327
234
  RevisionId: string | undefined;
328
235
  }
329
-
330
236
  export interface RevisionDestinationEntry {
331
237
  Bucket: string | undefined;
332
-
333
238
  KeyPattern?: string;
334
-
335
239
  RevisionId: string | undefined;
336
240
  }
337
-
338
241
  export interface ExportRevisionsToS3RequestDetails {
339
242
  DataSetId: string | undefined;
340
-
341
243
  Encryption?: ExportServerSideEncryption;
342
-
343
244
  RevisionDestinations: RevisionDestinationEntry[] | undefined;
344
245
  }
345
-
346
246
  export interface ImportAssetFromApiGatewayApiRequestDetails {
347
247
  ApiDescription?: string;
348
-
349
248
  ApiId: string | undefined;
350
-
351
249
  ApiKey?: string;
352
-
353
250
  ApiName: string | undefined;
354
-
355
251
  ApiSpecificationMd5Hash: string | undefined;
356
-
357
252
  DataSetId: string | undefined;
358
-
359
253
  ProtocolType: ProtocolType | string | undefined;
360
-
361
254
  RevisionId: string | undefined;
362
-
363
255
  Stage: string | undefined;
364
256
  }
365
-
366
257
  export interface ImportAssetFromSignedUrlRequestDetails {
367
258
  AssetName: string | undefined;
368
-
369
259
  DataSetId: string | undefined;
370
-
371
260
  Md5Hash: string | undefined;
372
-
373
261
  RevisionId: string | undefined;
374
262
  }
375
-
376
263
  export interface RedshiftDataShareAssetSourceEntry {
377
264
  DataShareArn: string | undefined;
378
265
  }
379
-
380
266
  export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
381
267
  AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
382
-
383
268
  DataSetId: string | undefined;
384
-
385
269
  RevisionId: string | undefined;
386
270
  }
387
-
388
271
  export interface ImportAssetsFromS3RequestDetails {
389
272
  AssetSources: AssetSourceEntry[] | undefined;
390
-
391
273
  DataSetId: string | undefined;
392
-
393
274
  RevisionId: string | undefined;
394
275
  }
395
-
396
276
  export interface RequestDetails {
397
277
  ExportAssetToSignedUrl?: ExportAssetToSignedUrlRequestDetails;
398
-
399
278
  ExportAssetsToS3?: ExportAssetsToS3RequestDetails;
400
-
401
279
  ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails;
402
-
403
280
  ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails;
404
-
405
281
  ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
406
-
407
282
  ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails;
408
-
409
283
  ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails;
410
284
  }
411
285
  export declare enum Type {
@@ -419,119 +293,72 @@ export declare enum Type {
419
293
  }
420
294
  export interface CreateJobRequest {
421
295
  Details: RequestDetails | undefined;
422
-
423
296
  Type: Type | string | undefined;
424
297
  }
425
-
426
298
  export interface ExportAssetsToS3ResponseDetails {
427
299
  AssetDestinations: AssetDestinationEntry[] | undefined;
428
-
429
300
  DataSetId: string | undefined;
430
-
431
301
  Encryption?: ExportServerSideEncryption;
432
-
433
302
  RevisionId: string | undefined;
434
303
  }
435
-
436
304
  export interface ExportAssetToSignedUrlResponseDetails {
437
305
  AssetId: string | undefined;
438
-
439
306
  DataSetId: string | undefined;
440
-
441
307
  RevisionId: string | undefined;
442
-
443
308
  SignedUrl?: string;
444
-
445
309
  SignedUrlExpiresAt?: Date;
446
310
  }
447
-
448
311
  export interface ExportRevisionsToS3ResponseDetails {
449
312
  DataSetId: string | undefined;
450
-
451
313
  Encryption?: ExportServerSideEncryption;
452
-
453
314
  RevisionDestinations: RevisionDestinationEntry[] | undefined;
454
-
455
315
  EventActionArn?: string;
456
316
  }
457
-
458
317
  export interface ImportAssetFromApiGatewayApiResponseDetails {
459
318
  ApiDescription?: string;
460
-
461
319
  ApiId: string | undefined;
462
-
463
320
  ApiKey?: string;
464
-
465
321
  ApiName: string | undefined;
466
-
467
322
  ApiSpecificationMd5Hash: string | undefined;
468
-
469
323
  ApiSpecificationUploadUrl: string | undefined;
470
-
471
324
  ApiSpecificationUploadUrlExpiresAt: Date | undefined;
472
-
473
325
  DataSetId: string | undefined;
474
-
475
326
  ProtocolType: ProtocolType | string | undefined;
476
-
477
327
  RevisionId: string | undefined;
478
-
479
328
  Stage: string | undefined;
480
329
  }
481
-
482
330
  export interface ImportAssetFromSignedUrlResponseDetails {
483
331
  AssetName: string | undefined;
484
-
485
332
  DataSetId: string | undefined;
486
-
487
333
  Md5Hash?: string;
488
-
489
334
  RevisionId: string | undefined;
490
-
491
335
  SignedUrl?: string;
492
-
493
336
  SignedUrlExpiresAt?: Date;
494
337
  }
495
-
496
338
  export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
497
339
  AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
498
-
499
340
  DataSetId: string | undefined;
500
-
501
341
  RevisionId: string | undefined;
502
342
  }
503
-
504
343
  export interface ImportAssetsFromS3ResponseDetails {
505
344
  AssetSources: AssetSourceEntry[] | undefined;
506
-
507
345
  DataSetId: string | undefined;
508
-
509
346
  RevisionId: string | undefined;
510
347
  }
511
-
512
348
  export interface ResponseDetails {
513
349
  ExportAssetToSignedUrl?: ExportAssetToSignedUrlResponseDetails;
514
-
515
350
  ExportAssetsToS3?: ExportAssetsToS3ResponseDetails;
516
-
517
351
  ExportRevisionsToS3?: ExportRevisionsToS3ResponseDetails;
518
-
519
352
  ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlResponseDetails;
520
-
521
353
  ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails;
522
-
523
354
  ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesResponseDetails;
524
-
525
355
  ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiResponseDetails;
526
356
  }
527
-
528
357
  export interface ImportAssetFromSignedUrlJobErrorDetails {
529
358
  AssetName: string | undefined;
530
359
  }
531
-
532
360
  export interface Details {
533
361
  ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
534
-
535
362
  ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
536
363
  }
537
364
  export declare enum JobErrorLimitName {
@@ -544,20 +371,13 @@ export declare enum JobErrorResourceTypes {
544
371
  DATA_SET = "DATA_SET",
545
372
  REVISION = "REVISION",
546
373
  }
547
-
548
374
  export interface JobError {
549
375
  Code: Code | string | undefined;
550
-
551
376
  Details?: Details;
552
-
553
377
  LimitName?: JobErrorLimitName | string;
554
-
555
378
  LimitValue?: number;
556
-
557
379
  Message: string | undefined;
558
-
559
380
  ResourceId?: string;
560
-
561
381
  ResourceType?: JobErrorResourceTypes | string;
562
382
  }
563
383
  export declare enum State {
@@ -570,58 +390,36 @@ export declare enum State {
570
390
  }
571
391
  export interface CreateJobResponse {
572
392
  Arn?: string;
573
-
574
393
  CreatedAt?: Date;
575
-
576
394
  Details?: ResponseDetails;
577
-
578
395
  Errors?: JobError[];
579
-
580
396
  Id?: string;
581
-
582
397
  State?: State | string;
583
-
584
398
  Type?: Type | string;
585
-
586
399
  UpdatedAt?: Date;
587
400
  }
588
401
  export interface CreateRevisionRequest {
589
402
  Comment?: string;
590
-
591
403
  DataSetId: string | undefined;
592
-
593
404
  Tags?: Record<string, string>;
594
405
  }
595
406
  export interface CreateRevisionResponse {
596
407
  Arn?: string;
597
-
598
408
  Comment?: string;
599
-
600
409
  CreatedAt?: Date;
601
-
602
410
  DataSetId?: string;
603
-
604
411
  Finalized?: boolean;
605
-
606
412
  Id?: string;
607
-
608
413
  SourceId?: string;
609
-
610
414
  Tags?: Record<string, string>;
611
-
612
415
  UpdatedAt?: Date;
613
-
614
416
  RevocationComment?: string;
615
-
616
417
  Revoked?: boolean;
617
-
618
418
  RevokedAt?: Date;
619
419
  }
620
420
  export interface DeleteAssetRequest {
621
421
  AssetId: string | undefined;
622
-
623
422
  DataSetId: string | undefined;
624
-
625
423
  RevisionId: string | undefined;
626
424
  }
627
425
  export interface DeleteDataSetRequest {
@@ -632,35 +430,23 @@ export interface DeleteEventActionRequest {
632
430
  }
633
431
  export interface DeleteRevisionRequest {
634
432
  DataSetId: string | undefined;
635
-
636
433
  RevisionId: string | undefined;
637
434
  }
638
435
  export interface GetAssetRequest {
639
436
  AssetId: string | undefined;
640
-
641
437
  DataSetId: string | undefined;
642
-
643
438
  RevisionId: string | undefined;
644
439
  }
645
440
  export interface GetAssetResponse {
646
441
  Arn?: string;
647
-
648
442
  AssetDetails?: AssetDetails;
649
-
650
443
  AssetType?: AssetType | string;
651
-
652
444
  CreatedAt?: Date;
653
-
654
445
  DataSetId?: string;
655
-
656
446
  Id?: string;
657
-
658
447
  Name?: string;
659
-
660
448
  RevisionId?: string;
661
-
662
449
  SourceId?: string;
663
-
664
450
  UpdatedAt?: Date;
665
451
  }
666
452
  export interface GetDataSetRequest {
@@ -668,25 +454,15 @@ export interface GetDataSetRequest {
668
454
  }
669
455
  export interface GetDataSetResponse {
670
456
  Arn?: string;
671
-
672
457
  AssetType?: AssetType | string;
673
-
674
458
  CreatedAt?: Date;
675
-
676
459
  Description?: string;
677
-
678
460
  Id?: string;
679
-
680
461
  Name?: string;
681
-
682
462
  Origin?: Origin | string;
683
-
684
463
  OriginDetails?: OriginDetails;
685
-
686
464
  SourceId?: string;
687
-
688
465
  Tags?: Record<string, string>;
689
-
690
466
  UpdatedAt?: Date;
691
467
  }
692
468
  export interface GetEventActionRequest {
@@ -694,15 +470,10 @@ export interface GetEventActionRequest {
694
470
  }
695
471
  export interface GetEventActionResponse {
696
472
  Action?: Action;
697
-
698
473
  Arn?: string;
699
-
700
474
  CreatedAt?: Date;
701
-
702
475
  Event?: Event;
703
-
704
476
  Id?: string;
705
-
706
477
  UpdatedAt?: Date;
707
478
  }
708
479
  export interface GetJobRequest {
@@ -710,191 +481,120 @@ export interface GetJobRequest {
710
481
  }
711
482
  export interface GetJobResponse {
712
483
  Arn?: string;
713
-
714
484
  CreatedAt?: Date;
715
-
716
485
  Details?: ResponseDetails;
717
-
718
486
  Errors?: JobError[];
719
-
720
487
  Id?: string;
721
-
722
488
  State?: State | string;
723
-
724
489
  Type?: Type | string;
725
-
726
490
  UpdatedAt?: Date;
727
491
  }
728
492
  export interface GetRevisionRequest {
729
493
  DataSetId: string | undefined;
730
-
731
494
  RevisionId: string | undefined;
732
495
  }
733
496
  export interface GetRevisionResponse {
734
497
  Arn?: string;
735
-
736
498
  Comment?: string;
737
-
738
499
  CreatedAt?: Date;
739
-
740
500
  DataSetId?: string;
741
-
742
501
  Finalized?: boolean;
743
-
744
502
  Id?: string;
745
-
746
503
  SourceId?: string;
747
-
748
504
  Tags?: Record<string, string>;
749
-
750
505
  UpdatedAt?: Date;
751
-
752
506
  RevocationComment?: string;
753
-
754
507
  Revoked?: boolean;
755
-
756
508
  RevokedAt?: Date;
757
509
  }
758
510
  export interface ListDataSetRevisionsRequest {
759
511
  DataSetId: string | undefined;
760
-
761
512
  MaxResults?: number;
762
-
763
513
  NextToken?: string;
764
514
  }
765
-
766
515
  export interface RevisionEntry {
767
516
  Arn: string | undefined;
768
-
769
517
  Comment?: string;
770
-
771
518
  CreatedAt: Date | undefined;
772
-
773
519
  DataSetId: string | undefined;
774
-
775
520
  Finalized?: boolean;
776
-
777
521
  Id: string | undefined;
778
-
779
522
  SourceId?: string;
780
-
781
523
  UpdatedAt: Date | undefined;
782
-
783
524
  RevocationComment?: string;
784
-
785
525
  Revoked?: boolean;
786
-
787
526
  RevokedAt?: Date;
788
527
  }
789
528
  export interface ListDataSetRevisionsResponse {
790
529
  NextToken?: string;
791
-
792
530
  Revisions?: RevisionEntry[];
793
531
  }
794
532
  export interface ListDataSetsRequest {
795
533
  MaxResults?: number;
796
-
797
534
  NextToken?: string;
798
-
799
535
  Origin?: string;
800
536
  }
801
-
802
537
  export interface DataSetEntry {
803
538
  Arn: string | undefined;
804
-
805
539
  AssetType: AssetType | string | undefined;
806
-
807
540
  CreatedAt: Date | undefined;
808
-
809
541
  Description: string | undefined;
810
-
811
542
  Id: string | undefined;
812
-
813
543
  Name: string | undefined;
814
-
815
544
  Origin: Origin | string | undefined;
816
-
817
545
  OriginDetails?: OriginDetails;
818
-
819
546
  SourceId?: string;
820
-
821
547
  UpdatedAt: Date | undefined;
822
548
  }
823
549
  export interface ListDataSetsResponse {
824
550
  DataSets?: DataSetEntry[];
825
-
826
551
  NextToken?: string;
827
552
  }
828
553
  export interface ListEventActionsRequest {
829
554
  EventSourceId?: string;
830
-
831
555
  MaxResults?: number;
832
-
833
556
  NextToken?: string;
834
557
  }
835
-
836
558
  export interface EventActionEntry {
837
559
  Action: Action | undefined;
838
-
839
560
  Arn: string | undefined;
840
-
841
561
  CreatedAt: Date | undefined;
842
-
843
562
  Event: Event | undefined;
844
-
845
563
  Id: string | undefined;
846
-
847
564
  UpdatedAt: Date | undefined;
848
565
  }
849
566
  export interface ListEventActionsResponse {
850
567
  EventActions?: EventActionEntry[];
851
-
852
568
  NextToken?: string;
853
569
  }
854
570
  export interface ListJobsRequest {
855
571
  DataSetId?: string;
856
-
857
572
  MaxResults?: number;
858
-
859
573
  NextToken?: string;
860
-
861
574
  RevisionId?: string;
862
575
  }
863
-
864
576
  export interface JobEntry {
865
577
  Arn: string | undefined;
866
-
867
578
  CreatedAt: Date | undefined;
868
-
869
579
  Details: ResponseDetails | undefined;
870
-
871
580
  Errors?: JobError[];
872
-
873
581
  Id: string | undefined;
874
-
875
582
  State: State | string | undefined;
876
-
877
583
  Type: Type | string | undefined;
878
-
879
584
  UpdatedAt: Date | undefined;
880
585
  }
881
586
  export interface ListJobsResponse {
882
587
  Jobs?: JobEntry[];
883
-
884
588
  NextToken?: string;
885
589
  }
886
590
  export interface ListRevisionAssetsRequest {
887
591
  DataSetId: string | undefined;
888
-
889
592
  MaxResults?: number;
890
-
891
593
  NextToken?: string;
892
-
893
594
  RevisionId: string | undefined;
894
595
  }
895
596
  export interface ListRevisionAssetsResponse {
896
597
  Assets?: AssetEntry[];
897
-
898
598
  NextToken?: string;
899
599
  }
900
600
  export interface ListTagsForResourceRequest {
@@ -905,54 +605,34 @@ export interface ListTagsForResourceResponse {
905
605
  }
906
606
  export interface RevokeRevisionRequest {
907
607
  DataSetId: string | undefined;
908
-
909
608
  RevisionId: string | undefined;
910
-
911
609
  RevocationComment: string | undefined;
912
610
  }
913
611
  export interface RevokeRevisionResponse {
914
612
  Arn?: string;
915
-
916
613
  Comment?: string;
917
-
918
614
  CreatedAt?: Date;
919
-
920
615
  DataSetId?: string;
921
-
922
616
  Finalized?: boolean;
923
-
924
617
  Id?: string;
925
-
926
618
  SourceId?: string;
927
-
928
619
  UpdatedAt?: Date;
929
-
930
620
  RevocationComment?: string;
931
-
932
621
  Revoked?: boolean;
933
-
934
622
  RevokedAt?: Date;
935
623
  }
936
624
  export interface SendApiAssetRequest {
937
625
  Body?: string;
938
-
939
626
  QueryStringParameters?: Record<string, string>;
940
-
941
627
  AssetId: string | undefined;
942
-
943
628
  DataSetId: string | undefined;
944
-
945
629
  RequestHeaders?: Record<string, string>;
946
-
947
630
  Method?: string;
948
-
949
631
  Path?: string;
950
-
951
632
  RevisionId: string | undefined;
952
633
  }
953
634
  export interface SendApiAssetResponse {
954
635
  Body?: string;
955
-
956
636
  ResponseHeaders?: Record<string, string>;
957
637
  }
958
638
  export interface StartJobRequest {
@@ -961,463 +641,329 @@ export interface StartJobRequest {
961
641
  export interface StartJobResponse {}
962
642
  export interface TagResourceRequest {
963
643
  ResourceArn: string | undefined;
964
-
965
644
  Tags: Record<string, string> | undefined;
966
645
  }
967
646
  export interface UntagResourceRequest {
968
647
  ResourceArn: string | undefined;
969
-
970
648
  TagKeys: string[] | undefined;
971
649
  }
972
650
  export interface UpdateAssetRequest {
973
651
  AssetId: string | undefined;
974
-
975
652
  DataSetId: string | undefined;
976
-
977
653
  Name: string | undefined;
978
-
979
654
  RevisionId: string | undefined;
980
655
  }
981
656
  export interface UpdateAssetResponse {
982
657
  Arn?: string;
983
-
984
658
  AssetDetails?: AssetDetails;
985
-
986
659
  AssetType?: AssetType | string;
987
-
988
660
  CreatedAt?: Date;
989
-
990
661
  DataSetId?: string;
991
-
992
662
  Id?: string;
993
-
994
663
  Name?: string;
995
-
996
664
  RevisionId?: string;
997
-
998
665
  SourceId?: string;
999
-
1000
666
  UpdatedAt?: Date;
1001
667
  }
1002
668
  export interface UpdateDataSetRequest {
1003
669
  DataSetId: string | undefined;
1004
-
1005
670
  Description?: string;
1006
-
1007
671
  Name?: string;
1008
672
  }
1009
673
  export interface UpdateDataSetResponse {
1010
674
  Arn?: string;
1011
-
1012
675
  AssetType?: AssetType | string;
1013
-
1014
676
  CreatedAt?: Date;
1015
-
1016
677
  Description?: string;
1017
-
1018
678
  Id?: string;
1019
-
1020
679
  Name?: string;
1021
-
1022
680
  Origin?: Origin | string;
1023
-
1024
681
  OriginDetails?: OriginDetails;
1025
-
1026
682
  SourceId?: string;
1027
-
1028
683
  UpdatedAt?: Date;
1029
684
  }
1030
685
  export interface UpdateEventActionRequest {
1031
686
  Action?: Action;
1032
-
1033
687
  EventActionId: string | undefined;
1034
688
  }
1035
689
  export interface UpdateEventActionResponse {
1036
690
  Action?: Action;
1037
-
1038
691
  Arn?: string;
1039
-
1040
692
  CreatedAt?: Date;
1041
-
1042
693
  Event?: Event;
1043
-
1044
694
  Id?: string;
1045
-
1046
695
  UpdatedAt?: Date;
1047
696
  }
1048
697
  export interface UpdateRevisionRequest {
1049
698
  Comment?: string;
1050
-
1051
699
  DataSetId: string | undefined;
1052
-
1053
700
  Finalized?: boolean;
1054
-
1055
701
  RevisionId: string | undefined;
1056
702
  }
1057
703
  export interface UpdateRevisionResponse {
1058
704
  Arn?: string;
1059
-
1060
705
  Comment?: string;
1061
-
1062
706
  CreatedAt?: Date;
1063
-
1064
707
  DataSetId?: string;
1065
-
1066
708
  Finalized?: boolean;
1067
-
1068
709
  Id?: string;
1069
-
1070
710
  SourceId?: string;
1071
-
1072
711
  UpdatedAt?: Date;
1073
-
1074
712
  RevocationComment?: string;
1075
-
1076
713
  Revoked?: boolean;
1077
-
1078
714
  RevokedAt?: Date;
1079
715
  }
1080
-
1081
716
  export declare const ExportServerSideEncryptionFilterSensitiveLog: (
1082
717
  obj: ExportServerSideEncryption
1083
718
  ) => any;
1084
-
1085
719
  export declare const AutoExportRevisionDestinationEntryFilterSensitiveLog: (
1086
720
  obj: AutoExportRevisionDestinationEntry
1087
721
  ) => any;
1088
-
1089
722
  export declare const AutoExportRevisionToS3RequestDetailsFilterSensitiveLog: (
1090
723
  obj: AutoExportRevisionToS3RequestDetails
1091
724
  ) => any;
1092
-
1093
725
  export declare const ActionFilterSensitiveLog: (obj: Action) => any;
1094
-
1095
726
  export declare const ApiGatewayApiAssetFilterSensitiveLog: (
1096
727
  obj: ApiGatewayApiAsset
1097
728
  ) => any;
1098
-
1099
729
  export declare const AssetDestinationEntryFilterSensitiveLog: (
1100
730
  obj: AssetDestinationEntry
1101
731
  ) => any;
1102
-
1103
732
  export declare const RedshiftDataShareAssetFilterSensitiveLog: (
1104
733
  obj: RedshiftDataShareAsset
1105
734
  ) => any;
1106
-
1107
735
  export declare const S3SnapshotAssetFilterSensitiveLog: (
1108
736
  obj: S3SnapshotAsset
1109
737
  ) => any;
1110
-
1111
738
  export declare const AssetDetailsFilterSensitiveLog: (obj: AssetDetails) => any;
1112
-
1113
739
  export declare const AssetEntryFilterSensitiveLog: (obj: AssetEntry) => any;
1114
-
1115
740
  export declare const AssetSourceEntryFilterSensitiveLog: (
1116
741
  obj: AssetSourceEntry
1117
742
  ) => any;
1118
-
1119
743
  export declare const CancelJobRequestFilterSensitiveLog: (
1120
744
  obj: CancelJobRequest
1121
745
  ) => any;
1122
-
1123
746
  export declare const CreateDataSetRequestFilterSensitiveLog: (
1124
747
  obj: CreateDataSetRequest
1125
748
  ) => any;
1126
-
1127
749
  export declare const OriginDetailsFilterSensitiveLog: (
1128
750
  obj: OriginDetails
1129
751
  ) => any;
1130
-
1131
752
  export declare const CreateDataSetResponseFilterSensitiveLog: (
1132
753
  obj: CreateDataSetResponse
1133
754
  ) => any;
1134
-
1135
755
  export declare const RevisionPublishedFilterSensitiveLog: (
1136
756
  obj: RevisionPublished
1137
757
  ) => any;
1138
-
1139
758
  export declare const EventFilterSensitiveLog: (obj: Event) => any;
1140
-
1141
759
  export declare const CreateEventActionRequestFilterSensitiveLog: (
1142
760
  obj: CreateEventActionRequest
1143
761
  ) => any;
1144
-
1145
762
  export declare const CreateEventActionResponseFilterSensitiveLog: (
1146
763
  obj: CreateEventActionResponse
1147
764
  ) => any;
1148
-
1149
765
  export declare const ExportAssetsToS3RequestDetailsFilterSensitiveLog: (
1150
766
  obj: ExportAssetsToS3RequestDetails
1151
767
  ) => any;
1152
-
1153
768
  export declare const ExportAssetToSignedUrlRequestDetailsFilterSensitiveLog: (
1154
769
  obj: ExportAssetToSignedUrlRequestDetails
1155
770
  ) => any;
1156
-
1157
771
  export declare const RevisionDestinationEntryFilterSensitiveLog: (
1158
772
  obj: RevisionDestinationEntry
1159
773
  ) => any;
1160
-
1161
774
  export declare const ExportRevisionsToS3RequestDetailsFilterSensitiveLog: (
1162
775
  obj: ExportRevisionsToS3RequestDetails
1163
776
  ) => any;
1164
-
1165
777
  export declare const ImportAssetFromApiGatewayApiRequestDetailsFilterSensitiveLog: (
1166
778
  obj: ImportAssetFromApiGatewayApiRequestDetails
1167
779
  ) => any;
1168
-
1169
780
  export declare const ImportAssetFromSignedUrlRequestDetailsFilterSensitiveLog: (
1170
781
  obj: ImportAssetFromSignedUrlRequestDetails
1171
782
  ) => any;
1172
-
1173
783
  export declare const RedshiftDataShareAssetSourceEntryFilterSensitiveLog: (
1174
784
  obj: RedshiftDataShareAssetSourceEntry
1175
785
  ) => any;
1176
-
1177
786
  export declare const ImportAssetsFromRedshiftDataSharesRequestDetailsFilterSensitiveLog: (
1178
787
  obj: ImportAssetsFromRedshiftDataSharesRequestDetails
1179
788
  ) => any;
1180
-
1181
789
  export declare const ImportAssetsFromS3RequestDetailsFilterSensitiveLog: (
1182
790
  obj: ImportAssetsFromS3RequestDetails
1183
791
  ) => any;
1184
-
1185
792
  export declare const RequestDetailsFilterSensitiveLog: (
1186
793
  obj: RequestDetails
1187
794
  ) => any;
1188
-
1189
795
  export declare const CreateJobRequestFilterSensitiveLog: (
1190
796
  obj: CreateJobRequest
1191
797
  ) => any;
1192
-
1193
798
  export declare const ExportAssetsToS3ResponseDetailsFilterSensitiveLog: (
1194
799
  obj: ExportAssetsToS3ResponseDetails
1195
800
  ) => any;
1196
-
1197
801
  export declare const ExportAssetToSignedUrlResponseDetailsFilterSensitiveLog: (
1198
802
  obj: ExportAssetToSignedUrlResponseDetails
1199
803
  ) => any;
1200
-
1201
804
  export declare const ExportRevisionsToS3ResponseDetailsFilterSensitiveLog: (
1202
805
  obj: ExportRevisionsToS3ResponseDetails
1203
806
  ) => any;
1204
-
1205
807
  export declare const ImportAssetFromApiGatewayApiResponseDetailsFilterSensitiveLog: (
1206
808
  obj: ImportAssetFromApiGatewayApiResponseDetails
1207
809
  ) => any;
1208
-
1209
810
  export declare const ImportAssetFromSignedUrlResponseDetailsFilterSensitiveLog: (
1210
811
  obj: ImportAssetFromSignedUrlResponseDetails
1211
812
  ) => any;
1212
-
1213
813
  export declare const ImportAssetsFromRedshiftDataSharesResponseDetailsFilterSensitiveLog: (
1214
814
  obj: ImportAssetsFromRedshiftDataSharesResponseDetails
1215
815
  ) => any;
1216
-
1217
816
  export declare const ImportAssetsFromS3ResponseDetailsFilterSensitiveLog: (
1218
817
  obj: ImportAssetsFromS3ResponseDetails
1219
818
  ) => any;
1220
-
1221
819
  export declare const ResponseDetailsFilterSensitiveLog: (
1222
820
  obj: ResponseDetails
1223
821
  ) => any;
1224
-
1225
822
  export declare const ImportAssetFromSignedUrlJobErrorDetailsFilterSensitiveLog: (
1226
823
  obj: ImportAssetFromSignedUrlJobErrorDetails
1227
824
  ) => any;
1228
-
1229
825
  export declare const DetailsFilterSensitiveLog: (obj: Details) => any;
1230
-
1231
826
  export declare const JobErrorFilterSensitiveLog: (obj: JobError) => any;
1232
-
1233
827
  export declare const CreateJobResponseFilterSensitiveLog: (
1234
828
  obj: CreateJobResponse
1235
829
  ) => any;
1236
-
1237
830
  export declare const CreateRevisionRequestFilterSensitiveLog: (
1238
831
  obj: CreateRevisionRequest
1239
832
  ) => any;
1240
-
1241
833
  export declare const CreateRevisionResponseFilterSensitiveLog: (
1242
834
  obj: CreateRevisionResponse
1243
835
  ) => any;
1244
-
1245
836
  export declare const DeleteAssetRequestFilterSensitiveLog: (
1246
837
  obj: DeleteAssetRequest
1247
838
  ) => any;
1248
-
1249
839
  export declare const DeleteDataSetRequestFilterSensitiveLog: (
1250
840
  obj: DeleteDataSetRequest
1251
841
  ) => any;
1252
-
1253
842
  export declare const DeleteEventActionRequestFilterSensitiveLog: (
1254
843
  obj: DeleteEventActionRequest
1255
844
  ) => any;
1256
-
1257
845
  export declare const DeleteRevisionRequestFilterSensitiveLog: (
1258
846
  obj: DeleteRevisionRequest
1259
847
  ) => any;
1260
-
1261
848
  export declare const GetAssetRequestFilterSensitiveLog: (
1262
849
  obj: GetAssetRequest
1263
850
  ) => any;
1264
-
1265
851
  export declare const GetAssetResponseFilterSensitiveLog: (
1266
852
  obj: GetAssetResponse
1267
853
  ) => any;
1268
-
1269
854
  export declare const GetDataSetRequestFilterSensitiveLog: (
1270
855
  obj: GetDataSetRequest
1271
856
  ) => any;
1272
-
1273
857
  export declare const GetDataSetResponseFilterSensitiveLog: (
1274
858
  obj: GetDataSetResponse
1275
859
  ) => any;
1276
-
1277
860
  export declare const GetEventActionRequestFilterSensitiveLog: (
1278
861
  obj: GetEventActionRequest
1279
862
  ) => any;
1280
-
1281
863
  export declare const GetEventActionResponseFilterSensitiveLog: (
1282
864
  obj: GetEventActionResponse
1283
865
  ) => any;
1284
-
1285
866
  export declare const GetJobRequestFilterSensitiveLog: (
1286
867
  obj: GetJobRequest
1287
868
  ) => any;
1288
-
1289
869
  export declare const GetJobResponseFilterSensitiveLog: (
1290
870
  obj: GetJobResponse
1291
871
  ) => any;
1292
-
1293
872
  export declare const GetRevisionRequestFilterSensitiveLog: (
1294
873
  obj: GetRevisionRequest
1295
874
  ) => any;
1296
-
1297
875
  export declare const GetRevisionResponseFilterSensitiveLog: (
1298
876
  obj: GetRevisionResponse
1299
877
  ) => any;
1300
-
1301
878
  export declare const ListDataSetRevisionsRequestFilterSensitiveLog: (
1302
879
  obj: ListDataSetRevisionsRequest
1303
880
  ) => any;
1304
-
1305
881
  export declare const RevisionEntryFilterSensitiveLog: (
1306
882
  obj: RevisionEntry
1307
883
  ) => any;
1308
-
1309
884
  export declare const ListDataSetRevisionsResponseFilterSensitiveLog: (
1310
885
  obj: ListDataSetRevisionsResponse
1311
886
  ) => any;
1312
-
1313
887
  export declare const ListDataSetsRequestFilterSensitiveLog: (
1314
888
  obj: ListDataSetsRequest
1315
889
  ) => any;
1316
-
1317
890
  export declare const DataSetEntryFilterSensitiveLog: (obj: DataSetEntry) => any;
1318
-
1319
891
  export declare const ListDataSetsResponseFilterSensitiveLog: (
1320
892
  obj: ListDataSetsResponse
1321
893
  ) => any;
1322
-
1323
894
  export declare const ListEventActionsRequestFilterSensitiveLog: (
1324
895
  obj: ListEventActionsRequest
1325
896
  ) => any;
1326
-
1327
897
  export declare const EventActionEntryFilterSensitiveLog: (
1328
898
  obj: EventActionEntry
1329
899
  ) => any;
1330
-
1331
900
  export declare const ListEventActionsResponseFilterSensitiveLog: (
1332
901
  obj: ListEventActionsResponse
1333
902
  ) => any;
1334
-
1335
903
  export declare const ListJobsRequestFilterSensitiveLog: (
1336
904
  obj: ListJobsRequest
1337
905
  ) => any;
1338
-
1339
906
  export declare const JobEntryFilterSensitiveLog: (obj: JobEntry) => any;
1340
-
1341
907
  export declare const ListJobsResponseFilterSensitiveLog: (
1342
908
  obj: ListJobsResponse
1343
909
  ) => any;
1344
-
1345
910
  export declare const ListRevisionAssetsRequestFilterSensitiveLog: (
1346
911
  obj: ListRevisionAssetsRequest
1347
912
  ) => any;
1348
-
1349
913
  export declare const ListRevisionAssetsResponseFilterSensitiveLog: (
1350
914
  obj: ListRevisionAssetsResponse
1351
915
  ) => any;
1352
-
1353
916
  export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1354
917
  obj: ListTagsForResourceRequest
1355
918
  ) => any;
1356
-
1357
919
  export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1358
920
  obj: ListTagsForResourceResponse
1359
921
  ) => any;
1360
-
1361
922
  export declare const RevokeRevisionRequestFilterSensitiveLog: (
1362
923
  obj: RevokeRevisionRequest
1363
924
  ) => any;
1364
-
1365
925
  export declare const RevokeRevisionResponseFilterSensitiveLog: (
1366
926
  obj: RevokeRevisionResponse
1367
927
  ) => any;
1368
-
1369
928
  export declare const SendApiAssetRequestFilterSensitiveLog: (
1370
929
  obj: SendApiAssetRequest
1371
930
  ) => any;
1372
-
1373
931
  export declare const SendApiAssetResponseFilterSensitiveLog: (
1374
932
  obj: SendApiAssetResponse
1375
933
  ) => any;
1376
-
1377
934
  export declare const StartJobRequestFilterSensitiveLog: (
1378
935
  obj: StartJobRequest
1379
936
  ) => any;
1380
-
1381
937
  export declare const StartJobResponseFilterSensitiveLog: (
1382
938
  obj: StartJobResponse
1383
939
  ) => any;
1384
-
1385
940
  export declare const TagResourceRequestFilterSensitiveLog: (
1386
941
  obj: TagResourceRequest
1387
942
  ) => any;
1388
-
1389
943
  export declare const UntagResourceRequestFilterSensitiveLog: (
1390
944
  obj: UntagResourceRequest
1391
945
  ) => any;
1392
-
1393
946
  export declare const UpdateAssetRequestFilterSensitiveLog: (
1394
947
  obj: UpdateAssetRequest
1395
948
  ) => any;
1396
-
1397
949
  export declare const UpdateAssetResponseFilterSensitiveLog: (
1398
950
  obj: UpdateAssetResponse
1399
951
  ) => any;
1400
-
1401
952
  export declare const UpdateDataSetRequestFilterSensitiveLog: (
1402
953
  obj: UpdateDataSetRequest
1403
954
  ) => any;
1404
-
1405
955
  export declare const UpdateDataSetResponseFilterSensitiveLog: (
1406
956
  obj: UpdateDataSetResponse
1407
957
  ) => any;
1408
-
1409
958
  export declare const UpdateEventActionRequestFilterSensitiveLog: (
1410
959
  obj: UpdateEventActionRequest
1411
960
  ) => any;
1412
-
1413
961
  export declare const UpdateEventActionResponseFilterSensitiveLog: (
1414
962
  obj: UpdateEventActionResponse
1415
963
  ) => any;
1416
-
1417
964
  export declare const UpdateRevisionRequestFilterSensitiveLog: (
1418
965
  obj: UpdateRevisionRequest
1419
966
  ) => any;
1420
-
1421
967
  export declare const UpdateRevisionResponseFilterSensitiveLog: (
1422
968
  obj: UpdateRevisionResponse
1423
969
  ) => any;