@aws-sdk/client-dataexchange 3.936.0 → 3.940.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.
@@ -1,15 +1,4 @@
1
- /**
2
- * @public
3
- * @enum
4
- */
5
- export declare const AcceptanceStateFilterValue: {
6
- readonly ACCEPTED: "ACCEPTED";
7
- readonly PENDING_RECEIVER_ACCEPTANCE: "PENDING_RECEIVER_ACCEPTANCE";
8
- };
9
- /**
10
- * @public
11
- */
12
- export type AcceptanceStateFilterValue = (typeof AcceptanceStateFilterValue)[keyof typeof AcceptanceStateFilterValue];
1
+ import { AcceptanceStateFilterValue, AssetType, Code, DatabaseLFTagPolicyPermission, DataGrantAcceptanceState, GrantDistributionScope, JobErrorLimitName, JobErrorResourceTypes, LakeFormationDataPermissionType, LFPermission, LFResourceType, NotificationType, Origin, ProtocolType, SchemaChangeType, ServerSideEncryptionTypes, State, TableTagPolicyLFPermission, Type } from "./enums";
13
2
  /**
14
3
  * @public
15
4
  */
@@ -20,30 +9,6 @@ export interface AcceptDataGrantRequest {
20
9
  */
21
10
  DataGrantArn: string | undefined;
22
11
  }
23
- /**
24
- * @public
25
- * @enum
26
- */
27
- export declare const DataGrantAcceptanceState: {
28
- readonly ACCEPTED: "ACCEPTED";
29
- readonly PENDING_RECEIVER_ACCEPTANCE: "PENDING_RECEIVER_ACCEPTANCE";
30
- };
31
- /**
32
- * @public
33
- */
34
- export type DataGrantAcceptanceState = (typeof DataGrantAcceptanceState)[keyof typeof DataGrantAcceptanceState];
35
- /**
36
- * @public
37
- * @enum
38
- */
39
- export declare const GrantDistributionScope: {
40
- readonly AWS_ORGANIZATION: "AWS_ORGANIZATION";
41
- readonly NONE: "NONE";
42
- };
43
- /**
44
- * @public
45
- */
46
- export type GrantDistributionScope = (typeof GrantDistributionScope)[keyof typeof GrantDistributionScope];
47
12
  /**
48
13
  * @public
49
14
  */
@@ -114,46 +79,6 @@ export interface AcceptDataGrantResponse {
114
79
  */
115
80
  UpdatedAt: Date | undefined;
116
81
  }
117
- /**
118
- * @public
119
- * @enum
120
- */
121
- export declare const ResourceType: {
122
- readonly ASSET: "ASSET";
123
- readonly DATA_GRANT: "DATA_GRANT";
124
- readonly DATA_SET: "DATA_SET";
125
- readonly EVENT_ACTION: "EVENT_ACTION";
126
- readonly JOB: "JOB";
127
- readonly REVISION: "REVISION";
128
- };
129
- /**
130
- * @public
131
- */
132
- export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
133
- /**
134
- * @public
135
- * @enum
136
- */
137
- export declare const ExceptionCause: {
138
- readonly InsufficientS3BucketPolicy: "InsufficientS3BucketPolicy";
139
- readonly S3AccessDenied: "S3AccessDenied";
140
- };
141
- /**
142
- * @public
143
- */
144
- export type ExceptionCause = (typeof ExceptionCause)[keyof typeof ExceptionCause];
145
- /**
146
- * @public
147
- * @enum
148
- */
149
- export declare const ServerSideEncryptionTypes: {
150
- readonly AES256: "AES256";
151
- readonly aws_kms: "aws:kms";
152
- };
153
- /**
154
- * @public
155
- */
156
- export type ServerSideEncryptionTypes = (typeof ServerSideEncryptionTypes)[keyof typeof ServerSideEncryptionTypes];
157
82
  /**
158
83
  * <p>Encryption configuration of the export job. Includes the encryption type in addition to
159
84
  * the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption type.</p>
@@ -218,17 +143,6 @@ export interface Action {
218
143
  */
