@aws-sdk/client-dataexchange 3.321.1 → 3.326.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/commands/CancelJobCommand.d.ts +4 -0
- package/dist-types/commands/CreateDataSetCommand.d.ts +20 -0
- package/dist-types/commands/CreateEventActionCommand.d.ts +26 -0
- package/dist-types/commands/CreateJobCommand.d.ts +161 -0
- package/dist-types/commands/CreateRevisionCommand.d.ts +19 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDataSetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEventActionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRevisionCommand.d.ts +4 -0
- package/dist-types/commands/GetAssetCommand.d.ts +84 -0
- package/dist-types/commands/GetDataSetCommand.d.ts +20 -0
- package/dist-types/commands/GetEventActionCommand.d.ts +26 -0
- package/dist-types/commands/GetJobCommand.d.ts +161 -0
- package/dist-types/commands/GetRevisionCommand.d.ts +19 -0
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +21 -0
- package/dist-types/commands/ListDataSetsCommand.d.ts +22 -0
- package/dist-types/commands/ListEventActionsCommand.d.ts +31 -0
- package/dist-types/commands/ListJobsCommand.d.ts +166 -0
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +89 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/RevokeRevisionCommand.d.ts +16 -0
- package/dist-types/commands/SendApiAssetCommand.d.ts +9 -0
- package/dist-types/commands/StartJobCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +84 -0
- package/dist-types/commands/UpdateDataSetCommand.d.ts +17 -0
- package/dist-types/commands/UpdateEventActionCommand.d.ts +26 -0
- package/dist-types/commands/UpdateRevisionCommand.d.ts +16 -0
- package/package.json +16 -16
|
@@ -31,6 +31,8 @@ export interface CancelJobCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param CancelJobCommandInput - {@link CancelJobCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface CancelJobCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>The request was invalid.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link DataExchangeServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class CancelJobCommand extends $Command<CancelJobCommandInput, CancelJobCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -36,6 +36,24 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CreateDataSetCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CreateDataSetResponse
|
|
40
|
+
* // Arn: "STRING_VALUE",
|
|
41
|
+
* // AssetType: "STRING_VALUE",
|
|
42
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // Id: "STRING_VALUE",
|
|
45
|
+
* // Name: "STRING_VALUE",
|
|
46
|
+
* // Origin: "STRING_VALUE",
|
|
47
|
+
* // OriginDetails: { // OriginDetails
|
|
48
|
+
* // ProductId: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // SourceId: "STRING_VALUE",
|
|
51
|
+
* // Tags: { // MapOf__string
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
39
57
|
* ```
|
|
40
58
|
*
|
|
41
59
|
* @param CreateDataSetCommandInput - {@link CreateDataSetCommandInput}
|
|
@@ -59,6 +77,8 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met
|
|
|
59
77
|
* @throws {@link ValidationException} (client fault)
|
|
60
78
|
* <p>The request was invalid.</p>
|
|
61
79
|
*
|
|
80
|
+
* @throws {@link DataExchangeServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
62
82
|
*
|
|
63
83
|
*/
|
|
64
84
|
export declare class CreateDataSetCommand extends $Command<CreateDataSetCommandInput, CreateDataSetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -47,6 +47,30 @@ export interface CreateEventActionCommandOutput extends CreateEventActionRespons
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new CreateEventActionCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // CreateEventActionResponse
|
|
51
|
+
* // Action: { // Action
|
|
52
|
+
* // ExportRevisionToS3: { // AutoExportRevisionToS3RequestDetails
|
|
53
|
+
* // Encryption: { // ExportServerSideEncryption
|
|
54
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
55
|
+
* // Type: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // RevisionDestination: { // AutoExportRevisionDestinationEntry
|
|
58
|
+
* // Bucket: "STRING_VALUE", // required
|
|
59
|
+
* // KeyPattern: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
63
|
+
* // Arn: "STRING_VALUE",
|
|
64
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
65
|
+
* // Event: { // Event
|
|
66
|
+
* // RevisionPublished: { // RevisionPublished
|
|
67
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // Id: "STRING_VALUE",
|
|
71
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
50
74
|
* ```
|
|
51
75
|
*
|
|
52
76
|
* @param CreateEventActionCommandInput - {@link CreateEventActionCommandInput}
|
|
@@ -70,6 +94,8 @@ export interface CreateEventActionCommandOutput extends CreateEventActionRespons
|
|
|
70
94
|
* @throws {@link ValidationException} (client fault)
|
|
71
95
|
* <p>The request was invalid.</p>
|
|
72
96
|
*
|
|
97
|
+
* @throws {@link DataExchangeServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
73
99
|
*
|
|
74
100
|
*/
|
|
75
101
|
export declare class CreateEventActionCommand extends $Command<CreateEventActionCommandInput, CreateEventActionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -153,6 +153,165 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
153
153
|
* };
|
|
154
154
|
* const command = new CreateJobCommand(input);
|
|
155
155
|
* const response = await client.send(command);
|
|
156
|
+
* // { // CreateJobResponse
|
|
157
|
+
* // Arn: "STRING_VALUE",
|
|
158
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
159
|
+
* // Details: { // ResponseDetails
|
|
160
|
+
* // ExportAssetToSignedUrl: { // ExportAssetToSignedUrlResponseDetails
|
|
161
|
+
* // AssetId: "STRING_VALUE", // required
|
|
162
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
163
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
164
|
+
* // SignedUrl: "STRING_VALUE",
|
|
165
|
+
* // SignedUrlExpiresAt: new Date("TIMESTAMP"),
|
|
166
|
+
* // },
|
|
167
|
+
* // ExportAssetsToS3: { // ExportAssetsToS3ResponseDetails
|
|
168
|
+
* // AssetDestinations: [ // ListOfAssetDestinationEntry // required
|
|
169
|
+
* // { // AssetDestinationEntry
|
|
170
|
+
* // AssetId: "STRING_VALUE", // required
|
|
171
|
+
* // Bucket: "STRING_VALUE", // required
|
|
172
|
+
* // Key: "STRING_VALUE",
|
|
173
|
+
* // },
|
|
174
|
+
* // ],
|
|
175
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
176
|
+
* // Encryption: { // ExportServerSideEncryption
|
|
177
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
178
|
+
* // Type: "STRING_VALUE", // required
|
|
179
|
+
* // },
|
|
180
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
181
|
+
* // },
|
|
182
|
+
* // ExportRevisionsToS3: { // ExportRevisionsToS3ResponseDetails
|
|
183
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
184
|
+
* // Encryption: {
|
|
185
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
186
|
+
* // Type: "STRING_VALUE", // required
|
|
187
|
+
* // },
|
|
188
|
+
* // RevisionDestinations: [ // ListOfRevisionDestinationEntry // required
|
|
189
|
+
* // { // RevisionDestinationEntry
|
|
190
|
+
* // Bucket: "STRING_VALUE", // required
|
|
191
|
+
* // KeyPattern: "STRING_VALUE",
|
|
192
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
193
|
+
* // },
|
|
194
|
+
* // ],
|
|
195
|
+
* // EventActionArn: "STRING_VALUE",
|
|
196
|
+
* // },
|
|
197
|
+
* // ImportAssetFromSignedUrl: { // ImportAssetFromSignedUrlResponseDetails
|
|
198
|
+
* // AssetName: "STRING_VALUE", // required
|
|
199
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
200
|
+
* // Md5Hash: "STRING_VALUE",
|
|
201
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
202
|
+
* // SignedUrl: "STRING_VALUE",
|
|
203
|
+
* // SignedUrlExpiresAt: new Date("TIMESTAMP"),
|
|
204
|
+
* // },
|
|
205
|
+
* // ImportAssetsFromS3: { // ImportAssetsFromS3ResponseDetails
|
|
206
|
+
* // AssetSources: [ // ListOfAssetSourceEntry // required
|
|
207
|
+
* // { // AssetSourceEntry
|
|
208
|
+
* // Bucket: "STRING_VALUE", // required
|
|
209
|
+
* // Key: "STRING_VALUE", // required
|
|
210
|
+
* // },
|
|
211
|
+
* // ],
|
|
212
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
213
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
214
|
+
* // },
|
|
215
|
+
* // ImportAssetsFromRedshiftDataShares: { // ImportAssetsFromRedshiftDataSharesResponseDetails
|
|
216
|
+
* // AssetSources: [ // ListOfRedshiftDataShareAssetSourceEntry // required
|
|
217
|
+
* // { // RedshiftDataShareAssetSourceEntry
|
|
218
|
+
* // DataShareArn: "STRING_VALUE", // required
|
|
219
|
+
* // },
|
|
220
|
+
* // ],
|
|
221
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
222
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
223
|
+
* // },
|
|
224
|
+
* // ImportAssetFromApiGatewayApi: { // ImportAssetFromApiGatewayApiResponseDetails
|
|
225
|
+
* // ApiDescription: "STRING_VALUE",
|
|
226
|
+
* // ApiId: "STRING_VALUE", // required
|
|
227
|
+
* // ApiKey: "STRING_VALUE",
|
|
228
|
+
* // ApiName: "STRING_VALUE", // required
|
|
229
|
+
* // ApiSpecificationMd5Hash: "STRING_VALUE", // required
|
|
230
|
+
* // ApiSpecificationUploadUrl: "STRING_VALUE", // required
|
|
231
|
+
* // ApiSpecificationUploadUrlExpiresAt: new Date("TIMESTAMP"), // required
|
|
232
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
233
|
+
* // ProtocolType: "STRING_VALUE", // required
|
|
234
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
235
|
+
* // Stage: "STRING_VALUE", // required
|
|
236
|
+
* // },
|
|
237
|
+
* // CreateS3DataAccessFromS3Bucket: { // CreateS3DataAccessFromS3BucketResponseDetails
|
|
238
|
+
* // AssetSource: { // S3DataAccessAssetSourceEntry
|
|
239
|
+
* // Bucket: "STRING_VALUE", // required
|
|
240
|
+
* // KeyPrefixes: [ // ListOf__string
|
|
241
|
+
* // "STRING_VALUE",
|
|
242
|
+
* // ],
|
|
243
|
+
* // Keys: [
|
|
244
|
+
* // "STRING_VALUE",
|
|
245
|
+
* // ],
|
|
246
|
+
* // KmsKeysToGrant: [ // ListOfKmsKeysToGrant
|
|
247
|
+
* // { // KmsKeyToGrant
|
|
248
|
+
* // KmsKeyArn: "STRING_VALUE", // required
|
|
249
|
+
* // },
|
|
250
|
+
* // ],
|
|
251
|
+
* // },
|
|
252
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
253
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
254
|
+
* // },
|
|
255
|
+
* // ImportAssetsFromLakeFormationTagPolicy: { // ImportAssetsFromLakeFormationTagPolicyResponseDetails
|
|
256
|
+
* // CatalogId: "STRING_VALUE", // required
|
|
257
|
+
* // Database: { // DatabaseLFTagPolicyAndPermissions
|
|
258
|
+
* // Expression: [ // ListOfLFTags // required
|
|
259
|
+
* // { // LFTag
|
|
260
|
+
* // TagKey: "STRING_VALUE", // required
|
|
261
|
+
* // TagValues: [ // ListOfLFTagValues // required
|
|
262
|
+
* // "STRING_VALUE",
|
|
263
|
+
* // ],
|
|
264
|
+
* // },
|
|
265
|
+
* // ],
|
|
266
|
+
* // Permissions: [ // ListOfDatabaseLFTagPolicyPermissions // required
|
|
267
|
+
* // "STRING_VALUE",
|
|
268
|
+
* // ],
|
|
269
|
+
* // },
|
|
270
|
+
* // Table: { // TableLFTagPolicyAndPermissions
|
|
271
|
+
* // Expression: [ // required
|
|
272
|
+
* // {
|
|
273
|
+
* // TagKey: "STRING_VALUE", // required
|
|
274
|
+
* // TagValues: [ // required
|
|
275
|
+
* // "STRING_VALUE",
|
|
276
|
+
* // ],
|
|
277
|
+
* // },
|
|
278
|
+
* // ],
|
|
279
|
+
* // Permissions: [ // ListOfTableTagPolicyLFPermissions // required
|
|
280
|
+
* // "STRING_VALUE",
|
|
281
|
+
* // ],
|
|
282
|
+
* // },
|
|
283
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
284
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
285
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
286
|
+
* // },
|
|
287
|
+
* // },
|
|
288
|
+
* // Errors: [ // ListOfJobError
|
|
289
|
+
* // { // JobError
|
|
290
|
+
* // Code: "STRING_VALUE", // required
|
|
291
|
+
* // Details: { // Details
|
|
292
|
+
* // ImportAssetFromSignedUrlJobErrorDetails: { // ImportAssetFromSignedUrlJobErrorDetails
|
|
293
|
+
* // AssetName: "STRING_VALUE", // required
|
|
294
|
+
* // },
|
|
295
|
+
* // ImportAssetsFromS3JobErrorDetails: [
|
|
296
|
+
* // {
|
|
297
|
+
* // Bucket: "STRING_VALUE", // required
|
|
298
|
+
* // Key: "STRING_VALUE", // required
|
|
299
|
+
* // },
|
|
300
|
+
* // ],
|
|
301
|
+
* // },
|
|
302
|
+
* // LimitName: "STRING_VALUE",
|
|
303
|
+
* // LimitValue: Number("double"),
|
|
304
|
+
* // Message: "STRING_VALUE", // required
|
|
305
|
+
* // ResourceId: "STRING_VALUE",
|
|
306
|
+
* // ResourceType: "STRING_VALUE",
|
|
307
|
+
* // },
|
|
308
|
+
* // ],
|
|
309
|
+
* // Id: "STRING_VALUE",
|
|
310
|
+
* // State: "STRING_VALUE",
|
|
311
|
+
* // Type: "STRING_VALUE",
|
|
312
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
313
|
+
* // };
|
|
314
|
+
*
|
|
156
315
|
* ```
|
|
157
316
|
*
|
|
158
317
|
* @param CreateJobCommandInput - {@link CreateJobCommandInput}
|
|
@@ -179,6 +338,8 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
179
338
|
* @throws {@link ValidationException} (client fault)
|
|
180
339
|
* <p>The request was invalid.</p>
|
|
181
340
|
*
|
|
341
|
+
* @throws {@link DataExchangeServiceException}
|
|
342
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
182
343
|
*
|
|
183
344
|
*/
|
|
184
345
|
export declare class CreateJobCommand extends $Command<CreateJobCommandInput, CreateJobCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -35,6 +35,23 @@ export interface CreateRevisionCommandOutput extends CreateRevisionResponse, __M
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateRevisionCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateRevisionResponse
|
|
39
|
+
* // Arn: "STRING_VALUE",
|
|
40
|
+
* // Comment: "STRING_VALUE",
|
|
41
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
42
|
+
* // DataSetId: "STRING_VALUE",
|
|
43
|
+
* // Finalized: true || false,
|
|
44
|
+
* // Id: "STRING_VALUE",
|
|
45
|
+
* // SourceId: "STRING_VALUE",
|
|
46
|
+
* // Tags: { // MapOf__string
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // RevocationComment: "STRING_VALUE",
|
|
51
|
+
* // Revoked: true || false,
|
|
52
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
38
55
|
* ```
|
|
39
56
|
*
|
|
40
57
|
* @param CreateRevisionCommandInput - {@link CreateRevisionCommandInput}
|
|
@@ -58,6 +75,8 @@ export interface CreateRevisionCommandOutput extends CreateRevisionResponse, __M
|
|
|
58
75
|
* @throws {@link ValidationException} (client fault)
|
|
59
76
|
* <p>The request was invalid.</p>
|
|
60
77
|
*
|
|
78
|
+
* @throws {@link DataExchangeServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
61
80
|
*
|
|
62
81
|
*/
|
|
63
82
|
export declare class CreateRevisionCommand extends $Command<CreateRevisionCommandInput, CreateRevisionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteAssetCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteAssetCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteAssetCommandInput - {@link DeleteAssetCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface DeleteAssetCommandOutput extends __MetadataBearer {
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* <p>The request was invalid.</p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link DataExchangeServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class DeleteAssetCommand extends $Command<DeleteAssetCommandInput, DeleteAssetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteDataSetCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteDataSetCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteDataSetCommandInput - {@link DeleteDataSetCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteDataSetCommandOutput extends __MetadataBearer {
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>The request was invalid.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link DataExchangeServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteDataSetCommand extends $Command<DeleteDataSetCommandInput, DeleteDataSetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteEventActionCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteEventActionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteEventActionCommandInput - {@link DeleteEventActionCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface DeleteEventActionCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>The request was invalid.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link DataExchangeServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class DeleteEventActionCommand extends $Command<DeleteEventActionCommandInput, DeleteEventActionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteRevisionCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteRevisionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteRevisionCommandInput - {@link DeleteRevisionCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DeleteRevisionCommandOutput extends __MetadataBearer {
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p>The request was invalid.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link DataExchangeServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DeleteRevisionCommand extends $Command<DeleteRevisionCommandInput, DeleteRevisionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -33,6 +33,88 @@ export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBeare
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetAssetCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetAssetResponse
|
|
37
|
+
* // Arn: "STRING_VALUE",
|
|
38
|
+
* // AssetDetails: { // AssetDetails
|
|
39
|
+
* // S3SnapshotAsset: { // S3SnapshotAsset
|
|
40
|
+
* // Size: Number("double"), // required
|
|
41
|
+
* // },
|
|
42
|
+
* // RedshiftDataShareAsset: { // RedshiftDataShareAsset
|
|
43
|
+
* // Arn: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ApiGatewayApiAsset: { // ApiGatewayApiAsset
|
|
46
|
+
* // ApiDescription: "STRING_VALUE",
|
|
47
|
+
* // ApiEndpoint: "STRING_VALUE",
|
|
48
|
+
* // ApiId: "STRING_VALUE",
|
|
49
|
+
* // ApiKey: "STRING_VALUE",
|
|
50
|
+
* // ApiName: "STRING_VALUE",
|
|
51
|
+
* // ApiSpecificationDownloadUrl: "STRING_VALUE",
|
|
52
|
+
* // ApiSpecificationDownloadUrlExpiresAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // ProtocolType: "STRING_VALUE",
|
|
54
|
+
* // Stage: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // S3DataAccessAsset: { // S3DataAccessAsset
|
|
57
|
+
* // Bucket: "STRING_VALUE", // required
|
|
58
|
+
* // KeyPrefixes: [ // ListOf__string
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
61
|
+
* // Keys: [
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // S3AccessPointAlias: "STRING_VALUE",
|
|
65
|
+
* // S3AccessPointArn: "STRING_VALUE",
|
|
66
|
+
* // KmsKeysToGrant: [ // ListOfKmsKeysToGrant
|
|
67
|
+
* // { // KmsKeyToGrant
|
|
68
|
+
* // KmsKeyArn: "STRING_VALUE", // required
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // LakeFormationDataPermissionAsset: { // LakeFormationDataPermissionAsset
|
|
73
|
+
* // LakeFormationDataPermissionDetails: { // LakeFormationDataPermissionDetails
|
|
74
|
+
* // LFTagPolicy: { // LFTagPolicyDetails
|
|
75
|
+
* // CatalogId: "STRING_VALUE", // required
|
|
76
|
+
* // ResourceType: "STRING_VALUE", // required
|
|
77
|
+
* // ResourceDetails: { // LFResourceDetails
|
|
78
|
+
* // Database: { // DatabaseLFTagPolicy
|
|
79
|
+
* // Expression: [ // ListOfLFTags // required
|
|
80
|
+
* // { // LFTag
|
|
81
|
+
* // TagKey: "STRING_VALUE", // required
|
|
82
|
+
* // TagValues: [ // ListOfLFTagValues // required
|
|
83
|
+
* // "STRING_VALUE",
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // },
|
|
88
|
+
* // Table: { // TableLFTagPolicy
|
|
89
|
+
* // Expression: [ // required
|
|
90
|
+
* // {
|
|
91
|
+
* // TagKey: "STRING_VALUE", // required
|
|
92
|
+
* // TagValues: [ // required
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // },
|
|
98
|
+
* // },
|
|
99
|
+
* // },
|
|
100
|
+
* // },
|
|
101
|
+
* // LakeFormationDataPermissionType: "STRING_VALUE", // required
|
|
102
|
+
* // Permissions: [ // ListOfLFPermissions // required
|
|
103
|
+
* // "STRING_VALUE",
|
|
104
|
+
* // ],
|
|
105
|
+
* // RoleArn: "STRING_VALUE",
|
|
106
|
+
* // },
|
|
107
|
+
* // },
|
|
108
|
+
* // AssetType: "STRING_VALUE",
|
|
109
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
110
|
+
* // DataSetId: "STRING_VALUE",
|
|
111
|
+
* // Id: "STRING_VALUE",
|
|
112
|
+
* // Name: "STRING_VALUE",
|
|
113
|
+
* // RevisionId: "STRING_VALUE",
|
|
114
|
+
* // SourceId: "STRING_VALUE",
|
|
115
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
116
|
+
* // };
|
|
117
|
+
*
|
|
36
118
|
* ```
|
|
37
119
|
*
|
|
38
120
|
* @param GetAssetCommandInput - {@link GetAssetCommandInput}
|
|
@@ -53,6 +135,8 @@ export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBeare
|
|
|
53
135
|
* @throws {@link ValidationException} (client fault)
|
|
54
136
|
* <p>The request was invalid.</p>
|
|
55
137
|
*
|
|
138
|
+
* @throws {@link DataExchangeServiceException}
|
|
139
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
56
140
|
*
|
|
57
141
|
*/
|
|
58
142
|
export declare class GetAssetCommand extends $Command<GetAssetCommandInput, GetAssetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -31,6 +31,24 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDataSetCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetDataSetResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // AssetType: "STRING_VALUE",
|
|
37
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
38
|
+
* // Description: "STRING_VALUE",
|
|
39
|
+
* // Id: "STRING_VALUE",
|
|
40
|
+
* // Name: "STRING_VALUE",
|
|
41
|
+
* // Origin: "STRING_VALUE",
|
|
42
|
+
* // OriginDetails: { // OriginDetails
|
|
43
|
+
* // ProductId: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // SourceId: "STRING_VALUE",
|
|
46
|
+
* // Tags: { // MapOf__string
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
34
52
|
* ```
|
|
35
53
|
*
|
|
36
54
|
* @param GetDataSetCommandInput - {@link GetDataSetCommandInput}
|
|
@@ -51,6 +69,8 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB
|
|
|
51
69
|
* @throws {@link ValidationException} (client fault)
|
|
52
70
|
* <p>The request was invalid.</p>
|
|
53
71
|
*
|
|
72
|
+
* @throws {@link DataExchangeServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
54
74
|
*
|
|
55
75
|
*/
|
|
56
76
|
export declare class GetDataSetCommand extends $Command<GetDataSetCommandInput, GetDataSetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -31,6 +31,30 @@ export interface GetEventActionCommandOutput extends GetEventActionResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetEventActionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetEventActionResponse
|
|
35
|
+
* // Action: { // Action
|
|
36
|
+
* // ExportRevisionToS3: { // AutoExportRevisionToS3RequestDetails
|
|
37
|
+
* // Encryption: { // ExportServerSideEncryption
|
|
38
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
39
|
+
* // Type: "STRING_VALUE", // required
|
|
40
|
+
* // },
|
|
41
|
+
* // RevisionDestination: { // AutoExportRevisionDestinationEntry
|
|
42
|
+
* // Bucket: "STRING_VALUE", // required
|
|
43
|
+
* // KeyPattern: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // },
|
|
47
|
+
* // Arn: "STRING_VALUE",
|
|
48
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // Event: { // Event
|
|
50
|
+
* // RevisionPublished: { // RevisionPublished
|
|
51
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // Id: "STRING_VALUE",
|
|
55
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
34
58
|
* ```
|
|
35
59
|
*
|
|
36
60
|
* @param GetEventActionCommandInput - {@link GetEventActionCommandInput}
|
|
@@ -51,6 +75,8 @@ export interface GetEventActionCommandOutput extends GetEventActionResponse, __M
|
|
|
51
75
|
* @throws {@link ValidationException} (client fault)
|
|
52
76
|
* <p>The request was invalid.</p>
|
|
53
77
|
*
|
|
78
|
+
* @throws {@link DataExchangeServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
54
80
|
*
|
|
55
81
|
*/
|
|
56
82
|
export declare class GetEventActionCommand extends $Command<GetEventActionCommandInput, GetEventActionCommandOutput, DataExchangeClientResolvedConfig> {
|