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