@aws-sdk/client-dataexchange 3.216.0 → 3.221.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.
- package/README.md +15 -3
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +98 -3
- package/dist-cjs/protocols/Aws_restJson1.js +272 -1
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +80 -0
- package/dist-es/protocols/Aws_restJson1.js +272 -1
- package/dist-types/DataExchange.d.ts +15 -3
- package/dist-types/DataExchangeClient.d.ts +15 -3
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +424 -28
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +158 -0
- package/package.json +3 -3
|
@@ -37,7 +37,7 @@ export interface ExportServerSideEncryption {
|
|
|
37
37
|
*/
|
|
38
38
|
export interface AutoExportRevisionDestinationEntry {
|
|
39
39
|
/**
|
|
40
|
-
* <p>The S3 bucket that is the destination for the event action.</p>
|
|
40
|
+
* <p>The Amazon S3 bucket that is the destination for the event action.</p>
|
|
41
41
|
*/
|
|
42
42
|
Bucket: string | undefined;
|
|
43
43
|
/**
|
|
@@ -120,7 +120,7 @@ export interface AssetDestinationEntry {
|
|
|
120
120
|
*/
|
|
121
121
|
AssetId: string | undefined;
|
|
122
122
|
/**
|
|
123
|
-
* <p>The S3 bucket that is the destination for the asset.</p>
|
|
123
|
+
* <p>The Amazon S3 bucket that is the destination for the asset.</p>
|
|
124
124
|
*/
|
|
125
125
|
Bucket: string | undefined;
|
|
126
126
|
/**
|
|
@@ -128,6 +128,108 @@ export interface AssetDestinationEntry {
|
|
|
128
128
|
*/
|
|
129
129
|
Key?: string;
|
|
130
130
|
}
|
|
131
|
+
/**
|
|
132
|
+
* <p>A structure that allows an LF-admin to grant permissions on certain conditions.</p>
|
|
133
|
+
*/
|
|
134
|
+
export interface LFTag {
|
|
135
|
+
/**
|
|
136
|
+
* <p>The key name for the LF-tag.</p>
|
|
137
|
+
*/
|
|
138
|
+
TagKey: string | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* <p>A list of LF-tag values.</p>
|
|
141
|
+
*/
|
|
142
|
+
TagValues: string[] | undefined;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* <p>The LF-tag policy for database resources.</p>
|
|
146
|
+
*/
|
|
147
|
+
export interface DatabaseLFTagPolicy {
|
|
148
|
+
/**
|
|
149
|
+
* <p>A list of LF-tag conditions that apply to database resources.</p>
|
|
150
|
+
*/
|
|
151
|
+
Expression: LFTag[] | undefined;
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* <p>The LF-tag policy for a table resource.</p>
|
|
155
|
+
*/
|
|
156
|
+
export interface TableLFTagPolicy {
|
|
157
|
+
/**
|
|
158
|
+
* <p>A list of LF-tag conditions that apply to table resources.</p>
|
|
159
|
+
*/
|
|
160
|
+
Expression: LFTag[] | undefined;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* <p>Details about the AWS Lake Formation resource (Table or Database) included in the AWS Lake Formation data permission.</p>
|
|
164
|
+
*/
|
|
165
|
+
export interface LFResourceDetails {
|
|
166
|
+
/**
|
|
167
|
+
* <p>Details about the database resource included in the AWS Lake Formation data permission.</p>
|
|
168
|
+
*/
|
|
169
|
+
Database?: DatabaseLFTagPolicy;
|
|
170
|
+
/**
|
|
171
|
+
* <p>Details about the table resource included in the AWS Lake Formation data permission.</p>
|
|
172
|
+
*/
|
|
173
|
+
Table?: TableLFTagPolicy;
|
|
174
|
+
}
|
|
175
|
+
export declare enum LFResourceType {
|
|
176
|
+
DATABASE = "DATABASE",
|
|
177
|
+
TABLE = "TABLE"
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* <p>Details about the LF-tag policy.</p>
|
|
181
|
+
*/
|
|
182
|
+
export interface LFTagPolicyDetails {
|
|
183
|
+
/**
|
|
184
|
+
* <p>The identifier for the AWS Glue Data Catalog.</p>
|
|
185
|
+
*/
|
|
186
|
+
CatalogId: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The resource type for which the LF-tag policy applies.</p>
|
|
189
|
+
*/
|
|
190
|
+
ResourceType: LFResourceType | string | undefined;
|
|
191
|
+
/**
|
|
192
|
+
* <p>Details for the Lake Formation Resources included in the LF-tag policy.</p>
|
|
193
|
+
*/
|
|
194
|
+
ResourceDetails: LFResourceDetails | undefined;
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* <p>Details about the AWS Lake Formation data permission.</p>
|
|
198
|
+
*/
|
|
199
|
+
export interface LakeFormationDataPermissionDetails {
|
|
200
|
+
/**
|
|
201
|
+
* <p>Details about the LF-tag policy.</p>
|
|
202
|
+
*/
|
|
203
|
+
LFTagPolicy?: LFTagPolicyDetails;
|
|
204
|
+
}
|
|
205
|
+
export declare enum LakeFormationDataPermissionType {
|
|
206
|
+
LFTagPolicy = "LFTagPolicy"
|
|
207
|
+
}
|
|
208
|
+
export declare enum LFPermission {
|
|
209
|
+
DESCRIBE = "DESCRIBE",
|
|
210
|
+
SELECT = "SELECT"
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* <p>The AWS Lake Formation data permission asset.</p>
|
|
214
|
+
*/
|
|
215
|
+
export interface LakeFormationDataPermissionAsset {
|
|
216
|
+
/**
|
|
217
|
+
* <p>Details about the AWS Lake Formation data permission.</p>
|
|
218
|
+
*/
|
|
219
|
+
LakeFormationDataPermissionDetails: LakeFormationDataPermissionDetails | undefined;
|
|
220
|
+
/**
|
|
221
|
+
* <p>The data permission type.</p>
|
|
222
|
+
*/
|
|
223
|
+
LakeFormationDataPermissionType: LakeFormationDataPermissionType | string | undefined;
|
|
224
|
+
/**
|
|
225
|
+
* <p>The permissions granted to the subscribers on the resource.</p>
|
|
226
|
+
*/
|
|
227
|
+
Permissions: (LFPermission | string)[] | undefined;
|
|
228
|
+
/**
|
|
229
|
+
* <p>The IAM role's ARN that allows AWS Data Exchange to assume the role and grant and revoke permissions to AWS Lake Formation data permissions.</p>
|
|
230
|
+
*/
|
|
231
|
+
RoleArn?: string;
|
|
232
|
+
}
|
|
131
233
|
/**
|
|
132
234
|
* <p>The Amazon Redshift datashare asset.</p>
|
|
133
235
|
*/
|
|
@@ -138,20 +240,45 @@ export interface RedshiftDataShareAsset {
|
|
|
138
240
|
Arn: string | undefined;
|
|
139
241
|
}
|
|
140
242
|
/**
|
|
141
|
-
* <p>The S3
|
|
243
|
+
* <p>The Amazon S3 data access that is the asset.</p>
|
|
244
|
+
*/
|
|
245
|
+
export interface S3DataAccessAsset {
|
|
246
|
+
/**
|
|
247
|
+
* <p>The Amazon S3 bucket hosting data to be shared in the S3 data access.</p>
|
|
248
|
+
*/
|
|
249
|
+
Bucket: string | undefined;
|
|
250
|
+
/**
|
|
251
|
+
* <p>The Amazon S3 bucket used for hosting shared data in the Amazon S3 data access.</p>
|
|
252
|
+
*/
|
|
253
|
+
KeyPrefixes?: string[];
|
|
254
|
+
/**
|
|
255
|
+
* <p>S3 keys made available using this asset.</p>
|
|
256
|
+
*/
|
|
257
|
+
Keys?: string[];
|
|
258
|
+
/**
|
|
259
|
+
* <p>The automatically-generated bucket-style alias for your Amazon S3 Access Point. Customers can access their entitled data using the S3 Access Point alias.</p>
|
|
260
|
+
*/
|
|
261
|
+
S3AccessPointAlias?: string;
|
|
262
|
+
/**
|
|
263
|
+
* <p>The ARN for your Amazon S3 Access Point. Customers can also access their entitled data using the S3 Access Point ARN.</p>
|
|
264
|
+
*/
|
|
265
|
+
S3AccessPointArn?: string;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* <p>The Amazon S3 object that is the asset.</p>
|
|
142
269
|
*/
|
|
143
270
|
export interface S3SnapshotAsset {
|
|
144
271
|
/**
|
|
145
|
-
* <p>The size of the S3 object that is the object.</p>
|
|
272
|
+
* <p>The size of the Amazon S3 object that is the object.</p>
|
|
146
273
|
*/
|
|
147
274
|
Size: number | undefined;
|
|
148
275
|
}
|
|
149
276
|
/**
|
|
150
|
-
* <p>
|
|
277
|
+
* <p>Details about the asset.</p>
|
|
151
278
|
*/
|
|
152
279
|
export interface AssetDetails {
|
|
153
280
|
/**
|
|
154
|
-
* <p>The S3 object that is the asset.</p>
|
|
281
|
+
* <p>The Amazon S3 object that is the asset.</p>
|
|
155
282
|
*/
|
|
156
283
|
S3SnapshotAsset?: S3SnapshotAsset;
|
|
157
284
|
/**
|
|
@@ -162,14 +289,31 @@ export interface AssetDetails {
|
|
|
162
289
|
* <p>Information about the API Gateway API asset.</p>
|
|
163
290
|
*/
|
|
164
291
|
ApiGatewayApiAsset?: ApiGatewayApiAsset;
|
|
292
|
+
/**
|
|
293
|
+
* <p>The Amazon S3 data access that is the asset.</p>
|
|
294
|
+
*/
|
|
295
|
+
S3DataAccessAsset?: S3DataAccessAsset;
|
|
296
|
+
/**
|
|
297
|
+
* <p>The AWS Lake Formation data permission that is the asset.</p>
|
|
298
|
+
*/
|
|
299
|
+
LakeFormationDataPermissionAsset?: LakeFormationDataPermissionAsset;
|
|
165
300
|
}
|
|
166
301
|
export declare enum AssetType {
|
|
167
302
|
API_GATEWAY_API = "API_GATEWAY_API",
|
|
303
|
+
LAKE_FORMATION_DATA_PERMISSION = "LAKE_FORMATION_DATA_PERMISSION",
|
|
168
304
|
REDSHIFT_DATA_SHARE = "REDSHIFT_DATA_SHARE",
|
|
305
|
+
S3_DATA_ACCESS = "S3_DATA_ACCESS",
|
|
169
306
|
S3_SNAPSHOT = "S3_SNAPSHOT"
|
|
170
307
|
}
|
|
171
308
|
/**
|
|
172
|
-
* <p>An asset in AWS Data Exchange is a piece of data (S3 object) or a means of
|
|
309
|
+
* <p>An asset in AWS Data Exchange is a piece of data (Amazon S3 object) or a means of
|
|
310
|
+
* fulfilling data (Amazon Redshift datashare or Amazon API Gateway API, AWS Lake Formation
|
|
311
|
+
* data permission, or Amazon S3 data access). The asset can be a structured data file, an
|
|
312
|
+
* image file, or some other data file that can be stored as an Amazon S3 object, an Amazon
|
|
313
|
+
* API Gateway API, or an Amazon Redshift datashare, an AWS Lake Formation data permission, or
|
|
314
|
+
* an Amazon S3 data access. When you create an import job for your files, API Gateway APIs,
|
|
315
|
+
* Amazon Redshift datashares, AWS Lake Formation data permission, or Amazon S3 data access,
|
|
316
|
+
* you create an asset in AWS Data Exchange.</p>
|
|
173
317
|
*/
|
|
174
318
|
export interface AssetEntry {
|
|
175
319
|
/**
|
|
@@ -177,7 +321,7 @@ export interface AssetEntry {
|
|
|
177
321
|
*/
|
|
178
322
|
Arn: string | undefined;
|
|
179
323
|
/**
|
|
180
|
-
* <p>
|
|
324
|
+
* <p>Details about the asset.</p>
|
|
181
325
|
*/
|
|
182
326
|
AssetDetails: AssetDetails | undefined;
|
|
183
327
|
/**
|
|
@@ -197,7 +341,13 @@ export interface AssetEntry {
|
|
|
197
341
|
*/
|
|
198
342
|
Id: string | undefined;
|
|
199
343
|
/**
|
|
200
|
-
* <p>The name of the asset. When importing from Amazon S3, the
|
|
344
|
+
* <p>The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used
|
|
345
|
+
* as the asset name. When exporting to Amazon S3, the asset name is used as default target
|
|
346
|
+
* Amazon S3 object key. When importing from Amazon API Gateway API, the API name is used as
|
|
347
|
+
* the asset name. When importing from Amazon Redshift, the datashare name is used as the
|
|
348
|
+
* asset name. When importing from AWS Lake Formation, the static values of "Database(s)
|
|
349
|
+
* included in LF-tag policy" or "Table(s) included in LF-tag policy" are used as the asset
|
|
350
|
+
* name.</p>
|
|
201
351
|
*/
|
|
202
352
|
Name: string | undefined;
|
|
203
353
|
/**
|
|
@@ -218,7 +368,7 @@ export interface AssetEntry {
|
|
|
218
368
|
*/
|
|
219
369
|
export interface AssetSourceEntry {
|
|
220
370
|
/**
|
|
221
|
-
* <p>The S3 bucket that's part of the source of the asset.</p>
|
|
371
|
+
* <p>The Amazon S3 bucket that's part of the source of the asset.</p>
|
|
222
372
|
*/
|
|
223
373
|
Bucket: string | undefined;
|
|
224
374
|
/**
|
|
@@ -370,7 +520,7 @@ export declare enum Origin {
|
|
|
370
520
|
OWNED = "OWNED"
|
|
371
521
|
}
|
|
372
522
|
/**
|
|
373
|
-
* <p>
|
|
523
|
+
* <p>Details about the origin of the data set.</p>
|
|
374
524
|
*/
|
|
375
525
|
export interface OriginDetails {
|
|
376
526
|
/**
|
|
@@ -425,14 +575,17 @@ export interface CreateDataSetResponse {
|
|
|
425
575
|
UpdatedAt?: Date;
|
|
426
576
|
}
|
|
427
577
|
export declare enum LimitName {
|
|
578
|
+
AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
|
|
428
579
|
Amazon_API_Gateway_API_assets_per_revision = "Amazon API Gateway API assets per revision",
|
|
429
580
|
Amazon_Redshift_datashare_assets_per_import_job_from_Redshift = "Amazon Redshift datashare assets per import job from Redshift",
|
|
430
581
|
Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
|
|
582
|
+
Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
|
|
431
583
|
Asset_per_export_job_from_Amazon_S3 = "Asset per export job from Amazon S3",
|
|
432
584
|
Asset_size_in_GB = "Asset size in GB",
|
|
433
585
|
Assets_per_import_job_from_Amazon_S3 = "Assets per import job from Amazon S3",
|
|
434
586
|
Assets_per_revision = "Assets per revision",
|
|
435
587
|
Auto_export_event_actions_per_data_set = "Auto export event actions per data set",
|
|
588
|
+
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",
|
|
436
589
|
Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3 = "Concurrent in progress jobs to export assets to Amazon S3",
|
|
437
590
|
Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL = "Concurrent in progress jobs to export assets to a signed URL",
|
|
438
591
|
Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3 = "Concurrent in progress jobs to export revisions to Amazon S3",
|
|
@@ -440,12 +593,15 @@ export declare enum LimitName {
|
|
|
440
593
|
Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3 = "Concurrent in progress jobs to import assets from Amazon S3",
|
|
441
594
|
Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL = "Concurrent in progress jobs to import assets from a signed URL",
|
|
442
595
|
Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API = "Concurrent in progress jobs to import assets from an API Gateway API",
|
|
596
|
+
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",
|
|
443
597
|
Data_sets_per_account = "Data sets per account",
|
|
444
598
|
Data_sets_per_product = "Data sets per product",
|
|
445
599
|
Event_actions_per_account = "Event actions per account",
|
|
446
600
|
Products_per_account = "Products per account",
|
|
601
|
+
Revisions_per_AWS_Lake_Formation_data_permission_data_set = "Revisions per AWS Lake Formation data permission data set",
|
|
447
602
|
Revisions_per_Amazon_API_Gateway_API_data_set = "Revisions per Amazon API Gateway API data set",
|
|
448
603
|
Revisions_per_Amazon_Redshift_datashare_data_set = "Revisions per Amazon Redshift datashare data set",
|
|
604
|
+
Revisions_per_Amazon_S3_data_access_data_set = "Revisions per Amazon S3 data access data set",
|
|
449
605
|
Revisions_per_data_set = "Revisions per data set"
|
|
450
606
|
}
|
|
451
607
|
/**
|
|
@@ -525,6 +681,40 @@ export interface CreateEventActionResponse {
|
|
|
525
681
|
*/
|
|
526
682
|
UpdatedAt?: Date;
|
|
527
683
|
}
|
|
684
|
+
/**
|
|
685
|
+
* <p>Source details for an Amazon S3 data access asset.</p>
|
|
686
|
+
*/
|
|
687
|
+
export interface S3DataAccessAssetSourceEntry {
|
|
688
|
+
/**
|
|
689
|
+
* <p>The Amazon S3 bucket used for hosting shared data in the Amazon S3 data access.</p>
|
|
690
|
+
*/
|
|
691
|
+
Bucket: string | undefined;
|
|
692
|
+
/**
|
|
693
|
+
* <p>Organizes Amazon S3 asset key prefixes stored in an Amazon S3 bucket.</p>
|
|
694
|
+
*/
|
|
695
|
+
KeyPrefixes?: string[];
|
|
696
|
+
/**
|
|
697
|
+
* <p>The keys used to create the Amazon S3 data access.</p>
|
|
698
|
+
*/
|
|
699
|
+
Keys?: string[];
|
|
700
|
+
}
|
|
701
|
+
/**
|
|
702
|
+
* <p>Details of the operation to create an Amazon S3 data access from an S3 bucket.</p>
|
|
703
|
+
*/
|
|
704
|
+
export interface CreateS3DataAccessFromS3BucketRequestDetails {
|
|
705
|
+
/**
|
|
706
|
+
* <p>Details about the S3 data access source asset.</p>
|
|
707
|
+
*/
|
|
708
|
+
AssetSource: S3DataAccessAssetSourceEntry | undefined;
|
|
709
|
+
/**
|
|
710
|
+
* <p>The unique identifier for the data set associated with the creation of this Amazon S3 data access.</p>
|
|
711
|
+
*/
|
|
712
|
+
DataSetId: string | undefined;
|
|
713
|
+
/**
|
|
714
|
+
* <p>The unique identifier for a revision.</p>
|
|
715
|
+
*/
|
|
716
|
+
RevisionId: string | undefined;
|
|
717
|
+
}
|
|
528
718
|
/**
|
|
529
719
|
* <p>Details of the operation to be performed by the job.</p>
|
|
530
720
|
*/
|
|
@@ -568,7 +758,7 @@ export interface ExportAssetToSignedUrlRequestDetails {
|
|
|
568
758
|
*/
|
|
569
759
|
export interface RevisionDestinationEntry {
|
|
570
760
|
/**
|
|
571
|
-
* <p>The S3 bucket that is the destination for the assets in the revision.</p>
|
|
761
|
+
* <p>The Amazon S3 bucket that is the destination for the assets in the revision.</p>
|
|
572
762
|
*/
|
|
573
763
|
Bucket: string | undefined;
|
|
574
764
|
/**
|
|
@@ -643,7 +833,7 @@ export interface ImportAssetFromApiGatewayApiRequestDetails {
|
|
|
643
833
|
*/
|
|
644
834
|
export interface ImportAssetFromSignedUrlRequestDetails {
|
|
645
835
|
/**
|
|
646
|
-
* <p>The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name.</p>
|
|
836
|
+
* <p>The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used as the asset name.</p>
|
|
647
837
|
*/
|
|
648
838
|
AssetName: string | undefined;
|
|
649
839
|
/**
|
|
@@ -659,6 +849,68 @@ export interface ImportAssetFromSignedUrlRequestDetails {
|
|
|
659
849
|
*/
|
|
660
850
|
RevisionId: string | undefined;
|
|
661
851
|
}
|
|
852
|
+
export declare enum DatabaseLFTagPolicyPermission {
|
|
853
|
+
DESCRIBE = "DESCRIBE"
|
|
854
|
+
}
|
|
855
|
+
/**
|
|
856
|
+
* <p>The LF-tag policy and permissions for database resources.</p>
|
|
857
|
+
*/
|
|
858
|
+
export interface DatabaseLFTagPolicyAndPermissions {
|
|
859
|
+
/**
|
|
860
|
+
* <p>A list of LF-tag conditions that apply to database resources.</p>
|
|
861
|
+
*/
|
|
862
|
+
Expression: LFTag[] | undefined;
|
|
863
|
+
/**
|
|
864
|
+
* <p>The permissions granted to subscribers on database resources.</p>
|
|
865
|
+
*/
|
|
866
|
+
Permissions: (DatabaseLFTagPolicyPermission | string)[] | undefined;
|
|
867
|
+
}
|
|
868
|
+
export declare enum TableTagPolicyLFPermission {
|
|
869
|
+
DESCRIBE = "DESCRIBE",
|
|
870
|
+
SELECT = "SELECT"
|
|
871
|
+
}
|
|
872
|
+
/**
|
|
873
|
+
* <p>The LF-tag policy and permissions that apply to table resources.</p>
|
|
874
|
+
*/
|
|
875
|
+
export interface TableLFTagPolicyAndPermissions {
|
|
876
|
+
/**
|
|
877
|
+
* <p>A list of LF-tag conditions that apply to table resources.</p>
|
|
878
|
+
*/
|
|
879
|
+
Expression: LFTag[] | undefined;
|
|
880
|
+
/**
|
|
881
|
+
* <p>The permissions granted to subscribers on table resources.</p>
|
|
882
|
+
*/
|
|
883
|
+
Permissions: (TableTagPolicyLFPermission | string)[] | undefined;
|
|
884
|
+
}
|
|
885
|
+
/**
|
|
886
|
+
* <p>Details about the assets imported from an AWS Lake Formation tag policy request.</p>
|
|
887
|
+
*/
|
|
888
|
+
export interface ImportAssetsFromLakeFormationTagPolicyRequestDetails {
|
|
889
|
+
/**
|
|
890
|
+
* <p>The identifier for the AWS Glue Data Catalog.</p>
|
|
891
|
+
*/
|
|
892
|
+
CatalogId: string | undefined;
|
|
893
|
+
/**
|
|
894
|
+
* <p>A structure for the database object.</p>
|
|
895
|
+
*/
|
|
896
|
+
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
897
|
+
/**
|
|
898
|
+
* <p>A structure for the table object.</p>
|
|
899
|
+
*/
|
|
900
|
+
Table?: TableLFTagPolicyAndPermissions;
|
|
901
|
+
/**
|
|
902
|
+
* <p>The IAM role's ARN that allows AWS Data Exchange to assume the role and grant and revoke permissions of subscribers to AWS Lake Formation data permissions.</p>
|
|
903
|
+
*/
|
|
904
|
+
RoleArn: string | undefined;
|
|
905
|
+
/**
|
|
906
|
+
* <p>The unique identifier for the data set associated with this import job.</p>
|
|
907
|
+
*/
|
|
908
|
+
DataSetId: string | undefined;
|
|
909
|
+
/**
|
|
910
|
+
* <p>The unique identifier for the revision associated with this import job.</p>
|
|
911
|
+
*/
|
|
912
|
+
RevisionId: string | undefined;
|
|
913
|
+
}
|
|
662
914
|
/**
|
|
663
915
|
* <p>The source of the Amazon Redshift datashare asset.</p>
|
|
664
916
|
*/
|
|
@@ -690,7 +942,7 @@ export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
|
|
|
690
942
|
*/
|
|
691
943
|
export interface ImportAssetsFromS3RequestDetails {
|
|
692
944
|
/**
|
|
693
|
-
* <p>Is a list of S3 bucket and object key pairs.</p>
|
|
945
|
+
* <p>Is a list of Amazon S3 bucket and object key pairs.</p>
|
|
694
946
|
*/
|
|
695
947
|
AssetSources: AssetSourceEntry[] | undefined;
|
|
696
948
|
/**
|
|
@@ -723,7 +975,7 @@ export interface RequestDetails {
|
|
|
723
975
|
*/
|
|
724
976
|
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails;
|
|
725
977
|
/**
|
|
726
|
-
* <p>
|
|
978
|
+
* <p>Details about the import asset from API Gateway API request.</p>
|
|
727
979
|
*/
|
|
728
980
|
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
|
|
729
981
|
/**
|
|
@@ -734,11 +986,21 @@ export interface RequestDetails {
|
|
|
734
986
|
* <p>Details about the import from signed URL request.</p>
|
|
735
987
|
*/
|
|
736
988
|
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails;
|
|
989
|
+
/**
|
|
990
|
+
* <p>Details of the request to create S3 data access from the Amazon S3 bucket.</p>
|
|
991
|
+
*/
|
|
992
|
+
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketRequestDetails;
|
|
993
|
+
/**
|
|
994
|
+
* <p>Request details for the ImportAssetsFromLakeFormationTagPolicy job.</p>
|
|
995
|
+
*/
|
|
996
|
+
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyRequestDetails;
|
|
737
997
|
}
|
|
738
998
|
export declare enum Type {
|
|
999
|
+
CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET = "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET",
|
|
739
1000
|
EXPORT_ASSETS_TO_S3 = "EXPORT_ASSETS_TO_S3",
|
|
740
1001
|
EXPORT_ASSET_TO_SIGNED_URL = "EXPORT_ASSET_TO_SIGNED_URL",
|
|
741
1002
|
EXPORT_REVISIONS_TO_S3 = "EXPORT_REVISIONS_TO_S3",
|
|
1003
|
+
IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY = "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY",
|
|
742
1004
|
IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES = "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES",
|
|
743
1005
|
IMPORT_ASSETS_FROM_S3 = "IMPORT_ASSETS_FROM_S3",
|
|
744
1006
|
IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
|
|
@@ -754,6 +1016,23 @@ export interface CreateJobRequest {
|
|
|
754
1016
|
*/
|
|
755
1017
|
Type: Type | string | undefined;
|
|
756
1018
|
}
|
|
1019
|
+
/**
|
|
1020
|
+
* <p>Details about the response of the operation to create an S3 data access from an S3 bucket.</p>
|
|
1021
|
+
*/
|
|
1022
|
+
export interface CreateS3DataAccessFromS3BucketResponseDetails {
|
|
1023
|
+
/**
|
|
1024
|
+
* <p>Details about the asset source from an Amazon S3 bucket.</p>
|
|
1025
|
+
*/
|
|
1026
|
+
AssetSource: S3DataAccessAssetSourceEntry | undefined;
|
|
1027
|
+
/**
|
|
1028
|
+
* <p>The unique identifier for this data set.</p>
|
|
1029
|
+
*/
|
|
1030
|
+
DataSetId: string | undefined;
|
|
1031
|
+
/**
|
|
1032
|
+
* <p>The unique identifier for the revision.</p>
|
|
1033
|
+
*/
|
|
1034
|
+
RevisionId: string | undefined;
|
|
1035
|
+
}
|
|
757
1036
|
/**
|
|
758
1037
|
* <p>Details about the export to Amazon S3 response.</p>
|
|
759
1038
|
*/
|
|
@@ -899,6 +1178,35 @@ export interface ImportAssetFromSignedUrlResponseDetails {
|
|
|
899
1178
|
*/
|
|
900
1179
|
SignedUrlExpiresAt?: Date;
|
|
901
1180
|
}
|
|
1181
|
+
/**
|
|
1182
|
+
* <p>Details from an import AWS Lake Formation tag policy job response.</p>
|
|
1183
|
+
*/
|
|
1184
|
+
export interface ImportAssetsFromLakeFormationTagPolicyResponseDetails {
|
|
1185
|
+
/**
|
|
1186
|
+
* <p>The identifier for the AWS Glue Data Catalog.</p>
|
|
1187
|
+
*/
|
|
1188
|
+
CatalogId: string | undefined;
|
|
1189
|
+
/**
|
|
1190
|
+
* <p>A structure for the database object.</p>
|
|
1191
|
+
*/
|
|
1192
|
+
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
1193
|
+
/**
|
|
1194
|
+
* <p>A structure for the table object.</p>
|
|
1195
|
+
*/
|
|
1196
|
+
Table?: TableLFTagPolicyAndPermissions;
|
|
1197
|
+
/**
|
|
1198
|
+
* <p>The IAM role's ARN that allows AWS Data Exchange to assume the role and grant and revoke permissions to AWS Lake Formation data permissions.</p>
|
|
1199
|
+
*/
|
|
1200
|
+
RoleArn: string | undefined;
|
|
1201
|
+
/**
|
|
1202
|
+
* <p>The unique identifier for the data set associated with this import job.</p>
|
|
1203
|
+
*/
|
|
1204
|
+
DataSetId: string | undefined;
|
|
1205
|
+
/**
|
|
1206
|
+
* <p>The unique identifier for the revision associated with this import job.</p>
|
|
1207
|
+
*/
|
|
1208
|
+
RevisionId: string | undefined;
|
|
1209
|
+
}
|
|
902
1210
|
/**
|
|
903
1211
|
* <p>Details from an import from Amazon Redshift datashare response.</p>
|
|
904
1212
|
*/
|
|
@@ -965,13 +1273,21 @@ export interface ResponseDetails {
|
|
|
965
1273
|
* <p>The response details.</p>
|
|
966
1274
|
*/
|
|
967
1275
|
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiResponseDetails;
|
|
1276
|
+
/**
|
|
1277
|
+
* <p>Response details from the CreateS3DataAccessFromS3Bucket job.</p>
|
|
1278
|
+
*/
|
|
1279
|
+
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketResponseDetails;
|
|
1280
|
+
/**
|
|
1281
|
+
* <p>Response details from the ImportAssetsFromLakeFormationTagPolicy job.</p>
|
|
1282
|
+
*/
|
|
1283
|
+
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyResponseDetails;
|
|
968
1284
|
}
|
|
969
1285
|
/**
|
|
970
|
-
* <p>
|
|
1286
|
+
* <p>Details about the job error.</p>
|
|
971
1287
|
*/
|
|
972
1288
|
export interface ImportAssetFromSignedUrlJobErrorDetails {
|
|
973
1289
|
/**
|
|
974
|
-
* <p>
|
|
1290
|
+
* <p>Details about the job error.</p>
|
|
975
1291
|
*/
|
|
976
1292
|
AssetName: string | undefined;
|
|
977
1293
|
}
|
|
@@ -984,12 +1300,14 @@ export interface Details {
|
|
|
984
1300
|
*/
|
|
985
1301
|
ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
|
|
986
1302
|
/**
|
|
987
|
-
* <p>
|
|
1303
|
+
* <p>Details about the job error.</p>
|
|
988
1304
|
*/
|
|
989
1305
|
ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
|
|
990
1306
|
}
|
|
991
1307
|
export declare enum JobErrorLimitName {
|
|
1308
|
+
AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
|
|
992
1309
|
Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
|
|
1310
|
+
Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
|
|
993
1311
|
Asset_size_in_GB = "Asset size in GB",
|
|
994
1312
|
Assets_per_revision = "Assets per revision"
|
|
995
1313
|
}
|
|
@@ -1101,7 +1419,7 @@ export interface CreateRevisionResponse {
|
|
|
1101
1419
|
*/
|
|
1102
1420
|
CreatedAt?: Date;
|
|
1103
1421
|
/**
|
|
1104
|
-
* <p>The unique identifier for the data set associated with
|
|
1422
|
+
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
1105
1423
|
*/
|
|
1106
1424
|
DataSetId?: string;
|
|
1107
1425
|
/**
|
|
@@ -1193,7 +1511,7 @@ export interface GetAssetResponse {
|
|
|
1193
1511
|
*/
|
|
1194
1512
|
Arn?: string;
|
|
1195
1513
|
/**
|
|
1196
|
-
* <p>
|
|
1514
|
+
* <p>Details about the asset.</p>
|
|
1197
1515
|
*/
|
|
1198
1516
|
AssetDetails?: AssetDetails;
|
|
1199
1517
|
/**
|
|
@@ -1213,7 +1531,13 @@ export interface GetAssetResponse {
|
|
|
1213
1531
|
*/
|
|
1214
1532
|
Id?: string;
|
|
1215
1533
|
/**
|
|
1216
|
-
* <p>The name of the asset. When importing from Amazon S3, the
|
|
1534
|
+
* <p>The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used
|
|
1535
|
+
* as the asset name. When exporting to Amazon S3, the asset name is used as default target
|
|
1536
|
+
* Amazon S3 object key. When importing from Amazon API Gateway API, the API name is used as
|
|
1537
|
+
* the asset name. When importing from Amazon Redshift, the datashare name is used as the
|
|
1538
|
+
* asset name. When importing from AWS Lake Formation, the static values of "Database(s) included
|
|
1539
|
+
* in the LF-tag policy" or "Table(s) included in the LF-tag policy" are used as the asset
|
|
1540
|
+
* name.</p>
|
|
1217
1541
|
*/
|
|
1218
1542
|
Name?: string;
|
|
1219
1543
|
/**
|
|
@@ -1377,7 +1701,7 @@ export interface GetRevisionResponse {
|
|
|
1377
1701
|
*/
|
|
1378
1702
|
CreatedAt?: Date;
|
|
1379
1703
|
/**
|
|
1380
|
-
* <p>The unique identifier for the data set associated with
|
|
1704
|
+
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
1381
1705
|
*/
|
|
1382
1706
|
DataSetId?: string;
|
|
1383
1707
|
/**
|
|
@@ -1444,7 +1768,7 @@ export interface RevisionEntry {
|
|
|
1444
1768
|
*/
|
|
1445
1769
|
CreatedAt: Date | undefined;
|
|
1446
1770
|
/**
|
|
1447
|
-
* <p>The unique identifier for the data set associated with
|
|
1771
|
+
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
1448
1772
|
*/
|
|
1449
1773
|
DataSetId: string | undefined;
|
|
1450
1774
|
/**
|
|
@@ -1741,7 +2065,7 @@ export interface RevokeRevisionResponse {
|
|
|
1741
2065
|
*/
|
|
1742
2066
|
CreatedAt?: Date;
|
|
1743
2067
|
/**
|
|
1744
|
-
* <p>The unique identifier for the data set associated with
|
|
2068
|
+
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
1745
2069
|
*/
|
|
1746
2070
|
DataSetId?: string;
|
|
1747
2071
|
/**
|
|
@@ -1855,7 +2179,13 @@ export interface UpdateAssetRequest {
|
|
|
1855
2179
|
*/
|
|
1856
2180
|
DataSetId: string | undefined;
|
|
1857
2181
|
/**
|
|
1858
|
-
* <p>The name of the asset. When importing from Amazon S3, the
|
|
2182
|
+
* <p>The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used
|
|
2183
|
+
* as the asset name. When exporting to Amazon S3, the asset name is used as default target
|
|
2184
|
+
* Amazon S3 object key. When importing from Amazon API Gateway API, the API name is used as
|
|
2185
|
+
* the asset name. When importing from Amazon Redshift, the datashare name is used as the
|
|
2186
|
+
* asset name. When importing from AWS Lake Formation, the static values of "Database(s)
|
|
2187
|
+
* included in the LF-tag policy" or "Table(s) included in LF-tag policy" are used as the
|
|
2188
|
+
* name.</p>
|
|
1859
2189
|
*/
|
|
1860
2190
|
Name: string | undefined;
|
|
1861
2191
|
/**
|
|
@@ -1869,7 +2199,7 @@ export interface UpdateAssetResponse {
|
|
|
1869
2199
|
*/
|
|
1870
2200
|
Arn?: string;
|
|
1871
2201
|
/**
|
|
1872
|
-
* <p>
|
|
2202
|
+
* <p>Details about the asset.</p>
|
|
1873
2203
|
*/
|
|
1874
2204
|
AssetDetails?: AssetDetails;
|
|
1875
2205
|
/**
|
|
@@ -1889,7 +2219,13 @@ export interface UpdateAssetResponse {
|
|
|
1889
2219
|
*/
|
|
1890
2220
|
Id?: string;
|
|
1891
2221
|
/**
|
|
1892
|
-
* <p>The name of the asset. When importing from Amazon S3, the
|
|
2222
|
+
* <p>The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used
|
|
2223
|
+
* as the asset name. When exporting to Amazon S3, the asset name is used as default target
|
|
2224
|
+
* Amazon S3 object key. When importing from Amazon API Gateway API, the API name is used as
|
|
2225
|
+
* the asset name. When importing from Amazon Redshift, the datashare name is used as the
|
|
2226
|
+
* asset name. When importing from AWS Lake Formation, the static values of "Database(s)
|
|
2227
|
+
* included in the LF-tag policy"- or "Table(s) included in LF-tag policy" are used as the
|
|
2228
|
+
* asset name.</p>
|
|
1893
2229
|
*/
|
|
1894
2230
|
Name?: string;
|
|
1895
2231
|
/**
|
|
@@ -2029,7 +2365,7 @@ export interface UpdateRevisionResponse {
|
|
|
2029
2365
|
*/
|
|
2030
2366
|
CreatedAt?: Date;
|
|
2031
2367
|
/**
|
|
2032
|
-
* <p>The unique identifier for the data set associated with
|
|
2368
|
+
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
2033
2369
|
*/
|
|
2034
2370
|
DataSetId?: string;
|
|
2035
2371
|
/**
|
|
@@ -2085,10 +2421,42 @@ export declare const ApiGatewayApiAssetFilterSensitiveLog: (obj: ApiGatewayApiAs
|
|
|
2085
2421
|
* @internal
|
|
2086
2422
|
*/
|
|
2087
2423
|
export declare const AssetDestinationEntryFilterSensitiveLog: (obj: AssetDestinationEntry) => any;
|
|
2424
|
+
/**
|
|
2425
|
+
* @internal
|
|
2426
|
+
*/
|
|
2427
|
+
export declare const LFTagFilterSensitiveLog: (obj: LFTag) => any;
|
|
2428
|
+
/**
|
|
2429
|
+
* @internal
|
|
2430
|
+
*/
|
|
2431
|
+
export declare const DatabaseLFTagPolicyFilterSensitiveLog: (obj: DatabaseLFTagPolicy) => any;
|
|
2432
|
+
/**
|
|
2433
|
+
* @internal
|
|
2434
|
+
*/
|
|
2435
|
+
export declare const TableLFTagPolicyFilterSensitiveLog: (obj: TableLFTagPolicy) => any;
|
|
2436
|
+
/**
|
|
2437
|
+
* @internal
|
|
2438
|
+
*/
|
|
2439
|
+
export declare const LFResourceDetailsFilterSensitiveLog: (obj: LFResourceDetails) => any;
|
|
2440
|
+
/**
|
|
2441
|
+
* @internal
|
|
2442
|
+
*/
|
|
2443
|
+
export declare const LFTagPolicyDetailsFilterSensitiveLog: (obj: LFTagPolicyDetails) => any;
|
|
2444
|
+
/**
|
|
2445
|
+
* @internal
|
|
2446
|
+
*/
|
|
2447
|
+
export declare const LakeFormationDataPermissionDetailsFilterSensitiveLog: (obj: LakeFormationDataPermissionDetails) => any;
|
|
2448
|
+
/**
|
|
2449
|
+
* @internal
|
|
2450
|
+
*/
|
|
2451
|
+
export declare const LakeFormationDataPermissionAssetFilterSensitiveLog: (obj: LakeFormationDataPermissionAsset) => any;
|
|
2088
2452
|
/**
|
|
2089
2453
|
* @internal
|
|
2090
2454
|
*/
|
|
2091
2455
|
export declare const RedshiftDataShareAssetFilterSensitiveLog: (obj: RedshiftDataShareAsset) => any;
|
|
2456
|
+
/**
|
|
2457
|
+
* @internal
|
|
2458
|
+
*/
|
|
2459
|
+
export declare const S3DataAccessAssetFilterSensitiveLog: (obj: S3DataAccessAsset) => any;
|
|
2092
2460
|
/**
|
|
2093
2461
|
* @internal
|
|
2094
2462
|
*/
|
|
@@ -2137,6 +2505,14 @@ export declare const CreateEventActionRequestFilterSensitiveLog: (obj: CreateEve
|
|
|
2137
2505
|
* @internal
|
|
2138
2506
|
*/
|
|
2139
2507
|
export declare const CreateEventActionResponseFilterSensitiveLog: (obj: CreateEventActionResponse) => any;
|
|
2508
|
+
/**
|
|
2509
|
+
* @internal
|
|
2510
|
+
*/
|
|
2511
|
+
export declare const S3DataAccessAssetSourceEntryFilterSensitiveLog: (obj: S3DataAccessAssetSourceEntry) => any;
|
|
2512
|
+
/**
|
|
2513
|
+
* @internal
|
|
2514
|
+
*/
|
|
2515
|
+
export declare const CreateS3DataAccessFromS3BucketRequestDetailsFilterSensitiveLog: (obj: CreateS3DataAccessFromS3BucketRequestDetails) => any;
|
|
2140
2516
|
/**
|
|
2141
2517
|
* @internal
|
|
2142
2518
|
*/
|
|
@@ -2161,6 +2537,18 @@ export declare const ImportAssetFromApiGatewayApiRequestDetailsFilterSensitiveLo
|
|
|
2161
2537
|
* @internal
|
|
2162
2538
|
*/
|
|
2163
2539
|
export declare const ImportAssetFromSignedUrlRequestDetailsFilterSensitiveLog: (obj: ImportAssetFromSignedUrlRequestDetails) => any;
|
|
2540
|
+
/**
|
|
2541
|
+
* @internal
|
|
2542
|
+
*/
|
|
2543
|
+
export declare const DatabaseLFTagPolicyAndPermissionsFilterSensitiveLog: (obj: DatabaseLFTagPolicyAndPermissions) => any;
|
|
2544
|
+
/**
|
|
2545
|
+
* @internal
|
|
2546
|
+
*/
|
|
2547
|
+
export declare const TableLFTagPolicyAndPermissionsFilterSensitiveLog: (obj: TableLFTagPolicyAndPermissions) => any;
|
|
2548
|
+
/**
|
|
2549
|
+
* @internal
|
|
2550
|
+
*/
|
|
2551
|
+
export declare const ImportAssetsFromLakeFormationTagPolicyRequestDetailsFilterSensitiveLog: (obj: ImportAssetsFromLakeFormationTagPolicyRequestDetails) => any;
|
|
2164
2552
|
/**
|
|
2165
2553
|
* @internal
|
|
2166
2554
|
*/
|
|
@@ -2181,6 +2569,10 @@ export declare const RequestDetailsFilterSensitiveLog: (obj: RequestDetails) =>
|
|
|
2181
2569
|
* @internal
|
|
2182
2570
|
*/
|
|
2183
2571
|
export declare const CreateJobRequestFilterSensitiveLog: (obj: CreateJobRequest) => any;
|
|
2572
|
+
/**
|
|
2573
|
+
* @internal
|
|
2574
|
+
*/
|
|
2575
|
+
export declare const CreateS3DataAccessFromS3BucketResponseDetailsFilterSensitiveLog: (obj: CreateS3DataAccessFromS3BucketResponseDetails) => any;
|
|
2184
2576
|
/**
|
|
2185
2577
|
* @internal
|
|
2186
2578
|
*/
|
|
@@ -2201,6 +2593,10 @@ export declare const ImportAssetFromApiGatewayApiResponseDetailsFilterSensitiveL
|
|
|
2201
2593
|
* @internal
|
|
2202
2594
|
*/
|
|
2203
2595
|
export declare const ImportAssetFromSignedUrlResponseDetailsFilterSensitiveLog: (obj: ImportAssetFromSignedUrlResponseDetails) => any;
|
|
2596
|
+
/**
|
|
2597
|
+
* @internal
|
|
2598
|
+
*/
|
|
2599
|
+
export declare const ImportAssetsFromLakeFormationTagPolicyResponseDetailsFilterSensitiveLog: (obj: ImportAssetsFromLakeFormationTagPolicyResponseDetails) => any;
|
|
2204
2600
|
/**
|
|
2205
2601
|
* @internal
|
|
2206
2602
|
*/
|