@aws-sdk/client-dataexchange 3.169.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 (51) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/DataExchange.d.ts +497 -150
  3. package/dist-types/ts3.4/DataExchangeClient.d.ts +279 -102
  4. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +30 -17
  11. package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +31 -17
  12. package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +30 -17
  13. package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
  17. package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +35 -17
  25. package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  29. package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +36 -17
  32. package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +35 -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 +7 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +969 -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 +65 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  51. package/package.json +34 -34
@@ -1,1337 +1,969 @@
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
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare enum ServerSideEncryptionTypes {
12
+ AES256 = "AES256",
13
+ aws_kms = "aws:kms",
14
+ }
15
+ export interface ExportServerSideEncryption {
16
+ KmsKeyArn?: string;
17
+ Type: ServerSideEncryptionTypes | string | undefined;
18
+ }
19
+ export interface AutoExportRevisionDestinationEntry {
20
+ Bucket: string | undefined;
21
+ KeyPattern?: string;
22
+ }
23
+ export interface AutoExportRevisionToS3RequestDetails {
24
+ Encryption?: ExportServerSideEncryption;
25
+ RevisionDestination: AutoExportRevisionDestinationEntry | undefined;
26
+ }
27
+ export interface Action {
28
+ ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
29
+ }
30
+ export declare enum ProtocolType {
31
+ REST = "REST",
32
+ }
33
+ export interface ApiGatewayApiAsset {
34
+ ApiDescription?: string;
35
+ ApiEndpoint?: string;
36
+ ApiId?: string;
37
+ ApiKey?: string;
38
+ ApiName?: string;
39
+ ApiSpecificationDownloadUrl?: string;
40
+ ApiSpecificationDownloadUrlExpiresAt?: Date;
41
+ ProtocolType?: ProtocolType | string;
42
+ Stage?: string;
43
+ }
44
+ export interface AssetDestinationEntry {
45
+ AssetId: string | undefined;
46
+ Bucket: string | undefined;
47
+ Key?: string;
48
+ }
49
+ export interface RedshiftDataShareAsset {
50
+ Arn: string | undefined;
51
+ }
52
+ export interface S3SnapshotAsset {
53
+ Size: number | undefined;
54
+ }
55
+ export interface AssetDetails {
56
+ S3SnapshotAsset?: S3SnapshotAsset;
57
+ RedshiftDataShareAsset?: RedshiftDataShareAsset;
58
+ ApiGatewayApiAsset?: ApiGatewayApiAsset;
59
+ }
60
+ export declare enum AssetType {
61
+ API_GATEWAY_API = "API_GATEWAY_API",
62
+ REDSHIFT_DATA_SHARE = "REDSHIFT_DATA_SHARE",
63
+ S3_SNAPSHOT = "S3_SNAPSHOT",
64
+ }
65
+ export interface AssetEntry {
66
+ Arn: string | undefined;
67
+ AssetDetails: AssetDetails | undefined;
68
+ AssetType: AssetType | string | undefined;
69
+ CreatedAt: Date | undefined;
70
+ DataSetId: string | undefined;
71
+ Id: string | undefined;
72
+ Name: string | undefined;
73
+ RevisionId: string | undefined;
74
+ SourceId?: string;
75
+ UpdatedAt: Date | undefined;
76
+ }
77
+ export interface AssetSourceEntry {
78
+ Bucket: string | undefined;
79
+ Key: string | undefined;
80
+ }
81
+ export interface CancelJobRequest {
82
+ JobId: string | undefined;
83
+ }
84
+ export declare enum ResourceType {
85
+ ASSET = "ASSET",
86
+ DATA_SET = "DATA_SET",
87
+ EVENT_ACTION = "EVENT_ACTION",
88
+ JOB = "JOB",
89
+ REVISION = "REVISION",
90
+ }
91
+ export declare class ConflictException extends __BaseException {
92
+ readonly name: "ConflictException";
93
+ readonly $fault: "client";
94
+ Message: string | undefined;
95
+ ResourceId?: string;
96
+ ResourceType?: ResourceType | string;
97
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
98
+ }
99
+ export declare class InternalServerException extends __BaseException {
100
+ readonly name: "InternalServerException";
101
+ readonly $fault: "server";
102
+ Message: string | undefined;
103
+ constructor(
104
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
105
+ );
106
+ }
107
+ export declare class ResourceNotFoundException extends __BaseException {
108
+ readonly name: "ResourceNotFoundException";
109
+ readonly $fault: "client";
110
+ Message: string | undefined;
111
+ ResourceId?: string;
112
+ ResourceType?: ResourceType | string;
113
+ constructor(
114
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
115
+ );
116
+ }
117
+ export declare class ThrottlingException extends __BaseException {
118
+ readonly name: "ThrottlingException";
119
+ readonly $fault: "client";
120
+ Message: string | undefined;
121
+ constructor(
122
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
123
+ );
124
+ }
125
+ export declare enum ExceptionCause {
126
+ InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
127
+ S3AccessDenied = "S3AccessDenied",
128
+ }
129
+ export declare class ValidationException extends __BaseException {
130
+ readonly name: "ValidationException";
131
+ readonly $fault: "client";
132
+ Message: string | undefined;
133
+ ExceptionCause?: ExceptionCause | string;
134
+ constructor(
135
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
136
+ );
137
+ }
138
+ export declare enum Code {
139
+ ACCESS_DENIED_EXCEPTION = "ACCESS_DENIED_EXCEPTION",
140
+ INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
141
+ MALWARE_DETECTED = "MALWARE_DETECTED",
142
+ MALWARE_SCAN_ENCRYPTED_FILE = "MALWARE_SCAN_ENCRYPTED_FILE",
143
+ RESOURCE_NOT_FOUND_EXCEPTION = "RESOURCE_NOT_FOUND_EXCEPTION",
144
+ SERVICE_QUOTA_EXCEEDED_EXCEPTION = "SERVICE_QUOTA_EXCEEDED_EXCEPTION",
145
+ VALIDATION_EXCEPTION = "VALIDATION_EXCEPTION",
146
+ }
147
+ export interface CreateDataSetRequest {
148
+ AssetType: AssetType | string | undefined;
149
+ Description: string | undefined;
150
+ Name: string | undefined;
151
+ Tags?: Record<string, string>;
152
+ }
153
+ export declare enum Origin {
154
+ ENTITLED = "ENTITLED",
155
+ OWNED = "OWNED",
156
+ }
157
+ export interface OriginDetails {
158
+ ProductId: string | undefined;
159
+ }
160
+ export interface CreateDataSetResponse {
161
+ Arn?: string;
162
+ AssetType?: AssetType | string;
163
+ CreatedAt?: Date;
164
+ Description?: string;
165
+ Id?: string;
166
+ Name?: string;
167
+ Origin?: Origin | string;
168
+ OriginDetails?: OriginDetails;
169
+ SourceId?: string;
170
+ Tags?: Record<string, string>;
171
+ UpdatedAt?: Date;
172
+ }
173
+ export declare enum LimitName {
174
+ Amazon_API_Gateway_API_assets_per_revision = "Amazon API Gateway API assets per revision",
175
+ Amazon_Redshift_datashare_assets_per_import_job_from_Redshift = "Amazon Redshift datashare assets per import job from Redshift",
176
+ Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
177
+ Asset_per_export_job_from_Amazon_S3 = "Asset per export job from Amazon S3",
178
+ Asset_size_in_GB = "Asset size in GB",
179
+ Assets_per_import_job_from_Amazon_S3 = "Assets per import job from Amazon S3",
180
+ Assets_per_revision = "Assets per revision",
181
+ Auto_export_event_actions_per_data_set = "Auto export event actions per data set",
182
+ Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3 = "Concurrent in progress jobs to export assets to Amazon S3",
183
+ Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL = "Concurrent in progress jobs to export assets to a signed URL",
184
+ Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3 = "Concurrent in progress jobs to export revisions to Amazon S3",
185
+ Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares = "Concurrent in progress jobs to import assets from Amazon Redshift datashares",
186
+ Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3 = "Concurrent in progress jobs to import assets from Amazon S3",
187
+ Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL = "Concurrent in progress jobs to import assets from a signed URL",
188
+ Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API = "Concurrent in progress jobs to import assets from an API Gateway API",
189
+ Data_sets_per_account = "Data sets per account",
190
+ Data_sets_per_product = "Data sets per product",
191
+ Event_actions_per_account = "Event actions per account",
192
+ Products_per_account = "Products per account",
193
+ Revisions_per_Amazon_API_Gateway_API_data_set = "Revisions per Amazon API Gateway API data set",
194
+ Revisions_per_Amazon_Redshift_datashare_data_set = "Revisions per Amazon Redshift datashare data set",
195
+ Revisions_per_data_set = "Revisions per data set",
196
+ }
197
+ export declare class ServiceLimitExceededException extends __BaseException {
198
+ readonly name: "ServiceLimitExceededException";
199
+ readonly $fault: "client";
200
+ LimitName?: LimitName | string;
201
+ LimitValue?: number;
202
+ Message: string | undefined;
203
+ constructor(
204
+ opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
205
+ );
206
+ }
207
+ export interface RevisionPublished {
208
+ DataSetId: string | undefined;
209
+ }
210
+ export interface Event {
211
+ RevisionPublished?: RevisionPublished;
212
+ }
213
+ export interface CreateEventActionRequest {
214
+ Action: Action | undefined;
215
+ Event: Event | undefined;
216
+ }
217
+ export interface CreateEventActionResponse {
218
+ Action?: Action;
219
+ Arn?: string;
220
+ CreatedAt?: Date;
221
+ Event?: Event;
222
+ Id?: string;
223
+ UpdatedAt?: Date;
224
+ }
225
+ export interface ExportAssetsToS3RequestDetails {
226
+ AssetDestinations: AssetDestinationEntry[] | undefined;
227
+ DataSetId: string | undefined;
228
+ Encryption?: ExportServerSideEncryption;
229
+ RevisionId: string | undefined;
230
+ }
231
+ export interface ExportAssetToSignedUrlRequestDetails {
232
+ AssetId: string | undefined;
233
+ DataSetId: string | undefined;
234
+ RevisionId: string | undefined;
235
+ }
236
+ export interface RevisionDestinationEntry {
237
+ Bucket: string | undefined;
238
+ KeyPattern?: string;
239
+ RevisionId: string | undefined;
240
+ }
241
+ export interface ExportRevisionsToS3RequestDetails {
242
+ DataSetId: string | undefined;
243
+ Encryption?: ExportServerSideEncryption;
244
+ RevisionDestinations: RevisionDestinationEntry[] | undefined;
245
+ }
246
+ export interface ImportAssetFromApiGatewayApiRequestDetails {
247
+ ApiDescription?: string;
248
+ ApiId: string | undefined;
249
+ ApiKey?: string;
250
+ ApiName: string | undefined;
251
+ ApiSpecificationMd5Hash: string | undefined;
252
+ DataSetId: string | undefined;
253
+ ProtocolType: ProtocolType | string | undefined;
254
+ RevisionId: string | undefined;
255
+ Stage: string | undefined;
256
+ }
257
+ export interface ImportAssetFromSignedUrlRequestDetails {
258
+ AssetName: string | undefined;
259
+ DataSetId: string | undefined;
260
+ Md5Hash: string | undefined;
261
+ RevisionId: string | undefined;
262
+ }
263
+ export interface RedshiftDataShareAssetSourceEntry {
264
+ DataShareArn: string | undefined;
265
+ }
266
+ export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
267
+ AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
268
+ DataSetId: string | undefined;
269
+ RevisionId: string | undefined;
270
+ }
271
+ export interface ImportAssetsFromS3RequestDetails {
272
+ AssetSources: AssetSourceEntry[] | undefined;
273
+ DataSetId: string | undefined;
274
+ RevisionId: string | undefined;
275
+ }
276
+ export interface RequestDetails {
277
+ ExportAssetToSignedUrl?: ExportAssetToSignedUrlRequestDetails;
278
+ ExportAssetsToS3?: ExportAssetsToS3RequestDetails;
279
+ ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails;
280
+ ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails;
281
+ ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
282
+ ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails;
283
+ ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails;
284
+ }
285
+ export declare enum Type {
286
+ EXPORT_ASSETS_TO_S3 = "EXPORT_ASSETS_TO_S3",
287
+ EXPORT_ASSET_TO_SIGNED_URL = "EXPORT_ASSET_TO_SIGNED_URL",
288
+ EXPORT_REVISIONS_TO_S3 = "EXPORT_REVISIONS_TO_S3",
289
+ IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES = "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES",
290
+ IMPORT_ASSETS_FROM_S3 = "IMPORT_ASSETS_FROM_S3",
291
+ IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
292
+ IMPORT_ASSET_FROM_SIGNED_URL = "IMPORT_ASSET_FROM_SIGNED_URL",
293
+ }
294
+ export interface CreateJobRequest {
295
+ Details: RequestDetails | undefined;
296
+ Type: Type | string | undefined;
297
+ }
298
+ export interface ExportAssetsToS3ResponseDetails {
299
+ AssetDestinations: AssetDestinationEntry[] | undefined;
300
+ DataSetId: string | undefined;
301
+ Encryption?: ExportServerSideEncryption;
302
+ RevisionId: string | undefined;
303
+ }
304
+ export interface ExportAssetToSignedUrlResponseDetails {
305
+ AssetId: string | undefined;
306
+ DataSetId: string | undefined;
307
+ RevisionId: string | undefined;
308
+ SignedUrl?: string;
309
+ SignedUrlExpiresAt?: Date;
310
+ }
311
+ export interface ExportRevisionsToS3ResponseDetails {
312
+ DataSetId: string | undefined;
313
+ Encryption?: ExportServerSideEncryption;
314
+ RevisionDestinations: RevisionDestinationEntry[] | undefined;
315
+ EventActionArn?: string;
316
+ }
317
+ export interface ImportAssetFromApiGatewayApiResponseDetails {
318
+ ApiDescription?: string;
319
+ ApiId: string | undefined;
320
+ ApiKey?: string;
321
+ ApiName: string | undefined;
322
+ ApiSpecificationMd5Hash: string | undefined;
323
+ ApiSpecificationUploadUrl: string | undefined;
324
+ ApiSpecificationUploadUrlExpiresAt: Date | undefined;
325
+ DataSetId: string | undefined;
326
+ ProtocolType: ProtocolType | string | undefined;
327
+ RevisionId: string | undefined;
328
+ Stage: string | undefined;
329
+ }
330
+ export interface ImportAssetFromSignedUrlResponseDetails {
331
+ AssetName: string | undefined;
332
+ DataSetId: string | undefined;
333
+ Md5Hash?: string;
334
+ RevisionId: string | undefined;
335
+ SignedUrl?: string;
336
+ SignedUrlExpiresAt?: Date;
337
+ }
338
+ export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
339
+ AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
340
+ DataSetId: string | undefined;
341
+ RevisionId: string | undefined;
342
+ }
343
+ export interface ImportAssetsFromS3ResponseDetails {
344
+ AssetSources: AssetSourceEntry[] | undefined;
345
+ DataSetId: string | undefined;
346
+ RevisionId: string | undefined;
347
+ }
348
+ export interface ResponseDetails {
349
+ ExportAssetToSignedUrl?: ExportAssetToSignedUrlResponseDetails;
350
+ ExportAssetsToS3?: ExportAssetsToS3ResponseDetails;
351
+ ExportRevisionsToS3?: ExportRevisionsToS3ResponseDetails;
352
+ ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlResponseDetails;
353
+ ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails;
354
+ ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesResponseDetails;
355
+ ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiResponseDetails;
356
+ }
357
+ export interface ImportAssetFromSignedUrlJobErrorDetails {
358
+ AssetName: string | undefined;
359
+ }
360
+ export interface Details {
361
+ ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
362
+ ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
363
+ }
364
+ export declare enum JobErrorLimitName {
365
+ Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
366
+ Asset_size_in_GB = "Asset size in GB",
367
+ Assets_per_revision = "Assets per revision",
368
+ }
369
+ export declare enum JobErrorResourceTypes {
370
+ ASSET = "ASSET",
371
+ DATA_SET = "DATA_SET",
372
+ REVISION = "REVISION",
373
+ }
374
+ export interface JobError {
375
+ Code: Code | string | undefined;
376
+ Details?: Details;
377
+ LimitName?: JobErrorLimitName | string;
378
+ LimitValue?: number;
379
+ Message: string | undefined;
380
+ ResourceId?: string;
381
+ ResourceType?: JobErrorResourceTypes | string;
382
+ }
383
+ export declare enum State {
384
+ CANCELLED = "CANCELLED",
385
+ COMPLETED = "COMPLETED",
386
+ ERROR = "ERROR",
387
+ IN_PROGRESS = "IN_PROGRESS",
388
+ TIMED_OUT = "TIMED_OUT",
389
+ WAITING = "WAITING",
390
+ }
391
+ export interface CreateJobResponse {
392
+ Arn?: string;
393
+ CreatedAt?: Date;
394
+ Details?: ResponseDetails;
395
+ Errors?: JobError[];
396
+ Id?: string;
397
+ State?: State | string;
398
+ Type?: Type | string;
399
+ UpdatedAt?: Date;
400
+ }
401
+ export interface CreateRevisionRequest {
402
+ Comment?: string;
403
+ DataSetId: string | undefined;
404
+ Tags?: Record<string, string>;
405
+ }
406
+ export interface CreateRevisionResponse {
407
+ Arn?: string;
408
+ Comment?: string;
409
+ CreatedAt?: Date;
410
+ DataSetId?: string;
411
+ Finalized?: boolean;
412
+ Id?: string;
413
+ SourceId?: string;
414
+ Tags?: Record<string, string>;
415
+ UpdatedAt?: Date;
416
+ RevocationComment?: string;
417
+ Revoked?: boolean;
418
+ RevokedAt?: Date;
419
+ }
420
+ export interface DeleteAssetRequest {
421
+ AssetId: string | undefined;
422
+ DataSetId: string | undefined;
423
+ RevisionId: string | undefined;
424
+ }
425
+ export interface DeleteDataSetRequest {
426
+ DataSetId: string | undefined;
427
+ }
428
+ export interface DeleteEventActionRequest {
429
+ EventActionId: string | undefined;
430
+ }
431
+ export interface DeleteRevisionRequest {
432
+ DataSetId: string | undefined;
433
+ RevisionId: string | undefined;
434
+ }
435
+ export interface GetAssetRequest {
436
+ AssetId: string | undefined;
437
+ DataSetId: string | undefined;
438
+ RevisionId: string | undefined;
439
+ }
440
+ export interface GetAssetResponse {
441
+ Arn?: string;
442
+ AssetDetails?: AssetDetails;
443
+ AssetType?: AssetType | string;
444
+ CreatedAt?: Date;
445
+ DataSetId?: string;
446
+ Id?: string;
447
+ Name?: string;
448
+ RevisionId?: string;
449
+ SourceId?: string;
450
+ UpdatedAt?: Date;
451
+ }
452
+ export interface GetDataSetRequest {
453
+ DataSetId: string | undefined;
454
+ }
455
+ export interface GetDataSetResponse {
456
+ Arn?: string;
457
+ AssetType?: AssetType | string;
458
+ CreatedAt?: Date;
459
+ Description?: string;
460
+ Id?: string;
461
+ Name?: string;
462
+ Origin?: Origin | string;
463
+ OriginDetails?: OriginDetails;
464
+ SourceId?: string;
465
+ Tags?: Record<string, string>;
466
+ UpdatedAt?: Date;
467
+ }
468
+ export interface GetEventActionRequest {
469
+ EventActionId: string | undefined;
470
+ }
471
+ export interface GetEventActionResponse {
472
+ Action?: Action;
473
+ Arn?: string;
474
+ CreatedAt?: Date;
475
+ Event?: Event;
476
+ Id?: string;
477
+ UpdatedAt?: Date;
478
+ }
479
+ export interface GetJobRequest {
480
+ JobId: string | undefined;
481
+ }
482
+ export interface GetJobResponse {
483
+ Arn?: string;
484
+ CreatedAt?: Date;
485
+ Details?: ResponseDetails;
486
+ Errors?: JobError[];
487
+ Id?: string;
488
+ State?: State | string;
489
+ Type?: Type | string;
490
+ UpdatedAt?: Date;
491
+ }
492
+ export interface GetRevisionRequest {
493
+ DataSetId: string | undefined;
494
+ RevisionId: string | undefined;
495
+ }
496
+ export interface GetRevisionResponse {
497
+ Arn?: string;
498
+ Comment?: string;
499
+ CreatedAt?: Date;
500
+ DataSetId?: string;
501
+ Finalized?: boolean;
502
+ Id?: string;
503
+ SourceId?: string;
504
+ Tags?: Record<string, string>;
505
+ UpdatedAt?: Date;
506
+ RevocationComment?: string;
507
+ Revoked?: boolean;
508
+ RevokedAt?: Date;
509
+ }
510
+ export interface ListDataSetRevisionsRequest {
511
+ DataSetId: string | undefined;
512
+ MaxResults?: number;
513
+ NextToken?: string;
514
+ }
515
+ export interface RevisionEntry {
516
+ Arn: string | undefined;
517
+ Comment?: string;
518
+ CreatedAt: Date | undefined;
519
+ DataSetId: string | undefined;
520
+ Finalized?: boolean;
521
+ Id: string | undefined;
522
+ SourceId?: string;
523
+ UpdatedAt: Date | undefined;
524
+ RevocationComment?: string;
525
+ Revoked?: boolean;
526
+ RevokedAt?: Date;
527
+ }
528
+ export interface ListDataSetRevisionsResponse {
529
+ NextToken?: string;
530
+ Revisions?: RevisionEntry[];
531
+ }
532
+ export interface ListDataSetsRequest {
533
+ MaxResults?: number;
534
+ NextToken?: string;
535
+ Origin?: string;
536
+ }
537
+ export interface DataSetEntry {
538
+ Arn: string | undefined;
539
+ AssetType: AssetType | string | undefined;
540
+ CreatedAt: Date | undefined;
541
+ Description: string | undefined;
542
+ Id: string | undefined;
543
+ Name: string | undefined;
544
+ Origin: Origin | string | undefined;
545
+ OriginDetails?: OriginDetails;
546
+ SourceId?: string;
547
+ UpdatedAt: Date | undefined;
548
+ }
549
+ export interface ListDataSetsResponse {
550
+ DataSets?: DataSetEntry[];
551
+ NextToken?: string;
552
+ }
553
+ export interface ListEventActionsRequest {
554
+ EventSourceId?: string;
555
+ MaxResults?: number;
556
+ NextToken?: string;
557
+ }
558
+ export interface EventActionEntry {
559
+ Action: Action | undefined;
560
+ Arn: string | undefined;
561
+ CreatedAt: Date | undefined;
562
+ Event: Event | undefined;
563
+ Id: string | undefined;
564
+ UpdatedAt: Date | undefined;
565
+ }
566
+ export interface ListEventActionsResponse {
567
+ EventActions?: EventActionEntry[];
568
+ NextToken?: string;
569
+ }
570
+ export interface ListJobsRequest {
571
+ DataSetId?: string;
572
+ MaxResults?: number;
573
+ NextToken?: string;
574
+ RevisionId?: string;
575
+ }
576
+ export interface JobEntry {
577
+ Arn: string | undefined;
578
+ CreatedAt: Date | undefined;
579
+ Details: ResponseDetails | undefined;
580
+ Errors?: JobError[];
581
+ Id: string | undefined;
582
+ State: State | string | undefined;
583
+ Type: Type | string | undefined;
584
+ UpdatedAt: Date | undefined;
585
+ }
586
+ export interface ListJobsResponse {
587
+ Jobs?: JobEntry[];
588
+ NextToken?: string;
589
+ }
590
+ export interface ListRevisionAssetsRequest {
591
+ DataSetId: string | undefined;
592
+ MaxResults?: number;
593
+ NextToken?: string;
594
+ RevisionId: string | undefined;
595
+ }
596
+ export interface ListRevisionAssetsResponse {
597
+ Assets?: AssetEntry[];
598
+ NextToken?: string;
599
+ }
600
+ export interface ListTagsForResourceRequest {
601
+ ResourceArn: string | undefined;
602
+ }
603
+ export interface ListTagsForResourceResponse {
604
+ Tags?: Record<string, string>;
605
+ }
606
+ export interface RevokeRevisionRequest {
607
+ DataSetId: string | undefined;
608
+ RevisionId: string | undefined;
609
+ RevocationComment: string | undefined;
610
+ }
611
+ export interface RevokeRevisionResponse {
612
+ Arn?: string;
613
+ Comment?: string;
614
+ CreatedAt?: Date;
615
+ DataSetId?: string;
616
+ Finalized?: boolean;
617
+ Id?: string;
618
+ SourceId?: string;
619
+ UpdatedAt?: Date;
620
+ RevocationComment?: string;
621
+ Revoked?: boolean;
622
+ RevokedAt?: Date;
623
+ }
624
+ export interface SendApiAssetRequest {
625
+ Body?: string;
626
+ QueryStringParameters?: Record<string, string>;
627
+ AssetId: string | undefined;
628
+ DataSetId: string | undefined;
629
+ RequestHeaders?: Record<string, string>;
630
+ Method?: string;
631
+ Path?: string;
632
+ RevisionId: string | undefined;
633
+ }
634
+ export interface SendApiAssetResponse {
635
+ Body?: string;
636
+ ResponseHeaders?: Record<string, string>;
637
+ }
638
+ export interface StartJobRequest {
639
+ JobId: string | undefined;
640
+ }
641
+ export interface StartJobResponse {}
642
+ export interface TagResourceRequest {
643
+ ResourceArn: string | undefined;
644
+ Tags: Record<string, string> | undefined;
645
+ }
646
+ export interface UntagResourceRequest {
647
+ ResourceArn: string | undefined;
648
+ TagKeys: string[] | undefined;
649
+ }
650
+ export interface UpdateAssetRequest {
651
+ AssetId: string | undefined;
652
+ DataSetId: string | undefined;
653
+ Name: string | undefined;
654
+ RevisionId: string | undefined;
655
+ }
656
+ export interface UpdateAssetResponse {
657
+ Arn?: string;
658
+ AssetDetails?: AssetDetails;
659
+ AssetType?: AssetType | string;
660
+ CreatedAt?: Date;
661
+ DataSetId?: string;
662
+ Id?: string;
663
+ Name?: string;
664
+ RevisionId?: string;
665
+ SourceId?: string;
666
+ UpdatedAt?: Date;
667
+ }
668
+ export interface UpdateDataSetRequest {
669
+ DataSetId: string | undefined;
670
+ Description?: string;
671
+ Name?: string;
672
+ }
673
+ export interface UpdateDataSetResponse {
674
+ Arn?: string;
675
+ AssetType?: AssetType | string;
676
+ CreatedAt?: Date;
677
+ Description?: string;
678
+ Id?: string;
679
+ Name?: string;
680
+ Origin?: Origin | string;
681
+ OriginDetails?: OriginDetails;
682
+ SourceId?: string;
683
+ UpdatedAt?: Date;
684
+ }
685
+ export interface UpdateEventActionRequest {
686
+ Action?: Action;
687
+ EventActionId: string | undefined;
688
+ }
689
+ export interface UpdateEventActionResponse {
690
+ Action?: Action;
691
+ Arn?: string;
692
+ CreatedAt?: Date;
693
+ Event?: Event;
694
+ Id?: string;
695
+ UpdatedAt?: Date;
696
+ }
697
+ export interface UpdateRevisionRequest {
698
+ Comment?: string;
699
+ DataSetId: string | undefined;
700
+ Finalized?: boolean;
701
+ RevisionId: string | undefined;
702
+ }
703
+ export interface UpdateRevisionResponse {
704
+ Arn?: string;
705
+ Comment?: string;
706
+ CreatedAt?: Date;
707
+ DataSetId?: string;
708
+ Finalized?: boolean;
709
+ Id?: string;
710
+ SourceId?: string;
711
+ UpdatedAt?: Date;
712
+ RevocationComment?: string;
713
+ Revoked?: boolean;
714
+ RevokedAt?: Date;
715
+ }
716
+ export declare const ExportServerSideEncryptionFilterSensitiveLog: (
717
+ obj: ExportServerSideEncryption
718
+ ) => any;
719
+ export declare const AutoExportRevisionDestinationEntryFilterSensitiveLog: (
720
+ obj: AutoExportRevisionDestinationEntry
721
+ ) => any;
722
+ export declare const AutoExportRevisionToS3RequestDetailsFilterSensitiveLog: (
723
+ obj: AutoExportRevisionToS3RequestDetails
724
+ ) => any;
725
+ export declare const ActionFilterSensitiveLog: (obj: Action) => any;
726
+ export declare const ApiGatewayApiAssetFilterSensitiveLog: (
727
+ obj: ApiGatewayApiAsset
728
+ ) => any;
729
+ export declare const AssetDestinationEntryFilterSensitiveLog: (
730
+ obj: AssetDestinationEntry
731
+ ) => any;
732
+ export declare const RedshiftDataShareAssetFilterSensitiveLog: (
733
+ obj: RedshiftDataShareAsset
734
+ ) => any;
735
+ export declare const S3SnapshotAssetFilterSensitiveLog: (
736
+ obj: S3SnapshotAsset
737
+ ) => any;
738
+ export declare const AssetDetailsFilterSensitiveLog: (obj: AssetDetails) => any;
739
+ export declare const AssetEntryFilterSensitiveLog: (obj: AssetEntry) => any;
740
+ export declare const AssetSourceEntryFilterSensitiveLog: (
741
+ obj: AssetSourceEntry
742
+ ) => any;
743
+ export declare const CancelJobRequestFilterSensitiveLog: (
744
+ obj: CancelJobRequest
745
+ ) => any;
746
+ export declare const CreateDataSetRequestFilterSensitiveLog: (
747
+ obj: CreateDataSetRequest
748
+ ) => any;
749
+ export declare const OriginDetailsFilterSensitiveLog: (
750
+ obj: OriginDetails
751
+ ) => any;
752
+ export declare const CreateDataSetResponseFilterSensitiveLog: (
753
+ obj: CreateDataSetResponse
754
+ ) => any;
755
+ export declare const RevisionPublishedFilterSensitiveLog: (
756
+ obj: RevisionPublished
757
+ ) => any;
758
+ export declare const EventFilterSensitiveLog: (obj: Event) => any;
759
+ export declare const CreateEventActionRequestFilterSensitiveLog: (
760
+ obj: CreateEventActionRequest
761
+ ) => any;
762
+ export declare const CreateEventActionResponseFilterSensitiveLog: (
763
+ obj: CreateEventActionResponse
764
+ ) => any;
765
+ export declare const ExportAssetsToS3RequestDetailsFilterSensitiveLog: (
766
+ obj: ExportAssetsToS3RequestDetails
767
+ ) => any;
768
+ export declare const ExportAssetToSignedUrlRequestDetailsFilterSensitiveLog: (
769
+ obj: ExportAssetToSignedUrlRequestDetails
770
+ ) => any;
771
+ export declare const RevisionDestinationEntryFilterSensitiveLog: (
772
+ obj: RevisionDestinationEntry
773
+ ) => any;
774
+ export declare const ExportRevisionsToS3RequestDetailsFilterSensitiveLog: (
775
+ obj: ExportRevisionsToS3RequestDetails
776
+ ) => any;
777
+ export declare const ImportAssetFromApiGatewayApiRequestDetailsFilterSensitiveLog: (
778
+ obj: ImportAssetFromApiGatewayApiRequestDetails
779
+ ) => any;
780
+ export declare const ImportAssetFromSignedUrlRequestDetailsFilterSensitiveLog: (
781
+ obj: ImportAssetFromSignedUrlRequestDetails
782
+ ) => any;
783
+ export declare const RedshiftDataShareAssetSourceEntryFilterSensitiveLog: (
784
+ obj: RedshiftDataShareAssetSourceEntry
785
+ ) => any;
786
+ export declare const ImportAssetsFromRedshiftDataSharesRequestDetailsFilterSensitiveLog: (
787
+ obj: ImportAssetsFromRedshiftDataSharesRequestDetails
788
+ ) => any;
789
+ export declare const ImportAssetsFromS3RequestDetailsFilterSensitiveLog: (
790
+ obj: ImportAssetsFromS3RequestDetails
791
+ ) => any;
792
+ export declare const RequestDetailsFilterSensitiveLog: (
793
+ obj: RequestDetails
794
+ ) => any;
795
+ export declare const CreateJobRequestFilterSensitiveLog: (
796
+ obj: CreateJobRequest
797
+ ) => any;
798
+ export declare const ExportAssetsToS3ResponseDetailsFilterSensitiveLog: (
799
+ obj: ExportAssetsToS3ResponseDetails
800
+ ) => any;
801
+ export declare const ExportAssetToSignedUrlResponseDetailsFilterSensitiveLog: (
802
+ obj: ExportAssetToSignedUrlResponseDetails
803
+ ) => any;
804
+ export declare const ExportRevisionsToS3ResponseDetailsFilterSensitiveLog: (
805
+ obj: ExportRevisionsToS3ResponseDetails
806
+ ) => any;
807
+ export declare const ImportAssetFromApiGatewayApiResponseDetailsFilterSensitiveLog: (
808
+ obj: ImportAssetFromApiGatewayApiResponseDetails
809
+ ) => any;
810
+ export declare const ImportAssetFromSignedUrlResponseDetailsFilterSensitiveLog: (
811
+ obj: ImportAssetFromSignedUrlResponseDetails
812
+ ) => any;
813
+ export declare const ImportAssetsFromRedshiftDataSharesResponseDetailsFilterSensitiveLog: (
814
+ obj: ImportAssetsFromRedshiftDataSharesResponseDetails
815
+ ) => any;
816
+ export declare const ImportAssetsFromS3ResponseDetailsFilterSensitiveLog: (
817
+ obj: ImportAssetsFromS3ResponseDetails
818
+ ) => any;
819
+ export declare const ResponseDetailsFilterSensitiveLog: (
820
+ obj: ResponseDetails
821
+ ) => any;
822
+ export declare const ImportAssetFromSignedUrlJobErrorDetailsFilterSensitiveLog: (
823
+ obj: ImportAssetFromSignedUrlJobErrorDetails
824
+ ) => any;
825
+ export declare const DetailsFilterSensitiveLog: (obj: Details) => any;
826
+ export declare const JobErrorFilterSensitiveLog: (obj: JobError) => any;
827
+ export declare const CreateJobResponseFilterSensitiveLog: (
828
+ obj: CreateJobResponse
829
+ ) => any;
830
+ export declare const CreateRevisionRequestFilterSensitiveLog: (
831
+ obj: CreateRevisionRequest
832
+ ) => any;
833
+ export declare const CreateRevisionResponseFilterSensitiveLog: (
834
+ obj: CreateRevisionResponse
835
+ ) => any;
836
+ export declare const DeleteAssetRequestFilterSensitiveLog: (
837
+ obj: DeleteAssetRequest
838
+ ) => any;
839
+ export declare const DeleteDataSetRequestFilterSensitiveLog: (
840
+ obj: DeleteDataSetRequest
841
+ ) => any;
842
+ export declare const DeleteEventActionRequestFilterSensitiveLog: (
843
+ obj: DeleteEventActionRequest
844
+ ) => any;
845
+ export declare const DeleteRevisionRequestFilterSensitiveLog: (
846
+ obj: DeleteRevisionRequest
847
+ ) => any;
848
+ export declare const GetAssetRequestFilterSensitiveLog: (
849
+ obj: GetAssetRequest
850
+ ) => any;
851
+ export declare const GetAssetResponseFilterSensitiveLog: (
852
+ obj: GetAssetResponse
853
+ ) => any;
854
+ export declare const GetDataSetRequestFilterSensitiveLog: (
855
+ obj: GetDataSetRequest
856
+ ) => any;
857
+ export declare const GetDataSetResponseFilterSensitiveLog: (
858
+ obj: GetDataSetResponse
859
+ ) => any;
860
+ export declare const GetEventActionRequestFilterSensitiveLog: (
861
+ obj: GetEventActionRequest
862
+ ) => any;
863
+ export declare const GetEventActionResponseFilterSensitiveLog: (
864
+ obj: GetEventActionResponse
865
+ ) => any;
866
+ export declare const GetJobRequestFilterSensitiveLog: (
867
+ obj: GetJobRequest
868
+ ) => any;
869
+ export declare const GetJobResponseFilterSensitiveLog: (
870
+ obj: GetJobResponse
871
+ ) => any;
872
+ export declare const GetRevisionRequestFilterSensitiveLog: (
873
+ obj: GetRevisionRequest
874
+ ) => any;
875
+ export declare const GetRevisionResponseFilterSensitiveLog: (
876
+ obj: GetRevisionResponse
877
+ ) => any;
878
+ export declare const ListDataSetRevisionsRequestFilterSensitiveLog: (
879
+ obj: ListDataSetRevisionsRequest
880
+ ) => any;
881
+ export declare const RevisionEntryFilterSensitiveLog: (
882
+ obj: RevisionEntry
883
+ ) => any;
884
+ export declare const ListDataSetRevisionsResponseFilterSensitiveLog: (
885
+ obj: ListDataSetRevisionsResponse
886
+ ) => any;
887
+ export declare const ListDataSetsRequestFilterSensitiveLog: (
888
+ obj: ListDataSetsRequest
889
+ ) => any;
890
+ export declare const DataSetEntryFilterSensitiveLog: (obj: DataSetEntry) => any;
891
+ export declare const ListDataSetsResponseFilterSensitiveLog: (
892
+ obj: ListDataSetsResponse
893
+ ) => any;
894
+ export declare const ListEventActionsRequestFilterSensitiveLog: (
895
+ obj: ListEventActionsRequest
896
+ ) => any;
897
+ export declare const EventActionEntryFilterSensitiveLog: (
898
+ obj: EventActionEntry
899
+ ) => any;
900
+ export declare const ListEventActionsResponseFilterSensitiveLog: (
901
+ obj: ListEventActionsResponse
902
+ ) => any;
903
+ export declare const ListJobsRequestFilterSensitiveLog: (
904
+ obj: ListJobsRequest
905
+ ) => any;
906
+ export declare const JobEntryFilterSensitiveLog: (obj: JobEntry) => any;
907
+ export declare const ListJobsResponseFilterSensitiveLog: (
908
+ obj: ListJobsResponse
909
+ ) => any;
910
+ export declare const ListRevisionAssetsRequestFilterSensitiveLog: (
911
+ obj: ListRevisionAssetsRequest
912
+ ) => any;
913
+ export declare const ListRevisionAssetsResponseFilterSensitiveLog: (
914
+ obj: ListRevisionAssetsResponse
915
+ ) => any;
916
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
917
+ obj: ListTagsForResourceRequest
918
+ ) => any;
919
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
920
+ obj: ListTagsForResourceResponse
921
+ ) => any;
922
+ export declare const RevokeRevisionRequestFilterSensitiveLog: (
923
+ obj: RevokeRevisionRequest
924
+ ) => any;
925
+ export declare const RevokeRevisionResponseFilterSensitiveLog: (
926
+ obj: RevokeRevisionResponse
927
+ ) => any;
928
+ export declare const SendApiAssetRequestFilterSensitiveLog: (
929
+ obj: SendApiAssetRequest
930
+ ) => any;
931
+ export declare const SendApiAssetResponseFilterSensitiveLog: (
932
+ obj: SendApiAssetResponse
933
+ ) => any;
934
+ export declare const StartJobRequestFilterSensitiveLog: (
935
+ obj: StartJobRequest
936
+ ) => any;
937
+ export declare const StartJobResponseFilterSensitiveLog: (
938
+ obj: StartJobResponse
939
+ ) => any;
940
+ export declare const TagResourceRequestFilterSensitiveLog: (
941
+ obj: TagResourceRequest
942
+ ) => any;
943
+ export declare const UntagResourceRequestFilterSensitiveLog: (
944
+ obj: UntagResourceRequest
945
+ ) => any;
946
+ export declare const UpdateAssetRequestFilterSensitiveLog: (
947
+ obj: UpdateAssetRequest
948
+ ) => any;
949
+ export declare const UpdateAssetResponseFilterSensitiveLog: (
950
+ obj: UpdateAssetResponse
951
+ ) => any;
952
+ export declare const UpdateDataSetRequestFilterSensitiveLog: (
953
+ obj: UpdateDataSetRequest
954
+ ) => any;
955
+ export declare const UpdateDataSetResponseFilterSensitiveLog: (
956
+ obj: UpdateDataSetResponse
957
+ ) => any;
958
+ export declare const UpdateEventActionRequestFilterSensitiveLog: (
959
+ obj: UpdateEventActionRequest
960
+ ) => any;
961
+ export declare const UpdateEventActionResponseFilterSensitiveLog: (
962
+ obj: UpdateEventActionResponse
963
+ ) => any;
964
+ export declare const UpdateRevisionRequestFilterSensitiveLog: (
965
+ obj: UpdateRevisionRequest
966
+ ) => any;
967
+ export declare const UpdateRevisionResponseFilterSensitiveLog: (
968
+ obj: UpdateRevisionResponse
969
+ ) => any;