219
144
  ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails | undefined;
220
145
  }
221
- /**
222
- * @public
223
- * @enum
224
- */
225
- export declare const ProtocolType: {
226
- readonly REST: "REST";
227
- };
228
- /**
229
- * @public
230
- */
231
- export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
232
146
  /**
233
147
  * <p>The API Gateway API that is the asset.</p>
234
148
  * @public
@@ -358,18 +272,6 @@ export interface LFResourceDetails {
358
272
  */
359
273
  Table?: TableLFTagPolicy | undefined;
360
274
  }
361
- /**
362
- * @public
363
- * @enum
364
- */
365
- export declare const LFResourceType: {
366
- readonly DATABASE: "DATABASE";
367
- readonly TABLE: "TABLE";
368
- };
369
- /**
370
- * @public
371
- */
372
- export type LFResourceType = (typeof LFResourceType)[keyof typeof LFResourceType];
373
275
  /**
374
276
  * <p>Details about the LF-tag policy.</p>
375
277
  * @public
@@ -402,29 +304,6 @@ export interface LakeFormationDataPermissionDetails {
402
304
  */
403
305
  LFTagPolicy?: LFTagPolicyDetails | undefined;
404
306
  }
405
- /**
406
- * @public
407
- * @enum
408
- */
409
- export declare const LakeFormationDataPermissionType: {
410
- readonly LFTagPolicy: "LFTagPolicy";
411
- };
412
- /**
413
- * @public
414
- */
415
- export type LakeFormationDataPermissionType = (typeof LakeFormationDataPermissionType)[keyof typeof LakeFormationDataPermissionType];
416
- /**
417
- * @public
418
- * @enum
419
- */
420
- export declare const LFPermission: {
421
- readonly DESCRIBE: "DESCRIBE";
422
- readonly SELECT: "SELECT";
423
- };
424
- /**
425
- * @public
426
- */
427
- export type LFPermission = (typeof LFPermission)[keyof typeof LFPermission];
428
307
  /**
429
308
  * <p>The AWS Lake Formation data permission asset.</p>
430
309
  * @public
@@ -560,21 +439,6 @@ export interface AssetDetails {
560
439
  */
561
440
  LakeFormationDataPermissionAsset?: LakeFormationDataPermissionAsset | undefined;
562
441
  }
563
- /**
564
- * @public
565
- * @enum
566
- */
567
- export declare const AssetType: {
568
- readonly API_GATEWAY_API: "API_GATEWAY_API";
569
- readonly LAKE_FORMATION_DATA_PERMISSION: "LAKE_FORMATION_DATA_PERMISSION";
570
- readonly REDSHIFT_DATA_SHARE: "REDSHIFT_DATA_SHARE";
571
- readonly S3_DATA_ACCESS: "S3_DATA_ACCESS";
572
- readonly S3_SNAPSHOT: "S3_SNAPSHOT";
573
- };
574
- /**
575
- * @public
576
- */
577
- export type AssetType = (typeof AssetType)[keyof typeof AssetType];
578
442
  /**
579
443
  * <p>An asset in AWS Data Exchange is a piece of data (Amazon S3 object) or a means of
580
444
  * fulfilling data (Amazon Redshift datashare or Amazon API Gateway API, AWS Lake Formation
@@ -672,23 +536,6 @@ export interface CancelJobRequest {
672
536
  */
673
537
  JobId: string | undefined;
674
538
  }
