@aws-sdk/client-dataexchange 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DataExchangeServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +109 -2
- package/dist-cjs/protocols/Aws_restJson1.js +296 -1066
- package/dist-es/index.js +1 -0
- package/dist-es/models/DataExchangeServiceException.js +12 -0
- package/dist-es/models/models_0.js +100 -1
- package/dist-es/protocols/Aws_restJson1.js +615 -1165
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DataExchangeServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/ts3.4/DataExchange.d.ts +145 -0
- package/dist-types/ts3.4/DataExchangeClient.d.ts +101 -0
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +28 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/DataExchangeServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1485 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDataSetRevisionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEventActionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRevisionAssetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,1485 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
Message: string | undefined;
|
|
9
|
+
|
|
10
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
|
+
}
|
|
12
|
+
export declare enum ServerSideEncryptionTypes {
|
|
13
|
+
AES256 = "AES256",
|
|
14
|
+
aws_kms = "aws:kms"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface ExportServerSideEncryption {
|
|
18
|
+
|
|
19
|
+
KmsKeyArn?: string;
|
|
20
|
+
|
|
21
|
+
Type: ServerSideEncryptionTypes | string | undefined;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace ExportServerSideEncryption {
|
|
24
|
+
|
|
25
|
+
const filterSensitiveLog: (obj: ExportServerSideEncryption) => any;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface AutoExportRevisionDestinationEntry {
|
|
29
|
+
|
|
30
|
+
Bucket: string | undefined;
|
|
31
|
+
|
|
32
|
+
KeyPattern?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace AutoExportRevisionDestinationEntry {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: AutoExportRevisionDestinationEntry) => any;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface AutoExportRevisionToS3RequestDetails {
|
|
40
|
+
|
|
41
|
+
Encryption?: ExportServerSideEncryption;
|
|
42
|
+
|
|
43
|
+
RevisionDestination: AutoExportRevisionDestinationEntry | undefined;
|
|
44
|
+
}
|
|
45
|
+
export declare namespace AutoExportRevisionToS3RequestDetails {
|
|
46
|
+
|
|
47
|
+
const filterSensitiveLog: (obj: AutoExportRevisionToS3RequestDetails) => any;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface Action {
|
|
51
|
+
|
|
52
|
+
ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
|
|
53
|
+
}
|
|
54
|
+
export declare namespace Action {
|
|
55
|
+
|
|
56
|
+
const filterSensitiveLog: (obj: Action) => any;
|
|
57
|
+
}
|
|
58
|
+
export declare enum ProtocolType {
|
|
59
|
+
REST = "REST"
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface ApiGatewayApiAsset {
|
|
63
|
+
|
|
64
|
+
ApiDescription?: string;
|
|
65
|
+
|
|
66
|
+
ApiEndpoint?: string;
|
|
67
|
+
|
|
68
|
+
ApiId?: string;
|
|
69
|
+
|
|
70
|
+
ApiKey?: string;
|
|
71
|
+
|
|
72
|
+
ApiName?: string;
|
|
73
|
+
|
|
74
|
+
ApiSpecificationDownloadUrl?: string;
|
|
75
|
+
|
|
76
|
+
ApiSpecificationDownloadUrlExpiresAt?: Date;
|
|
77
|
+
|
|
78
|
+
ProtocolType?: ProtocolType | string;
|
|
79
|
+
|
|
80
|
+
Stage?: string;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace ApiGatewayApiAsset {
|
|
83
|
+
|
|
84
|
+
const filterSensitiveLog: (obj: ApiGatewayApiAsset) => any;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface AssetDestinationEntry {
|
|
88
|
+
|
|
89
|
+
AssetId: string | undefined;
|
|
90
|
+
|
|
91
|
+
Bucket: string | undefined;
|
|
92
|
+
|
|
93
|
+
Key?: string;
|
|
94
|
+
}
|
|
95
|
+
export declare namespace AssetDestinationEntry {
|
|
96
|
+
|
|
97
|
+
const filterSensitiveLog: (obj: AssetDestinationEntry) => any;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface RedshiftDataShareAsset {
|
|
101
|
+
|
|
102
|
+
Arn: string | undefined;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace RedshiftDataShareAsset {
|
|
105
|
+
|
|
106
|
+
const filterSensitiveLog: (obj: RedshiftDataShareAsset) => any;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface S3SnapshotAsset {
|
|
110
|
+
|
|
111
|
+
Size: number | undefined;
|
|
112
|
+
}
|
|
113
|
+
export declare namespace S3SnapshotAsset {
|
|
114
|
+
|
|
115
|
+
const filterSensitiveLog: (obj: S3SnapshotAsset) => any;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export interface AssetDetails {
|
|
119
|
+
|
|
120
|
+
S3SnapshotAsset?: S3SnapshotAsset;
|
|
121
|
+
|
|
122
|
+
RedshiftDataShareAsset?: RedshiftDataShareAsset;
|
|
123
|
+
|
|
124
|
+
ApiGatewayApiAsset?: ApiGatewayApiAsset;
|
|
125
|
+
}
|
|
126
|
+
export declare namespace AssetDetails {
|
|
127
|
+
|
|
128
|
+
const filterSensitiveLog: (obj: AssetDetails) => any;
|
|
129
|
+
}
|
|
130
|
+
export declare enum AssetType {
|
|
131
|
+
API_GATEWAY_API = "API_GATEWAY_API",
|
|
132
|
+
REDSHIFT_DATA_SHARE = "REDSHIFT_DATA_SHARE",
|
|
133
|
+
S3_SNAPSHOT = "S3_SNAPSHOT"
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export interface AssetEntry {
|
|
137
|
+
|
|
138
|
+
Arn: string | undefined;
|
|
139
|
+
|
|
140
|
+
AssetDetails: AssetDetails | undefined;
|
|
141
|
+
|
|
142
|
+
AssetType: AssetType | string | undefined;
|
|
143
|
+
|
|
144
|
+
CreatedAt: Date | undefined;
|
|
145
|
+
|
|
146
|
+
DataSetId: string | undefined;
|
|
147
|
+
|
|
148
|
+
Id: string | undefined;
|
|
149
|
+
|
|
150
|
+
Name: string | undefined;
|
|
151
|
+
|
|
152
|
+
RevisionId: string | undefined;
|
|
153
|
+
|
|
154
|
+
SourceId?: string;
|
|
155
|
+
|
|
156
|
+
UpdatedAt: Date | undefined;
|
|
157
|
+
}
|
|
158
|
+
export declare namespace AssetEntry {
|
|
159
|
+
|
|
160
|
+
const filterSensitiveLog: (obj: AssetEntry) => any;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export interface AssetSourceEntry {
|
|
164
|
+
|
|
165
|
+
Bucket: string | undefined;
|
|
166
|
+
|
|
167
|
+
Key: string | undefined;
|
|
168
|
+
}
|
|
169
|
+
export declare namespace AssetSourceEntry {
|
|
170
|
+
|
|
171
|
+
const filterSensitiveLog: (obj: AssetSourceEntry) => any;
|
|
172
|
+
}
|
|
173
|
+
export interface CancelJobRequest {
|
|
174
|
+
|
|
175
|
+
JobId: string | undefined;
|
|
176
|
+
}
|
|
177
|
+
export declare namespace CancelJobRequest {
|
|
178
|
+
|
|
179
|
+
const filterSensitiveLog: (obj: CancelJobRequest) => any;
|
|
180
|
+
}
|
|
181
|
+
export declare enum ResourceType {
|
|
182
|
+
ASSET = "ASSET",
|
|
183
|
+
DATA_SET = "DATA_SET",
|
|
184
|
+
EVENT_ACTION = "EVENT_ACTION",
|
|
185
|
+
JOB = "JOB",
|
|
186
|
+
REVISION = "REVISION"
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export declare class ConflictException extends __BaseException {
|
|
190
|
+
readonly name: "ConflictException";
|
|
191
|
+
readonly $fault: "client";
|
|
192
|
+
|
|
193
|
+
Message: string | undefined;
|
|
194
|
+
|
|
195
|
+
ResourceId?: string;
|
|
196
|
+
|
|
197
|
+
ResourceType?: ResourceType | string;
|
|
198
|
+
|
|
199
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export declare class InternalServerException extends __BaseException {
|
|
203
|
+
readonly name: "InternalServerException";
|
|
204
|
+
readonly $fault: "server";
|
|
205
|
+
|
|
206
|
+
Message: string | undefined;
|
|
207
|
+
|
|
208
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
212
|
+
readonly name: "ResourceNotFoundException";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
|
|
215
|
+
Message: string | undefined;
|
|
216
|
+
|
|
217
|
+
ResourceId?: string;
|
|
218
|
+
|
|
219
|
+
ResourceType?: ResourceType | string;
|
|
220
|
+
|
|
221
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export declare class ThrottlingException extends __BaseException {
|
|
225
|
+
readonly name: "ThrottlingException";
|
|
226
|
+
readonly $fault: "client";
|
|
227
|
+
|
|
228
|
+
Message: string | undefined;
|
|
229
|
+
|
|
230
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
231
|
+
}
|
|
232
|
+
export declare enum ExceptionCause {
|
|
233
|
+
InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
|
|
234
|
+
S3AccessDenied = "S3AccessDenied"
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
export declare class ValidationException extends __BaseException {
|
|
238
|
+
readonly name: "ValidationException";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
|
|
241
|
+
Message: string | undefined;
|
|
242
|
+
|
|
243
|
+
ExceptionCause?: ExceptionCause | string;
|
|
244
|
+
|
|
245
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
246
|
+
}
|
|
247
|
+
export declare enum Code {
|
|
248
|
+
ACCESS_DENIED_EXCEPTION = "ACCESS_DENIED_EXCEPTION",
|
|
249
|
+
INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
|
|
250
|
+
MALWARE_DETECTED = "MALWARE_DETECTED",
|
|
251
|
+
MALWARE_SCAN_ENCRYPTED_FILE = "MALWARE_SCAN_ENCRYPTED_FILE",
|
|
252
|
+
RESOURCE_NOT_FOUND_EXCEPTION = "RESOURCE_NOT_FOUND_EXCEPTION",
|
|
253
|
+
SERVICE_QUOTA_EXCEEDED_EXCEPTION = "SERVICE_QUOTA_EXCEEDED_EXCEPTION",
|
|
254
|
+
VALIDATION_EXCEPTION = "VALIDATION_EXCEPTION"
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface CreateDataSetRequest {
|
|
258
|
+
|
|
259
|
+
AssetType: AssetType | string | undefined;
|
|
260
|
+
|
|
261
|
+
Description: string | undefined;
|
|
262
|
+
|
|
263
|
+
Name: string | undefined;
|
|
264
|
+
|
|
265
|
+
Tags?: {
|
|
266
|
+
[key: string]: string;
|
|
267
|
+
};
|
|
268
|
+
}
|
|
269
|
+
export declare namespace CreateDataSetRequest {
|
|
270
|
+
|
|
271
|
+
const filterSensitiveLog: (obj: CreateDataSetRequest) => any;
|
|
272
|
+
}
|
|
273
|
+
export declare enum Origin {
|
|
274
|
+
ENTITLED = "ENTITLED",
|
|
275
|
+
OWNED = "OWNED"
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export interface OriginDetails {
|
|
279
|
+
|
|
280
|
+
ProductId: string | undefined;
|
|
281
|
+
}
|
|
282
|
+
export declare namespace OriginDetails {
|
|
283
|
+
|
|
284
|
+
const filterSensitiveLog: (obj: OriginDetails) => any;
|
|
285
|
+
}
|
|
286
|
+
export interface CreateDataSetResponse {
|
|
287
|
+
|
|
288
|
+
Arn?: string;
|
|
289
|
+
|
|
290
|
+
AssetType?: AssetType | string;
|
|
291
|
+
|
|
292
|
+
CreatedAt?: Date;
|
|
293
|
+
|
|
294
|
+
Description?: string;
|
|
295
|
+
|
|
296
|
+
Id?: string;
|
|
297
|
+
|
|
298
|
+
Name?: string;
|
|
299
|
+
|
|
300
|
+
Origin?: Origin | string;
|
|
301
|
+
|
|
302
|
+
OriginDetails?: OriginDetails;
|
|
303
|
+
|
|
304
|
+
SourceId?: string;
|
|
305
|
+
|
|
306
|
+
Tags?: {
|
|
307
|
+
[key: string]: string;
|
|
308
|
+
};
|
|
309
|
+
|
|
310
|
+
UpdatedAt?: Date;
|
|
311
|
+
}
|
|
312
|
+
export declare namespace CreateDataSetResponse {
|
|
313
|
+
|
|
314
|
+
const filterSensitiveLog: (obj: CreateDataSetResponse) => any;
|
|
315
|
+
}
|
|
316
|
+
export declare enum LimitName {
|
|
317
|
+
Amazon_API_Gateway_API_assets_per_revision = "Amazon API Gateway API assets per revision",
|
|
318
|
+
Amazon_Redshift_datashare_assets_per_import_job_from_Redshift = "Amazon Redshift datashare assets per import job from Redshift",
|
|
319
|
+
Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
|
|
320
|
+
Asset_per_export_job_from_Amazon_S3 = "Asset per export job from Amazon S3",
|
|
321
|
+
Asset_size_in_GB = "Asset size in GB",
|
|
322
|
+
Assets_per_import_job_from_Amazon_S3 = "Assets per import job from Amazon S3",
|
|
323
|
+
Assets_per_revision = "Assets per revision",
|
|
324
|
+
Auto_export_event_actions_per_data_set = "Auto export event actions per data set",
|
|
325
|
+
Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3 = "Concurrent in progress jobs to export assets to Amazon S3",
|
|
326
|
+
Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL = "Concurrent in progress jobs to export assets to a signed URL",
|
|
327
|
+
Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3 = "Concurrent in progress jobs to export revisions to Amazon S3",
|
|
328
|
+
Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares = "Concurrent in progress jobs to import assets from Amazon Redshift datashares",
|
|
329
|
+
Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3 = "Concurrent in progress jobs to import assets from Amazon S3",
|
|
330
|
+
Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL = "Concurrent in progress jobs to import assets from a signed URL",
|
|
331
|
+
Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API = "Concurrent in progress jobs to import assets from an API Gateway API",
|
|
332
|
+
Data_sets_per_account = "Data sets per account",
|
|
333
|
+
Data_sets_per_product = "Data sets per product",
|
|
334
|
+
Event_actions_per_account = "Event actions per account",
|
|
335
|
+
Products_per_account = "Products per account",
|
|
336
|
+
Revisions_per_Amazon_API_Gateway_API_data_set = "Revisions per Amazon API Gateway API data set",
|
|
337
|
+
Revisions_per_Amazon_Redshift_datashare_data_set = "Revisions per Amazon Redshift datashare data set",
|
|
338
|
+
Revisions_per_data_set = "Revisions per data set"
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
export declare class ServiceLimitExceededException extends __BaseException {
|
|
342
|
+
readonly name: "ServiceLimitExceededException";
|
|
343
|
+
readonly $fault: "client";
|
|
344
|
+
|
|
345
|
+
LimitName?: LimitName | string;
|
|
346
|
+
|
|
347
|
+
LimitValue?: number;
|
|
348
|
+
|
|
349
|
+
Message: string | undefined;
|
|
350
|
+
|
|
351
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
export interface RevisionPublished {
|
|
355
|
+
|
|
356
|
+
DataSetId: string | undefined;
|
|
357
|
+
}
|
|
358
|
+
export declare namespace RevisionPublished {
|
|
359
|
+
|
|
360
|
+
const filterSensitiveLog: (obj: RevisionPublished) => any;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export interface Event {
|
|
364
|
+
|
|
365
|
+
RevisionPublished?: RevisionPublished;
|
|
366
|
+
}
|
|
367
|
+
export declare namespace Event {
|
|
368
|
+
|
|
369
|
+
const filterSensitiveLog: (obj: Event) => any;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
export interface CreateEventActionRequest {
|
|
373
|
+
|
|
374
|
+
Action: Action | undefined;
|
|
375
|
+
|
|
376
|
+
Event: Event | undefined;
|
|
377
|
+
}
|
|
378
|
+
export declare namespace CreateEventActionRequest {
|
|
379
|
+
|
|
380
|
+
const filterSensitiveLog: (obj: CreateEventActionRequest) => any;
|
|
381
|
+
}
|
|
382
|
+
export interface CreateEventActionResponse {
|
|
383
|
+
|
|
384
|
+
Action?: Action;
|
|
385
|
+
|
|
386
|
+
Arn?: string;
|
|
387
|
+
|
|
388
|
+
CreatedAt?: Date;
|
|
389
|
+
|
|
390
|
+
Event?: Event;
|
|
391
|
+
|
|
392
|
+
Id?: string;
|
|
393
|
+
|
|
394
|
+
UpdatedAt?: Date;
|
|
395
|
+
}
|
|
396
|
+
export declare namespace CreateEventActionResponse {
|
|
397
|
+
|
|
398
|
+
const filterSensitiveLog: (obj: CreateEventActionResponse) => any;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export interface ExportAssetsToS3RequestDetails {
|
|
402
|
+
|
|
403
|
+
AssetDestinations: AssetDestinationEntry[] | undefined;
|
|
404
|
+
|
|
405
|
+
DataSetId: string | undefined;
|
|
406
|
+
|
|
407
|
+
Encryption?: ExportServerSideEncryption;
|
|
408
|
+
|
|
409
|
+
RevisionId: string | undefined;
|
|
410
|
+
}
|
|
411
|
+
export declare namespace ExportAssetsToS3RequestDetails {
|
|
412
|
+
|
|
413
|
+
const filterSensitiveLog: (obj: ExportAssetsToS3RequestDetails) => any;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export interface ExportAssetToSignedUrlRequestDetails {
|
|
417
|
+
|
|
418
|
+
AssetId: string | undefined;
|
|
419
|
+
|
|
420
|
+
DataSetId: string | undefined;
|
|
421
|
+
|
|
422
|
+
RevisionId: string | undefined;
|
|
423
|
+
}
|
|
424
|
+
export declare namespace ExportAssetToSignedUrlRequestDetails {
|
|
425
|
+
|
|
426
|
+
const filterSensitiveLog: (obj: ExportAssetToSignedUrlRequestDetails) => any;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export interface RevisionDestinationEntry {
|
|
430
|
+
|
|
431
|
+
Bucket: string | undefined;
|
|
432
|
+
|
|
433
|
+
KeyPattern?: string;
|
|
434
|
+
|
|
435
|
+
RevisionId: string | undefined;
|
|
436
|
+
}
|
|
437
|
+
export declare namespace RevisionDestinationEntry {
|
|
438
|
+
|
|
439
|
+
const filterSensitiveLog: (obj: RevisionDestinationEntry) => any;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
export interface ExportRevisionsToS3RequestDetails {
|
|
443
|
+
|
|
444
|
+
DataSetId: string | undefined;
|
|
445
|
+
|
|
446
|
+
Encryption?: ExportServerSideEncryption;
|
|
447
|
+
|
|
448
|
+
RevisionDestinations: RevisionDestinationEntry[] | undefined;
|
|
449
|
+
}
|
|
450
|
+
export declare namespace ExportRevisionsToS3RequestDetails {
|
|
451
|
+
|
|
452
|
+
const filterSensitiveLog: (obj: ExportRevisionsToS3RequestDetails) => any;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
export interface ImportAssetFromApiGatewayApiRequestDetails {
|
|
456
|
+
|
|
457
|
+
ApiDescription?: string;
|
|
458
|
+
|
|
459
|
+
ApiId: string | undefined;
|
|
460
|
+
|
|
461
|
+
ApiKey?: string;
|
|
462
|
+
|
|
463
|
+
ApiName: string | undefined;
|
|
464
|
+
|
|
465
|
+
ApiSpecificationMd5Hash: string | undefined;
|
|
466
|
+
|
|
467
|
+
DataSetId: string | undefined;
|
|
468
|
+
|
|
469
|
+
ProtocolType: ProtocolType | string | undefined;
|
|
470
|
+
|
|
471
|
+
RevisionId: string | undefined;
|
|
472
|
+
|
|
473
|
+
Stage: string | undefined;
|
|
474
|
+
}
|
|
475
|
+
export declare namespace ImportAssetFromApiGatewayApiRequestDetails {
|
|
476
|
+
|
|
477
|
+
const filterSensitiveLog: (obj: ImportAssetFromApiGatewayApiRequestDetails) => any;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
export interface ImportAssetFromSignedUrlRequestDetails {
|
|
481
|
+
|
|
482
|
+
AssetName: string | undefined;
|
|
483
|
+
|
|
484
|
+
DataSetId: string | undefined;
|
|
485
|
+
|
|
486
|
+
Md5Hash: string | undefined;
|
|
487
|
+
|
|
488
|
+
RevisionId: string | undefined;
|
|
489
|
+
}
|
|
490
|
+
export declare namespace ImportAssetFromSignedUrlRequestDetails {
|
|
491
|
+
|
|
492
|
+
const filterSensitiveLog: (obj: ImportAssetFromSignedUrlRequestDetails) => any;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
export interface RedshiftDataShareAssetSourceEntry {
|
|
496
|
+
|
|
497
|
+
DataShareArn: string | undefined;
|
|
498
|
+
}
|
|
499
|
+
export declare namespace RedshiftDataShareAssetSourceEntry {
|
|
500
|
+
|
|
501
|
+
const filterSensitiveLog: (obj: RedshiftDataShareAssetSourceEntry) => any;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
|
|
505
|
+
|
|
506
|
+
AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
|
|
507
|
+
|
|
508
|
+
DataSetId: string | undefined;
|
|
509
|
+
|
|
510
|
+
RevisionId: string | undefined;
|
|
511
|
+
}
|
|
512
|
+
export declare namespace ImportAssetsFromRedshiftDataSharesRequestDetails {
|
|
513
|
+
|
|
514
|
+
const filterSensitiveLog: (obj: ImportAssetsFromRedshiftDataSharesRequestDetails) => any;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
export interface ImportAssetsFromS3RequestDetails {
|
|
518
|
+
|
|
519
|
+
AssetSources: AssetSourceEntry[] | undefined;
|
|
520
|
+
|
|
521
|
+
DataSetId: string | undefined;
|
|
522
|
+
|
|
523
|
+
RevisionId: string | undefined;
|
|
524
|
+
}
|
|
525
|
+
export declare namespace ImportAssetsFromS3RequestDetails {
|
|
526
|
+
|
|
527
|
+
const filterSensitiveLog: (obj: ImportAssetsFromS3RequestDetails) => any;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
export interface RequestDetails {
|
|
531
|
+
|
|
532
|
+
ExportAssetToSignedUrl?: ExportAssetToSignedUrlRequestDetails;
|
|
533
|
+
|
|
534
|
+
ExportAssetsToS3?: ExportAssetsToS3RequestDetails;
|
|
535
|
+
|
|
536
|
+
ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails;
|
|
537
|
+
|
|
538
|
+
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails;
|
|
539
|
+
|
|
540
|
+
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
|
|
541
|
+
|
|
542
|
+
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails;
|
|
543
|
+
|
|
544
|
+
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails;
|
|
545
|
+
}
|
|
546
|
+
export declare namespace RequestDetails {
|
|
547
|
+
|
|
548
|
+
const filterSensitiveLog: (obj: RequestDetails) => any;
|
|
549
|
+
}
|
|
550
|
+
export declare enum Type {
|
|
551
|
+
EXPORT_ASSETS_TO_S3 = "EXPORT_ASSETS_TO_S3",
|
|
552
|
+
EXPORT_ASSET_TO_SIGNED_URL = "EXPORT_ASSET_TO_SIGNED_URL",
|
|
553
|
+
EXPORT_REVISIONS_TO_S3 = "EXPORT_REVISIONS_TO_S3",
|
|
554
|
+
IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES = "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES",
|
|
555
|
+
IMPORT_ASSETS_FROM_S3 = "IMPORT_ASSETS_FROM_S3",
|
|
556
|
+
IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
|
|
557
|
+
IMPORT_ASSET_FROM_SIGNED_URL = "IMPORT_ASSET_FROM_SIGNED_URL"
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
export interface CreateJobRequest {
|
|
561
|
+
|
|
562
|
+
Details: RequestDetails | undefined;
|
|
563
|
+
|
|
564
|
+
Type: Type | string | undefined;
|
|
565
|
+
}
|
|
566
|
+
export declare namespace CreateJobRequest {
|
|
567
|
+
|
|
568
|
+
const filterSensitiveLog: (obj: CreateJobRequest) => any;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
export interface ExportAssetsToS3ResponseDetails {
|
|
572
|
+
|
|
573
|
+
AssetDestinations: AssetDestinationEntry[] | undefined;
|
|
574
|
+
|
|
575
|
+
DataSetId: string | undefined;
|
|
576
|
+
|
|
577
|
+
Encryption?: ExportServerSideEncryption;
|
|
578
|
+
|
|
579
|
+
RevisionId: string | undefined;
|
|
580
|
+
}
|
|
581
|
+
export declare namespace ExportAssetsToS3ResponseDetails {
|
|
582
|
+
|
|
583
|
+
const filterSensitiveLog: (obj: ExportAssetsToS3ResponseDetails) => any;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
export interface ExportAssetToSignedUrlResponseDetails {
|
|
587
|
+
|
|
588
|
+
AssetId: string | undefined;
|
|
589
|
+
|
|
590
|
+
DataSetId: string | undefined;
|
|
591
|
+
|
|
592
|
+
RevisionId: string | undefined;
|
|
593
|
+
|
|
594
|
+
SignedUrl?: string;
|
|
595
|
+
|
|
596
|
+
SignedUrlExpiresAt?: Date;
|
|
597
|
+
}
|
|
598
|
+
export declare namespace ExportAssetToSignedUrlResponseDetails {
|
|
599
|
+
|
|
600
|
+
const filterSensitiveLog: (obj: ExportAssetToSignedUrlResponseDetails) => any;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
export interface ExportRevisionsToS3ResponseDetails {
|
|
604
|
+
|
|
605
|
+
DataSetId: string | undefined;
|
|
606
|
+
|
|
607
|
+
Encryption?: ExportServerSideEncryption;
|
|
608
|
+
|
|
609
|
+
RevisionDestinations: RevisionDestinationEntry[] | undefined;
|
|
610
|
+
|
|
611
|
+
EventActionArn?: string;
|
|
612
|
+
}
|
|
613
|
+
export declare namespace ExportRevisionsToS3ResponseDetails {
|
|
614
|
+
|
|
615
|
+
const filterSensitiveLog: (obj: ExportRevisionsToS3ResponseDetails) => any;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
export interface ImportAssetFromApiGatewayApiResponseDetails {
|
|
619
|
+
|
|
620
|
+
ApiDescription?: string;
|
|
621
|
+
|
|
622
|
+
ApiId: string | undefined;
|
|
623
|
+
|
|
624
|
+
ApiKey?: string;
|
|
625
|
+
|
|
626
|
+
ApiName: string | undefined;
|
|
627
|
+
|
|
628
|
+
ApiSpecificationMd5Hash: string | undefined;
|
|
629
|
+
|
|
630
|
+
ApiSpecificationUploadUrl: string | undefined;
|
|
631
|
+
|
|
632
|
+
ApiSpecificationUploadUrlExpiresAt: Date | undefined;
|
|
633
|
+
|
|
634
|
+
DataSetId: string | undefined;
|
|
635
|
+
|
|
636
|
+
ProtocolType: ProtocolType | string | undefined;
|
|
637
|
+
|
|
638
|
+
RevisionId: string | undefined;
|
|
639
|
+
|
|
640
|
+
Stage: string | undefined;
|
|
641
|
+
}
|
|
642
|
+
export declare namespace ImportAssetFromApiGatewayApiResponseDetails {
|
|
643
|
+
|
|
644
|
+
const filterSensitiveLog: (obj: ImportAssetFromApiGatewayApiResponseDetails) => any;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
export interface ImportAssetFromSignedUrlResponseDetails {
|
|
648
|
+
|
|
649
|
+
AssetName: string | undefined;
|
|
650
|
+
|
|
651
|
+
DataSetId: string | undefined;
|
|
652
|
+
|
|
653
|
+
Md5Hash?: string;
|
|
654
|
+
|
|
655
|
+
RevisionId: string | undefined;
|
|
656
|
+
|
|
657
|
+
SignedUrl?: string;
|
|
658
|
+
|
|
659
|
+
SignedUrlExpiresAt?: Date;
|
|
660
|
+
}
|
|
661
|
+
export declare namespace ImportAssetFromSignedUrlResponseDetails {
|
|
662
|
+
|
|
663
|
+
const filterSensitiveLog: (obj: ImportAssetFromSignedUrlResponseDetails) => any;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
|
|
667
|
+
|
|
668
|
+
AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
|
|
669
|
+
|
|
670
|
+
DataSetId: string | undefined;
|
|
671
|
+
|
|
672
|
+
RevisionId: string | undefined;
|
|
673
|
+
}
|
|
674
|
+
export declare namespace ImportAssetsFromRedshiftDataSharesResponseDetails {
|
|
675
|
+
|
|
676
|
+
const filterSensitiveLog: (obj: ImportAssetsFromRedshiftDataSharesResponseDetails) => any;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
export interface ImportAssetsFromS3ResponseDetails {
|
|
680
|
+
|
|
681
|
+
AssetSources: AssetSourceEntry[] | undefined;
|
|
682
|
+
|
|
683
|
+
DataSetId: string | undefined;
|
|
684
|
+
|
|
685
|
+
RevisionId: string | undefined;
|
|
686
|
+
}
|
|
687
|
+
export declare namespace ImportAssetsFromS3ResponseDetails {
|
|
688
|
+
|
|
689
|
+
const filterSensitiveLog: (obj: ImportAssetsFromS3ResponseDetails) => any;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
export interface ResponseDetails {
|
|
693
|
+
|
|
694
|
+
ExportAssetToSignedUrl?: ExportAssetToSignedUrlResponseDetails;
|
|
695
|
+
|
|
696
|
+
ExportAssetsToS3?: ExportAssetsToS3ResponseDetails;
|
|
697
|
+
|
|
698
|
+
ExportRevisionsToS3?: ExportRevisionsToS3ResponseDetails;
|
|
699
|
+
|
|
700
|
+
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlResponseDetails;
|
|
701
|
+
|
|
702
|
+
ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails;
|
|
703
|
+
|
|
704
|
+
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesResponseDetails;
|
|
705
|
+
|
|
706
|
+
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiResponseDetails;
|
|
707
|
+
}
|
|
708
|
+
export declare namespace ResponseDetails {
|
|
709
|
+
|
|
710
|
+
const filterSensitiveLog: (obj: ResponseDetails) => any;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
export interface ImportAssetFromSignedUrlJobErrorDetails {
|
|
714
|
+
|
|
715
|
+
AssetName: string | undefined;
|
|
716
|
+
}
|
|
717
|
+
export declare namespace ImportAssetFromSignedUrlJobErrorDetails {
|
|
718
|
+
|
|
719
|
+
const filterSensitiveLog: (obj: ImportAssetFromSignedUrlJobErrorDetails) => any;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
export interface Details {
|
|
723
|
+
|
|
724
|
+
ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
|
|
725
|
+
|
|
726
|
+
ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
|
|
727
|
+
}
|
|
728
|
+
export declare namespace Details {
|
|
729
|
+
|
|
730
|
+
const filterSensitiveLog: (obj: Details) => any;
|
|
731
|
+
}
|
|
732
|
+
export declare enum JobErrorLimitName {
|
|
733
|
+
Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
|
|
734
|
+
Asset_size_in_GB = "Asset size in GB",
|
|
735
|
+
Assets_per_revision = "Assets per revision"
|
|
736
|
+
}
|
|
737
|
+
export declare enum JobErrorResourceTypes {
|
|
738
|
+
ASSET = "ASSET",
|
|
739
|
+
DATA_SET = "DATA_SET",
|
|
740
|
+
REVISION = "REVISION"
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
export interface JobError {
|
|
744
|
+
|
|
745
|
+
Code: Code | string | undefined;
|
|
746
|
+
|
|
747
|
+
Details?: Details;
|
|
748
|
+
|
|
749
|
+
LimitName?: JobErrorLimitName | string;
|
|
750
|
+
|
|
751
|
+
LimitValue?: number;
|
|
752
|
+
|
|
753
|
+
Message: string | undefined;
|
|
754
|
+
|
|
755
|
+
ResourceId?: string;
|
|
756
|
+
|
|
757
|
+
ResourceType?: JobErrorResourceTypes | string;
|
|
758
|
+
}
|
|
759
|
+
export declare namespace JobError {
|
|
760
|
+
|
|
761
|
+
const filterSensitiveLog: (obj: JobError) => any;
|
|
762
|
+
}
|
|
763
|
+
export declare enum State {
|
|
764
|
+
CANCELLED = "CANCELLED",
|
|
765
|
+
COMPLETED = "COMPLETED",
|
|
766
|
+
ERROR = "ERROR",
|
|
767
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
768
|
+
TIMED_OUT = "TIMED_OUT",
|
|
769
|
+
WAITING = "WAITING"
|
|
770
|
+
}
|
|
771
|
+
export interface CreateJobResponse {
|
|
772
|
+
|
|
773
|
+
Arn?: string;
|
|
774
|
+
|
|
775
|
+
CreatedAt?: Date;
|
|
776
|
+
|
|
777
|
+
Details?: ResponseDetails;
|
|
778
|
+
|
|
779
|
+
Errors?: JobError[];
|
|
780
|
+
|
|
781
|
+
Id?: string;
|
|
782
|
+
|
|
783
|
+
State?: State | string;
|
|
784
|
+
|
|
785
|
+
Type?: Type | string;
|
|
786
|
+
|
|
787
|
+
UpdatedAt?: Date;
|
|
788
|
+
}
|
|
789
|
+
export declare namespace CreateJobResponse {
|
|
790
|
+
|
|
791
|
+
const filterSensitiveLog: (obj: CreateJobResponse) => any;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
export interface CreateRevisionRequest {
|
|
795
|
+
|
|
796
|
+
Comment?: string;
|
|
797
|
+
|
|
798
|
+
DataSetId: string | undefined;
|
|
799
|
+
|
|
800
|
+
Tags?: {
|
|
801
|
+
[key: string]: string;
|
|
802
|
+
};
|
|
803
|
+
}
|
|
804
|
+
export declare namespace CreateRevisionRequest {
|
|
805
|
+
|
|
806
|
+
const filterSensitiveLog: (obj: CreateRevisionRequest) => any;
|
|
807
|
+
}
|
|
808
|
+
export interface CreateRevisionResponse {
|
|
809
|
+
|
|
810
|
+
Arn?: string;
|
|
811
|
+
|
|
812
|
+
Comment?: string;
|
|
813
|
+
|
|
814
|
+
CreatedAt?: Date;
|
|
815
|
+
|
|
816
|
+
DataSetId?: string;
|
|
817
|
+
|
|
818
|
+
Finalized?: boolean;
|
|
819
|
+
|
|
820
|
+
Id?: string;
|
|
821
|
+
|
|
822
|
+
SourceId?: string;
|
|
823
|
+
|
|
824
|
+
Tags?: {
|
|
825
|
+
[key: string]: string;
|
|
826
|
+
};
|
|
827
|
+
|
|
828
|
+
UpdatedAt?: Date;
|
|
829
|
+
}
|
|
830
|
+
export declare namespace CreateRevisionResponse {
|
|
831
|
+
|
|
832
|
+
const filterSensitiveLog: (obj: CreateRevisionResponse) => any;
|
|
833
|
+
}
|
|
834
|
+
export interface DeleteAssetRequest {
|
|
835
|
+
|
|
836
|
+
AssetId: string | undefined;
|
|
837
|
+
|
|
838
|
+
DataSetId: string | undefined;
|
|
839
|
+
|
|
840
|
+
RevisionId: string | undefined;
|
|
841
|
+
}
|
|
842
|
+
export declare namespace DeleteAssetRequest {
|
|
843
|
+
|
|
844
|
+
const filterSensitiveLog: (obj: DeleteAssetRequest) => any;
|
|
845
|
+
}
|
|
846
|
+
export interface DeleteDataSetRequest {
|
|
847
|
+
|
|
848
|
+
DataSetId: string | undefined;
|
|
849
|
+
}
|
|
850
|
+
export declare namespace DeleteDataSetRequest {
|
|
851
|
+
|
|
852
|
+
const filterSensitiveLog: (obj: DeleteDataSetRequest) => any;
|
|
853
|
+
}
|
|
854
|
+
export interface DeleteEventActionRequest {
|
|
855
|
+
|
|
856
|
+
EventActionId: string | undefined;
|
|
857
|
+
}
|
|
858
|
+
export declare namespace DeleteEventActionRequest {
|
|
859
|
+
|
|
860
|
+
const filterSensitiveLog: (obj: DeleteEventActionRequest) => any;
|
|
861
|
+
}
|
|
862
|
+
export interface DeleteRevisionRequest {
|
|
863
|
+
|
|
864
|
+
DataSetId: string | undefined;
|
|
865
|
+
|
|
866
|
+
RevisionId: string | undefined;
|
|
867
|
+
}
|
|
868
|
+
export declare namespace DeleteRevisionRequest {
|
|
869
|
+
|
|
870
|
+
const filterSensitiveLog: (obj: DeleteRevisionRequest) => any;
|
|
871
|
+
}
|
|
872
|
+
export interface GetAssetRequest {
|
|
873
|
+
|
|
874
|
+
AssetId: string | undefined;
|
|
875
|
+
|
|
876
|
+
DataSetId: string | undefined;
|
|
877
|
+
|
|
878
|
+
RevisionId: string | undefined;
|
|
879
|
+
}
|
|
880
|
+
export declare namespace GetAssetRequest {
|
|
881
|
+
|
|
882
|
+
const filterSensitiveLog: (obj: GetAssetRequest) => any;
|
|
883
|
+
}
|
|
884
|
+
export interface GetAssetResponse {
|
|
885
|
+
|
|
886
|
+
Arn?: string;
|
|
887
|
+
|
|
888
|
+
AssetDetails?: AssetDetails;
|
|
889
|
+
|
|
890
|
+
AssetType?: AssetType | string;
|
|
891
|
+
|
|
892
|
+
CreatedAt?: Date;
|
|
893
|
+
|
|
894
|
+
DataSetId?: string;
|
|
895
|
+
|
|
896
|
+
Id?: string;
|
|
897
|
+
|
|
898
|
+
Name?: string;
|
|
899
|
+
|
|
900
|
+
RevisionId?: string;
|
|
901
|
+
|
|
902
|
+
SourceId?: string;
|
|
903
|
+
|
|
904
|
+
UpdatedAt?: Date;
|
|
905
|
+
}
|
|
906
|
+
export declare namespace GetAssetResponse {
|
|
907
|
+
|
|
908
|
+
const filterSensitiveLog: (obj: GetAssetResponse) => any;
|
|
909
|
+
}
|
|
910
|
+
export interface GetDataSetRequest {
|
|
911
|
+
|
|
912
|
+
DataSetId: string | undefined;
|
|
913
|
+
}
|
|
914
|
+
export declare namespace GetDataSetRequest {
|
|
915
|
+
|
|
916
|
+
const filterSensitiveLog: (obj: GetDataSetRequest) => any;
|
|
917
|
+
}
|
|
918
|
+
export interface GetDataSetResponse {
|
|
919
|
+
|
|
920
|
+
Arn?: string;
|
|
921
|
+
|
|
922
|
+
AssetType?: AssetType | string;
|
|
923
|
+
|
|
924
|
+
CreatedAt?: Date;
|
|
925
|
+
|
|
926
|
+
Description?: string;
|
|
927
|
+
|
|
928
|
+
Id?: string;
|
|
929
|
+
|
|
930
|
+
Name?: string;
|
|
931
|
+
|
|
932
|
+
Origin?: Origin | string;
|
|
933
|
+
|
|
934
|
+
OriginDetails?: OriginDetails;
|
|
935
|
+
|
|
936
|
+
SourceId?: string;
|
|
937
|
+
|
|
938
|
+
Tags?: {
|
|
939
|
+
[key: string]: string;
|
|
940
|
+
};
|
|
941
|
+
|
|
942
|
+
UpdatedAt?: Date;
|
|
943
|
+
}
|
|
944
|
+
export declare namespace GetDataSetResponse {
|
|
945
|
+
|
|
946
|
+
const filterSensitiveLog: (obj: GetDataSetResponse) => any;
|
|
947
|
+
}
|
|
948
|
+
export interface GetEventActionRequest {
|
|
949
|
+
|
|
950
|
+
EventActionId: string | undefined;
|
|
951
|
+
}
|
|
952
|
+
export declare namespace GetEventActionRequest {
|
|
953
|
+
|
|
954
|
+
const filterSensitiveLog: (obj: GetEventActionRequest) => any;
|
|
955
|
+
}
|
|
956
|
+
export interface GetEventActionResponse {
|
|
957
|
+
|
|
958
|
+
Action?: Action;
|
|
959
|
+
|
|
960
|
+
Arn?: string;
|
|
961
|
+
|
|
962
|
+
CreatedAt?: Date;
|
|
963
|
+
|
|
964
|
+
Event?: Event;
|
|
965
|
+
|
|
966
|
+
Id?: string;
|
|
967
|
+
|
|
968
|
+
UpdatedAt?: Date;
|
|
969
|
+
}
|
|
970
|
+
export declare namespace GetEventActionResponse {
|
|
971
|
+
|
|
972
|
+
const filterSensitiveLog: (obj: GetEventActionResponse) => any;
|
|
973
|
+
}
|
|
974
|
+
export interface GetJobRequest {
|
|
975
|
+
|
|
976
|
+
JobId: string | undefined;
|
|
977
|
+
}
|
|
978
|
+
export declare namespace GetJobRequest {
|
|
979
|
+
|
|
980
|
+
const filterSensitiveLog: (obj: GetJobRequest) => any;
|
|
981
|
+
}
|
|
982
|
+
export interface GetJobResponse {
|
|
983
|
+
|
|
984
|
+
Arn?: string;
|
|
985
|
+
|
|
986
|
+
CreatedAt?: Date;
|
|
987
|
+
|
|
988
|
+
Details?: ResponseDetails;
|
|
989
|
+
|
|
990
|
+
Errors?: JobError[];
|
|
991
|
+
|
|
992
|
+
Id?: string;
|
|
993
|
+
|
|
994
|
+
State?: State | string;
|
|
995
|
+
|
|
996
|
+
Type?: Type | string;
|
|
997
|
+
|
|
998
|
+
UpdatedAt?: Date;
|
|
999
|
+
}
|
|
1000
|
+
export declare namespace GetJobResponse {
|
|
1001
|
+
|
|
1002
|
+
const filterSensitiveLog: (obj: GetJobResponse) => any;
|
|
1003
|
+
}
|
|
1004
|
+
export interface GetRevisionRequest {
|
|
1005
|
+
|
|
1006
|
+
DataSetId: string | undefined;
|
|
1007
|
+
|
|
1008
|
+
RevisionId: string | undefined;
|
|
1009
|
+
}
|
|
1010
|
+
export declare namespace GetRevisionRequest {
|
|
1011
|
+
|
|
1012
|
+
const filterSensitiveLog: (obj: GetRevisionRequest) => any;
|
|
1013
|
+
}
|
|
1014
|
+
export interface GetRevisionResponse {
|
|
1015
|
+
|
|
1016
|
+
Arn?: string;
|
|
1017
|
+
|
|
1018
|
+
Comment?: string;
|
|
1019
|
+
|
|
1020
|
+
CreatedAt?: Date;
|
|
1021
|
+
|
|
1022
|
+
DataSetId?: string;
|
|
1023
|
+
|
|
1024
|
+
Finalized?: boolean;
|
|
1025
|
+
|
|
1026
|
+
Id?: string;
|
|
1027
|
+
|
|
1028
|
+
SourceId?: string;
|
|
1029
|
+
|
|
1030
|
+
Tags?: {
|
|
1031
|
+
[key: string]: string;
|
|
1032
|
+
};
|
|
1033
|
+
|
|
1034
|
+
UpdatedAt?: Date;
|
|
1035
|
+
}
|
|
1036
|
+
export declare namespace GetRevisionResponse {
|
|
1037
|
+
|
|
1038
|
+
const filterSensitiveLog: (obj: GetRevisionResponse) => any;
|
|
1039
|
+
}
|
|
1040
|
+
export interface ListDataSetRevisionsRequest {
|
|
1041
|
+
|
|
1042
|
+
DataSetId: string | undefined;
|
|
1043
|
+
|
|
1044
|
+
MaxResults?: number;
|
|
1045
|
+
|
|
1046
|
+
NextToken?: string;
|
|
1047
|
+
}
|
|
1048
|
+
export declare namespace ListDataSetRevisionsRequest {
|
|
1049
|
+
|
|
1050
|
+
const filterSensitiveLog: (obj: ListDataSetRevisionsRequest) => any;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
export interface RevisionEntry {
|
|
1054
|
+
|
|
1055
|
+
Arn: string | undefined;
|
|
1056
|
+
|
|
1057
|
+
Comment?: string;
|
|
1058
|
+
|
|
1059
|
+
CreatedAt: Date | undefined;
|
|
1060
|
+
|
|
1061
|
+
DataSetId: string | undefined;
|
|
1062
|
+
|
|
1063
|
+
Finalized?: boolean;
|
|
1064
|
+
|
|
1065
|
+
Id: string | undefined;
|
|
1066
|
+
|
|
1067
|
+
SourceId?: string;
|
|
1068
|
+
|
|
1069
|
+
UpdatedAt: Date | undefined;
|
|
1070
|
+
}
|
|
1071
|
+
export declare namespace RevisionEntry {
|
|
1072
|
+
|
|
1073
|
+
const filterSensitiveLog: (obj: RevisionEntry) => any;
|
|
1074
|
+
}
|
|
1075
|
+
export interface ListDataSetRevisionsResponse {
|
|
1076
|
+
|
|
1077
|
+
NextToken?: string;
|
|
1078
|
+
|
|
1079
|
+
Revisions?: RevisionEntry[];
|
|
1080
|
+
}
|
|
1081
|
+
export declare namespace ListDataSetRevisionsResponse {
|
|
1082
|
+
|
|
1083
|
+
const filterSensitiveLog: (obj: ListDataSetRevisionsResponse) => any;
|
|
1084
|
+
}
|
|
1085
|
+
export interface ListDataSetsRequest {
|
|
1086
|
+
|
|
1087
|
+
MaxResults?: number;
|
|
1088
|
+
|
|
1089
|
+
NextToken?: string;
|
|
1090
|
+
|
|
1091
|
+
Origin?: string;
|
|
1092
|
+
}
|
|
1093
|
+
export declare namespace ListDataSetsRequest {
|
|
1094
|
+
|
|
1095
|
+
const filterSensitiveLog: (obj: ListDataSetsRequest) => any;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
export interface DataSetEntry {
|
|
1099
|
+
|
|
1100
|
+
Arn: string | undefined;
|
|
1101
|
+
|
|
1102
|
+
AssetType: AssetType | string | undefined;
|
|
1103
|
+
|
|
1104
|
+
CreatedAt: Date | undefined;
|
|
1105
|
+
|
|
1106
|
+
Description: string | undefined;
|
|
1107
|
+
|
|
1108
|
+
Id: string | undefined;
|
|
1109
|
+
|
|
1110
|
+
Name: string | undefined;
|
|
1111
|
+
|
|
1112
|
+
Origin: Origin | string | undefined;
|
|
1113
|
+
|
|
1114
|
+
OriginDetails?: OriginDetails;
|
|
1115
|
+
|
|
1116
|
+
SourceId?: string;
|
|
1117
|
+
|
|
1118
|
+
UpdatedAt: Date | undefined;
|
|
1119
|
+
}
|
|
1120
|
+
export declare namespace DataSetEntry {
|
|
1121
|
+
|
|
1122
|
+
const filterSensitiveLog: (obj: DataSetEntry) => any;
|
|
1123
|
+
}
|
|
1124
|
+
export interface ListDataSetsResponse {
|
|
1125
|
+
|
|
1126
|
+
DataSets?: DataSetEntry[];
|
|
1127
|
+
|
|
1128
|
+
NextToken?: string;
|
|
1129
|
+
}
|
|
1130
|
+
export declare namespace ListDataSetsResponse {
|
|
1131
|
+
|
|
1132
|
+
const filterSensitiveLog: (obj: ListDataSetsResponse) => any;
|
|
1133
|
+
}
|
|
1134
|
+
export interface ListEventActionsRequest {
|
|
1135
|
+
|
|
1136
|
+
EventSourceId?: string;
|
|
1137
|
+
|
|
1138
|
+
MaxResults?: number;
|
|
1139
|
+
|
|
1140
|
+
NextToken?: string;
|
|
1141
|
+
}
|
|
1142
|
+
export declare namespace ListEventActionsRequest {
|
|
1143
|
+
|
|
1144
|
+
const filterSensitiveLog: (obj: ListEventActionsRequest) => any;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
export interface EventActionEntry {
|
|
1148
|
+
|
|
1149
|
+
Action: Action | undefined;
|
|
1150
|
+
|
|
1151
|
+
Arn: string | undefined;
|
|
1152
|
+
|
|
1153
|
+
CreatedAt: Date | undefined;
|
|
1154
|
+
|
|
1155
|
+
Event: Event | undefined;
|
|
1156
|
+
|
|
1157
|
+
Id: string | undefined;
|
|
1158
|
+
|
|
1159
|
+
UpdatedAt: Date | undefined;
|
|
1160
|
+
}
|
|
1161
|
+
export declare namespace EventActionEntry {
|
|
1162
|
+
|
|
1163
|
+
const filterSensitiveLog: (obj: EventActionEntry) => any;
|
|
1164
|
+
}
|
|
1165
|
+
export interface ListEventActionsResponse {
|
|
1166
|
+
|
|
1167
|
+
EventActions?: EventActionEntry[];
|
|
1168
|
+
|
|
1169
|
+
NextToken?: string;
|
|
1170
|
+
}
|
|
1171
|
+
export declare namespace ListEventActionsResponse {
|
|
1172
|
+
|
|
1173
|
+
const filterSensitiveLog: (obj: ListEventActionsResponse) => any;
|
|
1174
|
+
}
|
|
1175
|
+
export interface ListJobsRequest {
|
|
1176
|
+
|
|
1177
|
+
DataSetId?: string;
|
|
1178
|
+
|
|
1179
|
+
MaxResults?: number;
|
|
1180
|
+
|
|
1181
|
+
NextToken?: string;
|
|
1182
|
+
|
|
1183
|
+
RevisionId?: string;
|
|
1184
|
+
}
|
|
1185
|
+
export declare namespace ListJobsRequest {
|
|
1186
|
+
|
|
1187
|
+
const filterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
export interface JobEntry {
|
|
1191
|
+
|
|
1192
|
+
Arn: string | undefined;
|
|
1193
|
+
|
|
1194
|
+
CreatedAt: Date | undefined;
|
|
1195
|
+
|
|
1196
|
+
Details: ResponseDetails | undefined;
|
|
1197
|
+
|
|
1198
|
+
Errors?: JobError[];
|
|
1199
|
+
|
|
1200
|
+
Id: string | undefined;
|
|
1201
|
+
|
|
1202
|
+
State: State | string | undefined;
|
|
1203
|
+
|
|
1204
|
+
Type: Type | string | undefined;
|
|
1205
|
+
|
|
1206
|
+
UpdatedAt: Date | undefined;
|
|
1207
|
+
}
|
|
1208
|
+
export declare namespace JobEntry {
|
|
1209
|
+
|
|
1210
|
+
const filterSensitiveLog: (obj: JobEntry) => any;
|
|
1211
|
+
}
|
|
1212
|
+
export interface ListJobsResponse {
|
|
1213
|
+
|
|
1214
|
+
Jobs?: JobEntry[];
|
|
1215
|
+
|
|
1216
|
+
NextToken?: string;
|
|
1217
|
+
}
|
|
1218
|
+
export declare namespace ListJobsResponse {
|
|
1219
|
+
|
|
1220
|
+
const filterSensitiveLog: (obj: ListJobsResponse) => any;
|
|
1221
|
+
}
|
|
1222
|
+
export interface ListRevisionAssetsRequest {
|
|
1223
|
+
|
|
1224
|
+
DataSetId: string | undefined;
|
|
1225
|
+
|
|
1226
|
+
MaxResults?: number;
|
|
1227
|
+
|
|
1228
|
+
NextToken?: string;
|
|
1229
|
+
|
|
1230
|
+
RevisionId: string | undefined;
|
|
1231
|
+
}
|
|
1232
|
+
export declare namespace ListRevisionAssetsRequest {
|
|
1233
|
+
|
|
1234
|
+
const filterSensitiveLog: (obj: ListRevisionAssetsRequest) => any;
|
|
1235
|
+
}
|
|
1236
|
+
export interface ListRevisionAssetsResponse {
|
|
1237
|
+
|
|
1238
|
+
Assets?: AssetEntry[];
|
|
1239
|
+
|
|
1240
|
+
NextToken?: string;
|
|
1241
|
+
}
|
|
1242
|
+
export declare namespace ListRevisionAssetsResponse {
|
|
1243
|
+
|
|
1244
|
+
const filterSensitiveLog: (obj: ListRevisionAssetsResponse) => any;
|
|
1245
|
+
}
|
|
1246
|
+
export interface ListTagsForResourceRequest {
|
|
1247
|
+
|
|
1248
|
+
ResourceArn: string | undefined;
|
|
1249
|
+
}
|
|
1250
|
+
export declare namespace ListTagsForResourceRequest {
|
|
1251
|
+
|
|
1252
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1253
|
+
}
|
|
1254
|
+
export interface ListTagsForResourceResponse {
|
|
1255
|
+
|
|
1256
|
+
Tags?: {
|
|
1257
|
+
[key: string]: string;
|
|
1258
|
+
};
|
|
1259
|
+
}
|
|
1260
|
+
export declare namespace ListTagsForResourceResponse {
|
|
1261
|
+
|
|
1262
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
export interface SendApiAssetRequest {
|
|
1266
|
+
|
|
1267
|
+
Body?: string;
|
|
1268
|
+
|
|
1269
|
+
QueryStringParameters?: {
|
|
1270
|
+
[key: string]: string;
|
|
1271
|
+
};
|
|
1272
|
+
|
|
1273
|
+
AssetId: string | undefined;
|
|
1274
|
+
|
|
1275
|
+
DataSetId: string | undefined;
|
|
1276
|
+
|
|
1277
|
+
RequestHeaders?: {
|
|
1278
|
+
[key: string]: string;
|
|
1279
|
+
};
|
|
1280
|
+
|
|
1281
|
+
Method?: string;
|
|
1282
|
+
|
|
1283
|
+
Path?: string;
|
|
1284
|
+
|
|
1285
|
+
RevisionId: string | undefined;
|
|
1286
|
+
}
|
|
1287
|
+
export declare namespace SendApiAssetRequest {
|
|
1288
|
+
|
|
1289
|
+
const filterSensitiveLog: (obj: SendApiAssetRequest) => any;
|
|
1290
|
+
}
|
|
1291
|
+
export interface SendApiAssetResponse {
|
|
1292
|
+
|
|
1293
|
+
Body?: string;
|
|
1294
|
+
|
|
1295
|
+
ResponseHeaders?: {
|
|
1296
|
+
[key: string]: string;
|
|
1297
|
+
};
|
|
1298
|
+
}
|
|
1299
|
+
export declare namespace SendApiAssetResponse {
|
|
1300
|
+
|
|
1301
|
+
const filterSensitiveLog: (obj: SendApiAssetResponse) => any;
|
|
1302
|
+
}
|
|
1303
|
+
export interface StartJobRequest {
|
|
1304
|
+
|
|
1305
|
+
JobId: string | undefined;
|
|
1306
|
+
}
|
|
1307
|
+
export declare namespace StartJobRequest {
|
|
1308
|
+
|
|
1309
|
+
const filterSensitiveLog: (obj: StartJobRequest) => any;
|
|
1310
|
+
}
|
|
1311
|
+
export interface StartJobResponse {
|
|
1312
|
+
}
|
|
1313
|
+
export declare namespace StartJobResponse {
|
|
1314
|
+
|
|
1315
|
+
const filterSensitiveLog: (obj: StartJobResponse) => any;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
export interface TagResourceRequest {
|
|
1319
|
+
|
|
1320
|
+
ResourceArn: string | undefined;
|
|
1321
|
+
|
|
1322
|
+
Tags: {
|
|
1323
|
+
[key: string]: string;
|
|
1324
|
+
} | undefined;
|
|
1325
|
+
}
|
|
1326
|
+
export declare namespace TagResourceRequest {
|
|
1327
|
+
|
|
1328
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1329
|
+
}
|
|
1330
|
+
export interface UntagResourceRequest {
|
|
1331
|
+
|
|
1332
|
+
ResourceArn: string | undefined;
|
|
1333
|
+
|
|
1334
|
+
TagKeys: string[] | undefined;
|
|
1335
|
+
}
|
|
1336
|
+
export declare namespace UntagResourceRequest {
|
|
1337
|
+
|
|
1338
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
export interface UpdateAssetRequest {
|
|
1342
|
+
|
|
1343
|
+
AssetId: string | undefined;
|
|
1344
|
+
|
|
1345
|
+
DataSetId: string | undefined;
|
|
1346
|
+
|
|
1347
|
+
Name: string | undefined;
|
|
1348
|
+
|
|
1349
|
+
RevisionId: string | undefined;
|
|
1350
|
+
}
|
|
1351
|
+
export declare namespace UpdateAssetRequest {
|
|
1352
|
+
|
|
1353
|
+
const filterSensitiveLog: (obj: UpdateAssetRequest) => any;
|
|
1354
|
+
}
|
|
1355
|
+
export interface UpdateAssetResponse {
|
|
1356
|
+
|
|
1357
|
+
Arn?: string;
|
|
1358
|
+
|
|
1359
|
+
AssetDetails?: AssetDetails;
|
|
1360
|
+
|
|
1361
|
+
AssetType?: AssetType | string;
|
|
1362
|
+
|
|
1363
|
+
CreatedAt?: Date;
|
|
1364
|
+
|
|
1365
|
+
DataSetId?: string;
|
|
1366
|
+
|
|
1367
|
+
Id?: string;
|
|
1368
|
+
|
|
1369
|
+
Name?: string;
|
|
1370
|
+
|
|
1371
|
+
RevisionId?: string;
|
|
1372
|
+
|
|
1373
|
+
SourceId?: string;
|
|
1374
|
+
|
|
1375
|
+
UpdatedAt?: Date;
|
|
1376
|
+
}
|
|
1377
|
+
export declare namespace UpdateAssetResponse {
|
|
1378
|
+
|
|
1379
|
+
const filterSensitiveLog: (obj: UpdateAssetResponse) => any;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
export interface UpdateDataSetRequest {
|
|
1383
|
+
|
|
1384
|
+
DataSetId: string | undefined;
|
|
1385
|
+
|
|
1386
|
+
Description?: string;
|
|
1387
|
+
|
|
1388
|
+
Name?: string;
|
|
1389
|
+
}
|
|
1390
|
+
export declare namespace UpdateDataSetRequest {
|
|
1391
|
+
|
|
1392
|
+
const filterSensitiveLog: (obj: UpdateDataSetRequest) => any;
|
|
1393
|
+
}
|
|
1394
|
+
export interface UpdateDataSetResponse {
|
|
1395
|
+
|
|
1396
|
+
Arn?: string;
|
|
1397
|
+
|
|
1398
|
+
AssetType?: AssetType | string;
|
|
1399
|
+
|
|
1400
|
+
CreatedAt?: Date;
|
|
1401
|
+
|
|
1402
|
+
Description?: string;
|
|
1403
|
+
|
|
1404
|
+
Id?: string;
|
|
1405
|
+
|
|
1406
|
+
Name?: string;
|
|
1407
|
+
|
|
1408
|
+
Origin?: Origin | string;
|
|
1409
|
+
|
|
1410
|
+
OriginDetails?: OriginDetails;
|
|
1411
|
+
|
|
1412
|
+
SourceId?: string;
|
|
1413
|
+
|
|
1414
|
+
UpdatedAt?: Date;
|
|
1415
|
+
}
|
|
1416
|
+
export declare namespace UpdateDataSetResponse {
|
|
1417
|
+
|
|
1418
|
+
const filterSensitiveLog: (obj: UpdateDataSetResponse) => any;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
export interface UpdateEventActionRequest {
|
|
1422
|
+
|
|
1423
|
+
Action?: Action;
|
|
1424
|
+
|
|
1425
|
+
EventActionId: string | undefined;
|
|
1426
|
+
}
|
|
1427
|
+
export declare namespace UpdateEventActionRequest {
|
|
1428
|
+
|
|
1429
|
+
const filterSensitiveLog: (obj: UpdateEventActionRequest) => any;
|
|
1430
|
+
}
|
|
1431
|
+
export interface UpdateEventActionResponse {
|
|
1432
|
+
|
|
1433
|
+
Action?: Action;
|
|
1434
|
+
|
|
1435
|
+
Arn?: string;
|
|
1436
|
+
|
|
1437
|
+
CreatedAt?: Date;
|
|
1438
|
+
|
|
1439
|
+
Event?: Event;
|
|
1440
|
+
|
|
1441
|
+
Id?: string;
|
|
1442
|
+
|
|
1443
|
+
UpdatedAt?: Date;
|
|
1444
|
+
}
|
|
1445
|
+
export declare namespace UpdateEventActionResponse {
|
|
1446
|
+
|
|
1447
|
+
const filterSensitiveLog: (obj: UpdateEventActionResponse) => any;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
export interface UpdateRevisionRequest {
|
|
1451
|
+
|
|
1452
|
+
Comment?: string;
|
|
1453
|
+
|
|
1454
|
+
DataSetId: string | undefined;
|
|
1455
|
+
|
|
1456
|
+
Finalized?: boolean;
|
|
1457
|
+
|
|
1458
|
+
RevisionId: string | undefined;
|
|
1459
|
+
}
|
|
1460
|
+
export declare namespace UpdateRevisionRequest {
|
|
1461
|
+
|
|
1462
|
+
const filterSensitiveLog: (obj: UpdateRevisionRequest) => any;
|
|
1463
|
+
}
|
|
1464
|
+
export interface UpdateRevisionResponse {
|
|
1465
|
+
|
|
1466
|
+
Arn?: string;
|
|
1467
|
+
|
|
1468
|
+
Comment?: string;
|
|
1469
|
+
|
|
1470
|
+
CreatedAt?: Date;
|
|
1471
|
+
|
|
1472
|
+
DataSetId?: string;
|
|
1473
|
+
|
|
1474
|
+
Finalized?: boolean;
|
|
1475
|
+
|
|
1476
|
+
Id?: string;
|
|
1477
|
+
|
|
1478
|
+
SourceId?: string;
|
|
1479
|
+
|
|
1480
|
+
UpdatedAt?: Date;
|
|
1481
|
+
}
|
|
1482
|
+
export declare namespace UpdateRevisionResponse {
|
|
1483
|
+
|
|
1484
|
+
const filterSensitiveLog: (obj: UpdateRevisionResponse) => any;
|
|
1485
|
+
}
|