@aws-sdk/client-dataexchange 3.296.0 → 3.297.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/dist-types/DataExchange.d.ts +30 -0
- package/dist-types/DataExchangeClient.d.ts +24 -4
- package/dist-types/commands/CancelJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateEventActionCommand.d.ts +16 -0
- package/dist-types/commands/CreateJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateRevisionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEventActionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRevisionCommand.d.ts +16 -0
- package/dist-types/commands/GetAssetCommand.d.ts +16 -0
- package/dist-types/commands/GetDataSetCommand.d.ts +16 -0
- package/dist-types/commands/GetEventActionCommand.d.ts +16 -0
- package/dist-types/commands/GetJobCommand.d.ts +16 -0
- package/dist-types/commands/GetRevisionCommand.d.ts +16 -0
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDataSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListEventActionsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RevokeRevisionCommand.d.ts +16 -0
- package/dist-types/commands/SendApiAssetCommand.d.ts +16 -0
- package/dist-types/commands/StartJobCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDataSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEventActionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRevisionCommand.d.ts +16 -0
- package/dist-types/models/DataExchangeServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +267 -1
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDataSetRevisionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDataSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEventActionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRevisionAssetsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Access to the resource is denied.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -15,11 +16,15 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
15
16
|
*/
|
|
16
17
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
17
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
18
22
|
export declare enum ServerSideEncryptionTypes {
|
|
19
23
|
AES256 = "AES256",
|
|
20
24
|
aws_kms = "aws:kms"
|
|
21
25
|
}
|
|
22
26
|
/**
|
|
27
|
+
* @public
|
|
23
28
|
* <p>Encryption configuration of the export job. Includes the encryption type in addition to the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption type.</p>
|
|
24
29
|
*/
|
|
25
30
|
export interface ExportServerSideEncryption {
|
|
@@ -33,6 +38,7 @@ export interface ExportServerSideEncryption {
|
|
|
33
38
|
Type: ServerSideEncryptionTypes | string | undefined;
|
|
34
39
|
}
|
|
35
40
|
/**
|
|
41
|
+
* @public
|
|
36
42
|
* <p>A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.</p>
|
|
37
43
|
*/
|
|
38
44
|
export interface AutoExportRevisionDestinationEntry {
|
|
@@ -46,6 +52,7 @@ export interface AutoExportRevisionDestinationEntry {
|
|
|
46
52
|
KeyPattern?: string;
|
|
47
53
|
}
|
|
48
54
|
/**
|
|
55
|
+
* @public
|
|
49
56
|
* <p>Details of the operation to be performed by the job.</p>
|
|
50
57
|
*/
|
|
51
58
|
export interface AutoExportRevisionToS3RequestDetails {
|
|
@@ -59,6 +66,7 @@ export interface AutoExportRevisionToS3RequestDetails {
|
|
|
59
66
|
RevisionDestination: AutoExportRevisionDestinationEntry | undefined;
|
|
60
67
|
}
|
|
61
68
|
/**
|
|
69
|
+
* @public
|
|
62
70
|
* <p>What occurs after a certain event.</p>
|
|
63
71
|
*/
|
|
64
72
|
export interface Action {
|
|
@@ -67,10 +75,14 @@ export interface Action {
|
|
|
67
75
|
*/
|
|
68
76
|
ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
|
|
69
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
70
81
|
export declare enum ProtocolType {
|
|
71
82
|
REST = "REST"
|
|
72
83
|
}
|
|
73
84
|
/**
|
|
85
|
+
* @public
|
|
74
86
|
* <p>The API Gateway API that is the asset.</p>
|
|
75
87
|
*/
|
|
76
88
|
export interface ApiGatewayApiAsset {
|
|
@@ -112,6 +124,7 @@ export interface ApiGatewayApiAsset {
|
|
|
112
124
|
Stage?: string;
|
|
113
125
|
}
|
|
114
126
|
/**
|
|
127
|
+
* @public
|
|
115
128
|
* <p>The destination for the asset.</p>
|
|
116
129
|
*/
|
|
117
130
|
export interface AssetDestinationEntry {
|
|
@@ -129,6 +142,7 @@ export interface AssetDestinationEntry {
|
|
|
129
142
|
Key?: string;
|
|
130
143
|
}
|
|
131
144
|
/**
|
|
145
|
+
* @public
|
|
132
146
|
* <p>A structure that allows an LF-admin to grant permissions on certain conditions.</p>
|
|
133
147
|
*/
|
|
134
148
|
export interface LFTag {
|
|
@@ -142,6 +156,7 @@ export interface LFTag {
|
|
|
142
156
|
TagValues: string[] | undefined;
|
|
143
157
|
}
|
|
144
158
|
/**
|
|
159
|
+
* @public
|
|
145
160
|
* <p>The LF-tag policy for database resources.</p>
|
|
146
161
|
*/
|
|
147
162
|
export interface DatabaseLFTagPolicy {
|
|
@@ -151,6 +166,7 @@ export interface DatabaseLFTagPolicy {
|
|
|
151
166
|
Expression: LFTag[] | undefined;
|
|
152
167
|
}
|
|
153
168
|
/**
|
|
169
|
+
* @public
|
|
154
170
|
* <p>The LF-tag policy for a table resource.</p>
|
|
155
171
|
*/
|
|
156
172
|
export interface TableLFTagPolicy {
|
|
@@ -160,6 +176,7 @@ export interface TableLFTagPolicy {
|
|
|
160
176
|
Expression: LFTag[] | undefined;
|
|
161
177
|
}
|
|
162
178
|
/**
|
|
179
|
+
* @public
|
|
163
180
|
* <p>Details about the AWS Lake Formation resource (Table or Database) included in the AWS Lake Formation data permission.</p>
|
|
164
181
|
*/
|
|
165
182
|
export interface LFResourceDetails {
|
|
@@ -172,11 +189,15 @@ export interface LFResourceDetails {
|
|
|
172
189
|
*/
|
|
173
190
|
Table?: TableLFTagPolicy;
|
|
174
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
175
195
|
export declare enum LFResourceType {
|
|
176
196
|
DATABASE = "DATABASE",
|
|
177
197
|
TABLE = "TABLE"
|
|
178
198
|
}
|
|
179
199
|
/**
|
|
200
|
+
* @public
|
|
180
201
|
* <p>Details about the LF-tag policy.</p>
|
|
181
202
|
*/
|
|
182
203
|
export interface LFTagPolicyDetails {
|
|
@@ -194,6 +215,7 @@ export interface LFTagPolicyDetails {
|
|
|
194
215
|
ResourceDetails: LFResourceDetails | undefined;
|
|
195
216
|
}
|
|
196
217
|
/**
|
|
218
|
+
* @public
|
|
197
219
|
* <p>Details about the AWS Lake Formation data permission.</p>
|
|
198
220
|
*/
|
|
199
221
|
export interface LakeFormationDataPermissionDetails {
|
|
@@ -202,14 +224,21 @@ export interface LakeFormationDataPermissionDetails {
|
|
|
202
224
|
*/
|
|
203
225
|
LFTagPolicy?: LFTagPolicyDetails;
|
|
204
226
|
}
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
205
230
|
export declare enum LakeFormationDataPermissionType {
|
|
206
231
|
LFTagPolicy = "LFTagPolicy"
|
|
207
232
|
}
|
|
233
|
+
/**
|
|
234
|
+
* @public
|
|
235
|
+
*/
|
|
208
236
|
export declare enum LFPermission {
|
|
209
237
|
DESCRIBE = "DESCRIBE",
|
|
210
238
|
SELECT = "SELECT"
|
|
211
239
|
}
|
|
212
240
|
/**
|
|
241
|
+
* @public
|
|
213
242
|
* <p>The AWS Lake Formation data permission asset.</p>
|
|
214
243
|
*/
|
|
215
244
|
export interface LakeFormationDataPermissionAsset {
|
|
@@ -231,6 +260,7 @@ export interface LakeFormationDataPermissionAsset {
|
|
|
231
260
|
RoleArn?: string;
|
|
232
261
|
}
|
|
233
262
|
/**
|
|
263
|
+
* @public
|
|
234
264
|
* <p>The Amazon Redshift datashare asset.</p>
|
|
235
265
|
*/
|
|
236
266
|
export interface RedshiftDataShareAsset {
|
|
@@ -240,6 +270,7 @@ export interface RedshiftDataShareAsset {
|
|
|
240
270
|
Arn: string | undefined;
|
|
241
271
|
}
|
|
242
272
|
/**
|
|
273
|
+
* @public
|
|
243
274
|
* <p>The Amazon Resource Name (ARN) of the AWS KMS key used to encrypt the shared S3
|
|
244
275
|
* objects.</p>
|
|
245
276
|
*/
|
|
@@ -253,6 +284,7 @@ export interface KmsKeyToGrant {
|
|
|
253
284
|
KmsKeyArn: string | undefined;
|
|
254
285
|
}
|
|
255
286
|
/**
|
|
287
|
+
* @public
|
|
256
288
|
* <p>The Amazon S3 data access that is the asset.</p>
|
|
257
289
|
*/
|
|
258
290
|
export interface S3DataAccessAsset {
|
|
@@ -284,6 +316,7 @@ export interface S3DataAccessAsset {
|
|
|
284
316
|
KmsKeysToGrant?: KmsKeyToGrant[];
|
|
285
317
|
}
|
|
286
318
|
/**
|
|
319
|
+
* @public
|
|
287
320
|
* <p>The Amazon S3 object that is the asset.</p>
|
|
288
321
|
*/
|
|
289
322
|
export interface S3SnapshotAsset {
|
|
@@ -293,6 +326,7 @@ export interface S3SnapshotAsset {
|
|
|
293
326
|
Size: number | undefined;
|
|
294
327
|
}
|
|
295
328
|
/**
|
|
329
|
+
* @public
|
|
296
330
|
* <p>Details about the asset.</p>
|
|
297
331
|
*/
|
|
298
332
|
export interface AssetDetails {
|
|
@@ -317,6 +351,9 @@ export interface AssetDetails {
|
|
|
317
351
|
*/
|
|
318
352
|
LakeFormationDataPermissionAsset?: LakeFormationDataPermissionAsset;
|
|
319
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
320
357
|
export declare enum AssetType {
|
|
321
358
|
API_GATEWAY_API = "API_GATEWAY_API",
|
|
322
359
|
LAKE_FORMATION_DATA_PERMISSION = "LAKE_FORMATION_DATA_PERMISSION",
|
|
@@ -325,6 +362,7 @@ export declare enum AssetType {
|
|
|
325
362
|
S3_SNAPSHOT = "S3_SNAPSHOT"
|
|
326
363
|
}
|
|
327
364
|
/**
|
|
365
|
+
* @public
|
|
328
366
|
* <p>An asset in AWS Data Exchange is a piece of data (Amazon S3 object) or a means of
|
|
329
367
|
* fulfilling data (Amazon Redshift datashare or Amazon API Gateway API, AWS Lake Formation
|
|
330
368
|
* data permission, or Amazon S3 data access). The asset can be a structured data file, an
|
|
@@ -383,6 +421,7 @@ export interface AssetEntry {
|
|
|
383
421
|
UpdatedAt: Date | undefined;
|
|
384
422
|
}
|
|
385
423
|
/**
|
|
424
|
+
* @public
|
|
386
425
|
* <p>The source of the assets.</p>
|
|
387
426
|
*/
|
|
388
427
|
export interface AssetSourceEntry {
|
|
@@ -395,12 +434,18 @@ export interface AssetSourceEntry {
|
|
|
395
434
|
*/
|
|
396
435
|
Key: string | undefined;
|
|
397
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* @public
|
|
439
|
+
*/
|
|
398
440
|
export interface CancelJobRequest {
|
|
399
441
|
/**
|
|
400
442
|
* <p>The unique identifier for a job.</p>
|
|
401
443
|
*/
|
|
402
444
|
JobId: string | undefined;
|
|
403
445
|
}
|
|
446
|
+
/**
|
|
447
|
+
* @public
|
|
448
|
+
*/
|
|
404
449
|
export declare enum ResourceType {
|
|
405
450
|
ASSET = "ASSET",
|
|
406
451
|
DATA_SET = "DATA_SET",
|
|
@@ -409,6 +454,7 @@ export declare enum ResourceType {
|
|
|
409
454
|
REVISION = "REVISION"
|
|
410
455
|
}
|
|
411
456
|
/**
|
|
457
|
+
* @public
|
|
412
458
|
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
413
459
|
*/
|
|
414
460
|
export declare class ConflictException extends __BaseException {
|
|
@@ -432,6 +478,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
432
478
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
433
479
|
}
|
|
434
480
|
/**
|
|
481
|
+
* @public
|
|
435
482
|
* <p>An exception occurred with the service.</p>
|
|
436
483
|
*/
|
|
437
484
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -447,6 +494,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
447
494
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
448
495
|
}
|
|
449
496
|
/**
|
|
497
|
+
* @public
|
|
450
498
|
* <p>The resource couldn't be found.</p>
|
|
451
499
|
*/
|
|
452
500
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -470,6 +518,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
470
518
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
471
519
|
}
|
|
472
520
|
/**
|
|
521
|
+
* @public
|
|
473
522
|
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
474
523
|
*/
|
|
475
524
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -484,11 +533,15 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
484
533
|
*/
|
|
485
534
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
486
535
|
}
|
|
536
|
+
/**
|
|
537
|
+
* @public
|
|
538
|
+
*/
|
|
487
539
|
export declare enum ExceptionCause {
|
|
488
540
|
InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
|
|
489
541
|
S3AccessDenied = "S3AccessDenied"
|
|
490
542
|
}
|
|
491
543
|
/**
|
|
544
|
+
* @public
|
|
492
545
|
* <p>The request was invalid.</p>
|
|
493
546
|
*/
|
|
494
547
|
export declare class ValidationException extends __BaseException {
|
|
@@ -507,6 +560,9 @@ export declare class ValidationException extends __BaseException {
|
|
|
507
560
|
*/
|
|
508
561
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
509
562
|
}
|
|
563
|
+
/**
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
510
566
|
export declare enum Code {
|
|
511
567
|
ACCESS_DENIED_EXCEPTION = "ACCESS_DENIED_EXCEPTION",
|
|
512
568
|
INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
|
|
@@ -516,6 +572,9 @@ export declare enum Code {
|
|
|
516
572
|
SERVICE_QUOTA_EXCEEDED_EXCEPTION = "SERVICE_QUOTA_EXCEEDED_EXCEPTION",
|
|
517
573
|
VALIDATION_EXCEPTION = "VALIDATION_EXCEPTION"
|
|
518
574
|
}
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
519
578
|
export interface CreateDataSetRequest {
|
|
520
579
|
/**
|
|
521
580
|
* <p>The type of asset that is added to a data set.</p>
|
|
@@ -534,11 +593,15 @@ export interface CreateDataSetRequest {
|
|
|
534
593
|
*/
|
|
535
594
|
Tags?: Record<string, string>;
|
|
536
595
|
}
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
537
599
|
export declare enum Origin {
|
|
538
600
|
ENTITLED = "ENTITLED",
|
|
539
601
|
OWNED = "OWNED"
|
|
540
602
|
}
|
|
541
603
|
/**
|
|
604
|
+
* @public
|
|
542
605
|
* <p>Details about the origin of the data set.</p>
|
|
543
606
|
*/
|
|
544
607
|
export interface OriginDetails {
|
|
@@ -547,6 +610,9 @@ export interface OriginDetails {
|
|
|
547
610
|
*/
|
|
548
611
|
ProductId: string | undefined;
|
|
549
612
|
}
|
|
613
|
+
/**
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
550
616
|
export interface CreateDataSetResponse {
|
|
551
617
|
/**
|
|
552
618
|
* <p>The ARN for the data set.</p>
|
|
@@ -593,6 +659,9 @@ export interface CreateDataSetResponse {
|
|
|
593
659
|
*/
|
|
594
660
|
UpdatedAt?: Date;
|
|
595
661
|
}
|
|
662
|
+
/**
|
|
663
|
+
* @public
|
|
664
|
+
*/
|
|
596
665
|
export declare enum LimitName {
|
|
597
666
|
AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
|
|
598
667
|
Amazon_API_Gateway_API_assets_per_revision = "Amazon API Gateway API assets per revision",
|
|
@@ -624,6 +693,7 @@ export declare enum LimitName {
|
|
|
624
693
|
Revisions_per_data_set = "Revisions per data set"
|
|
625
694
|
}
|
|
626
695
|
/**
|
|
696
|
+
* @public
|
|
627
697
|
* <p>The request has exceeded the quotas imposed by the service.</p>
|
|
628
698
|
*/
|
|
629
699
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
@@ -647,6 +717,7 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
647
717
|
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
648
718
|
}
|
|
649
719
|
/**
|
|
720
|
+
* @public
|
|
650
721
|
* <p>Information about the published revision.</p>
|
|
651
722
|
*/
|
|
652
723
|
export interface RevisionPublished {
|
|
@@ -656,6 +727,7 @@ export interface RevisionPublished {
|
|
|
656
727
|
DataSetId: string | undefined;
|
|
657
728
|
}
|
|
658
729
|
/**
|
|
730
|
+
* @public
|
|
659
731
|
* <p>What occurs to start an action.</p>
|
|
660
732
|
*/
|
|
661
733
|
export interface Event {
|
|
@@ -664,6 +736,9 @@ export interface Event {
|
|
|
664
736
|
*/
|
|
665
737
|
RevisionPublished?: RevisionPublished;
|
|
666
738
|
}
|
|
739
|
+
/**
|
|
740
|
+
* @public
|
|
741
|
+
*/
|
|
667
742
|
export interface CreateEventActionRequest {
|
|
668
743
|
/**
|
|
669
744
|
* <p>What occurs after a certain event.</p>
|
|
@@ -674,6 +749,9 @@ export interface CreateEventActionRequest {
|
|
|
674
749
|
*/
|
|
675
750
|
Event: Event | undefined;
|
|
676
751
|
}
|
|
752
|
+
/**
|
|
753
|
+
* @public
|
|
754
|
+
*/
|
|
677
755
|
export interface CreateEventActionResponse {
|
|
678
756
|
/**
|
|
679
757
|
* <p>What occurs after a certain event.</p>
|
|
@@ -701,6 +779,7 @@ export interface CreateEventActionResponse {
|
|
|
701
779
|
UpdatedAt?: Date;
|
|
702
780
|
}
|
|
703
781
|
/**
|
|
782
|
+
* @public
|
|
704
783
|
* <p>Source details for an Amazon S3 data access asset.</p>
|
|
705
784
|
*/
|
|
706
785
|
export interface S3DataAccessAssetSourceEntry {
|
|
@@ -723,6 +802,7 @@ export interface S3DataAccessAssetSourceEntry {
|
|
|
723
802
|
KmsKeysToGrant?: KmsKeyToGrant[];
|
|
724
803
|
}
|
|
725
804
|
/**
|
|
805
|
+
* @public
|
|
726
806
|
* <p>Details of the operation to create an Amazon S3 data access from an S3 bucket.</p>
|
|
727
807
|
*/
|
|
728
808
|
export interface CreateS3DataAccessFromS3BucketRequestDetails {
|
|
@@ -740,6 +820,7 @@ export interface CreateS3DataAccessFromS3BucketRequestDetails {
|
|
|
740
820
|
RevisionId: string | undefined;
|
|
741
821
|
}
|
|
742
822
|
/**
|
|
823
|
+
* @public
|
|
743
824
|
* <p>Details of the operation to be performed by the job.</p>
|
|
744
825
|
*/
|
|
745
826
|
export interface ExportAssetsToS3RequestDetails {
|
|
@@ -761,6 +842,7 @@ export interface ExportAssetsToS3RequestDetails {
|
|
|
761
842
|
RevisionId: string | undefined;
|
|
762
843
|
}
|
|
763
844
|
/**
|
|
845
|
+
* @public
|
|
764
846
|
* <p>Details of the operation to be performed by the job.</p>
|
|
765
847
|
*/
|
|
766
848
|
export interface ExportAssetToSignedUrlRequestDetails {
|
|
@@ -778,6 +860,7 @@ export interface ExportAssetToSignedUrlRequestDetails {
|
|
|
778
860
|
RevisionId: string | undefined;
|
|
779
861
|
}
|
|
780
862
|
/**
|
|
863
|
+
* @public
|
|
781
864
|
* <p>The destination where the assets in the revision will be exported.</p>
|
|
782
865
|
*/
|
|
783
866
|
export interface RevisionDestinationEntry {
|
|
@@ -795,6 +878,7 @@ export interface RevisionDestinationEntry {
|
|
|
795
878
|
RevisionId: string | undefined;
|
|
796
879
|
}
|
|
797
880
|
/**
|
|
881
|
+
* @public
|
|
798
882
|
* <p>Details of the operation to be performed by the job.</p>
|
|
799
883
|
*/
|
|
800
884
|
export interface ExportRevisionsToS3RequestDetails {
|
|
@@ -812,6 +896,7 @@ export interface ExportRevisionsToS3RequestDetails {
|
|
|
812
896
|
RevisionDestinations: RevisionDestinationEntry[] | undefined;
|
|
813
897
|
}
|
|
814
898
|
/**
|
|
899
|
+
* @public
|
|
815
900
|
* <p>The request details.</p>
|
|
816
901
|
*/
|
|
817
902
|
export interface ImportAssetFromApiGatewayApiRequestDetails {
|
|
@@ -853,6 +938,7 @@ export interface ImportAssetFromApiGatewayApiRequestDetails {
|
|
|
853
938
|
Stage: string | undefined;
|
|
854
939
|
}
|
|
855
940
|
/**
|
|
941
|
+
* @public
|
|
856
942
|
* <p>Details of the operation to be performed by the job.</p>
|
|
857
943
|
*/
|
|
858
944
|
export interface ImportAssetFromSignedUrlRequestDetails {
|
|
@@ -873,10 +959,14 @@ export interface ImportAssetFromSignedUrlRequestDetails {
|
|
|
873
959
|
*/
|
|
874
960
|
RevisionId: string | undefined;
|
|
875
961
|
}
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
876
965
|
export declare enum DatabaseLFTagPolicyPermission {
|
|
877
966
|
DESCRIBE = "DESCRIBE"
|
|
878
967
|
}
|
|
879
968
|
/**
|
|
969
|
+
* @public
|
|
880
970
|
* <p>The LF-tag policy and permissions for database resources.</p>
|
|
881
971
|
*/
|
|
882
972
|
export interface DatabaseLFTagPolicyAndPermissions {
|
|
@@ -889,11 +979,15 @@ export interface DatabaseLFTagPolicyAndPermissions {
|
|
|
889
979
|
*/
|
|
890
980
|
Permissions: (DatabaseLFTagPolicyPermission | string)[] | undefined;
|
|
891
981
|
}
|
|
982
|
+
/**
|
|
983
|
+
* @public
|
|
984
|
+
*/
|
|
892
985
|
export declare enum TableTagPolicyLFPermission {
|
|
893
986
|
DESCRIBE = "DESCRIBE",
|
|
894
987
|
SELECT = "SELECT"
|
|
895
988
|
}
|
|
896
989
|
/**
|
|
990
|
+
* @public
|
|
897
991
|
* <p>The LF-tag policy and permissions that apply to table resources.</p>
|
|
898
992
|
*/
|
|
899
993
|
export interface TableLFTagPolicyAndPermissions {
|
|
@@ -907,6 +1001,7 @@ export interface TableLFTagPolicyAndPermissions {
|
|
|
907
1001
|
Permissions: (TableTagPolicyLFPermission | string)[] | undefined;
|
|
908
1002
|
}
|
|
909
1003
|
/**
|
|
1004
|
+
* @public
|
|
910
1005
|
* <p>Details about the assets imported from an AWS Lake Formation tag policy request.</p>
|
|
911
1006
|
*/
|
|
912
1007
|
export interface ImportAssetsFromLakeFormationTagPolicyRequestDetails {
|
|
@@ -936,6 +1031,7 @@ export interface ImportAssetsFromLakeFormationTagPolicyRequestDetails {
|
|
|
936
1031
|
RevisionId: string | undefined;
|
|
937
1032
|
}
|
|
938
1033
|
/**
|
|
1034
|
+
* @public
|
|
939
1035
|
* <p>The source of the Amazon Redshift datashare asset.</p>
|
|
940
1036
|
*/
|
|
941
1037
|
export interface RedshiftDataShareAssetSourceEntry {
|
|
@@ -945,6 +1041,7 @@ export interface RedshiftDataShareAssetSourceEntry {
|
|
|
945
1041
|
DataShareArn: string | undefined;
|
|
946
1042
|
}
|
|
947
1043
|
/**
|
|
1044
|
+
* @public
|
|
948
1045
|
* <p>Details from an import from Amazon Redshift datashare request.</p>
|
|
949
1046
|
*/
|
|
950
1047
|
export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
|
|
@@ -962,6 +1059,7 @@ export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
|
|
|
962
1059
|
RevisionId: string | undefined;
|
|
963
1060
|
}
|
|
964
1061
|
/**
|
|
1062
|
+
* @public
|
|
965
1063
|
* <p>Details of the operation to be performed by the job.</p>
|
|
966
1064
|
*/
|
|
967
1065
|
export interface ImportAssetsFromS3RequestDetails {
|
|
@@ -979,6 +1077,7 @@ export interface ImportAssetsFromS3RequestDetails {
|
|
|
979
1077
|
RevisionId: string | undefined;
|
|
980
1078
|
}
|
|
981
1079
|
/**
|
|
1080
|
+
* @public
|
|
982
1081
|
* <p>The details for the request.</p>
|
|
983
1082
|
*/
|
|
984
1083
|
export interface RequestDetails {
|
|
@@ -1019,6 +1118,9 @@ export interface RequestDetails {
|
|
|
1019
1118
|
*/
|
|
1020
1119
|
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyRequestDetails;
|
|
1021
1120
|
}
|
|
1121
|
+
/**
|
|
1122
|
+
* @public
|
|
1123
|
+
*/
|
|
1022
1124
|
export declare enum Type {
|
|
1023
1125
|
CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET = "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET",
|
|
1024
1126
|
EXPORT_ASSETS_TO_S3 = "EXPORT_ASSETS_TO_S3",
|
|
@@ -1030,6 +1132,9 @@ export declare enum Type {
|
|
|
1030
1132
|
IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
|
|
1031
1133
|
IMPORT_ASSET_FROM_SIGNED_URL = "IMPORT_ASSET_FROM_SIGNED_URL"
|
|
1032
1134
|
}
|
|
1135
|
+
/**
|
|
1136
|
+
* @public
|
|
1137
|
+
*/
|
|
1033
1138
|
export interface CreateJobRequest {
|
|
1034
1139
|
/**
|
|
1035
1140
|
* <p>The details for the CreateJob request.</p>
|
|
@@ -1041,6 +1146,7 @@ export interface CreateJobRequest {
|
|
|
1041
1146
|
Type: Type | string | undefined;
|
|
1042
1147
|
}
|
|
1043
1148
|
/**
|
|
1149
|
+
* @public
|
|
1044
1150
|
* <p>Details about the response of the operation to create an S3 data access from an S3 bucket.</p>
|
|
1045
1151
|
*/
|
|
1046
1152
|
export interface CreateS3DataAccessFromS3BucketResponseDetails {
|
|
@@ -1058,6 +1164,7 @@ export interface CreateS3DataAccessFromS3BucketResponseDetails {
|
|
|
1058
1164
|
RevisionId: string | undefined;
|
|
1059
1165
|
}
|
|
1060
1166
|
/**
|
|
1167
|
+
* @public
|
|
1061
1168
|
* <p>Details about the export to Amazon S3 response.</p>
|
|
1062
1169
|
*/
|
|
1063
1170
|
export interface ExportAssetsToS3ResponseDetails {
|
|
@@ -1079,6 +1186,7 @@ export interface ExportAssetsToS3ResponseDetails {
|
|
|
1079
1186
|
RevisionId: string | undefined;
|
|
1080
1187
|
}
|
|
1081
1188
|
/**
|
|
1189
|
+
* @public
|
|
1082
1190
|
* <p>The details of the export to signed URL response.</p>
|
|
1083
1191
|
*/
|
|
1084
1192
|
export interface ExportAssetToSignedUrlResponseDetails {
|
|
@@ -1104,6 +1212,7 @@ export interface ExportAssetToSignedUrlResponseDetails {
|
|
|
1104
1212
|
SignedUrlExpiresAt?: Date;
|
|
1105
1213
|
}
|
|
1106
1214
|
/**
|
|
1215
|
+
* @public
|
|
1107
1216
|
* <p>Details about the export revisions to Amazon S3 response.</p>
|
|
1108
1217
|
*/
|
|
1109
1218
|
export interface ExportRevisionsToS3ResponseDetails {
|
|
@@ -1125,6 +1234,7 @@ export interface ExportRevisionsToS3ResponseDetails {
|
|
|
1125
1234
|
EventActionArn?: string;
|
|
1126
1235
|
}
|
|
1127
1236
|
/**
|
|
1237
|
+
* @public
|
|
1128
1238
|
* <p>The response details.</p>
|
|
1129
1239
|
*/
|
|
1130
1240
|
export interface ImportAssetFromApiGatewayApiResponseDetails {
|
|
@@ -1174,6 +1284,7 @@ export interface ImportAssetFromApiGatewayApiResponseDetails {
|
|
|
1174
1284
|
Stage: string | undefined;
|
|
1175
1285
|
}
|
|
1176
1286
|
/**
|
|
1287
|
+
* @public
|
|
1177
1288
|
* <p>The details in the response for an import request, including the signed URL and other information.</p>
|
|
1178
1289
|
*/
|
|
1179
1290
|
export interface ImportAssetFromSignedUrlResponseDetails {
|
|
@@ -1203,6 +1314,7 @@ export interface ImportAssetFromSignedUrlResponseDetails {
|
|
|
1203
1314
|
SignedUrlExpiresAt?: Date;
|
|
1204
1315
|
}
|
|
1205
1316
|
/**
|
|
1317
|
+
* @public
|
|
1206
1318
|
* <p>Details from an import AWS Lake Formation tag policy job response.</p>
|
|
1207
1319
|
*/
|
|
1208
1320
|
export interface ImportAssetsFromLakeFormationTagPolicyResponseDetails {
|
|
@@ -1232,6 +1344,7 @@ export interface ImportAssetsFromLakeFormationTagPolicyResponseDetails {
|
|
|
1232
1344
|
RevisionId: string | undefined;
|
|
1233
1345
|
}
|
|
1234
1346
|
/**
|
|
1347
|
+
* @public
|
|
1235
1348
|
* <p>Details from an import from Amazon Redshift datashare response.</p>
|
|
1236
1349
|
*/
|
|
1237
1350
|
export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
|
|
@@ -1249,6 +1362,7 @@ export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
|
|
|
1249
1362
|
RevisionId: string | undefined;
|
|
1250
1363
|
}
|
|
1251
1364
|
/**
|
|
1365
|
+
* @public
|
|
1252
1366
|
* <p>Details from an import from Amazon S3 response.</p>
|
|
1253
1367
|
*/
|
|
1254
1368
|
export interface ImportAssetsFromS3ResponseDetails {
|
|
@@ -1266,6 +1380,7 @@ export interface ImportAssetsFromS3ResponseDetails {
|
|
|
1266
1380
|
RevisionId: string | undefined;
|
|
1267
1381
|
}
|
|
1268
1382
|
/**
|
|
1383
|
+
* @public
|
|
1269
1384
|
* <p>Details for the response.</p>
|
|
1270
1385
|
*/
|
|
1271
1386
|
export interface ResponseDetails {
|
|
@@ -1307,6 +1422,7 @@ export interface ResponseDetails {
|
|
|
1307
1422
|
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyResponseDetails;
|
|
1308
1423
|
}
|
|
1309
1424
|
/**
|
|
1425
|
+
* @public
|
|
1310
1426
|
* <p>Details about the job error.</p>
|
|
1311
1427
|
*/
|
|
1312
1428
|
export interface ImportAssetFromSignedUrlJobErrorDetails {
|
|
@@ -1316,6 +1432,7 @@ export interface ImportAssetFromSignedUrlJobErrorDetails {
|
|
|
1316
1432
|
AssetName: string | undefined;
|
|
1317
1433
|
}
|
|
1318
1434
|
/**
|
|
1435
|
+
* @public
|
|
1319
1436
|
* <p>Information about the job error.</p>
|
|
1320
1437
|
*/
|
|
1321
1438
|
export interface Details {
|
|
@@ -1328,6 +1445,9 @@ export interface Details {
|
|
|
1328
1445
|
*/
|
|
1329
1446
|
ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
|
|
1330
1447
|
}
|
|
1448
|
+
/**
|
|
1449
|
+
* @public
|
|
1450
|
+
*/
|
|
1331
1451
|
export declare enum JobErrorLimitName {
|
|
1332
1452
|
AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
|
|
1333
1453
|
Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
|
|
@@ -1335,12 +1455,16 @@ export declare enum JobErrorLimitName {
|
|
|
1335
1455
|
Asset_size_in_GB = "Asset size in GB",
|
|
1336
1456
|
Assets_per_revision = "Assets per revision"
|
|
1337
1457
|
}
|
|
1458
|
+
/**
|
|
1459
|
+
* @public
|
|
1460
|
+
*/
|
|
1338
1461
|
export declare enum JobErrorResourceTypes {
|
|
1339
1462
|
ASSET = "ASSET",
|
|
1340
1463
|
DATA_SET = "DATA_SET",
|
|
1341
1464
|
REVISION = "REVISION"
|
|
1342
1465
|
}
|
|
1343
1466
|
/**
|
|
1467
|
+
* @public
|
|
1344
1468
|
* <p>An error that occurred with the job request.</p>
|
|
1345
1469
|
*/
|
|
1346
1470
|
export interface JobError {
|
|
@@ -1373,6 +1497,9 @@ export interface JobError {
|
|
|
1373
1497
|
*/
|
|
1374
1498
|
ResourceType?: JobErrorResourceTypes | string;
|
|
1375
1499
|
}
|
|
1500
|
+
/**
|
|
1501
|
+
* @public
|
|
1502
|
+
*/
|
|
1376
1503
|
export declare enum State {
|
|
1377
1504
|
CANCELLED = "CANCELLED",
|
|
1378
1505
|
COMPLETED = "COMPLETED",
|
|
@@ -1381,6 +1508,9 @@ export declare enum State {
|
|
|
1381
1508
|
TIMED_OUT = "TIMED_OUT",
|
|
1382
1509
|
WAITING = "WAITING"
|
|
1383
1510
|
}
|
|
1511
|
+
/**
|
|
1512
|
+
* @public
|
|
1513
|
+
*/
|
|
1384
1514
|
export interface CreateJobResponse {
|
|
1385
1515
|
/**
|
|
1386
1516
|
* <p>The ARN for the job.</p>
|
|
@@ -1415,6 +1545,9 @@ export interface CreateJobResponse {
|
|
|
1415
1545
|
*/
|
|
1416
1546
|
UpdatedAt?: Date;
|
|
1417
1547
|
}
|
|
1548
|
+
/**
|
|
1549
|
+
* @public
|
|
1550
|
+
*/
|
|
1418
1551
|
export interface CreateRevisionRequest {
|
|
1419
1552
|
/**
|
|
1420
1553
|
* <p>An optional comment about the revision.</p>
|
|
@@ -1429,6 +1562,9 @@ export interface CreateRevisionRequest {
|
|
|
1429
1562
|
*/
|
|
1430
1563
|
Tags?: Record<string, string>;
|
|
1431
1564
|
}
|
|
1565
|
+
/**
|
|
1566
|
+
* @public
|
|
1567
|
+
*/
|
|
1432
1568
|
export interface CreateRevisionResponse {
|
|
1433
1569
|
/**
|
|
1434
1570
|
* <p>The ARN for the revision.</p>
|
|
@@ -1479,6 +1615,9 @@ export interface CreateRevisionResponse {
|
|
|
1479
1615
|
*/
|
|
1480
1616
|
RevokedAt?: Date;
|
|
1481
1617
|
}
|
|
1618
|
+
/**
|
|
1619
|
+
* @public
|
|
1620
|
+
*/
|
|
1482
1621
|
export interface DeleteAssetRequest {
|
|
1483
1622
|
/**
|
|
1484
1623
|
* <p>The unique identifier for an asset.</p>
|
|
@@ -1493,18 +1632,27 @@ export interface DeleteAssetRequest {
|
|
|
1493
1632
|
*/
|
|
1494
1633
|
RevisionId: string | undefined;
|
|
1495
1634
|
}
|
|
1635
|
+
/**
|
|
1636
|
+
* @public
|
|
1637
|
+
*/
|
|
1496
1638
|
export interface DeleteDataSetRequest {
|
|
1497
1639
|
/**
|
|
1498
1640
|
* <p>The unique identifier for a data set.</p>
|
|
1499
1641
|
*/
|
|
1500
1642
|
DataSetId: string | undefined;
|
|
1501
1643
|
}
|
|
1644
|
+
/**
|
|
1645
|
+
* @public
|
|
1646
|
+
*/
|
|
1502
1647
|
export interface DeleteEventActionRequest {
|
|
1503
1648
|
/**
|
|
1504
1649
|
* <p>The unique identifier for the event action.</p>
|
|
1505
1650
|
*/
|
|
1506
1651
|
EventActionId: string | undefined;
|
|
1507
1652
|
}
|
|
1653
|
+
/**
|
|
1654
|
+
* @public
|
|
1655
|
+
*/
|
|
1508
1656
|
export interface DeleteRevisionRequest {
|
|
1509
1657
|
/**
|
|
1510
1658
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -1515,6 +1663,9 @@ export interface DeleteRevisionRequest {
|
|
|
1515
1663
|
*/
|
|
1516
1664
|
RevisionId: string | undefined;
|
|
1517
1665
|
}
|
|
1666
|
+
/**
|
|
1667
|
+
* @public
|
|
1668
|
+
*/
|
|
1518
1669
|
export interface GetAssetRequest {
|
|
1519
1670
|
/**
|
|
1520
1671
|
* <p>The unique identifier for an asset.</p>
|
|
@@ -1529,6 +1680,9 @@ export interface GetAssetRequest {
|
|
|
1529
1680
|
*/
|
|
1530
1681
|
RevisionId: string | undefined;
|
|
1531
1682
|
}
|
|
1683
|
+
/**
|
|
1684
|
+
* @public
|
|
1685
|
+
*/
|
|
1532
1686
|
export interface GetAssetResponse {
|
|
1533
1687
|
/**
|
|
1534
1688
|
* <p>The ARN for the asset.</p>
|
|
@@ -1577,12 +1731,18 @@ export interface GetAssetResponse {
|
|
|
1577
1731
|
*/
|
|
1578
1732
|
UpdatedAt?: Date;
|
|
1579
1733
|
}
|
|
1734
|
+
/**
|
|
1735
|
+
* @public
|
|
1736
|
+
*/
|
|
1580
1737
|
export interface GetDataSetRequest {
|
|
1581
1738
|
/**
|
|
1582
1739
|
* <p>The unique identifier for a data set.</p>
|
|
1583
1740
|
*/
|
|
1584
1741
|
DataSetId: string | undefined;
|
|
1585
1742
|
}
|
|
1743
|
+
/**
|
|
1744
|
+
* @public
|
|
1745
|
+
*/
|
|
1586
1746
|
export interface GetDataSetResponse {
|
|
1587
1747
|
/**
|
|
1588
1748
|
* <p>The ARN for the data set.</p>
|
|
@@ -1629,12 +1789,18 @@ export interface GetDataSetResponse {
|
|
|
1629
1789
|
*/
|
|
1630
1790
|
UpdatedAt?: Date;
|
|
1631
1791
|
}
|
|
1792
|
+
/**
|
|
1793
|
+
* @public
|
|
1794
|
+
*/
|
|
1632
1795
|
export interface GetEventActionRequest {
|
|
1633
1796
|
/**
|
|
1634
1797
|
* <p>The unique identifier for the event action.</p>
|
|
1635
1798
|
*/
|
|
1636
1799
|
EventActionId: string | undefined;
|
|
1637
1800
|
}
|
|
1801
|
+
/**
|
|
1802
|
+
* @public
|
|
1803
|
+
*/
|
|
1638
1804
|
export interface GetEventActionResponse {
|
|
1639
1805
|
/**
|
|
1640
1806
|
* <p>What occurs after a certain event.</p>
|
|
@@ -1661,12 +1827,18 @@ export interface GetEventActionResponse {
|
|
|
1661
1827
|
*/
|
|
1662
1828
|
UpdatedAt?: Date;
|
|
1663
1829
|
}
|
|
1830
|
+
/**
|
|
1831
|
+
* @public
|
|
1832
|
+
*/
|
|
1664
1833
|
export interface GetJobRequest {
|
|
1665
1834
|
/**
|
|
1666
1835
|
* <p>The unique identifier for a job.</p>
|
|
1667
1836
|
*/
|
|
1668
1837
|
JobId: string | undefined;
|
|
1669
1838
|
}
|
|
1839
|
+
/**
|
|
1840
|
+
* @public
|
|
1841
|
+
*/
|
|
1670
1842
|
export interface GetJobResponse {
|
|
1671
1843
|
/**
|
|
1672
1844
|
* <p>The ARN for the job.</p>
|
|
@@ -1701,6 +1873,9 @@ export interface GetJobResponse {
|
|
|
1701
1873
|
*/
|
|
1702
1874
|
UpdatedAt?: Date;
|
|
1703
1875
|
}
|
|
1876
|
+
/**
|
|
1877
|
+
* @public
|
|
1878
|
+
*/
|
|
1704
1879
|
export interface GetRevisionRequest {
|
|
1705
1880
|
/**
|
|
1706
1881
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -1711,6 +1886,9 @@ export interface GetRevisionRequest {
|
|
|
1711
1886
|
*/
|
|
1712
1887
|
RevisionId: string | undefined;
|
|
1713
1888
|
}
|
|
1889
|
+
/**
|
|
1890
|
+
* @public
|
|
1891
|
+
*/
|
|
1714
1892
|
export interface GetRevisionResponse {
|
|
1715
1893
|
/**
|
|
1716
1894
|
* <p>The ARN for the revision.</p>
|
|
@@ -1761,6 +1939,9 @@ export interface GetRevisionResponse {
|
|
|
1761
1939
|
*/
|
|
1762
1940
|
RevokedAt?: Date;
|
|
1763
1941
|
}
|
|
1942
|
+
/**
|
|
1943
|
+
* @public
|
|
1944
|
+
*/
|
|
1764
1945
|
export interface ListDataSetRevisionsRequest {
|
|
1765
1946
|
/**
|
|
1766
1947
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -1776,6 +1957,7 @@ export interface ListDataSetRevisionsRequest {
|
|
|
1776
1957
|
NextToken?: string;
|
|
1777
1958
|
}
|
|
1778
1959
|
/**
|
|
1960
|
+
* @public
|
|
1779
1961
|
* <p>A revision is a container for one or more assets.</p>
|
|
1780
1962
|
*/
|
|
1781
1963
|
export interface RevisionEntry {
|
|
@@ -1824,6 +2006,9 @@ export interface RevisionEntry {
|
|
|
1824
2006
|
*/
|
|
1825
2007
|
RevokedAt?: Date;
|
|
1826
2008
|
}
|
|
2009
|
+
/**
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
1827
2012
|
export interface ListDataSetRevisionsResponse {
|
|
1828
2013
|
/**
|
|
1829
2014
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -1834,6 +2019,9 @@ export interface ListDataSetRevisionsResponse {
|
|
|
1834
2019
|
*/
|
|
1835
2020
|
Revisions?: RevisionEntry[];
|
|
1836
2021
|
}
|
|
2022
|
+
/**
|
|
2023
|
+
* @public
|
|
2024
|
+
*/
|
|
1837
2025
|
export interface ListDataSetsRequest {
|
|
1838
2026
|
/**
|
|
1839
2027
|
* <p>The maximum number of results returned by a single call.</p>
|
|
@@ -1849,6 +2037,7 @@ export interface ListDataSetsRequest {
|
|
|
1849
2037
|
Origin?: string;
|
|
1850
2038
|
}
|
|
1851
2039
|
/**
|
|
2040
|
+
* @public
|
|
1852
2041
|
* <p>A data set is an AWS resource with one or more revisions.</p>
|
|
1853
2042
|
*/
|
|
1854
2043
|
export interface DataSetEntry {
|
|
@@ -1893,6 +2082,9 @@ export interface DataSetEntry {
|
|
|
1893
2082
|
*/
|
|
1894
2083
|
UpdatedAt: Date | undefined;
|
|
1895
2084
|
}
|
|
2085
|
+
/**
|
|
2086
|
+
* @public
|
|
2087
|
+
*/
|
|
1896
2088
|
export interface ListDataSetsResponse {
|
|
1897
2089
|
/**
|
|
1898
2090
|
* <p>The data set objects listed by the request.</p>
|
|
@@ -1903,6 +2095,9 @@ export interface ListDataSetsResponse {
|
|
|
1903
2095
|
*/
|
|
1904
2096
|
NextToken?: string;
|
|
1905
2097
|
}
|
|
2098
|
+
/**
|
|
2099
|
+
* @public
|
|
2100
|
+
*/
|
|
1906
2101
|
export interface ListEventActionsRequest {
|
|
1907
2102
|
/**
|
|
1908
2103
|
* <p>The unique identifier for the event source.</p>
|
|
@@ -1918,6 +2113,7 @@ export interface ListEventActionsRequest {
|
|
|
1918
2113
|
NextToken?: string;
|
|
1919
2114
|
}
|
|
1920
2115
|
/**
|
|
2116
|
+
* @public
|
|
1921
2117
|
* <p>An event action is an object that defines the relationship between a specific event and an automated action that will be taken on behalf of the customer.</p>
|
|
1922
2118
|
*/
|
|
1923
2119
|
export interface EventActionEntry {
|
|
@@ -1946,6 +2142,9 @@ export interface EventActionEntry {
|
|
|
1946
2142
|
*/
|
|
1947
2143
|
UpdatedAt: Date | undefined;
|
|
1948
2144
|
}
|
|
2145
|
+
/**
|
|
2146
|
+
* @public
|
|
2147
|
+
*/
|
|
1949
2148
|
export interface ListEventActionsResponse {
|
|
1950
2149
|
/**
|
|
1951
2150
|
* <p>The event action objects listed by the request.</p>
|
|
@@ -1956,6 +2155,9 @@ export interface ListEventActionsResponse {
|
|
|
1956
2155
|
*/
|
|
1957
2156
|
NextToken?: string;
|
|
1958
2157
|
}
|
|
2158
|
+
/**
|
|
2159
|
+
* @public
|
|
2160
|
+
*/
|
|
1959
2161
|
export interface ListJobsRequest {
|
|
1960
2162
|
/**
|
|
1961
2163
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -1975,6 +2177,7 @@ export interface ListJobsRequest {
|
|
|
1975
2177
|
RevisionId?: string;
|
|
1976
2178
|
}
|
|
1977
2179
|
/**
|
|
2180
|
+
* @public
|
|
1978
2181
|
* <p>AWS Data Exchange Jobs are asynchronous import or export operations used to create or copy assets. A data set owner can both import and export as they see fit. Someone with an entitlement to a data set can only export. Jobs are deleted 90 days after they are created.</p>
|
|
1979
2182
|
*/
|
|
1980
2183
|
export interface JobEntry {
|
|
@@ -2011,6 +2214,9 @@ export interface JobEntry {
|
|
|
2011
2214
|
*/
|
|
2012
2215
|
UpdatedAt: Date | undefined;
|
|
2013
2216
|
}
|
|
2217
|
+
/**
|
|
2218
|
+
* @public
|
|
2219
|
+
*/
|
|
2014
2220
|
export interface ListJobsResponse {
|
|
2015
2221
|
/**
|
|
2016
2222
|
* <p>The jobs listed by the request.</p>
|
|
@@ -2021,6 +2227,9 @@ export interface ListJobsResponse {
|
|
|
2021
2227
|
*/
|
|
2022
2228
|
NextToken?: string;
|
|
2023
2229
|
}
|
|
2230
|
+
/**
|
|
2231
|
+
* @public
|
|
2232
|
+
*/
|
|
2024
2233
|
export interface ListRevisionAssetsRequest {
|
|
2025
2234
|
/**
|
|
2026
2235
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -2039,6 +2248,9 @@ export interface ListRevisionAssetsRequest {
|
|
|
2039
2248
|
*/
|
|
2040
2249
|
RevisionId: string | undefined;
|
|
2041
2250
|
}
|
|
2251
|
+
/**
|
|
2252
|
+
* @public
|
|
2253
|
+
*/
|
|
2042
2254
|
export interface ListRevisionAssetsResponse {
|
|
2043
2255
|
/**
|
|
2044
2256
|
* <p>The asset objects listed by the request.</p>
|
|
@@ -2049,18 +2261,27 @@ export interface ListRevisionAssetsResponse {
|
|
|
2049
2261
|
*/
|
|
2050
2262
|
NextToken?: string;
|
|
2051
2263
|
}
|
|
2264
|
+
/**
|
|
2265
|
+
* @public
|
|
2266
|
+
*/
|
|
2052
2267
|
export interface ListTagsForResourceRequest {
|
|
2053
2268
|
/**
|
|
2054
2269
|
* <p>An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.</p>
|
|
2055
2270
|
*/
|
|
2056
2271
|
ResourceArn: string | undefined;
|
|
2057
2272
|
}
|
|
2273
|
+
/**
|
|
2274
|
+
* @public
|
|
2275
|
+
*/
|
|
2058
2276
|
export interface ListTagsForResourceResponse {
|
|
2059
2277
|
/**
|
|
2060
2278
|
* <p>A label that consists of a customer-defined key and an optional value.</p>
|
|
2061
2279
|
*/
|
|
2062
2280
|
Tags?: Record<string, string>;
|
|
2063
2281
|
}
|
|
2282
|
+
/**
|
|
2283
|
+
* @public
|
|
2284
|
+
*/
|
|
2064
2285
|
export interface RevokeRevisionRequest {
|
|
2065
2286
|
/**
|
|
2066
2287
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -2075,6 +2296,9 @@ export interface RevokeRevisionRequest {
|
|
|
2075
2296
|
*/
|
|
2076
2297
|
RevocationComment: string | undefined;
|
|
2077
2298
|
}
|
|
2299
|
+
/**
|
|
2300
|
+
* @public
|
|
2301
|
+
*/
|
|
2078
2302
|
export interface RevokeRevisionResponse {
|
|
2079
2303
|
/**
|
|
2080
2304
|
* <p>The ARN for the revision.</p>
|
|
@@ -2121,6 +2345,9 @@ export interface RevokeRevisionResponse {
|
|
|
2121
2345
|
*/
|
|
2122
2346
|
RevokedAt?: Date;
|
|
2123
2347
|
}
|
|
2348
|
+
/**
|
|
2349
|
+
* @public
|
|
2350
|
+
*/
|
|
2124
2351
|
export interface SendApiAssetRequest {
|
|
2125
2352
|
/**
|
|
2126
2353
|
* <p>The request body.</p>
|
|
@@ -2147,7 +2374,7 @@ export interface SendApiAssetRequest {
|
|
|
2147
2374
|
*/
|
|
2148
2375
|
Method?: string;
|
|
2149
2376
|
/**
|
|
2150
|
-
* <p>URI path value for the API request. Alternatively, you can set the URI path directly by invoking /v1
|
|
2377
|
+
* <p>URI path value for the API request. Alternatively, you can set the URI path directly by invoking /v1/\{pathValue\}.</p>
|
|
2151
2378
|
*/
|
|
2152
2379
|
Path?: string;
|
|
2153
2380
|
/**
|
|
@@ -2155,6 +2382,9 @@ export interface SendApiAssetRequest {
|
|
|
2155
2382
|
*/
|
|
2156
2383
|
RevisionId: string | undefined;
|
|
2157
2384
|
}
|
|
2385
|
+
/**
|
|
2386
|
+
* @public
|
|
2387
|
+
*/
|
|
2158
2388
|
export interface SendApiAssetResponse {
|
|
2159
2389
|
/**
|
|
2160
2390
|
* <p>The response body from the underlying API tracked by the API asset.</p>
|
|
@@ -2165,14 +2395,23 @@ export interface SendApiAssetResponse {
|
|
|
2165
2395
|
*/
|
|
2166
2396
|
ResponseHeaders?: Record<string, string>;
|
|
2167
2397
|
}
|
|
2398
|
+
/**
|
|
2399
|
+
* @public
|
|
2400
|
+
*/
|
|
2168
2401
|
export interface StartJobRequest {
|
|
2169
2402
|
/**
|
|
2170
2403
|
* <p>The unique identifier for a job.</p>
|
|
2171
2404
|
*/
|
|
2172
2405
|
JobId: string | undefined;
|
|
2173
2406
|
}
|
|
2407
|
+
/**
|
|
2408
|
+
* @public
|
|
2409
|
+
*/
|
|
2174
2410
|
export interface StartJobResponse {
|
|
2175
2411
|
}
|
|
2412
|
+
/**
|
|
2413
|
+
* @public
|
|
2414
|
+
*/
|
|
2176
2415
|
export interface TagResourceRequest {
|
|
2177
2416
|
/**
|
|
2178
2417
|
* <p>An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.</p>
|
|
@@ -2183,6 +2422,9 @@ export interface TagResourceRequest {
|
|
|
2183
2422
|
*/
|
|
2184
2423
|
Tags: Record<string, string> | undefined;
|
|
2185
2424
|
}
|
|
2425
|
+
/**
|
|
2426
|
+
* @public
|
|
2427
|
+
*/
|
|
2186
2428
|
export interface UntagResourceRequest {
|
|
2187
2429
|
/**
|
|
2188
2430
|
* <p>An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.</p>
|
|
@@ -2193,6 +2435,9 @@ export interface UntagResourceRequest {
|
|
|
2193
2435
|
*/
|
|
2194
2436
|
TagKeys: string[] | undefined;
|
|
2195
2437
|
}
|
|
2438
|
+
/**
|
|
2439
|
+
* @public
|
|
2440
|
+
*/
|
|
2196
2441
|
export interface UpdateAssetRequest {
|
|
2197
2442
|
/**
|
|
2198
2443
|
* <p>The unique identifier for an asset.</p>
|
|
@@ -2217,6 +2462,9 @@ export interface UpdateAssetRequest {
|
|
|
2217
2462
|
*/
|
|
2218
2463
|
RevisionId: string | undefined;
|
|
2219
2464
|
}
|
|
2465
|
+
/**
|
|
2466
|
+
* @public
|
|
2467
|
+
*/
|
|
2220
2468
|
export interface UpdateAssetResponse {
|
|
2221
2469
|
/**
|
|
2222
2470
|
* <p>The ARN for the asset.</p>
|
|
@@ -2265,6 +2513,9 @@ export interface UpdateAssetResponse {
|
|
|
2265
2513
|
*/
|
|
2266
2514
|
UpdatedAt?: Date;
|
|
2267
2515
|
}
|
|
2516
|
+
/**
|
|
2517
|
+
* @public
|
|
2518
|
+
*/
|
|
2268
2519
|
export interface UpdateDataSetRequest {
|
|
2269
2520
|
/**
|
|
2270
2521
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -2279,6 +2530,9 @@ export interface UpdateDataSetRequest {
|
|
|
2279
2530
|
*/
|
|
2280
2531
|
Name?: string;
|
|
2281
2532
|
}
|
|
2533
|
+
/**
|
|
2534
|
+
* @public
|
|
2535
|
+
*/
|
|
2282
2536
|
export interface UpdateDataSetResponse {
|
|
2283
2537
|
/**
|
|
2284
2538
|
* <p>The ARN for the data set.</p>
|
|
@@ -2321,6 +2575,9 @@ export interface UpdateDataSetResponse {
|
|
|
2321
2575
|
*/
|
|
2322
2576
|
UpdatedAt?: Date;
|
|
2323
2577
|
}
|
|
2578
|
+
/**
|
|
2579
|
+
* @public
|
|
2580
|
+
*/
|
|
2324
2581
|
export interface UpdateEventActionRequest {
|
|
2325
2582
|
/**
|
|
2326
2583
|
* <p>What occurs after a certain event.</p>
|
|
@@ -2331,6 +2588,9 @@ export interface UpdateEventActionRequest {
|
|
|
2331
2588
|
*/
|
|
2332
2589
|
EventActionId: string | undefined;
|
|
2333
2590
|
}
|
|
2591
|
+
/**
|
|
2592
|
+
* @public
|
|
2593
|
+
*/
|
|
2334
2594
|
export interface UpdateEventActionResponse {
|
|
2335
2595
|
/**
|
|
2336
2596
|
* <p>What occurs after a certain event.</p>
|
|
@@ -2357,6 +2617,9 @@ export interface UpdateEventActionResponse {
|
|
|
2357
2617
|
*/
|
|
2358
2618
|
UpdatedAt?: Date;
|
|
2359
2619
|
}
|
|
2620
|
+
/**
|
|
2621
|
+
* @public
|
|
2622
|
+
*/
|
|
2360
2623
|
export interface UpdateRevisionRequest {
|
|
2361
2624
|
/**
|
|
2362
2625
|
* <p>An optional comment about the revision.</p>
|
|
@@ -2375,6 +2638,9 @@ export interface UpdateRevisionRequest {
|
|
|
2375
2638
|
*/
|
|
2376
2639
|
RevisionId: string | undefined;
|
|
2377
2640
|
}
|
|
2641
|
+
/**
|
|
2642
|
+
* @public
|
|
2643
|
+
*/
|
|
2378
2644
|
export interface UpdateRevisionResponse {
|
|
2379
2645
|
/**
|
|
2380
2646
|
* <p>The ARN for the revision.</p>
|