675
- /**
676
- * @public
677
- * @enum
678
- */
679
- export declare const Code: {
680
- readonly ACCESS_DENIED_EXCEPTION: "ACCESS_DENIED_EXCEPTION";
681
- readonly INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION";
682
- readonly MALWARE_DETECTED: "MALWARE_DETECTED";
683
- readonly MALWARE_SCAN_ENCRYPTED_FILE: "MALWARE_SCAN_ENCRYPTED_FILE";
684
- readonly RESOURCE_NOT_FOUND_EXCEPTION: "RESOURCE_NOT_FOUND_EXCEPTION";
685
- readonly SERVICE_QUOTA_EXCEEDED_EXCEPTION: "SERVICE_QUOTA_EXCEEDED_EXCEPTION";
686
- readonly VALIDATION_EXCEPTION: "VALIDATION_EXCEPTION";
687
- };
688
- /**
689
- * @public
690
- */
691
- export type Code = (typeof Code)[keyof typeof Code];
692
539
  /**
693
540
  * @public
694
541
  */
@@ -809,46 +656,6 @@ export interface CreateDataGrantResponse {
809
656
  */
810
657
  Tags?: Record<string, string> | undefined;
811
658
  }
812
- /**
813
- * @public
814
- * @enum
815
- */
816
- export declare const LimitName: {
817
- readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
818
- readonly Active_and_pending_data_grants: "Active and pending data grants";
819
- readonly Amazon_API_Gateway_API_assets_per_revision: "Amazon API Gateway API assets per revision";
820
- readonly Amazon_Redshift_datashare_assets_per_import_job_from_Redshift: "Amazon Redshift datashare assets per import job from Redshift";
821
- readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
822
- readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
823
- readonly Asset_per_export_job_from_Amazon_S3: "Asset per export job from Amazon S3";
824
- readonly Asset_size_in_GB: "Asset size in GB";
825
- readonly Assets_per_import_job_from_Amazon_S3: "Assets per import job from Amazon S3";
826
- readonly Assets_per_revision: "Assets per revision";
827
- readonly Auto_export_event_actions_per_data_set: "Auto export event actions per data set";
828
- readonly Concurrent_in_progress_jobs_to_create_Amazon_S3_data_access_assets_from_S3_buckets: "Concurrent in progress jobs to create Amazon S3 data access assets from S3 buckets";
829
- readonly Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3: "Concurrent in progress jobs to export assets to Amazon S3";
830
- readonly Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL: "Concurrent in progress jobs to export assets to a signed URL";
831
- readonly Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3: "Concurrent in progress jobs to export revisions to Amazon S3";
832
- readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares: "Concurrent in progress jobs to import assets from Amazon Redshift datashares";
833
- readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3: "Concurrent in progress jobs to import assets from Amazon S3";
834
- readonly Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL: "Concurrent in progress jobs to import assets from a signed URL";
835
- readonly Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API: "Concurrent in progress jobs to import assets from an API Gateway API";
836
- readonly Concurrent_in_progress_jobs_to_import_assets_from_an_AWS_Lake_Formation_tag_policy: "Concurrent in progress jobs to import assets from an AWS Lake Formation tag policy";
837
- readonly Data_sets_per_account: "Data sets per account";
838
- readonly Data_sets_per_product: "Data sets per product";
839
- readonly Event_actions_per_account: "Event actions per account";
840
- readonly Pending_data_grants_per_consumer: "Pending data grants per consumer";
841
- readonly Products_per_account: "Products per account";
842
- readonly Revisions_per_AWS_Lake_Formation_data_permission_data_set: "Revisions per AWS Lake Formation data permission data set";
843
- readonly Revisions_per_Amazon_API_Gateway_API_data_set: "Revisions per Amazon API Gateway API data set";
844
- readonly Revisions_per_Amazon_Redshift_datashare_data_set: "Revisions per Amazon Redshift datashare data set";
845
- readonly Revisions_per_Amazon_S3_data_access_data_set: "Revisions per Amazon S3 data access data set";
846
- readonly Revisions_per_data_set: "Revisions per data set";
847
- };
848
- /**
849
- * @public
850
- */
851
- export type LimitName = (typeof LimitName)[keyof typeof LimitName];
852
659
  /**
853
660
  * @public
854
661
  */
