@aws-sdk/client-dataexchange 3.325.0 → 3.327.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 +7 -7
|
@@ -31,6 +31,165 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetJobResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
37
|
+
* // Details: { // ResponseDetails
|
|
38
|
+
* // ExportAssetToSignedUrl: { // ExportAssetToSignedUrlResponseDetails
|
|
39
|
+
* // AssetId: "STRING_VALUE", // required
|
|
40
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
41
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
42
|
+
* // SignedUrl: "STRING_VALUE",
|
|
43
|
+
* // SignedUrlExpiresAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // },
|
|
45
|
+
* // ExportAssetsToS3: { // ExportAssetsToS3ResponseDetails
|
|
46
|
+
* // AssetDestinations: [ // ListOfAssetDestinationEntry // required
|
|
47
|
+
* // { // AssetDestinationEntry
|
|
48
|
+
* // AssetId: "STRING_VALUE", // required
|
|
49
|
+
* // Bucket: "STRING_VALUE", // required
|
|
50
|
+
* // Key: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
54
|
+
* // Encryption: { // ExportServerSideEncryption
|
|
55
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
56
|
+
* // Type: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
59
|
+
* // },
|
|
60
|
+
* // ExportRevisionsToS3: { // ExportRevisionsToS3ResponseDetails
|
|
61
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
62
|
+
* // Encryption: {
|
|
63
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
64
|
+
* // Type: "STRING_VALUE", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // RevisionDestinations: [ // ListOfRevisionDestinationEntry // required
|
|
67
|
+
* // { // RevisionDestinationEntry
|
|
68
|
+
* // Bucket: "STRING_VALUE", // required
|
|
69
|
+
* // KeyPattern: "STRING_VALUE",
|
|
70
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // EventActionArn: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // ImportAssetFromSignedUrl: { // ImportAssetFromSignedUrlResponseDetails
|
|
76
|
+
* // AssetName: "STRING_VALUE", // required
|
|
77
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
78
|
+
* // Md5Hash: "STRING_VALUE",
|
|
79
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
80
|
+
* // SignedUrl: "STRING_VALUE",
|
|
81
|
+
* // SignedUrlExpiresAt: new Date("TIMESTAMP"),
|
|
82
|
+
* // },
|
|
83
|
+
* // ImportAssetsFromS3: { // ImportAssetsFromS3ResponseDetails
|
|
84
|
+
* // AssetSources: [ // ListOfAssetSourceEntry // required
|
|
85
|
+
* // { // AssetSourceEntry
|
|
86
|
+
* // Bucket: "STRING_VALUE", // required
|
|
87
|
+
* // Key: "STRING_VALUE", // required
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
91
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
92
|
+
* // },
|
|
93
|
+
* // ImportAssetsFromRedshiftDataShares: { // ImportAssetsFromRedshiftDataSharesResponseDetails
|
|
94
|
+
* // AssetSources: [ // ListOfRedshiftDataShareAssetSourceEntry // required
|
|
95
|
+
* // { // RedshiftDataShareAssetSourceEntry
|
|
96
|
+
* // DataShareArn: "STRING_VALUE", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
100
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
101
|
+
* // },
|
|
102
|
+
* // ImportAssetFromApiGatewayApi: { // ImportAssetFromApiGatewayApiResponseDetails
|
|
103
|
+
* // ApiDescription: "STRING_VALUE",
|
|
104
|
+
* // ApiId: "STRING_VALUE", // required
|
|
105
|
+
* // ApiKey: "STRING_VALUE",
|
|
106
|
+
* // ApiName: "STRING_VALUE", // required
|
|
107
|
+
* // ApiSpecificationMd5Hash: "STRING_VALUE", // required
|
|
108
|
+
* // ApiSpecificationUploadUrl: "STRING_VALUE", // required
|
|
109
|
+
* // ApiSpecificationUploadUrlExpiresAt: new Date("TIMESTAMP"), // required
|
|
110
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
111
|
+
* // ProtocolType: "STRING_VALUE", // required
|
|
112
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
113
|
+
* // Stage: "STRING_VALUE", // required
|
|
114
|
+
* // },
|
|
115
|
+
* // CreateS3DataAccessFromS3Bucket: { // CreateS3DataAccessFromS3BucketResponseDetails
|
|
116
|
+
* // AssetSource: { // S3DataAccessAssetSourceEntry
|
|
117
|
+
* // Bucket: "STRING_VALUE", // required
|
|
118
|
+
* // KeyPrefixes: [ // ListOf__string
|
|
119
|
+
* // "STRING_VALUE",
|
|
120
|
+
* // ],
|
|
121
|
+
* // Keys: [
|
|
122
|
+
* // "STRING_VALUE",
|
|
123
|
+
* // ],
|
|
124
|
+
* // KmsKeysToGrant: [ // ListOfKmsKeysToGrant
|
|
125
|
+
* // { // KmsKeyToGrant
|
|
126
|
+
* // KmsKeyArn: "STRING_VALUE", // required
|
|
127
|
+
* // },
|
|
128
|
+
* // ],
|
|
129
|
+
* // },
|
|
130
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
131
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
132
|
+
* // },
|
|
133
|
+
* // ImportAssetsFromLakeFormationTagPolicy: { // ImportAssetsFromLakeFormationTagPolicyResponseDetails
|
|
134
|
+
* // CatalogId: "STRING_VALUE", // required
|
|
135
|
+
* // Database: { // DatabaseLFTagPolicyAndPermissions
|
|
136
|
+
* // Expression: [ // ListOfLFTags // required
|
|
137
|
+
* // { // LFTag
|
|
138
|
+
* // TagKey: "STRING_VALUE", // required
|
|
139
|
+
* // TagValues: [ // ListOfLFTagValues // required
|
|
140
|
+
* // "STRING_VALUE",
|
|
141
|
+
* // ],
|
|
142
|
+
* // },
|
|
143
|
+
* // ],
|
|
144
|
+
* // Permissions: [ // ListOfDatabaseLFTagPolicyPermissions // required
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
148
|
+
* // Table: { // TableLFTagPolicyAndPermissions
|
|
149
|
+
* // Expression: [ // required
|
|
150
|
+
* // {
|
|
151
|
+
* // TagKey: "STRING_VALUE", // required
|
|
152
|
+
* // TagValues: [ // required
|
|
153
|
+
* // "STRING_VALUE",
|
|
154
|
+
* // ],
|
|
155
|
+
* // },
|
|
156
|
+
* // ],
|
|
157
|
+
* // Permissions: [ // ListOfTableTagPolicyLFPermissions // required
|
|
158
|
+
* // "STRING_VALUE",
|
|
159
|
+
* // ],
|
|
160
|
+
* // },
|
|
161
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
162
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
163
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
164
|
+
* // },
|
|
165
|
+
* // },
|
|
166
|
+
* // Errors: [ // ListOfJobError
|
|
167
|
+
* // { // JobError
|
|
168
|
+
* // Code: "STRING_VALUE", // required
|
|
169
|
+
* // Details: { // Details
|
|
170
|
+
* // ImportAssetFromSignedUrlJobErrorDetails: { // ImportAssetFromSignedUrlJobErrorDetails
|
|
171
|
+
* // AssetName: "STRING_VALUE", // required
|
|
172
|
+
* // },
|
|
173
|
+
* // ImportAssetsFromS3JobErrorDetails: [
|
|
174
|
+
* // {
|
|
175
|
+
* // Bucket: "STRING_VALUE", // required
|
|
176
|
+
* // Key: "STRING_VALUE", // required
|
|
177
|
+
* // },
|
|
178
|
+
* // ],
|
|
179
|
+
* // },
|
|
180
|
+
* // LimitName: "STRING_VALUE",
|
|
181
|
+
* // LimitValue: Number("double"),
|
|
182
|
+
* // Message: "STRING_VALUE", // required
|
|
183
|
+
* // ResourceId: "STRING_VALUE",
|
|
184
|
+
* // ResourceType: "STRING_VALUE",
|
|
185
|
+
* // },
|
|
186
|
+
* // ],
|
|
187
|
+
* // Id: "STRING_VALUE",
|
|
188
|
+
* // State: "STRING_VALUE",
|
|
189
|
+
* // Type: "STRING_VALUE",
|
|
190
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
191
|
+
* // };
|
|
192
|
+
*
|
|
34
193
|
* ```
|
|
35
194
|
*
|
|
36
195
|
* @param GetJobCommandInput - {@link GetJobCommandInput}
|
|
@@ -51,6 +210,8 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
|
51
210
|
* @throws {@link ValidationException} (client fault)
|
|
52
211
|
* <p>The request was invalid.</p>
|
|
53
212
|
*
|
|
213
|
+
* @throws {@link DataExchangeServiceException}
|
|
214
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
54
215
|
*
|
|
55
216
|
*/
|
|
56
217
|
export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetRevisionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetRevisionResponse
|
|
36
|
+
* // Arn: "STRING_VALUE",
|
|
37
|
+
* // Comment: "STRING_VALUE",
|
|
38
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
39
|
+
* // DataSetId: "STRING_VALUE",
|
|
40
|
+
* // Finalized: true || false,
|
|
41
|
+
* // Id: "STRING_VALUE",
|
|
42
|
+
* // SourceId: "STRING_VALUE",
|
|
43
|
+
* // Tags: { // MapOf__string
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // RevocationComment: "STRING_VALUE",
|
|
48
|
+
* // Revoked: true || false,
|
|
49
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param GetRevisionCommandInput - {@link GetRevisionCommandInput}
|
|
@@ -52,6 +69,8 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat
|
|
|
52
69
|
* @throws {@link ValidationException} (client fault)
|
|
53
70
|
* <p>The request was invalid.</p>
|
|
54
71
|
*
|
|
72
|
+
* @throws {@link DataExchangeServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
55
74
|
*
|
|
56
75
|
*/
|
|
57
76
|
export declare class GetRevisionCommand extends $Command<GetRevisionCommandInput, GetRevisionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsR
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListDataSetRevisionsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListDataSetRevisionsResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // Revisions: [ // ListOfRevisionEntry
|
|
39
|
+
* // { // RevisionEntry
|
|
40
|
+
* // Arn: "STRING_VALUE", // required
|
|
41
|
+
* // Comment: "STRING_VALUE",
|
|
42
|
+
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
44
|
+
* // Finalized: true || false,
|
|
45
|
+
* // Id: "STRING_VALUE", // required
|
|
46
|
+
* // SourceId: "STRING_VALUE",
|
|
47
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // RevocationComment: "STRING_VALUE",
|
|
49
|
+
* // Revoked: true || false,
|
|
50
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param ListDataSetRevisionsCommandInput - {@link ListDataSetRevisionsCommandInput}
|
|
@@ -53,6 +72,8 @@ export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsR
|
|
|
53
72
|
* @throws {@link ValidationException} (client fault)
|
|
54
73
|
* <p>The request was invalid.</p>
|
|
55
74
|
*
|
|
75
|
+
* @throws {@link DataExchangeServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
56
77
|
*
|
|
57
78
|
*/
|
|
58
79
|
export declare class ListDataSetRevisionsCommand extends $Command<ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -33,6 +33,26 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListDataSetsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListDataSetsResponse
|
|
37
|
+
* // DataSets: [ // ListOfDataSetEntry
|
|
38
|
+
* // { // DataSetEntry
|
|
39
|
+
* // Arn: "STRING_VALUE", // required
|
|
40
|
+
* // AssetType: "STRING_VALUE", // required
|
|
41
|
+
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // Description: "STRING_VALUE", // required
|
|
43
|
+
* // Id: "STRING_VALUE", // required
|
|
44
|
+
* // Name: "STRING_VALUE", // required
|
|
45
|
+
* // Origin: "STRING_VALUE", // required
|
|
46
|
+
* // OriginDetails: { // OriginDetails
|
|
47
|
+
* // ProductId: "STRING_VALUE", // required
|
|
48
|
+
* // },
|
|
49
|
+
* // SourceId: "STRING_VALUE",
|
|
50
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
36
56
|
* ```
|
|
37
57
|
*
|
|
38
58
|
* @param ListDataSetsCommandInput - {@link ListDataSetsCommandInput}
|
|
@@ -53,6 +73,8 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
|
|
|
53
73
|
* @throws {@link ValidationException} (client fault)
|
|
54
74
|
* <p>The request was invalid.</p>
|
|
55
75
|
*
|
|
76
|
+
* @throws {@link DataExchangeServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
56
78
|
*
|
|
57
79
|
*/
|
|
58
80
|
export declare class ListDataSetsCommand extends $Command<ListDataSetsCommandInput, ListDataSetsCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -33,6 +33,35 @@ export interface ListEventActionsCommandOutput extends ListEventActionsResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListEventActionsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListEventActionsResponse
|
|
37
|
+
* // EventActions: [ // ListOfEventActionEntry
|
|
38
|
+
* // { // EventActionEntry
|
|
39
|
+
* // Action: { // Action
|
|
40
|
+
* // ExportRevisionToS3: { // AutoExportRevisionToS3RequestDetails
|
|
41
|
+
* // Encryption: { // ExportServerSideEncryption
|
|
42
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
43
|
+
* // Type: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // RevisionDestination: { // AutoExportRevisionDestinationEntry
|
|
46
|
+
* // Bucket: "STRING_VALUE", // required
|
|
47
|
+
* // KeyPattern: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // Arn: "STRING_VALUE", // required
|
|
52
|
+
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // Event: { // Event
|
|
54
|
+
* // RevisionPublished: { // RevisionPublished
|
|
55
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // Id: "STRING_VALUE", // required
|
|
59
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // NextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
36
65
|
* ```
|
|
37
66
|
*
|
|
38
67
|
* @param ListEventActionsCommandInput - {@link ListEventActionsCommandInput}
|
|
@@ -53,6 +82,8 @@ export interface ListEventActionsCommandOutput extends ListEventActionsResponse,
|
|
|
53
82
|
* @throws {@link ValidationException} (client fault)
|
|
54
83
|
* <p>The request was invalid.</p>
|
|
55
84
|
*
|
|
85
|
+
* @throws {@link DataExchangeServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
56
87
|
*
|
|
57
88
|
*/
|
|
58
89
|
export declare class ListEventActionsCommand extends $Command<ListEventActionsCommandInput, ListEventActionsCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -34,6 +34,170 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListJobsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListJobsResponse
|
|
38
|
+
* // Jobs: [ // ListOfJobEntry
|
|
39
|
+
* // { // JobEntry
|
|
40
|
+
* // Arn: "STRING_VALUE", // required
|
|
41
|
+
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // Details: { // ResponseDetails
|
|
43
|
+
* // ExportAssetToSignedUrl: { // ExportAssetToSignedUrlResponseDetails
|
|
44
|
+
* // AssetId: "STRING_VALUE", // required
|
|
45
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
46
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
47
|
+
* // SignedUrl: "STRING_VALUE",
|
|
48
|
+
* // SignedUrlExpiresAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // },
|
|
50
|
+
* // ExportAssetsToS3: { // ExportAssetsToS3ResponseDetails
|
|
51
|
+
* // AssetDestinations: [ // ListOfAssetDestinationEntry // required
|
|
52
|
+
* // { // AssetDestinationEntry
|
|
53
|
+
* // AssetId: "STRING_VALUE", // required
|
|
54
|
+
* // Bucket: "STRING_VALUE", // required
|
|
55
|
+
* // Key: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
59
|
+
* // Encryption: { // ExportServerSideEncryption
|
|
60
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
61
|
+
* // Type: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
64
|
+
* // },
|
|
65
|
+
* // ExportRevisionsToS3: { // ExportRevisionsToS3ResponseDetails
|
|
66
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
67
|
+
* // Encryption: {
|
|
68
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
69
|
+
* // Type: "STRING_VALUE", // required
|
|
70
|
+
* // },
|
|
71
|
+
* // RevisionDestinations: [ // ListOfRevisionDestinationEntry // required
|
|
72
|
+
* // { // RevisionDestinationEntry
|
|
73
|
+
* // Bucket: "STRING_VALUE", // required
|
|
74
|
+
* // KeyPattern: "STRING_VALUE",
|
|
75
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // EventActionArn: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // ImportAssetFromSignedUrl: { // ImportAssetFromSignedUrlResponseDetails
|
|
81
|
+
* // AssetName: "STRING_VALUE", // required
|
|
82
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
83
|
+
* // Md5Hash: "STRING_VALUE",
|
|
84
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
85
|
+
* // SignedUrl: "STRING_VALUE",
|
|
86
|
+
* // SignedUrlExpiresAt: new Date("TIMESTAMP"),
|
|
87
|
+
* // },
|
|
88
|
+
* // ImportAssetsFromS3: { // ImportAssetsFromS3ResponseDetails
|
|
89
|
+
* // AssetSources: [ // ListOfAssetSourceEntry // required
|
|
90
|
+
* // { // AssetSourceEntry
|
|
91
|
+
* // Bucket: "STRING_VALUE", // required
|
|
92
|
+
* // Key: "STRING_VALUE", // required
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
96
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // ImportAssetsFromRedshiftDataShares: { // ImportAssetsFromRedshiftDataSharesResponseDetails
|
|
99
|
+
* // AssetSources: [ // ListOfRedshiftDataShareAssetSourceEntry // required
|
|
100
|
+
* // { // RedshiftDataShareAssetSourceEntry
|
|
101
|
+
* // DataShareArn: "STRING_VALUE", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
104
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
105
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
106
|
+
* // },
|
|
107
|
+
* // ImportAssetFromApiGatewayApi: { // ImportAssetFromApiGatewayApiResponseDetails
|
|
108
|
+
* // ApiDescription: "STRING_VALUE",
|
|
109
|
+
* // ApiId: "STRING_VALUE", // required
|
|
110
|
+
* // ApiKey: "STRING_VALUE",
|
|
111
|
+
* // ApiName: "STRING_VALUE", // required
|
|
112
|
+
* // ApiSpecificationMd5Hash: "STRING_VALUE", // required
|
|
113
|
+
* // ApiSpecificationUploadUrl: "STRING_VALUE", // required
|
|
114
|
+
* // ApiSpecificationUploadUrlExpiresAt: new Date("TIMESTAMP"), // required
|
|
115
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
116
|
+
* // ProtocolType: "STRING_VALUE", // required
|
|
117
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
118
|
+
* // Stage: "STRING_VALUE", // required
|
|
119
|
+
* // },
|
|
120
|
+
* // CreateS3DataAccessFromS3Bucket: { // CreateS3DataAccessFromS3BucketResponseDetails
|
|
121
|
+
* // AssetSource: { // S3DataAccessAssetSourceEntry
|
|
122
|
+
* // Bucket: "STRING_VALUE", // required
|
|
123
|
+
* // KeyPrefixes: [ // ListOf__string
|
|
124
|
+
* // "STRING_VALUE",
|
|
125
|
+
* // ],
|
|
126
|
+
* // Keys: [
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // KmsKeysToGrant: [ // ListOfKmsKeysToGrant
|
|
130
|
+
* // { // KmsKeyToGrant
|
|
131
|
+
* // KmsKeyArn: "STRING_VALUE", // required
|
|
132
|
+
* // },
|
|
133
|
+
* // ],
|
|
134
|
+
* // },
|
|
135
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
136
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
137
|
+
* // },
|
|
138
|
+
* // ImportAssetsFromLakeFormationTagPolicy: { // ImportAssetsFromLakeFormationTagPolicyResponseDetails
|
|
139
|
+
* // CatalogId: "STRING_VALUE", // required
|
|
140
|
+
* // Database: { // DatabaseLFTagPolicyAndPermissions
|
|
141
|
+
* // Expression: [ // ListOfLFTags // required
|
|
142
|
+
* // { // LFTag
|
|
143
|
+
* // TagKey: "STRING_VALUE", // required
|
|
144
|
+
* // TagValues: [ // ListOfLFTagValues // required
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // Permissions: [ // ListOfDatabaseLFTagPolicyPermissions // required
|
|
150
|
+
* // "STRING_VALUE",
|
|
151
|
+
* // ],
|
|
152
|
+
* // },
|
|
153
|
+
* // Table: { // TableLFTagPolicyAndPermissions
|
|
154
|
+
* // Expression: [ // required
|
|
155
|
+
* // {
|
|
156
|
+
* // TagKey: "STRING_VALUE", // required
|
|
157
|
+
* // TagValues: [ // required
|
|
158
|
+
* // "STRING_VALUE",
|
|
159
|
+
* // ],
|
|
160
|
+
* // },
|
|
161
|
+
* // ],
|
|
162
|
+
* // Permissions: [ // ListOfTableTagPolicyLFPermissions // required
|
|
163
|
+
* // "STRING_VALUE",
|
|
164
|
+
* // ],
|
|
165
|
+
* // },
|
|
166
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
167
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
168
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
169
|
+
* // },
|
|
170
|
+
* // },
|
|
171
|
+
* // Errors: [ // ListOfJobError
|
|
172
|
+
* // { // JobError
|
|
173
|
+
* // Code: "STRING_VALUE", // required
|
|
174
|
+
* // Details: { // Details
|
|
175
|
+
* // ImportAssetFromSignedUrlJobErrorDetails: { // ImportAssetFromSignedUrlJobErrorDetails
|
|
176
|
+
* // AssetName: "STRING_VALUE", // required
|
|
177
|
+
* // },
|
|
178
|
+
* // ImportAssetsFromS3JobErrorDetails: [
|
|
179
|
+
* // {
|
|
180
|
+
* // Bucket: "STRING_VALUE", // required
|
|
181
|
+
* // Key: "STRING_VALUE", // required
|
|
182
|
+
* // },
|
|
183
|
+
* // ],
|
|
184
|
+
* // },
|
|
185
|
+
* // LimitName: "STRING_VALUE",
|
|
186
|
+
* // LimitValue: Number("double"),
|
|
187
|
+
* // Message: "STRING_VALUE", // required
|
|
188
|
+
* // ResourceId: "STRING_VALUE",
|
|
189
|
+
* // ResourceType: "STRING_VALUE",
|
|
190
|
+
* // },
|
|
191
|
+
* // ],
|
|
192
|
+
* // Id: "STRING_VALUE", // required
|
|
193
|
+
* // State: "STRING_VALUE", // required
|
|
194
|
+
* // Type: "STRING_VALUE", // required
|
|
195
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
196
|
+
* // },
|
|
197
|
+
* // ],
|
|
198
|
+
* // NextToken: "STRING_VALUE",
|
|
199
|
+
* // };
|
|
200
|
+
*
|
|
37
201
|
* ```
|
|
38
202
|
*
|
|
39
203
|
* @param ListJobsCommandInput - {@link ListJobsCommandInput}
|
|
@@ -54,6 +218,8 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
54
218
|
* @throws {@link ValidationException} (client fault)
|
|
55
219
|
* <p>The request was invalid.</p>
|
|
56
220
|
*
|
|
221
|
+
* @throws {@link DataExchangeServiceException}
|
|
222
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
57
223
|
*
|
|
58
224
|
*/
|
|
59
225
|
export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -34,6 +34,93 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListRevisionAssetsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListRevisionAssetsResponse
|
|
38
|
+
* // Assets: [ // ListOfAssetEntry
|
|
39
|
+
* // { // AssetEntry
|
|
40
|
+
* // Arn: "STRING_VALUE", // required
|
|
41
|
+
* // AssetDetails: { // AssetDetails
|
|
42
|
+
* // S3SnapshotAsset: { // S3SnapshotAsset
|
|
43
|
+
* // Size: Number("double"), // required
|
|
44
|
+
* // },
|
|
45
|
+
* // RedshiftDataShareAsset: { // RedshiftDataShareAsset
|
|
46
|
+
* // Arn: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ApiGatewayApiAsset: { // ApiGatewayApiAsset
|
|
49
|
+
* // ApiDescription: "STRING_VALUE",
|
|
50
|
+
* // ApiEndpoint: "STRING_VALUE",
|
|
51
|
+
* // ApiId: "STRING_VALUE",
|
|
52
|
+
* // ApiKey: "STRING_VALUE",
|
|
53
|
+
* // ApiName: "STRING_VALUE",
|
|
54
|
+
* // ApiSpecificationDownloadUrl: "STRING_VALUE",
|
|
55
|
+
* // ApiSpecificationDownloadUrlExpiresAt: new Date("TIMESTAMP"),
|
|
56
|
+
* // ProtocolType: "STRING_VALUE",
|
|
57
|
+
* // Stage: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // S3DataAccessAsset: { // S3DataAccessAsset
|
|
60
|
+
* // Bucket: "STRING_VALUE", // required
|
|
61
|
+
* // KeyPrefixes: [ // ListOf__string
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // Keys: [
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // S3AccessPointAlias: "STRING_VALUE",
|
|
68
|
+
* // S3AccessPointArn: "STRING_VALUE",
|
|
69
|
+
* // KmsKeysToGrant: [ // ListOfKmsKeysToGrant
|
|
70
|
+
* // { // KmsKeyToGrant
|
|
71
|
+
* // KmsKeyArn: "STRING_VALUE", // required
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // },
|
|
75
|
+
* // LakeFormationDataPermissionAsset: { // LakeFormationDataPermissionAsset
|
|
76
|
+
* // LakeFormationDataPermissionDetails: { // LakeFormationDataPermissionDetails
|
|
77
|
+
* // LFTagPolicy: { // LFTagPolicyDetails
|
|
78
|
+
* // CatalogId: "STRING_VALUE", // required
|
|
79
|
+
* // ResourceType: "STRING_VALUE", // required
|
|
80
|
+
* // ResourceDetails: { // LFResourceDetails
|
|
81
|
+
* // Database: { // DatabaseLFTagPolicy
|
|
82
|
+
* // Expression: [ // ListOfLFTags // required
|
|
83
|
+
* // { // LFTag
|
|
84
|
+
* // TagKey: "STRING_VALUE", // required
|
|
85
|
+
* // TagValues: [ // ListOfLFTagValues // required
|
|
86
|
+
* // "STRING_VALUE",
|
|
87
|
+
* // ],
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // },
|
|
91
|
+
* // Table: { // TableLFTagPolicy
|
|
92
|
+
* // Expression: [ // required
|
|
93
|
+
* // {
|
|
94
|
+
* // TagKey: "STRING_VALUE", // required
|
|
95
|
+
* // TagValues: [ // required
|
|
96
|
+
* // "STRING_VALUE",
|
|
97
|
+
* // ],
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
100
|
+
* // },
|
|
101
|
+
* // },
|
|
102
|
+
* // },
|
|
103
|
+
* // },
|
|
104
|
+
* // LakeFormationDataPermissionType: "STRING_VALUE", // required
|
|
105
|
+
* // Permissions: [ // ListOfLFPermissions // required
|
|
106
|
+
* // "STRING_VALUE",
|
|
107
|
+
* // ],
|
|
108
|
+
* // RoleArn: "STRING_VALUE",
|
|
109
|
+
* // },
|
|
110
|
+
* // },
|
|
111
|
+
* // AssetType: "STRING_VALUE", // required
|
|
112
|
+
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
113
|
+
* // DataSetId: "STRING_VALUE", // required
|
|
114
|
+
* // Id: "STRING_VALUE", // required
|
|
115
|
+
* // Name: "STRING_VALUE", // required
|
|
116
|
+
* // RevisionId: "STRING_VALUE", // required
|
|
117
|
+
* // SourceId: "STRING_VALUE",
|
|
118
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
119
|
+
* // },
|
|
120
|
+
* // ],
|
|
121
|
+
* // NextToken: "STRING_VALUE",
|
|
122
|
+
* // };
|
|
123
|
+
*
|
|
37
124
|
* ```
|
|
38
125
|
*
|
|
39
126
|
* @param ListRevisionAssetsCommandInput - {@link ListRevisionAssetsCommandInput}
|
|
@@ -54,6 +141,8 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo
|
|
|
54
141
|
* @throws {@link ValidationException} (client fault)
|
|
55
142
|
* <p>The request was invalid.</p>
|
|
56
143
|
*
|
|
144
|
+
* @throws {@link DataExchangeServiceException}
|
|
145
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
57
146
|
*
|
|
58
147
|
*/
|
|
59
148
|
export declare class ListRevisionAssetsCommand extends $Command<ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // MapOf__string
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -39,6 +45,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
39
45
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
40
46
|
* @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
|
|
41
47
|
*
|
|
48
|
+
* @throws {@link DataExchangeServiceException}
|
|
49
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
42
50
|
*
|
|
43
51
|
*/
|
|
44
52
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataExchangeClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new RevokeRevisionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // RevokeRevisionResponse
|
|
37
|
+
* // Arn: "STRING_VALUE",
|
|
38
|
+
* // Comment: "STRING_VALUE",
|
|
39
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
40
|
+
* // DataSetId: "STRING_VALUE",
|
|
41
|
+
* // Finalized: true || false,
|
|
42
|
+
* // Id: "STRING_VALUE",
|
|
43
|
+
* // SourceId: "STRING_VALUE",
|
|
44
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // RevocationComment: "STRING_VALUE",
|
|
46
|
+
* // Revoked: true || false,
|
|
47
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param RevokeRevisionCommandInput - {@link RevokeRevisionCommandInput}
|
|
@@ -59,6 +73,8 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M
|
|
|
59
73
|
* @throws {@link ValidationException} (client fault)
|
|
60
74
|
* <p>The request was invalid.</p>
|
|
61
75
|
*
|
|
76
|
+
* @throws {@link DataExchangeServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
62
78
|
*
|
|
63
79
|
*/
|
|
64
80
|
export declare class RevokeRevisionCommand extends $Command<RevokeRevisionCommandInput, RevokeRevisionCommandOutput, DataExchangeClientResolvedConfig> {
|