@aws-sdk/client-dataexchange 3.686.0 → 3.691.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/models/models_0.d.ts +320 -320
- package/dist-types/ts3.4/models/models_0.d.ts +342 -320
- package/package.json +7 -7
|
@@ -23,12 +23,12 @@ export type GrantDistributionScope =
|
|
|
23
23
|
(typeof GrantDistributionScope)[keyof typeof GrantDistributionScope];
|
|
24
24
|
export interface AcceptDataGrantResponse {
|
|
25
25
|
Name: string | undefined;
|
|
26
|
-
SenderPrincipal?: string;
|
|
26
|
+
SenderPrincipal?: string | undefined;
|
|
27
27
|
ReceiverPrincipal: string | undefined;
|
|
28
|
-
Description?: string;
|
|
28
|
+
Description?: string | undefined;
|
|
29
29
|
AcceptanceState: DataGrantAcceptanceState | undefined;
|
|
30
|
-
AcceptedAt?: Date;
|
|
31
|
-
EndsAt?: Date;
|
|
30
|
+
AcceptedAt?: Date | undefined;
|
|
31
|
+
EndsAt?: Date | undefined;
|
|
32
32
|
GrantDistributionScope: GrantDistributionScope | undefined;
|
|
33
33
|
DataSetId: string | undefined;
|
|
34
34
|
Id: string | undefined;
|
|
@@ -57,8 +57,8 @@ export declare class ConflictException extends __BaseException {
|
|
|
57
57
|
readonly name: "ConflictException";
|
|
58
58
|
readonly $fault: "client";
|
|
59
59
|
Message: string | undefined;
|
|
60
|
-
ResourceId?: string;
|
|
61
|
-
ResourceType?: ResourceType;
|
|
60
|
+
ResourceId?: string | undefined;
|
|
61
|
+
ResourceType?: ResourceType | undefined;
|
|
62
62
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
63
63
|
}
|
|
64
64
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -73,8 +73,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
73
73
|
readonly name: "ResourceNotFoundException";
|
|
74
74
|
readonly $fault: "client";
|
|
75
75
|
Message: string | undefined;
|
|
76
|
-
ResourceId?: string;
|
|
77
|
-
ResourceType?: ResourceType;
|
|
76
|
+
ResourceId?: string | undefined;
|
|
77
|
+
ResourceType?: ResourceType | undefined;
|
|
78
78
|
constructor(
|
|
79
79
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
80
80
|
);
|
|
@@ -97,7 +97,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
97
97
|
readonly name: "ValidationException";
|
|
98
98
|
readonly $fault: "client";
|
|
99
99
|
Message: string | undefined;
|
|
100
|
-
ExceptionCause?: ExceptionCause;
|
|
100
|
+
ExceptionCause?: ExceptionCause | undefined;
|
|
101
101
|
constructor(
|
|
102
102
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
103
103
|
);
|
|
@@ -109,39 +109,39 @@ export declare const ServerSideEncryptionTypes: {
|
|
|
109
109
|
export type ServerSideEncryptionTypes =
|
|
110
110
|
(typeof ServerSideEncryptionTypes)[keyof typeof ServerSideEncryptionTypes];
|
|
111
111
|
export interface ExportServerSideEncryption {
|
|
112
|
-
KmsKeyArn?: string;
|
|
112
|
+
KmsKeyArn?: string | undefined;
|
|
113
113
|
Type: ServerSideEncryptionTypes | undefined;
|
|
114
114
|
}
|
|
115
115
|
export interface AutoExportRevisionDestinationEntry {
|
|
116
116
|
Bucket: string | undefined;
|
|
117
|
-
KeyPattern?: string;
|
|
117
|
+
KeyPattern?: string | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface AutoExportRevisionToS3RequestDetails {
|
|
120
|
-
Encryption?: ExportServerSideEncryption;
|
|
120
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
121
121
|
RevisionDestination: AutoExportRevisionDestinationEntry | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface Action {
|
|
124
|
-
ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
|
|
124
|
+
ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails | undefined;
|
|
125
125
|
}
|
|
126
126
|
export declare const ProtocolType: {
|
|
127
127
|
readonly REST: "REST";
|
|
128
128
|
};
|
|
129
129
|
export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
|
|
130
130
|
export interface ApiGatewayApiAsset {
|
|
131
|
-
ApiDescription?: string;
|
|
132
|
-
ApiEndpoint?: string;
|
|
133
|
-
ApiId?: string;
|
|
134
|
-
ApiKey?: string;
|
|
135
|
-
ApiName?: string;
|
|
136
|
-
ApiSpecificationDownloadUrl?: string;
|
|
137
|
-
ApiSpecificationDownloadUrlExpiresAt?: Date;
|
|
138
|
-
ProtocolType?: ProtocolType;
|
|
139
|
-
Stage?: string;
|
|
131
|
+
ApiDescription?: string | undefined;
|
|
132
|
+
ApiEndpoint?: string | undefined;
|
|
133
|
+
ApiId?: string | undefined;
|
|
134
|
+
ApiKey?: string | undefined;
|
|
135
|
+
ApiName?: string | undefined;
|
|
136
|
+
ApiSpecificationDownloadUrl?: string | undefined;
|
|
137
|
+
ApiSpecificationDownloadUrlExpiresAt?: Date | undefined;
|
|
138
|
+
ProtocolType?: ProtocolType | undefined;
|
|
139
|
+
Stage?: string | undefined;
|
|
140
140
|
}
|
|
141
141
|
export interface AssetDestinationEntry {
|
|
142
142
|
AssetId: string | undefined;
|
|
143
143
|
Bucket: string | undefined;
|
|
144
|
-
Key?: string;
|
|
144
|
+
Key?: string | undefined;
|
|
145
145
|
}
|
|
146
146
|
export interface LFTag {
|
|
147
147
|
TagKey: string | undefined;
|
|
@@ -154,8 +154,8 @@ export interface TableLFTagPolicy {
|
|
|
154
154
|
Expression: LFTag[] | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface LFResourceDetails {
|
|
157
|
-
Database?: DatabaseLFTagPolicy;
|
|
158
|
-
Table?: TableLFTagPolicy;
|
|
157
|
+
Database?: DatabaseLFTagPolicy | undefined;
|
|
158
|
+
Table?: TableLFTagPolicy | undefined;
|
|
159
159
|
}
|
|
160
160
|
export declare const LFResourceType: {
|
|
161
161
|
readonly DATABASE: "DATABASE";
|
|
@@ -169,7 +169,7 @@ export interface LFTagPolicyDetails {
|
|
|
169
169
|
ResourceDetails: LFResourceDetails | undefined;
|
|
170
170
|
}
|
|
171
171
|
export interface LakeFormationDataPermissionDetails {
|
|
172
|
-
LFTagPolicy?: LFTagPolicyDetails;
|
|
172
|
+
LFTagPolicy?: LFTagPolicyDetails | undefined;
|
|
173
173
|
}
|
|
174
174
|
export declare const LakeFormationDataPermissionType: {
|
|
175
175
|
readonly LFTagPolicy: "LFTagPolicy";
|
|
@@ -187,7 +187,7 @@ export interface LakeFormationDataPermissionAsset {
|
|
|
187
187
|
| undefined;
|
|
188
188
|
LakeFormationDataPermissionType: LakeFormationDataPermissionType | undefined;
|
|
189
189
|
Permissions: LFPermission[] | undefined;
|
|
190
|
-
RoleArn?: string;
|
|
190
|
+
RoleArn?: string | undefined;
|
|
191
191
|
}
|
|
192
192
|
export interface RedshiftDataShareAsset {
|
|
193
193
|
Arn: string | undefined;
|
|
@@ -197,21 +197,23 @@ export interface KmsKeyToGrant {
|
|
|
197
197
|
}
|
|
198
198
|
export interface S3DataAccessAsset {
|
|
199
199
|
Bucket: string | undefined;
|
|
200
|
-
KeyPrefixes?: string[];
|
|
201
|
-
Keys?: string[];
|
|
202
|
-
S3AccessPointAlias?: string;
|
|
203
|
-
S3AccessPointArn?: string;
|
|
204
|
-
KmsKeysToGrant?: KmsKeyToGrant[];
|
|
200
|
+
KeyPrefixes?: string[] | undefined;
|
|
201
|
+
Keys?: string[] | undefined;
|
|
202
|
+
S3AccessPointAlias?: string | undefined;
|
|
203
|
+
S3AccessPointArn?: string | undefined;
|
|
204
|
+
KmsKeysToGrant?: KmsKeyToGrant[] | undefined;
|
|
205
205
|
}
|
|
206
206
|
export interface S3SnapshotAsset {
|
|
207
207
|
Size: number | undefined;
|
|
208
208
|
}
|
|
209
209
|
export interface AssetDetails {
|
|
210
|
-
S3SnapshotAsset?: S3SnapshotAsset;
|
|
211
|
-
RedshiftDataShareAsset?: RedshiftDataShareAsset;
|
|
212
|
-
ApiGatewayApiAsset?: ApiGatewayApiAsset;
|
|
213
|
-
S3DataAccessAsset?: S3DataAccessAsset;
|
|
214
|
-
LakeFormationDataPermissionAsset?:
|
|
210
|
+
S3SnapshotAsset?: S3SnapshotAsset | undefined;
|
|
211
|
+
RedshiftDataShareAsset?: RedshiftDataShareAsset | undefined;
|
|
212
|
+
ApiGatewayApiAsset?: ApiGatewayApiAsset | undefined;
|
|
213
|
+
S3DataAccessAsset?: S3DataAccessAsset | undefined;
|
|
214
|
+
LakeFormationDataPermissionAsset?:
|
|
215
|
+
| LakeFormationDataPermissionAsset
|
|
216
|
+
| undefined;
|
|
215
217
|
}
|
|
216
218
|
export declare const AssetType: {
|
|
217
219
|
readonly API_GATEWAY_API: "API_GATEWAY_API";
|
|
@@ -230,7 +232,7 @@ export interface AssetEntry {
|
|
|
230
232
|
Id: string | undefined;
|
|
231
233
|
Name: string | undefined;
|
|
232
234
|
RevisionId: string | undefined;
|
|
233
|
-
SourceId?: string;
|
|
235
|
+
SourceId?: string | undefined;
|
|
234
236
|
UpdatedAt: Date | undefined;
|
|
235
237
|
}
|
|
236
238
|
export interface AssetSourceEntry {
|
|
@@ -255,18 +257,18 @@ export interface CreateDataGrantRequest {
|
|
|
255
257
|
GrantDistributionScope: GrantDistributionScope | undefined;
|
|
256
258
|
ReceiverPrincipal: string | undefined;
|
|
257
259
|
SourceDataSetId: string | undefined;
|
|
258
|
-
EndsAt?: Date;
|
|
259
|
-
Description?: string;
|
|
260
|
-
Tags?: Record<string, string
|
|
260
|
+
EndsAt?: Date | undefined;
|
|
261
|
+
Description?: string | undefined;
|
|
262
|
+
Tags?: Record<string, string> | undefined;
|
|
261
263
|
}
|
|
262
264
|
export interface CreateDataGrantResponse {
|
|
263
265
|
Name: string | undefined;
|
|
264
266
|
SenderPrincipal: string | undefined;
|
|
265
267
|
ReceiverPrincipal: string | undefined;
|
|
266
|
-
Description?: string;
|
|
268
|
+
Description?: string | undefined;
|
|
267
269
|
AcceptanceState: DataGrantAcceptanceState | undefined;
|
|
268
|
-
AcceptedAt?: Date;
|
|
269
|
-
EndsAt?: Date;
|
|
270
|
+
AcceptedAt?: Date | undefined;
|
|
271
|
+
EndsAt?: Date | undefined;
|
|
270
272
|
GrantDistributionScope: GrantDistributionScope | undefined;
|
|
271
273
|
DataSetId: string | undefined;
|
|
272
274
|
SourceDataSetId: string | undefined;
|
|
@@ -274,7 +276,7 @@ export interface CreateDataGrantResponse {
|
|
|
274
276
|
Arn: string | undefined;
|
|
275
277
|
CreatedAt: Date | undefined;
|
|
276
278
|
UpdatedAt: Date | undefined;
|
|
277
|
-
Tags?: Record<string, string
|
|
279
|
+
Tags?: Record<string, string> | undefined;
|
|
278
280
|
}
|
|
279
281
|
export declare const LimitName: {
|
|
280
282
|
readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
|
|
@@ -312,8 +314,8 @@ export type LimitName = (typeof LimitName)[keyof typeof LimitName];
|
|
|
312
314
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
313
315
|
readonly name: "ServiceLimitExceededException";
|
|
314
316
|
readonly $fault: "client";
|
|
315
|
-
LimitName?: LimitName;
|
|
316
|
-
LimitValue?: number;
|
|
317
|
+
LimitName?: LimitName | undefined;
|
|
318
|
+
LimitValue?: number | undefined;
|
|
317
319
|
Message: string | undefined;
|
|
318
320
|
constructor(
|
|
319
321
|
opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
|
|
@@ -323,7 +325,7 @@ export interface CreateDataSetRequest {
|
|
|
323
325
|
AssetType: AssetType | undefined;
|
|
324
326
|
Description: string | undefined;
|
|
325
327
|
Name: string | undefined;
|
|
326
|
-
Tags?: Record<string, string
|
|
328
|
+
Tags?: Record<string, string> | undefined;
|
|
327
329
|
}
|
|
328
330
|
export declare const Origin: {
|
|
329
331
|
readonly ENTITLED: "ENTITLED";
|
|
@@ -331,45 +333,45 @@ export declare const Origin: {
|
|
|
331
333
|
};
|
|
332
334
|
export type Origin = (typeof Origin)[keyof typeof Origin];
|
|
333
335
|
export interface OriginDetails {
|
|
334
|
-
ProductId?: string;
|
|
335
|
-
DataGrantId?: string;
|
|
336
|
+
ProductId?: string | undefined;
|
|
337
|
+
DataGrantId?: string | undefined;
|
|
336
338
|
}
|
|
337
339
|
export interface CreateDataSetResponse {
|
|
338
|
-
Arn?: string;
|
|
339
|
-
AssetType?: AssetType;
|
|
340
|
-
CreatedAt?: Date;
|
|
341
|
-
Description?: string;
|
|
342
|
-
Id?: string;
|
|
343
|
-
Name?: string;
|
|
344
|
-
Origin?: Origin;
|
|
345
|
-
OriginDetails?: OriginDetails;
|
|
346
|
-
SourceId?: string;
|
|
347
|
-
Tags?: Record<string, string
|
|
348
|
-
UpdatedAt?: Date;
|
|
340
|
+
Arn?: string | undefined;
|
|
341
|
+
AssetType?: AssetType | undefined;
|
|
342
|
+
CreatedAt?: Date | undefined;
|
|
343
|
+
Description?: string | undefined;
|
|
344
|
+
Id?: string | undefined;
|
|
345
|
+
Name?: string | undefined;
|
|
346
|
+
Origin?: Origin | undefined;
|
|
347
|
+
OriginDetails?: OriginDetails | undefined;
|
|
348
|
+
SourceId?: string | undefined;
|
|
349
|
+
Tags?: Record<string, string> | undefined;
|
|
350
|
+
UpdatedAt?: Date | undefined;
|
|
349
351
|
}
|
|
350
352
|
export interface RevisionPublished {
|
|
351
353
|
DataSetId: string | undefined;
|
|
352
354
|
}
|
|
353
355
|
export interface Event {
|
|
354
|
-
RevisionPublished?: RevisionPublished;
|
|
356
|
+
RevisionPublished?: RevisionPublished | undefined;
|
|
355
357
|
}
|
|
356
358
|
export interface CreateEventActionRequest {
|
|
357
359
|
Action: Action | undefined;
|
|
358
360
|
Event: Event | undefined;
|
|
359
361
|
}
|
|
360
362
|
export interface CreateEventActionResponse {
|
|
361
|
-
Action?: Action;
|
|
362
|
-
Arn?: string;
|
|
363
|
-
CreatedAt?: Date;
|
|
364
|
-
Event?: Event;
|
|
365
|
-
Id?: string;
|
|
366
|
-
UpdatedAt?: Date;
|
|
363
|
+
Action?: Action | undefined;
|
|
364
|
+
Arn?: string | undefined;
|
|
365
|
+
CreatedAt?: Date | undefined;
|
|
366
|
+
Event?: Event | undefined;
|
|
367
|
+
Id?: string | undefined;
|
|
368
|
+
UpdatedAt?: Date | undefined;
|
|
367
369
|
}
|
|
368
370
|
export interface S3DataAccessAssetSourceEntry {
|
|
369
371
|
Bucket: string | undefined;
|
|
370
|
-
KeyPrefixes?: string[];
|
|
371
|
-
Keys?: string[];
|
|
372
|
-
KmsKeysToGrant?: KmsKeyToGrant[];
|
|
372
|
+
KeyPrefixes?: string[] | undefined;
|
|
373
|
+
Keys?: string[] | undefined;
|
|
374
|
+
KmsKeysToGrant?: KmsKeyToGrant[] | undefined;
|
|
373
375
|
}
|
|
374
376
|
export interface CreateS3DataAccessFromS3BucketRequestDetails {
|
|
375
377
|
AssetSource: S3DataAccessAssetSourceEntry | undefined;
|
|
@@ -379,7 +381,7 @@ export interface CreateS3DataAccessFromS3BucketRequestDetails {
|
|
|
379
381
|
export interface ExportAssetsToS3RequestDetails {
|
|
380
382
|
AssetDestinations: AssetDestinationEntry[] | undefined;
|
|
381
383
|
DataSetId: string | undefined;
|
|
382
|
-
Encryption?: ExportServerSideEncryption;
|
|
384
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
383
385
|
RevisionId: string | undefined;
|
|
384
386
|
}
|
|
385
387
|
export interface ExportAssetToSignedUrlRequestDetails {
|
|
@@ -389,18 +391,18 @@ export interface ExportAssetToSignedUrlRequestDetails {
|
|
|
389
391
|
}
|
|
390
392
|
export interface RevisionDestinationEntry {
|
|
391
393
|
Bucket: string | undefined;
|
|
392
|
-
KeyPattern?: string;
|
|
394
|
+
KeyPattern?: string | undefined;
|
|
393
395
|
RevisionId: string | undefined;
|
|
394
396
|
}
|
|
395
397
|
export interface ExportRevisionsToS3RequestDetails {
|
|
396
398
|
DataSetId: string | undefined;
|
|
397
|
-
Encryption?: ExportServerSideEncryption;
|
|
399
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
398
400
|
RevisionDestinations: RevisionDestinationEntry[] | undefined;
|
|
399
401
|
}
|
|
400
402
|
export interface ImportAssetFromApiGatewayApiRequestDetails {
|
|
401
|
-
ApiDescription?: string;
|
|
403
|
+
ApiDescription?: string | undefined;
|
|
402
404
|
ApiId: string | undefined;
|
|
403
|
-
ApiKey?: string;
|
|
405
|
+
ApiKey?: string | undefined;
|
|
404
406
|
ApiName: string | undefined;
|
|
405
407
|
ApiSpecificationMd5Hash: string | undefined;
|
|
406
408
|
DataSetId: string | undefined;
|
|
@@ -435,8 +437,8 @@ export interface TableLFTagPolicyAndPermissions {
|
|
|
435
437
|
}
|
|
436
438
|
export interface ImportAssetsFromLakeFormationTagPolicyRequestDetails {
|
|
437
439
|
CatalogId: string | undefined;
|
|
438
|
-
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
439
|
-
Table?: TableLFTagPolicyAndPermissions;
|
|
440
|
+
Database?: DatabaseLFTagPolicyAndPermissions | undefined;
|
|
441
|
+
Table?: TableLFTagPolicyAndPermissions | undefined;
|
|
440
442
|
RoleArn: string | undefined;
|
|
441
443
|
DataSetId: string | undefined;
|
|
442
444
|
RevisionId: string | undefined;
|
|
@@ -455,15 +457,23 @@ export interface ImportAssetsFromS3RequestDetails {
|
|
|
455
457
|
RevisionId: string | undefined;
|
|
456
458
|
}
|
|
457
459
|
export interface RequestDetails {
|
|
458
|
-
ExportAssetToSignedUrl?: ExportAssetToSignedUrlRequestDetails;
|
|
459
|
-
ExportAssetsToS3?: ExportAssetsToS3RequestDetails;
|
|
460
|
-
ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails;
|
|
461
|
-
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails;
|
|
462
|
-
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
|
|
463
|
-
ImportAssetsFromRedshiftDataShares?:
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
460
|
+
ExportAssetToSignedUrl?: ExportAssetToSignedUrlRequestDetails | undefined;
|
|
461
|
+
ExportAssetsToS3?: ExportAssetsToS3RequestDetails | undefined;
|
|
462
|
+
ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails | undefined;
|
|
463
|
+
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails | undefined;
|
|
464
|
+
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails | undefined;
|
|
465
|
+
ImportAssetsFromRedshiftDataShares?:
|
|
466
|
+
| ImportAssetsFromRedshiftDataSharesRequestDetails
|
|
467
|
+
| undefined;
|
|
468
|
+
ImportAssetFromApiGatewayApi?:
|
|
469
|
+
| ImportAssetFromApiGatewayApiRequestDetails
|
|
470
|
+
| undefined;
|
|
471
|
+
CreateS3DataAccessFromS3Bucket?:
|
|
472
|
+
| CreateS3DataAccessFromS3BucketRequestDetails
|
|
473
|
+
| undefined;
|
|
474
|
+
ImportAssetsFromLakeFormationTagPolicy?:
|
|
475
|
+
| ImportAssetsFromLakeFormationTagPolicyRequestDetails
|
|
476
|
+
| undefined;
|
|
467
477
|
}
|
|
468
478
|
export declare const Type: {
|
|
469
479
|
readonly CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET: "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET";
|
|
@@ -489,26 +499,26 @@ export interface CreateS3DataAccessFromS3BucketResponseDetails {
|
|
|
489
499
|
export interface ExportAssetsToS3ResponseDetails {
|
|
490
500
|
AssetDestinations: AssetDestinationEntry[] | undefined;
|
|
491
501
|
DataSetId: string | undefined;
|
|
492
|
-
Encryption?: ExportServerSideEncryption;
|
|
502
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
493
503
|
RevisionId: string | undefined;
|
|
494
504
|
}
|
|
495
505
|
export interface ExportAssetToSignedUrlResponseDetails {
|
|
496
506
|
AssetId: string | undefined;
|
|
497
507
|
DataSetId: string | undefined;
|
|
498
508
|
RevisionId: string | undefined;
|
|
499
|
-
SignedUrl?: string;
|
|
500
|
-
SignedUrlExpiresAt?: Date;
|
|
509
|
+
SignedUrl?: string | undefined;
|
|
510
|
+
SignedUrlExpiresAt?: Date | undefined;
|
|
501
511
|
}
|
|
502
512
|
export interface ExportRevisionsToS3ResponseDetails {
|
|
503
513
|
DataSetId: string | undefined;
|
|
504
|
-
Encryption?: ExportServerSideEncryption;
|
|
514
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
505
515
|
RevisionDestinations: RevisionDestinationEntry[] | undefined;
|
|
506
|
-
EventActionArn?: string;
|
|
516
|
+
EventActionArn?: string | undefined;
|
|
507
517
|
}
|
|
508
518
|
export interface ImportAssetFromApiGatewayApiResponseDetails {
|
|
509
|
-
ApiDescription?: string;
|
|
519
|
+
ApiDescription?: string | undefined;
|
|
510
520
|
ApiId: string | undefined;
|
|
511
|
-
ApiKey?: string;
|
|
521
|
+
ApiKey?: string | undefined;
|
|
512
522
|
ApiName: string | undefined;
|
|
513
523
|
ApiSpecificationMd5Hash: string | undefined;
|
|
514
524
|
ApiSpecificationUploadUrl: string | undefined;
|
|
@@ -521,15 +531,15 @@ export interface ImportAssetFromApiGatewayApiResponseDetails {
|
|
|
521
531
|
export interface ImportAssetFromSignedUrlResponseDetails {
|
|
522
532
|
AssetName: string | undefined;
|
|
523
533
|
DataSetId: string | undefined;
|
|
524
|
-
Md5Hash?: string;
|
|
534
|
+
Md5Hash?: string | undefined;
|
|
525
535
|
RevisionId: string | undefined;
|
|
526
|
-
SignedUrl?: string;
|
|
527
|
-
SignedUrlExpiresAt?: Date;
|
|
536
|
+
SignedUrl?: string | undefined;
|
|
537
|
+
SignedUrlExpiresAt?: Date | undefined;
|
|
528
538
|
}
|
|
529
539
|
export interface ImportAssetsFromLakeFormationTagPolicyResponseDetails {
|
|
530
540
|
CatalogId: string | undefined;
|
|
531
|
-
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
532
|
-
Table?: TableLFTagPolicyAndPermissions;
|
|
541
|
+
Database?: DatabaseLFTagPolicyAndPermissions | undefined;
|
|
542
|
+
Table?: TableLFTagPolicyAndPermissions | undefined;
|
|
533
543
|
RoleArn: string | undefined;
|
|
534
544
|
DataSetId: string | undefined;
|
|
535
545
|
RevisionId: string | undefined;
|
|
@@ -545,22 +555,34 @@ export interface ImportAssetsFromS3ResponseDetails {
|
|
|
545
555
|
RevisionId: string | undefined;
|
|
546
556
|
}
|
|
547
557
|
export interface ResponseDetails {
|
|
548
|
-
ExportAssetToSignedUrl?: ExportAssetToSignedUrlResponseDetails;
|
|
549
|
-
ExportAssetsToS3?: ExportAssetsToS3ResponseDetails;
|
|
550
|
-
ExportRevisionsToS3?: ExportRevisionsToS3ResponseDetails;
|
|
551
|
-
ImportAssetFromSignedUrl?:
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
558
|
+
ExportAssetToSignedUrl?: ExportAssetToSignedUrlResponseDetails | undefined;
|
|
559
|
+
ExportAssetsToS3?: ExportAssetsToS3ResponseDetails | undefined;
|
|
560
|
+
ExportRevisionsToS3?: ExportRevisionsToS3ResponseDetails | undefined;
|
|
561
|
+
ImportAssetFromSignedUrl?:
|
|
562
|
+
| ImportAssetFromSignedUrlResponseDetails
|
|
563
|
+
| undefined;
|
|
564
|
+
ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails | undefined;
|
|
565
|
+
ImportAssetsFromRedshiftDataShares?:
|
|
566
|
+
| ImportAssetsFromRedshiftDataSharesResponseDetails
|
|
567
|
+
| undefined;
|
|
568
|
+
ImportAssetFromApiGatewayApi?:
|
|
569
|
+
| ImportAssetFromApiGatewayApiResponseDetails
|
|
570
|
+
| undefined;
|
|
571
|
+
CreateS3DataAccessFromS3Bucket?:
|
|
572
|
+
| CreateS3DataAccessFromS3BucketResponseDetails
|
|
573
|
+
| undefined;
|
|
574
|
+
ImportAssetsFromLakeFormationTagPolicy?:
|
|
575
|
+
| ImportAssetsFromLakeFormationTagPolicyResponseDetails
|
|
576
|
+
| undefined;
|
|
557
577
|
}
|
|
558
578
|
export interface ImportAssetFromSignedUrlJobErrorDetails {
|
|
559
579
|
AssetName: string | undefined;
|
|
560
580
|
}
|
|
561
581
|
export interface Details {
|
|
562
|
-
ImportAssetFromSignedUrlJobErrorDetails?:
|
|
563
|
-
|
|
582
|
+
ImportAssetFromSignedUrlJobErrorDetails?:
|
|
583
|
+
| ImportAssetFromSignedUrlJobErrorDetails
|
|
584
|
+
| undefined;
|
|
585
|
+
ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[] | undefined;
|
|
564
586
|
}
|
|
565
587
|
export declare const JobErrorLimitName: {
|
|
566
588
|
readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
|
|
@@ -580,12 +602,12 @@ export type JobErrorResourceTypes =
|
|
|
580
602
|
(typeof JobErrorResourceTypes)[keyof typeof JobErrorResourceTypes];
|
|
581
603
|
export interface JobError {
|
|
582
604
|
Code: Code | undefined;
|
|
583
|
-
Details?: Details;
|
|
584
|
-
LimitName?: JobErrorLimitName;
|
|
585
|
-
LimitValue?: number;
|
|
605
|
+
Details?: Details | undefined;
|
|
606
|
+
LimitName?: JobErrorLimitName | undefined;
|
|
607
|
+
LimitValue?: number | undefined;
|
|
586
608
|
Message: string | undefined;
|
|
587
|
-
ResourceId?: string;
|
|
588
|
-
ResourceType?: JobErrorResourceTypes;
|
|
609
|
+
ResourceId?: string | undefined;
|
|
610
|
+
ResourceType?: JobErrorResourceTypes | undefined;
|
|
589
611
|
}
|
|
590
612
|
export declare const State: {
|
|
591
613
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -597,33 +619,33 @@ export declare const State: {
|
|
|
597
619
|
};
|
|
598
620
|
export type State = (typeof State)[keyof typeof State];
|
|
599
621
|
export interface CreateJobResponse {
|
|
600
|
-
Arn?: string;
|
|
601
|
-
CreatedAt?: Date;
|
|
602
|
-
Details?: ResponseDetails;
|
|
603
|
-
Errors?: JobError[];
|
|
604
|
-
Id?: string;
|
|
605
|
-
State?: State;
|
|
606
|
-
Type?: Type;
|
|
607
|
-
UpdatedAt?: Date;
|
|
622
|
+
Arn?: string | undefined;
|
|
623
|
+
CreatedAt?: Date | undefined;
|
|
624
|
+
Details?: ResponseDetails | undefined;
|
|
625
|
+
Errors?: JobError[] | undefined;
|
|
626
|
+
Id?: string | undefined;
|
|
627
|
+
State?: State | undefined;
|
|
628
|
+
Type?: Type | undefined;
|
|
629
|
+
UpdatedAt?: Date | undefined;
|
|
608
630
|
}
|
|
609
631
|
export interface CreateRevisionRequest {
|
|
610
|
-
Comment?: string;
|
|
632
|
+
Comment?: string | undefined;
|
|
611
633
|
DataSetId: string | undefined;
|
|
612
|
-
Tags?: Record<string, string
|
|
634
|
+
Tags?: Record<string, string> | undefined;
|
|
613
635
|
}
|
|
614
636
|
export interface CreateRevisionResponse {
|
|
615
|
-
Arn?: string;
|
|
616
|
-
Comment?: string;
|
|
617
|
-
CreatedAt?: Date;
|
|
618
|
-
DataSetId?: string;
|
|
619
|
-
Finalized?: boolean;
|
|
620
|
-
Id?: string;
|
|
621
|
-
SourceId?: string;
|
|
622
|
-
Tags?: Record<string, string
|
|
623
|
-
UpdatedAt?: Date;
|
|
624
|
-
RevocationComment?: string;
|
|
625
|
-
Revoked?: boolean;
|
|
626
|
-
RevokedAt?: Date;
|
|
637
|
+
Arn?: string | undefined;
|
|
638
|
+
Comment?: string | undefined;
|
|
639
|
+
CreatedAt?: Date | undefined;
|
|
640
|
+
DataSetId?: string | undefined;
|
|
641
|
+
Finalized?: boolean | undefined;
|
|
642
|
+
Id?: string | undefined;
|
|
643
|
+
SourceId?: string | undefined;
|
|
644
|
+
Tags?: Record<string, string> | undefined;
|
|
645
|
+
UpdatedAt?: Date | undefined;
|
|
646
|
+
RevocationComment?: string | undefined;
|
|
647
|
+
Revoked?: boolean | undefined;
|
|
648
|
+
RevokedAt?: Date | undefined;
|
|
627
649
|
}
|
|
628
650
|
export interface DeleteAssetRequest {
|
|
629
651
|
AssetId: string | undefined;
|
|
@@ -649,16 +671,16 @@ export interface GetAssetRequest {
|
|
|
649
671
|
RevisionId: string | undefined;
|
|
650
672
|
}
|
|
651
673
|
export interface GetAssetResponse {
|
|
652
|
-
Arn?: string;
|
|
653
|
-
AssetDetails?: AssetDetails;
|
|
654
|
-
AssetType?: AssetType;
|
|
655
|
-
CreatedAt?: Date;
|
|
656
|
-
DataSetId?: string;
|
|
657
|
-
Id?: string;
|
|
658
|
-
Name?: string;
|
|
659
|
-
RevisionId?: string;
|
|
660
|
-
SourceId?: string;
|
|
661
|
-
UpdatedAt?: Date;
|
|
674
|
+
Arn?: string | undefined;
|
|
675
|
+
AssetDetails?: AssetDetails | undefined;
|
|
676
|
+
AssetType?: AssetType | undefined;
|
|
677
|
+
CreatedAt?: Date | undefined;
|
|
678
|
+
DataSetId?: string | undefined;
|
|
679
|
+
Id?: string | undefined;
|
|
680
|
+
Name?: string | undefined;
|
|
681
|
+
RevisionId?: string | undefined;
|
|
682
|
+
SourceId?: string | undefined;
|
|
683
|
+
UpdatedAt?: Date | undefined;
|
|
662
684
|
}
|
|
663
685
|
export interface GetDataGrantRequest {
|
|
664
686
|
DataGrantId: string | undefined;
|
|
@@ -667,10 +689,10 @@ export interface GetDataGrantResponse {
|
|
|
667
689
|
Name: string | undefined;
|
|
668
690
|
SenderPrincipal: string | undefined;
|
|
669
691
|
ReceiverPrincipal: string | undefined;
|
|
670
|
-
Description?: string;
|
|
692
|
+
Description?: string | undefined;
|
|
671
693
|
AcceptanceState: DataGrantAcceptanceState | undefined;
|
|
672
|
-
AcceptedAt?: Date;
|
|
673
|
-
EndsAt?: Date;
|
|
694
|
+
AcceptedAt?: Date | undefined;
|
|
695
|
+
EndsAt?: Date | undefined;
|
|
674
696
|
GrantDistributionScope: GrantDistributionScope | undefined;
|
|
675
697
|
DataSetId: string | undefined;
|
|
676
698
|
SourceDataSetId: string | undefined;
|
|
@@ -678,59 +700,59 @@ export interface GetDataGrantResponse {
|
|
|
678
700
|
Arn: string | undefined;
|
|
679
701
|
CreatedAt: Date | undefined;
|
|
680
702
|
UpdatedAt: Date | undefined;
|
|
681
|
-
Tags?: Record<string, string
|
|
703
|
+
Tags?: Record<string, string> | undefined;
|
|
682
704
|
}
|
|
683
705
|
export interface GetDataSetRequest {
|
|
684
706
|
DataSetId: string | undefined;
|
|
685
707
|
}
|
|
686
708
|
export interface GetDataSetResponse {
|
|
687
|
-
Arn?: string;
|
|
688
|
-
AssetType?: AssetType;
|
|
689
|
-
CreatedAt?: Date;
|
|
690
|
-
Description?: string;
|
|
691
|
-
Id?: string;
|
|
692
|
-
Name?: string;
|
|
693
|
-
Origin?: Origin;
|
|
694
|
-
OriginDetails?: OriginDetails;
|
|
695
|
-
SourceId?: string;
|
|
696
|
-
Tags?: Record<string, string
|
|
697
|
-
UpdatedAt?: Date;
|
|
709
|
+
Arn?: string | undefined;
|
|
710
|
+
AssetType?: AssetType | undefined;
|
|
711
|
+
CreatedAt?: Date | undefined;
|
|
712
|
+
Description?: string | undefined;
|
|
713
|
+
Id?: string | undefined;
|
|
714
|
+
Name?: string | undefined;
|
|
715
|
+
Origin?: Origin | undefined;
|
|
716
|
+
OriginDetails?: OriginDetails | undefined;
|
|
717
|
+
SourceId?: string | undefined;
|
|
718
|
+
Tags?: Record<string, string> | undefined;
|
|
719
|
+
UpdatedAt?: Date | undefined;
|
|
698
720
|
}
|
|
699
721
|
export interface GetEventActionRequest {
|
|
700
722
|
EventActionId: string | undefined;
|
|
701
723
|
}
|
|
702
724
|
export interface GetEventActionResponse {
|
|
703
|
-
Action?: Action;
|
|
704
|
-
Arn?: string;
|
|
705
|
-
CreatedAt?: Date;
|
|
706
|
-
Event?: Event;
|
|
707
|
-
Id?: string;
|
|
708
|
-
UpdatedAt?: Date;
|
|
725
|
+
Action?: Action | undefined;
|
|
726
|
+
Arn?: string | undefined;
|
|
727
|
+
CreatedAt?: Date | undefined;
|
|
728
|
+
Event?: Event | undefined;
|
|
729
|
+
Id?: string | undefined;
|
|
730
|
+
UpdatedAt?: Date | undefined;
|
|
709
731
|
}
|
|
710
732
|
export interface GetJobRequest {
|
|
711
733
|
JobId: string | undefined;
|
|
712
734
|
}
|
|
713
735
|
export interface GetJobResponse {
|
|
714
|
-
Arn?: string;
|
|
715
|
-
CreatedAt?: Date;
|
|
716
|
-
Details?: ResponseDetails;
|
|
717
|
-
Errors?: JobError[];
|
|
718
|
-
Id?: string;
|
|
719
|
-
State?: State;
|
|
720
|
-
Type?: Type;
|
|
721
|
-
UpdatedAt?: Date;
|
|
736
|
+
Arn?: string | undefined;
|
|
737
|
+
CreatedAt?: Date | undefined;
|
|
738
|
+
Details?: ResponseDetails | undefined;
|
|
739
|
+
Errors?: JobError[] | undefined;
|
|
740
|
+
Id?: string | undefined;
|
|
741
|
+
State?: State | undefined;
|
|
742
|
+
Type?: Type | undefined;
|
|
743
|
+
UpdatedAt?: Date | undefined;
|
|
722
744
|
}
|
|
723
745
|
export interface GetReceivedDataGrantRequest {
|
|
724
746
|
DataGrantArn: string | undefined;
|
|
725
747
|
}
|
|
726
748
|
export interface GetReceivedDataGrantResponse {
|
|
727
749
|
Name: string | undefined;
|
|
728
|
-
SenderPrincipal?: string;
|
|
750
|
+
SenderPrincipal?: string | undefined;
|
|
729
751
|
ReceiverPrincipal: string | undefined;
|
|
730
|
-
Description?: string;
|
|
752
|
+
Description?: string | undefined;
|
|
731
753
|
AcceptanceState: DataGrantAcceptanceState | undefined;
|
|
732
|
-
AcceptedAt?: Date;
|
|
733
|
-
EndsAt?: Date;
|
|
754
|
+
AcceptedAt?: Date | undefined;
|
|
755
|
+
EndsAt?: Date | undefined;
|
|
734
756
|
GrantDistributionScope: GrantDistributionScope | undefined;
|
|
735
757
|
DataSetId: string | undefined;
|
|
736
758
|
Id: string | undefined;
|
|
@@ -743,30 +765,30 @@ export interface GetRevisionRequest {
|
|
|
743
765
|
RevisionId: string | undefined;
|
|
744
766
|
}
|
|
745
767
|
export interface GetRevisionResponse {
|
|
746
|
-
Arn?: string;
|
|
747
|
-
Comment?: string;
|
|
748
|
-
CreatedAt?: Date;
|
|
749
|
-
DataSetId?: string;
|
|
750
|
-
Finalized?: boolean;
|
|
751
|
-
Id?: string;
|
|
752
|
-
SourceId?: string;
|
|
753
|
-
Tags?: Record<string, string
|
|
754
|
-
UpdatedAt?: Date;
|
|
755
|
-
RevocationComment?: string;
|
|
756
|
-
Revoked?: boolean;
|
|
757
|
-
RevokedAt?: Date;
|
|
768
|
+
Arn?: string | undefined;
|
|
769
|
+
Comment?: string | undefined;
|
|
770
|
+
CreatedAt?: Date | undefined;
|
|
771
|
+
DataSetId?: string | undefined;
|
|
772
|
+
Finalized?: boolean | undefined;
|
|
773
|
+
Id?: string | undefined;
|
|
774
|
+
SourceId?: string | undefined;
|
|
775
|
+
Tags?: Record<string, string> | undefined;
|
|
776
|
+
UpdatedAt?: Date | undefined;
|
|
777
|
+
RevocationComment?: string | undefined;
|
|
778
|
+
Revoked?: boolean | undefined;
|
|
779
|
+
RevokedAt?: Date | undefined;
|
|
758
780
|
}
|
|
759
781
|
export interface ListDataGrantsRequest {
|
|
760
|
-
MaxResults?: number;
|
|
761
|
-
NextToken?: string;
|
|
782
|
+
MaxResults?: number | undefined;
|
|
783
|
+
NextToken?: string | undefined;
|
|
762
784
|
}
|
|
763
785
|
export interface DataGrantSummaryEntry {
|
|
764
786
|
Name: string | undefined;
|
|
765
787
|
SenderPrincipal: string | undefined;
|
|
766
788
|
ReceiverPrincipal: string | undefined;
|
|
767
789
|
AcceptanceState: DataGrantAcceptanceState | undefined;
|
|
768
|
-
AcceptedAt?: Date;
|
|
769
|
-
EndsAt?: Date;
|
|
790
|
+
AcceptedAt?: Date | undefined;
|
|
791
|
+
EndsAt?: Date | undefined;
|
|
770
792
|
DataSetId: string | undefined;
|
|
771
793
|
SourceDataSetId: string | undefined;
|
|
772
794
|
Id: string | undefined;
|
|
@@ -775,35 +797,35 @@ export interface DataGrantSummaryEntry {
|
|
|
775
797
|
UpdatedAt: Date | undefined;
|
|
776
798
|
}
|
|
777
799
|
export interface ListDataGrantsResponse {
|
|
778
|
-
DataGrantSummaries?: DataGrantSummaryEntry[];
|
|
779
|
-
NextToken?: string;
|
|
800
|
+
DataGrantSummaries?: DataGrantSummaryEntry[] | undefined;
|
|
801
|
+
NextToken?: string | undefined;
|
|
780
802
|
}
|
|
781
803
|
export interface ListDataSetRevisionsRequest {
|
|
782
804
|
DataSetId: string | undefined;
|
|
783
|
-
MaxResults?: number;
|
|
784
|
-
NextToken?: string;
|
|
805
|
+
MaxResults?: number | undefined;
|
|
806
|
+
NextToken?: string | undefined;
|
|
785
807
|
}
|
|
786
808
|
export interface RevisionEntry {
|
|
787
809
|
Arn: string | undefined;
|
|
788
|
-
Comment?: string;
|
|
810
|
+
Comment?: string | undefined;
|
|
789
811
|
CreatedAt: Date | undefined;
|
|
790
812
|
DataSetId: string | undefined;
|
|
791
|
-
Finalized?: boolean;
|
|
813
|
+
Finalized?: boolean | undefined;
|
|
792
814
|
Id: string | undefined;
|
|
793
|
-
SourceId?: string;
|
|
815
|
+
SourceId?: string | undefined;
|
|
794
816
|
UpdatedAt: Date | undefined;
|
|
795
|
-
RevocationComment?: string;
|
|
796
|
-
Revoked?: boolean;
|
|
797
|
-
RevokedAt?: Date;
|
|
817
|
+
RevocationComment?: string | undefined;
|
|
818
|
+
Revoked?: boolean | undefined;
|
|
819
|
+
RevokedAt?: Date | undefined;
|
|
798
820
|
}
|
|
799
821
|
export interface ListDataSetRevisionsResponse {
|
|
800
|
-
NextToken?: string;
|
|
801
|
-
Revisions?: RevisionEntry[];
|
|
822
|
+
NextToken?: string | undefined;
|
|
823
|
+
Revisions?: RevisionEntry[] | undefined;
|
|
802
824
|
}
|
|
803
825
|
export interface ListDataSetsRequest {
|
|
804
|
-
MaxResults?: number;
|
|
805
|
-
NextToken?: string;
|
|
806
|
-
Origin?: string;
|
|
826
|
+
MaxResults?: number | undefined;
|
|
827
|
+
NextToken?: string | undefined;
|
|
828
|
+
Origin?: string | undefined;
|
|
807
829
|
}
|
|
808
830
|
export interface DataSetEntry {
|
|
809
831
|
Arn: string | undefined;
|
|
@@ -813,18 +835,18 @@ export interface DataSetEntry {
|
|
|
813
835
|
Id: string | undefined;
|
|
814
836
|
Name: string | undefined;
|
|
815
837
|
Origin: Origin | undefined;
|
|
816
|
-
OriginDetails?: OriginDetails;
|
|
817
|
-
SourceId?: string;
|
|
838
|
+
OriginDetails?: OriginDetails | undefined;
|
|
839
|
+
SourceId?: string | undefined;
|
|
818
840
|
UpdatedAt: Date | undefined;
|
|
819
841
|
}
|
|
820
842
|
export interface ListDataSetsResponse {
|
|
821
|
-
DataSets?: DataSetEntry[];
|
|
822
|
-
NextToken?: string;
|
|
843
|
+
DataSets?: DataSetEntry[] | undefined;
|
|
844
|
+
NextToken?: string | undefined;
|
|
823
845
|
}
|
|
824
846
|
export interface ListEventActionsRequest {
|
|
825
|
-
EventSourceId?: string;
|
|
826
|
-
MaxResults?: number;
|
|
827
|
-
NextToken?: string;
|
|
847
|
+
EventSourceId?: string | undefined;
|
|
848
|
+
MaxResults?: number | undefined;
|
|
849
|
+
NextToken?: string | undefined;
|
|
828
850
|
}
|
|
829
851
|
export interface EventActionEntry {
|
|
830
852
|
Action: Action | undefined;
|
|
@@ -835,41 +857,41 @@ export interface EventActionEntry {
|
|
|
835
857
|
UpdatedAt: Date | undefined;
|
|
836
858
|
}
|
|
837
859
|
export interface ListEventActionsResponse {
|
|
838
|
-
EventActions?: EventActionEntry[];
|
|
839
|
-
NextToken?: string;
|
|
860
|
+
EventActions?: EventActionEntry[] | undefined;
|
|
861
|
+
NextToken?: string | undefined;
|
|
840
862
|
}
|
|
841
863
|
export interface ListJobsRequest {
|
|
842
|
-
DataSetId?: string;
|
|
843
|
-
MaxResults?: number;
|
|
844
|
-
NextToken?: string;
|
|
845
|
-
RevisionId?: string;
|
|
864
|
+
DataSetId?: string | undefined;
|
|
865
|
+
MaxResults?: number | undefined;
|
|
866
|
+
NextToken?: string | undefined;
|
|
867
|
+
RevisionId?: string | undefined;
|
|
846
868
|
}
|
|
847
869
|
export interface JobEntry {
|
|
848
870
|
Arn: string | undefined;
|
|
849
871
|
CreatedAt: Date | undefined;
|
|
850
872
|
Details: ResponseDetails | undefined;
|
|
851
|
-
Errors?: JobError[];
|
|
873
|
+
Errors?: JobError[] | undefined;
|
|
852
874
|
Id: string | undefined;
|
|
853
875
|
State: State | undefined;
|
|
854
876
|
Type: Type | undefined;
|
|
855
877
|
UpdatedAt: Date | undefined;
|
|
856
878
|
}
|
|
857
879
|
export interface ListJobsResponse {
|
|
858
|
-
Jobs?: JobEntry[];
|
|
859
|
-
NextToken?: string;
|
|
880
|
+
Jobs?: JobEntry[] | undefined;
|
|
881
|
+
NextToken?: string | undefined;
|
|
860
882
|
}
|
|
861
883
|
export interface ListReceivedDataGrantsRequest {
|
|
862
|
-
MaxResults?: number;
|
|
863
|
-
NextToken?: string;
|
|
864
|
-
AcceptanceState?: AcceptanceStateFilterValue[];
|
|
884
|
+
MaxResults?: number | undefined;
|
|
885
|
+
NextToken?: string | undefined;
|
|
886
|
+
AcceptanceState?: AcceptanceStateFilterValue[] | undefined;
|
|
865
887
|
}
|
|
866
888
|
export interface ReceivedDataGrantSummariesEntry {
|
|
867
889
|
Name: string | undefined;
|
|
868
890
|
SenderPrincipal: string | undefined;
|
|
869
891
|
ReceiverPrincipal: string | undefined;
|
|
870
892
|
AcceptanceState: DataGrantAcceptanceState | undefined;
|
|
871
|
-
AcceptedAt?: Date;
|
|
872
|
-
EndsAt?: Date;
|
|
893
|
+
AcceptedAt?: Date | undefined;
|
|
894
|
+
EndsAt?: Date | undefined;
|
|
873
895
|
DataSetId: string | undefined;
|
|
874
896
|
Id: string | undefined;
|
|
875
897
|
Arn: string | undefined;
|
|
@@ -877,24 +899,24 @@ export interface ReceivedDataGrantSummariesEntry {
|
|
|
877
899
|
UpdatedAt: Date | undefined;
|
|
878
900
|
}
|
|
879
901
|
export interface ListReceivedDataGrantsResponse {
|
|
880
|
-
DataGrantSummaries?: ReceivedDataGrantSummariesEntry[];
|
|
881
|
-
NextToken?: string;
|
|
902
|
+
DataGrantSummaries?: ReceivedDataGrantSummariesEntry[] | undefined;
|
|
903
|
+
NextToken?: string | undefined;
|
|
882
904
|
}
|
|
883
905
|
export interface ListRevisionAssetsRequest {
|
|
884
906
|
DataSetId: string | undefined;
|
|
885
|
-
MaxResults?: number;
|
|
886
|
-
NextToken?: string;
|
|
907
|
+
MaxResults?: number | undefined;
|
|
908
|
+
NextToken?: string | undefined;
|
|
887
909
|
RevisionId: string | undefined;
|
|
888
910
|
}
|
|
889
911
|
export interface ListRevisionAssetsResponse {
|
|
890
|
-
Assets?: AssetEntry[];
|
|
891
|
-
NextToken?: string;
|
|
912
|
+
Assets?: AssetEntry[] | undefined;
|
|
913
|
+
NextToken?: string | undefined;
|
|
892
914
|
}
|
|
893
915
|
export interface ListTagsForResourceRequest {
|
|
894
916
|
ResourceArn: string | undefined;
|
|
895
917
|
}
|
|
896
918
|
export interface ListTagsForResourceResponse {
|
|
897
|
-
Tags?: Record<string, string
|
|
919
|
+
Tags?: Record<string, string> | undefined;
|
|
898
920
|
}
|
|
899
921
|
export interface RevokeRevisionRequest {
|
|
900
922
|
DataSetId: string | undefined;
|
|
@@ -902,34 +924,34 @@ export interface RevokeRevisionRequest {
|
|
|
902
924
|
RevocationComment: string | undefined;
|
|
903
925
|
}
|
|
904
926
|
export interface RevokeRevisionResponse {
|
|
905
|
-
Arn?: string;
|
|
906
|
-
Comment?: string;
|
|
907
|
-
CreatedAt?: Date;
|
|
908
|
-
DataSetId?: string;
|
|
909
|
-
Finalized?: boolean;
|
|
910
|
-
Id?: string;
|
|
911
|
-
SourceId?: string;
|
|
912
|
-
UpdatedAt?: Date;
|
|
913
|
-
RevocationComment?: string;
|
|
914
|
-
Revoked?: boolean;
|
|
915
|
-
RevokedAt?: Date;
|
|
927
|
+
Arn?: string | undefined;
|
|
928
|
+
Comment?: string | undefined;
|
|
929
|
+
CreatedAt?: Date | undefined;
|
|
930
|
+
DataSetId?: string | undefined;
|
|
931
|
+
Finalized?: boolean | undefined;
|
|
932
|
+
Id?: string | undefined;
|
|
933
|
+
SourceId?: string | undefined;
|
|
934
|
+
UpdatedAt?: Date | undefined;
|
|
935
|
+
RevocationComment?: string | undefined;
|
|
936
|
+
Revoked?: boolean | undefined;
|
|
937
|
+
RevokedAt?: Date | undefined;
|
|
916
938
|
}
|
|
917
939
|
export interface SendApiAssetRequest {
|
|
918
|
-
Body?: string;
|
|
919
|
-
QueryStringParameters?: Record<string, string
|
|
940
|
+
Body?: string | undefined;
|
|
941
|
+
QueryStringParameters?: Record<string, string> | undefined;
|
|
920
942
|
AssetId: string | undefined;
|
|
921
943
|
DataSetId: string | undefined;
|
|
922
|
-
RequestHeaders?: Record<string, string
|
|
923
|
-
Method?: string;
|
|
924
|
-
Path?: string;
|
|
944
|
+
RequestHeaders?: Record<string, string> | undefined;
|
|
945
|
+
Method?: string | undefined;
|
|
946
|
+
Path?: string | undefined;
|
|
925
947
|
RevisionId: string | undefined;
|
|
926
948
|
}
|
|
927
949
|
export interface SendApiAssetResponse {
|
|
928
|
-
Body?: string;
|
|
929
|
-
ResponseHeaders?: Record<string, string
|
|
950
|
+
Body?: string | undefined;
|
|
951
|
+
ResponseHeaders?: Record<string, string> | undefined;
|
|
930
952
|
}
|
|
931
953
|
export interface DataUpdateRequestDetails {
|
|
932
|
-
DataUpdatedAt?: Date;
|
|
954
|
+
DataUpdatedAt?: Date | undefined;
|
|
933
955
|
}
|
|
934
956
|
export interface DeprecationRequestDetails {
|
|
935
957
|
DeprecationAt: Date | undefined;
|
|
@@ -944,37 +966,37 @@ export type SchemaChangeType =
|
|
|
944
966
|
export interface SchemaChangeDetails {
|
|
945
967
|
Name: string | undefined;
|
|
946
968
|
Type: SchemaChangeType | undefined;
|
|
947
|
-
Description?: string;
|
|
969
|
+
Description?: string | undefined;
|
|
948
970
|
}
|
|
949
971
|
export interface SchemaChangeRequestDetails {
|
|
950
|
-
Changes?: SchemaChangeDetails[];
|
|
972
|
+
Changes?: SchemaChangeDetails[] | undefined;
|
|
951
973
|
SchemaChangeAt: Date | undefined;
|
|
952
974
|
}
|
|
953
975
|
export interface NotificationDetails {
|
|
954
|
-
DataUpdate?: DataUpdateRequestDetails;
|
|
955
|
-
Deprecation?: DeprecationRequestDetails;
|
|
956
|
-
SchemaChange?: SchemaChangeRequestDetails;
|
|
976
|
+
DataUpdate?: DataUpdateRequestDetails | undefined;
|
|
977
|
+
Deprecation?: DeprecationRequestDetails | undefined;
|
|
978
|
+
SchemaChange?: SchemaChangeRequestDetails | undefined;
|
|
957
979
|
}
|
|
958
980
|
export interface LakeFormationTagPolicyDetails {
|
|
959
|
-
Database?: string;
|
|
960
|
-
Table?: string;
|
|
981
|
+
Database?: string | undefined;
|
|
982
|
+
Table?: string | undefined;
|
|
961
983
|
}
|
|
962
984
|
export interface RedshiftDataShareDetails {
|
|
963
985
|
Arn: string | undefined;
|
|
964
986
|
Database: string | undefined;
|
|
965
|
-
Function?: string;
|
|
966
|
-
Table?: string;
|
|
967
|
-
Schema?: string;
|
|
968
|
-
View?: string;
|
|
987
|
+
Function?: string | undefined;
|
|
988
|
+
Table?: string | undefined;
|
|
989
|
+
Schema?: string | undefined;
|
|
990
|
+
View?: string | undefined;
|
|
969
991
|
}
|
|
970
992
|
export interface S3DataAccessDetails {
|
|
971
|
-
KeyPrefixes?: string[];
|
|
972
|
-
Keys?: string[];
|
|
993
|
+
KeyPrefixes?: string[] | undefined;
|
|
994
|
+
Keys?: string[] | undefined;
|
|
973
995
|
}
|
|
974
996
|
export interface ScopeDetails {
|
|
975
|
-
LakeFormationTagPolicies?: LakeFormationTagPolicyDetails[];
|
|
976
|
-
RedshiftDataShares?: RedshiftDataShareDetails[];
|
|
977
|
-
S3DataAccesses?: S3DataAccessDetails[];
|
|
997
|
+
LakeFormationTagPolicies?: LakeFormationTagPolicyDetails[] | undefined;
|
|
998
|
+
RedshiftDataShares?: RedshiftDataShareDetails[] | undefined;
|
|
999
|
+
S3DataAccesses?: S3DataAccessDetails[] | undefined;
|
|
978
1000
|
}
|
|
979
1001
|
export declare const NotificationType: {
|
|
980
1002
|
readonly DATA_DELAY: "DATA_DELAY";
|
|
@@ -985,11 +1007,11 @@ export declare const NotificationType: {
|
|
|
985
1007
|
export type NotificationType =
|
|
986
1008
|
(typeof NotificationType)[keyof typeof NotificationType];
|
|
987
1009
|
export interface SendDataSetNotificationRequest {
|
|
988
|
-
Scope?: ScopeDetails;
|
|
989
|
-
ClientToken?: string;
|
|
990
|
-
Comment?: string;
|
|
1010
|
+
Scope?: ScopeDetails | undefined;
|
|
1011
|
+
ClientToken?: string | undefined;
|
|
1012
|
+
Comment?: string | undefined;
|
|
991
1013
|
DataSetId: string | undefined;
|
|
992
|
-
Details?: NotificationDetails;
|
|
1014
|
+
Details?: NotificationDetails | undefined;
|
|
993
1015
|
Type: NotificationType | undefined;
|
|
994
1016
|
}
|
|
995
1017
|
export interface SendDataSetNotificationResponse {}
|
|
@@ -1012,62 +1034,62 @@ export interface UpdateAssetRequest {
|
|
|
1012
1034
|
RevisionId: string | undefined;
|
|
1013
1035
|
}
|
|
1014
1036
|
export interface UpdateAssetResponse {
|
|
1015
|
-
Arn?: string;
|
|
1016
|
-
AssetDetails?: AssetDetails;
|
|
1017
|
-
AssetType?: AssetType;
|
|
1018
|
-
CreatedAt?: Date;
|
|
1019
|
-
DataSetId?: string;
|
|
1020
|
-
Id?: string;
|
|
1021
|
-
Name?: string;
|
|
1022
|
-
RevisionId?: string;
|
|
1023
|
-
SourceId?: string;
|
|
1024
|
-
UpdatedAt?: Date;
|
|
1037
|
+
Arn?: string | undefined;
|
|
1038
|
+
AssetDetails?: AssetDetails | undefined;
|
|
1039
|
+
AssetType?: AssetType | undefined;
|
|
1040
|
+
CreatedAt?: Date | undefined;
|
|
1041
|
+
DataSetId?: string | undefined;
|
|
1042
|
+
Id?: string | undefined;
|
|
1043
|
+
Name?: string | undefined;
|
|
1044
|
+
RevisionId?: string | undefined;
|
|
1045
|
+
SourceId?: string | undefined;
|
|
1046
|
+
UpdatedAt?: Date | undefined;
|
|
1025
1047
|
}
|
|
1026
1048
|
export interface UpdateDataSetRequest {
|
|
1027
1049
|
DataSetId: string | undefined;
|
|
1028
|
-
Description?: string;
|
|
1029
|
-
Name?: string;
|
|
1050
|
+
Description?: string | undefined;
|
|
1051
|
+
Name?: string | undefined;
|
|
1030
1052
|
}
|
|
1031
1053
|
export interface UpdateDataSetResponse {
|
|
1032
|
-
Arn?: string;
|
|
1033
|
-
AssetType?: AssetType;
|
|
1034
|
-
CreatedAt?: Date;
|
|
1035
|
-
Description?: string;
|
|
1036
|
-
Id?: string;
|
|
1037
|
-
Name?: string;
|
|
1038
|
-
Origin?: Origin;
|
|
1039
|
-
OriginDetails?: OriginDetails;
|
|
1040
|
-
SourceId?: string;
|
|
1041
|
-
UpdatedAt?: Date;
|
|
1054
|
+
Arn?: string | undefined;
|
|
1055
|
+
AssetType?: AssetType | undefined;
|
|
1056
|
+
CreatedAt?: Date | undefined;
|
|
1057
|
+
Description?: string | undefined;
|
|
1058
|
+
Id?: string | undefined;
|
|
1059
|
+
Name?: string | undefined;
|
|
1060
|
+
Origin?: Origin | undefined;
|
|
1061
|
+
OriginDetails?: OriginDetails | undefined;
|
|
1062
|
+
SourceId?: string | undefined;
|
|
1063
|
+
UpdatedAt?: Date | undefined;
|
|
1042
1064
|
}
|
|
1043
1065
|
export interface UpdateEventActionRequest {
|
|
1044
|
-
Action?: Action;
|
|
1066
|
+
Action?: Action | undefined;
|
|
1045
1067
|
EventActionId: string | undefined;
|
|
1046
1068
|
}
|
|
1047
1069
|
export interface UpdateEventActionResponse {
|
|
1048
|
-
Action?: Action;
|
|
1049
|
-
Arn?: string;
|
|
1050
|
-
CreatedAt?: Date;
|
|
1051
|
-
Event?: Event;
|
|
1052
|
-
Id?: string;
|
|
1053
|
-
UpdatedAt?: Date;
|
|
1070
|
+
Action?: Action | undefined;
|
|
1071
|
+
Arn?: string | undefined;
|
|
1072
|
+
CreatedAt?: Date | undefined;
|
|
1073
|
+
Event?: Event | undefined;
|
|
1074
|
+
Id?: string | undefined;
|
|
1075
|
+
UpdatedAt?: Date | undefined;
|
|
1054
1076
|
}
|
|
1055
1077
|
export interface UpdateRevisionRequest {
|
|
1056
|
-
Comment?: string;
|
|
1078
|
+
Comment?: string | undefined;
|
|
1057
1079
|
DataSetId: string | undefined;
|
|
1058
|
-
Finalized?: boolean;
|
|
1080
|
+
Finalized?: boolean | undefined;
|
|
1059
1081
|
RevisionId: string | undefined;
|
|
1060
1082
|
}
|
|
1061
1083
|
export interface UpdateRevisionResponse {
|
|
1062
|
-
Arn?: string;
|
|
1063
|
-
Comment?: string;
|
|
1064
|
-
CreatedAt?: Date;
|
|
1065
|
-
DataSetId?: string;
|
|
1066
|
-
Finalized?: boolean;
|
|
1067
|
-
Id?: string;
|
|
1068
|
-
SourceId?: string;
|
|
1069
|
-
UpdatedAt?: Date;
|
|
1070
|
-
RevocationComment?: string;
|
|
1071
|
-
Revoked?: boolean;
|
|
1072
|
-
RevokedAt?: Date;
|
|
1084
|
+
Arn?: string | undefined;
|
|
1085
|
+
Comment?: string | undefined;
|
|
1086
|
+
CreatedAt?: Date | undefined;
|
|
1087
|
+
DataSetId?: string | undefined;
|
|
1088
|
+
Finalized?: boolean | undefined;
|
|
1089
|
+
Id?: string | undefined;
|
|
1090
|
+
SourceId?: string | undefined;
|
|
1091
|
+
UpdatedAt?: Date | undefined;
|
|
1092
|
+
RevocationComment?: string | undefined;
|
|
1093
|
+
Revoked?: boolean | undefined;
|
|
1094
|
+
RevokedAt?: Date | undefined;
|
|
1073
1095
|
}
|