@@ -877,18 +684,6 @@ export interface CreateDataSetRequest {
877
684
  */
878
685
  Tags?: Record<string, string> | undefined;
879
686
  }
880
- /**
881
- * @public
882
- * @enum
883
- */
884
- export declare const Origin: {
885
- readonly ENTITLED: "ENTITLED";
886
- readonly OWNED: "OWNED";
887
- };
888
- /**
889
- * @public
890
- */
891
- export type Origin = (typeof Origin)[keyof typeof Origin];
892
687
  /**
893
688
  * <p>Details about the origin of the data set.</p>
894
689
  * @public
@@ -1270,17 +1065,6 @@ export interface ImportAssetFromSignedUrlRequestDetails {
1270
1065
  */
1271
1066
  RevisionId: string | undefined;
1272
1067
  }
1273
- /**
1274
- * @public
1275
- * @enum
1276
- */
1277
- export declare const DatabaseLFTagPolicyPermission: {
1278
- readonly DESCRIBE: "DESCRIBE";
1279
- };
1280
- /**
1281
- * @public
1282
- */
1283
- export type DatabaseLFTagPolicyPermission = (typeof DatabaseLFTagPolicyPermission)[keyof typeof DatabaseLFTagPolicyPermission];
1284
1068
  /**
1285
1069
  * <p>The LF-tag policy and permissions for database resources.</p>
1286
1070
  * @public
@@ -1297,18 +1081,6 @@ export interface DatabaseLFTagPolicyAndPermissions {
1297
1081
  */
1298
1082
  Permissions: DatabaseLFTagPolicyPermission[] | undefined;
1299
1083
  }
1300
- /**
1301
- * @public
1302
- * @enum
1303
- */
1304
- export declare const TableTagPolicyLFPermission: {
1305
- readonly DESCRIBE: "DESCRIBE";
1306
- readonly SELECT: "SELECT";
1307
- };
1308
- /**
1309
- * @public
1310
- */
1311
- export type TableTagPolicyLFPermission = (typeof TableTagPolicyLFPermission)[keyof typeof TableTagPolicyLFPermission];
1312
1084
  /**
1313
1085
  * <p>The LF-tag policy and permissions that apply to table resources.</p>
1314
1086
  * @public
@@ -1466,25 +1238,6 @@ export interface RequestDetails {
1466
1238
  */
1467
1239
  ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyRequestDetails | undefined;
1468
1240
  }
1469
- /**
1470
- * @public
1471
- * @enum
1472
- */
1473
- export declare const Type: {
1474
- readonly CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET: "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET";
1475
- readonly EXPORT_ASSETS_TO_S3: "EXPORT_ASSETS_TO_S3";
1476
- readonly EXPORT_ASSET_TO_SIGNED_URL: "EXPORT_ASSET_TO_SIGNED_URL";
1477
- readonly EXPORT_REVISIONS_TO_S3: "EXPORT_REVISIONS_TO_S3";
1478
- readonly IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY: "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY";
1479
- readonly IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES: "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES";
1480
- readonly IMPORT_ASSETS_FROM_S3: "IMPORT_ASSETS_FROM_S3";
1481
- readonly IMPORT_ASSET_FROM_API_GATEWAY_API: "IMPORT_ASSET_FROM_API_GATEWAY_API";
1482
- readonly IMPORT_ASSET_FROM_SIGNED_URL: "IMPORT_ASSET_FROM_SIGNED_URL";
1483
- };
1484
- /**
1485
- * @public
1486
- */
1487
- export type Type = (typeof Type)[keyof typeof Type];
1488
1241
  /**
1489
1242
  * @public
1490
1243
  */
@@ -1862,34 +1615,6 @@ export interface Details {
1862
1615
  */
1863
1616
  ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[] | undefined;
1864
1617
  }
1865
- /**
1866
- * @public
1867
- * @enum
1868
- */
1869
- export declare const JobErrorLimitName: {
1870
- readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
1871
- readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
1872
- readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
1873
- readonly Asset_size_in_GB: "Asset size in GB";
1874
- readonly Assets_per_revision: "Assets per revision";
1875
- };
1876
- /**
1877
- * @public
1878
- */
1879
- export type JobErrorLimitName = (typeof JobErrorLimitName)[keyof typeof JobErrorLimitName];
1880
- /**
1881
- * @public
1882
- * @enum
1883
- */
1884
- export declare const JobErrorResourceTypes: {
1885
- readonly ASSET: "ASSET";
1886
- readonly DATA_SET: "DATA_SET";
1887
- readonly REVISION: "REVISION";
1888
- };
1889
- /**
1890
- * @public
1891
- */
1892
- export type JobErrorResourceTypes = (typeof JobErrorResourceTypes)[keyof typeof JobErrorResourceTypes];
1893
1618
  /**
1894
1619
  * <p>An error that occurred with the job request.</p>
1895
1620
  * @public
@@ -1931,22 +1656,6 @@ export interface JobError {
1931
1656
  */
1932
1657
  ResourceType?: JobErrorResourceTypes | undefined;
1933
1658
  }
1934
- /**
1935
- * @public
1936
- * @enum
1937
- */
1938
- export declare const State: {
1939
- readonly CANCELLED: "CANCELLED";
1940
- readonly COMPLETED: "COMPLETED";
1941
- readonly ERROR: "ERROR";
1942
- readonly IN_PROGRESS: "IN_PROGRESS";
1943
- readonly TIMED_OUT: "TIMED_OUT";
1944
- readonly WAITING: "WAITING";
1945
- };
1946
- /**
1947
- * @public
1948
- */
1949
- export type State = (typeof State)[keyof typeof State];
1950
1659
  /**
1951
1660
  * @public
1952
1661
  */
@@ -3481,19 +3190,6 @@ export interface DeprecationRequestDetails {
3481
3190
  */
3482
3191
  DeprecationAt: Date | undefined;
3483
3192
  }
3484
- /**
3485
- * @public
3486
- * @enum
3487
- */
3488
- export declare const SchemaChangeType: {
3489
- readonly ADD: "ADD";
3490
- readonly MODIFY: "MODIFY";
3491
- readonly REMOVE: "REMOVE";
3492
- };
3493
- /**
3494
- * @public
3495
- */
3496
- export type SchemaChangeType = (typeof SchemaChangeType)[keyof typeof SchemaChangeType];
3497
3193
  /**
3498
3194
  * <p>Object encompassing information about a schema change to a single, particular field, a
3499
3195
  * notification can have up to 100 of these.</p>
@@ -3675,20 +3371,6 @@ export interface ScopeDetails {
3675
3371
  */
3676
3372
  S3DataAccesses?: S3DataAccessDetails[] | undefined;
3677
3373
  }
3678
- /**
3679
- * @public
3680
- * @enum
3681
- */
3682
- export declare const NotificationType: {
3683
- readonly DATA_DELAY: "DATA_DELAY";
3684
- readonly DATA_UPDATE: "DATA_UPDATE";
3685
- readonly DEPRECATION: "DEPRECATION";
3686
- readonly SCHEMA_CHANGE: "SCHEMA_CHANGE";
3687
- };
3688
- /**
3689
- * @public
3690
- */
3691
- export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
3692
3374
  /**
3693
3375
  * @public
3694
3376
  */
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { DataExchangeExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { DataExchangeServiceException } from "./models/DataExchangeServiceException";
@@ -0,0 +1,178 @@
1
+ export declare const AcceptanceStateFilterValue: {
2
+ readonly ACCEPTED: "ACCEPTED";
3
+ readonly PENDING_RECEIVER_ACCEPTANCE: "PENDING_RECEIVER_ACCEPTANCE";
4
+ };
5
+ export type AcceptanceStateFilterValue =
6
+ (typeof AcceptanceStateFilterValue)[keyof typeof AcceptanceStateFilterValue];
7
+ export declare const DataGrantAcceptanceState: {
8
+ readonly ACCEPTED: "ACCEPTED";
9
+ readonly PENDING_RECEIVER_ACCEPTANCE: "PENDING_RECEIVER_ACCEPTANCE";
10
+ };
11
+ export type DataGrantAcceptanceState =
12
+ (typeof DataGrantAcceptanceState)[keyof typeof DataGrantAcceptanceState];
13
+ export declare const GrantDistributionScope: {
14
+ readonly AWS_ORGANIZATION: "AWS_ORGANIZATION";
15
+ readonly NONE: "NONE";
16
+ };
17
+ export type GrantDistributionScope =
18
+ (typeof GrantDistributionScope)[keyof typeof GrantDistributionScope];
19
+ export declare const ResourceType: {
20
+ readonly ASSET: "ASSET";
21
+ readonly DATA_GRANT: "DATA_GRANT";
22
+ readonly DATA_SET: "DATA_SET";
23
+ readonly EVENT_ACTION: "EVENT_ACTION";
24
+ readonly JOB: "JOB";
25
+ readonly REVISION: "REVISION";
26
+ };
27
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
28
+ export declare const ExceptionCause: {
29
+ readonly InsufficientS3BucketPolicy: "InsufficientS3BucketPolicy";
30
+ readonly S3AccessDenied: "S3AccessDenied";
31
+ };
32
+ export type ExceptionCause =
33
+ (typeof ExceptionCause)[keyof typeof ExceptionCause];
34
+ export declare const ServerSideEncryptionTypes: {
35
+ readonly AES256: "AES256";
36
+ readonly aws_kms: "aws:kms";
37
+ };
38
+ export type ServerSideEncryptionTypes =
39
+ (typeof ServerSideEncryptionTypes)[keyof typeof ServerSideEncryptionTypes];
40
+ export declare const ProtocolType: {
41
+ readonly REST: "REST";
42
+ };
43
+ export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
44
+ export declare const LFResourceType: {
45
+ readonly DATABASE: "DATABASE";
46
+ readonly TABLE: "TABLE";
47
+ };
48
+ export type LFResourceType =
49
+ (typeof LFResourceType)[keyof typeof LFResourceType];
50
+ export declare const LakeFormationDataPermissionType: {
51
+ readonly LFTagPolicy: "LFTagPolicy";
52
+ };
53
+ export type LakeFormationDataPermissionType =
54
+ (typeof LakeFormationDataPermissionType)[keyof typeof LakeFormationDataPermissionType];
55
+ export declare const LFPermission: {
56
+ readonly DESCRIBE: "DESCRIBE";
57
+ readonly SELECT: "SELECT";
58
+ };
59
+ export type LFPermission = (typeof LFPermission)[keyof typeof LFPermission];
60
+ export declare const AssetType: {
61
+ readonly API_GATEWAY_API: "API_GATEWAY_API";
62
+ readonly LAKE_FORMATION_DATA_PERMISSION: "LAKE_FORMATION_DATA_PERMISSION";
63
+ readonly REDSHIFT_DATA_SHARE: "REDSHIFT_DATA_SHARE";
64
+ readonly S3_DATA_ACCESS: "S3_DATA_ACCESS";
65
+ readonly S3_SNAPSHOT: "S3_SNAPSHOT";
66
+ };
67
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
68
+ export declare const Code: {
69
+ readonly ACCESS_DENIED_EXCEPTION: "ACCESS_DENIED_EXCEPTION";
70
+ readonly INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION";
71
+ readonly MALWARE_DETECTED: "MALWARE_DETECTED";
72
+ readonly MALWARE_SCAN_ENCRYPTED_FILE: "MALWARE_SCAN_ENCRYPTED_FILE";
73
+ readonly RESOURCE_NOT_FOUND_EXCEPTION: "RESOURCE_NOT_FOUND_EXCEPTION";
74
+ readonly SERVICE_QUOTA_EXCEEDED_EXCEPTION: "SERVICE_QUOTA_EXCEEDED_EXCEPTION";
75
+ readonly VALIDATION_EXCEPTION: "VALIDATION_EXCEPTION";
76
+ };
77
+ export type Code = (typeof Code)[keyof typeof Code];
78
+ export declare const LimitName: {
79
+ readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
80
+ readonly Active_and_pending_data_grants: "Active and pending data grants";
81
+ readonly Amazon_API_Gateway_API_assets_per_revision: "Amazon API Gateway API assets per revision";
82
+ readonly Amazon_Redshift_datashare_assets_per_import_job_from_Redshift: "Amazon Redshift datashare assets per import job from Redshift";
83
+ readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
84
+ readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
85
+ readonly Asset_per_export_job_from_Amazon_S3: "Asset per export job from Amazon S3";
86
+ readonly Asset_size_in_GB: "Asset size in GB";
87
+ readonly Assets_per_import_job_from_Amazon_S3: "Assets per import job from Amazon S3";
88
+ readonly Assets_per_revision: "Assets per revision";
89
+ readonly Auto_export_event_actions_per_data_set: "Auto export event actions per data set";
90
+ readonly Concurrent_in_progress_jobs_to_create_Amazon_S3_data_access_assets_from_S3_buckets: "Concurrent in progress jobs to create Amazon S3 data access assets from S3 buckets";
91
+ readonly Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3: "Concurrent in progress jobs to export assets to Amazon S3";
92
+ readonly Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL: "Concurrent in progress jobs to export assets to a signed URL";
93
+ readonly Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3: "Concurrent in progress jobs to export revisions to Amazon S3";
94
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares: "Concurrent in progress jobs to import assets from Amazon Redshift datashares";
95
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3: "Concurrent in progress jobs to import assets from Amazon S3";
96
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL: "Concurrent in progress jobs to import assets from a signed URL";
97
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API: "Concurrent in progress jobs to import assets from an API Gateway API";
98
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_an_AWS_Lake_Formation_tag_policy: "Concurrent in progress jobs to import assets from an AWS Lake Formation tag policy";
99
+ readonly Data_sets_per_account: "Data sets per account";
100
+ readonly Data_sets_per_product: "Data sets per product";
101
+ readonly Event_actions_per_account: "Event actions per account";
102
+ readonly Pending_data_grants_per_consumer: "Pending data grants per consumer";
103
+ readonly Products_per_account: "Products per account";
104
+ readonly Revisions_per_AWS_Lake_Formation_data_permission_data_set: "Revisions per AWS Lake Formation data permission data set";
105
+ readonly Revisions_per_Amazon_API_Gateway_API_data_set: "Revisions per Amazon API Gateway API data set";
106
+ readonly Revisions_per_Amazon_Redshift_datashare_data_set: "Revisions per Amazon Redshift datashare data set";
107
+ readonly Revisions_per_Amazon_S3_data_access_data_set: "Revisions per Amazon S3 data access data set";
108
+ readonly Revisions_per_data_set: "Revisions per data set";
109
+ };
110
+ export type LimitName = (typeof LimitName)[keyof typeof LimitName];
111
+ export declare const Origin: {
112
+ readonly ENTITLED: "ENTITLED";
113
+ readonly OWNED: "OWNED";
114
+ };
115
+ export type Origin = (typeof Origin)[keyof typeof Origin];
116
+ export declare const DatabaseLFTagPolicyPermission: {
117
+ readonly DESCRIBE: "DESCRIBE";
118
+ };
119
+ export type DatabaseLFTagPolicyPermission =
120
+ (typeof DatabaseLFTagPolicyPermission)[keyof typeof DatabaseLFTagPolicyPermission];
121
+ export declare const TableTagPolicyLFPermission: {
122
+ readonly DESCRIBE: "DESCRIBE";
123
+ readonly SELECT: "SELECT";
124
+ };
125
+ export type TableTagPolicyLFPermission =
126
+ (typeof TableTagPolicyLFPermission)[keyof typeof TableTagPolicyLFPermission];
127
+ export declare const Type: {
128
+ readonly CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET: "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET";
129
+ readonly EXPORT_ASSETS_TO_S3: "EXPORT_ASSETS_TO_S3";
130
+ readonly EXPORT_ASSET_TO_SIGNED_URL: "EXPORT_ASSET_TO_SIGNED_URL";
131
+ readonly EXPORT_REVISIONS_TO_S3: "EXPORT_REVISIONS_TO_S3";
132
+ readonly IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY: "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY";
133
+ readonly IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES: "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES";
134
+ readonly IMPORT_ASSETS_FROM_S3: "IMPORT_ASSETS_FROM_S3";
135
+ readonly IMPORT_ASSET_FROM_API_GATEWAY_API: "IMPORT_ASSET_FROM_API_GATEWAY_API";
136
+ readonly IMPORT_ASSET_FROM_SIGNED_URL: "IMPORT_ASSET_FROM_SIGNED_URL";
137
+ };
138
+ export type Type = (typeof Type)[keyof typeof Type];
139
+ export declare const JobErrorLimitName: {
140
+ readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
141
+ readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
142
+ readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
143
+ readonly Asset_size_in_GB: "Asset size in GB";
144
+ readonly Assets_per_revision: "Assets per revision";
145
+ };
146
+ export type JobErrorLimitName =
147
+ (typeof JobErrorLimitName)[keyof typeof JobErrorLimitName];
148
+ export declare const JobErrorResourceTypes: {
149
+ readonly ASSET: "ASSET";
150
+ readonly DATA_SET: "DATA_SET";
151
+ readonly REVISION: "REVISION";
152
+ };
153
+ export type JobErrorResourceTypes =
154
+ (typeof JobErrorResourceTypes)[keyof typeof JobErrorResourceTypes];
155
+ export declare const State: {
156
+ readonly CANCELLED: "CANCELLED";
157
+ readonly COMPLETED: "COMPLETED";
158
+ readonly ERROR: "ERROR";
159
+ readonly IN_PROGRESS: "IN_PROGRESS";
160
+ readonly TIMED_OUT: "TIMED_OUT";
161
+ readonly WAITING: "WAITING";
162
+ };
163
+ export type State = (typeof State)[keyof typeof State];
164
+ export declare const SchemaChangeType: {
165
+ readonly ADD: "ADD";
166
+ readonly MODIFY: "MODIFY";
167
+ readonly REMOVE: "REMOVE";
168
+ };
169
+ export type SchemaChangeType =
170
+ (typeof SchemaChangeType)[keyof typeof SchemaChangeType];
171
+ export declare const NotificationType: {
172
+ readonly DATA_DELAY: "DATA_DELAY";
173
+ readonly DATA_UPDATE: "DATA_UPDATE";
174
+ readonly DEPRECATION: "DEPRECATION";
175
+ readonly SCHEMA_CHANGE: "SCHEMA_CHANGE";
176
+ };
177
+ export type NotificationType =
178
+ (typeof NotificationType)[keyof typeof NotificationType];
@@ -1,6 +1,6 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException";
3
- import { ExceptionCause, LimitName, ResourceType } from "./models_0";
3
+ import { ExceptionCause, LimitName, ResourceType } from "./enums";
4
4
  export declare class AccessDeniedException extends __BaseException {
5
5
  readonly name: "AccessDeniedException";
6
6
  readonly $fault: "client";