@aws-sdk/client-databrew 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist-types/DataBrew.d.ts +45 -0
  2. package/dist-types/DataBrewClient.d.ts +24 -4
  3. package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateDatasetCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateProfileJobCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateProjectCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateRecipeCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateRecipeJobCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateRulesetCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateScheduleCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteDatasetCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteJobCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteProjectCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteRulesetCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteScheduleCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeDatasetCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeJobCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeJobRunCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeProjectCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeRecipeCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeRulesetCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeScheduleCommand.d.ts +16 -0
  24. package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListJobsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListProjectsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListRecipeVersionsCommand.d.ts +16 -0
  29. package/dist-types/commands/ListRecipesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListRulesetsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListSchedulesCommand.d.ts +16 -0
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/PublishRecipeCommand.d.ts +16 -0
  34. package/dist-types/commands/SendProjectSessionActionCommand.d.ts +16 -0
  35. package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
  36. package/dist-types/commands/StartProjectSessionCommand.d.ts +16 -0
  37. package/dist-types/commands/StopJobRunCommand.d.ts +16 -0
  38. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateDatasetCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateProfileJobCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateProjectCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateRecipeCommand.d.ts +16 -0
  44. package/dist-types/commands/UpdateRecipeJobCommand.d.ts +16 -0
  45. package/dist-types/commands/UpdateRulesetCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateScheduleCommand.d.ts +16 -0
  47. package/dist-types/models/DataBrewServiceException.d.ts +2 -0
  48. package/dist-types/models/models_0.d.ts +373 -0
  49. package/dist-types/pagination/Interfaces.d.ts +3 -0
  50. package/dist-types/pagination/ListDatasetsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListProjectsPaginator.d.ts +3 -0
  54. package/dist-types/pagination/ListRecipeVersionsPaginator.d.ts +3 -0
  55. package/dist-types/pagination/ListRecipesPaginator.d.ts +3 -0
  56. package/dist-types/pagination/ListRulesetsPaginator.d.ts +3 -0
  57. package/dist-types/pagination/ListSchedulesPaginator.d.ts +3 -0
  58. package/package.json +3 -3
@@ -45,6 +45,7 @@ import { UpdateRulesetCommandInput, UpdateRulesetCommandOutput } from "./command
45
45
  import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput } from "./commands/UpdateScheduleCommand";
46
46
  import { DataBrewClient } from "./DataBrewClient";
47
47
  /**
48
+ * @public
48
49
  * <p>Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew
49
50
  * simplifies data preparation tasks, targeting data issues that are hard to spot and
50
51
  * time-consuming to fix. DataBrew empowers users of all technical levels to visualize the
@@ -52,6 +53,7 @@ import { DataBrewClient } from "./DataBrewClient";
52
53
  */
53
54
  export declare class DataBrew extends DataBrewClient {
54
55
  /**
56
+ * @public
55
57
  * <p>Deletes one or more versions of a recipe at a time.</p>
56
58
  * <p>The entire request will be rejected if:</p>
57
59
  * <ul>
@@ -96,36 +98,42 @@ export declare class DataBrew extends DataBrewClient {
96
98
  batchDeleteRecipeVersion(args: BatchDeleteRecipeVersionCommandInput, cb: (err: any, data?: BatchDeleteRecipeVersionCommandOutput) => void): void;
97
99
  batchDeleteRecipeVersion(args: BatchDeleteRecipeVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteRecipeVersionCommandOutput) => void): void;
98
100
  /**
101
+ * @public
99
102
  * <p>Creates a new DataBrew dataset.</p>
100
103
  */
101
104
  createDataset(args: CreateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDatasetCommandOutput>;
102
105
  createDataset(args: CreateDatasetCommandInput, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
103
106
  createDataset(args: CreateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
104
107
  /**
108
+ * @public
105
109
  * <p>Creates a new job to analyze a dataset and create its data profile.</p>
106
110
  */
107
111
  createProfileJob(args: CreateProfileJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfileJobCommandOutput>;
108
112
  createProfileJob(args: CreateProfileJobCommandInput, cb: (err: any, data?: CreateProfileJobCommandOutput) => void): void;
109
113
  createProfileJob(args: CreateProfileJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfileJobCommandOutput) => void): void;
110
114
  /**
115
+ * @public
111
116
  * <p>Creates a new DataBrew project.</p>
112
117
  */
113
118
  createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
114
119
  createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
115
120
  createProject(args: CreateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
116
121
  /**
122
+ * @public
117
123
  * <p>Creates a new DataBrew recipe.</p>
118
124
  */
119
125
  createRecipe(args: CreateRecipeCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecipeCommandOutput>;
120
126
  createRecipe(args: CreateRecipeCommandInput, cb: (err: any, data?: CreateRecipeCommandOutput) => void): void;
121
127
  createRecipe(args: CreateRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecipeCommandOutput) => void): void;
122
128
  /**
129
+ * @public
123
130
  * <p>Creates a new job to transform input data, using steps defined in an existing Glue DataBrew recipe</p>
124
131
  */
125
132
  createRecipeJob(args: CreateRecipeJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecipeJobCommandOutput>;
126
133
  createRecipeJob(args: CreateRecipeJobCommandInput, cb: (err: any, data?: CreateRecipeJobCommandOutput) => void): void;
127
134
  createRecipeJob(args: CreateRecipeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecipeJobCommandOutput) => void): void;
128
135
  /**
136
+ * @public
129
137
  * <p>Creates a new ruleset that can be used in a profile job to validate
130
138
  * the data quality of a dataset.</p>
131
139
  */
@@ -133,6 +141,7 @@ export declare class DataBrew extends DataBrewClient {
133
141
  createRuleset(args: CreateRulesetCommandInput, cb: (err: any, data?: CreateRulesetCommandOutput) => void): void;
134
142
  createRuleset(args: CreateRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRulesetCommandOutput) => void): void;
135
143
  /**
144
+ * @public
136
145
  * <p>Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific
137
146
  * date and time, or at regular intervals.</p>
138
147
  */
@@ -140,66 +149,77 @@ export declare class DataBrew extends DataBrewClient {
140
149
  createSchedule(args: CreateScheduleCommandInput, cb: (err: any, data?: CreateScheduleCommandOutput) => void): void;
141
150
  createSchedule(args: CreateScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScheduleCommandOutput) => void): void;
142
151
  /**
152
+ * @public
143
153
  * <p>Deletes a dataset from DataBrew.</p>
144
154
  */
145
155
  deleteDataset(args: DeleteDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDatasetCommandOutput>;
146
156
  deleteDataset(args: DeleteDatasetCommandInput, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
147
157
  deleteDataset(args: DeleteDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
148
158
  /**
159
+ * @public
149
160
  * <p>Deletes the specified DataBrew job.</p>
150
161
  */
151
162
  deleteJob(args: DeleteJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobCommandOutput>;
152
163
  deleteJob(args: DeleteJobCommandInput, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
153
164
  deleteJob(args: DeleteJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
154
165
  /**
166
+ * @public
155
167
  * <p>Deletes an existing DataBrew project.</p>
156
168
  */
157
169
  deleteProject(args: DeleteProjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectCommandOutput>;
158
170
  deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
159
171
  deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
160
172
  /**
173
+ * @public
161
174
  * <p>Deletes a single version of a DataBrew recipe.</p>
162
175
  */
163
176
  deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecipeVersionCommandOutput>;
164
177
  deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, cb: (err: any, data?: DeleteRecipeVersionCommandOutput) => void): void;
165
178
  deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecipeVersionCommandOutput) => void): void;
166
179
  /**
180
+ * @public
167
181
  * <p>Deletes a ruleset.</p>
168
182
  */
169
183
  deleteRuleset(args: DeleteRulesetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRulesetCommandOutput>;
170
184
  deleteRuleset(args: DeleteRulesetCommandInput, cb: (err: any, data?: DeleteRulesetCommandOutput) => void): void;
171
185
  deleteRuleset(args: DeleteRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRulesetCommandOutput) => void): void;
172
186
  /**
187
+ * @public
173
188
  * <p>Deletes the specified DataBrew schedule.</p>
174
189
  */
175
190
  deleteSchedule(args: DeleteScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScheduleCommandOutput>;
176
191
  deleteSchedule(args: DeleteScheduleCommandInput, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void;
177
192
  deleteSchedule(args: DeleteScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void;
178
193
  /**
194
+ * @public
179
195
  * <p>Returns the definition of a specific DataBrew dataset.</p>
180
196
  */
181
197
  describeDataset(args: DescribeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDatasetCommandOutput>;
182
198
  describeDataset(args: DescribeDatasetCommandInput, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
183
199
  describeDataset(args: DescribeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
184
200
  /**
201
+ * @public
185
202
  * <p>Returns the definition of a specific DataBrew job.</p>
186
203
  */
187
204
  describeJob(args: DescribeJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobCommandOutput>;
188
205
  describeJob(args: DescribeJobCommandInput, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
189
206
  describeJob(args: DescribeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
190
207
  /**
208
+ * @public
191
209
  * <p>Represents one run of a DataBrew job.</p>
192
210
  */
193
211
  describeJobRun(args: DescribeJobRunCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobRunCommandOutput>;
194
212
  describeJobRun(args: DescribeJobRunCommandInput, cb: (err: any, data?: DescribeJobRunCommandOutput) => void): void;
195
213
  describeJobRun(args: DescribeJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobRunCommandOutput) => void): void;
196
214
  /**
215
+ * @public
197
216
  * <p>Returns the definition of a specific DataBrew project.</p>
198
217
  */
199
218
  describeProject(args: DescribeProjectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProjectCommandOutput>;
200
219
  describeProject(args: DescribeProjectCommandInput, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
201
220
  describeProject(args: DescribeProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
202
221
  /**
222
+ * @public
203
223
  * <p>Returns the definition of a specific DataBrew recipe corresponding to a particular
204
224
  * version.</p>
205
225
  */
@@ -207,48 +227,56 @@ export declare class DataBrew extends DataBrewClient {
207
227
  describeRecipe(args: DescribeRecipeCommandInput, cb: (err: any, data?: DescribeRecipeCommandOutput) => void): void;
208
228
  describeRecipe(args: DescribeRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecipeCommandOutput) => void): void;
209
229
  /**
230
+ * @public
210
231
  * <p>Retrieves detailed information about the ruleset.</p>
211
232
  */
212
233
  describeRuleset(args: DescribeRulesetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRulesetCommandOutput>;
213
234
  describeRuleset(args: DescribeRulesetCommandInput, cb: (err: any, data?: DescribeRulesetCommandOutput) => void): void;
214
235
  describeRuleset(args: DescribeRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRulesetCommandOutput) => void): void;
215
236
  /**
237
+ * @public
216
238
  * <p>Returns the definition of a specific DataBrew schedule.</p>
217
239
  */
218
240
  describeSchedule(args: DescribeScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduleCommandOutput>;
219
241
  describeSchedule(args: DescribeScheduleCommandInput, cb: (err: any, data?: DescribeScheduleCommandOutput) => void): void;
220
242
  describeSchedule(args: DescribeScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduleCommandOutput) => void): void;
221
243
  /**
244
+ * @public
222
245
  * <p>Lists all of the DataBrew datasets.</p>
223
246
  */
224
247
  listDatasets(args: ListDatasetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetsCommandOutput>;
225
248
  listDatasets(args: ListDatasetsCommandInput, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
226
249
  listDatasets(args: ListDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
227
250
  /**
251
+ * @public
228
252
  * <p>Lists all of the previous runs of a particular DataBrew job.</p>
229
253
  */
230
254
  listJobRuns(args: ListJobRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobRunsCommandOutput>;
231
255
  listJobRuns(args: ListJobRunsCommandInput, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
232
256
  listJobRuns(args: ListJobRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
233
257
  /**
258
+ * @public
234
259
  * <p>Lists all of the DataBrew jobs that are defined.</p>
235
260
  */
236
261
  listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
237
262
  listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
238
263
  listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
239
264
  /**
265
+ * @public
240
266
  * <p>Lists all of the DataBrew projects that are defined.</p>
241
267
  */
242
268
  listProjects(args: ListProjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListProjectsCommandOutput>;
243
269
  listProjects(args: ListProjectsCommandInput, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
244
270
  listProjects(args: ListProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
245
271
  /**
272
+ * @public
246
273
  * <p>Lists all of the DataBrew recipes that are defined.</p>
247
274
  */
248
275
  listRecipes(args: ListRecipesCommandInput, options?: __HttpHandlerOptions): Promise<ListRecipesCommandOutput>;
249
276
  listRecipes(args: ListRecipesCommandInput, cb: (err: any, data?: ListRecipesCommandOutput) => void): void;
250
277
  listRecipes(args: ListRecipesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecipesCommandOutput) => void): void;
251
278
  /**
279
+ * @public
252
280
  * <p>Lists the versions of a particular DataBrew recipe, except for
253
281
  * <code>LATEST_WORKING</code>.</p>
254
282
  */
@@ -256,6 +284,7 @@ export declare class DataBrew extends DataBrewClient {
256
284
  listRecipeVersions(args: ListRecipeVersionsCommandInput, cb: (err: any, data?: ListRecipeVersionsCommandOutput) => void): void;
257
285
  listRecipeVersions(args: ListRecipeVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecipeVersionsCommandOutput) => void): void;
258
286
  /**
287
+ * @public
259
288
  * <p>List all rulesets available in the current account or rulesets associated
260
289
  * with a specific resource (dataset).</p>
261
290
  */
@@ -263,24 +292,28 @@ export declare class DataBrew extends DataBrewClient {
263
292
  listRulesets(args: ListRulesetsCommandInput, cb: (err: any, data?: ListRulesetsCommandOutput) => void): void;
264
293
  listRulesets(args: ListRulesetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesetsCommandOutput) => void): void;
265
294
  /**
295
+ * @public
266
296
  * <p>Lists the DataBrew schedules that are defined.</p>
267
297
  */
268
298
  listSchedules(args: ListSchedulesCommandInput, options?: __HttpHandlerOptions): Promise<ListSchedulesCommandOutput>;
269
299
  listSchedules(args: ListSchedulesCommandInput, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void;
270
300
  listSchedules(args: ListSchedulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void;
271
301
  /**
302
+ * @public
272
303
  * <p>Lists all the tags for a DataBrew resource. </p>
273
304
  */
274
305
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
275
306
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
276
307
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
277
308
  /**
309
+ * @public
278
310
  * <p>Publishes a new version of a DataBrew recipe.</p>
279
311
  */
280
312
  publishRecipe(args: PublishRecipeCommandInput, options?: __HttpHandlerOptions): Promise<PublishRecipeCommandOutput>;
281
313
  publishRecipe(args: PublishRecipeCommandInput, cb: (err: any, data?: PublishRecipeCommandOutput) => void): void;
282
314
  publishRecipe(args: PublishRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishRecipeCommandOutput) => void): void;
283
315
  /**
316
+ * @public
284
317
  * <p>Performs a recipe step within an interactive DataBrew session that's currently
285
318
  * open.</p>
286
319
  */
@@ -288,12 +321,14 @@ export declare class DataBrew extends DataBrewClient {
288
321
  sendProjectSessionAction(args: SendProjectSessionActionCommandInput, cb: (err: any, data?: SendProjectSessionActionCommandOutput) => void): void;
289
322
  sendProjectSessionAction(args: SendProjectSessionActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendProjectSessionActionCommandOutput) => void): void;
290
323
  /**
324
+ * @public
291
325
  * <p>Runs a DataBrew job.</p>
292
326
  */
293
327
  startJobRun(args: StartJobRunCommandInput, options?: __HttpHandlerOptions): Promise<StartJobRunCommandOutput>;
294
328
  startJobRun(args: StartJobRunCommandInput, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
295
329
  startJobRun(args: StartJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
296
330
  /**
331
+ * @public
297
332
  * <p>Creates an interactive session, enabling you to manipulate data in a DataBrew
298
333
  * project.</p>
299
334
  */
@@ -301,12 +336,14 @@ export declare class DataBrew extends DataBrewClient {
301
336
  startProjectSession(args: StartProjectSessionCommandInput, cb: (err: any, data?: StartProjectSessionCommandOutput) => void): void;
302
337
  startProjectSession(args: StartProjectSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartProjectSessionCommandOutput) => void): void;
303
338
  /**
339
+ * @public
304
340
  * <p>Stops a particular run of a job.</p>
305
341
  */
306
342
  stopJobRun(args: StopJobRunCommandInput, options?: __HttpHandlerOptions): Promise<StopJobRunCommandOutput>;
307
343
  stopJobRun(args: StopJobRunCommandInput, cb: (err: any, data?: StopJobRunCommandOutput) => void): void;
308
344
  stopJobRun(args: StopJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopJobRunCommandOutput) => void): void;
309
345
  /**
346
+ * @public
310
347
  * <p>Adds metadata tags to a DataBrew resource, such as a dataset, project, recipe, job, or
311
348
  * schedule.</p>
312
349
  */
@@ -314,30 +351,35 @@ export declare class DataBrew extends DataBrewClient {
314
351
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
315
352
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
316
353
  /**
354
+ * @public
317
355
  * <p>Removes metadata tags from a DataBrew resource.</p>
318
356
  */
319
357
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
320
358
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
321
359
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
322
360
  /**
361
+ * @public
323
362
  * <p>Modifies the definition of an existing DataBrew dataset.</p>
324
363
  */
325
364
  updateDataset(args: UpdateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDatasetCommandOutput>;
326
365
  updateDataset(args: UpdateDatasetCommandInput, cb: (err: any, data?: UpdateDatasetCommandOutput) => void): void;
327
366
  updateDataset(args: UpdateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDatasetCommandOutput) => void): void;
328
367
  /**
368
+ * @public
329
369
  * <p>Modifies the definition of an existing profile job.</p>
330
370
  */
331
371
  updateProfileJob(args: UpdateProfileJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProfileJobCommandOutput>;
332
372
  updateProfileJob(args: UpdateProfileJobCommandInput, cb: (err: any, data?: UpdateProfileJobCommandOutput) => void): void;
333
373
  updateProfileJob(args: UpdateProfileJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProfileJobCommandOutput) => void): void;
334
374
  /**
375
+ * @public
335
376
  * <p>Modifies the definition of an existing DataBrew project.</p>
336
377
  */
337
378
  updateProject(args: UpdateProjectCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectCommandOutput>;
338
379
  updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
339
380
  updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
340
381
  /**
382
+ * @public
341
383
  * <p>Modifies the definition of the <code>LATEST_WORKING</code> version of a DataBrew
342
384
  * recipe.</p>
343
385
  */
@@ -345,18 +387,21 @@ export declare class DataBrew extends DataBrewClient {
345
387
  updateRecipe(args: UpdateRecipeCommandInput, cb: (err: any, data?: UpdateRecipeCommandOutput) => void): void;
346
388
  updateRecipe(args: UpdateRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecipeCommandOutput) => void): void;
347
389
  /**
390
+ * @public
348
391
  * <p>Modifies the definition of an existing DataBrew recipe job.</p>
349
392
  */
350
393
  updateRecipeJob(args: UpdateRecipeJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecipeJobCommandOutput>;
351
394
  updateRecipeJob(args: UpdateRecipeJobCommandInput, cb: (err: any, data?: UpdateRecipeJobCommandOutput) => void): void;
352
395
  updateRecipeJob(args: UpdateRecipeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecipeJobCommandOutput) => void): void;
353
396
  /**
397
+ * @public
354
398
  * <p>Updates specified ruleset.</p>
355
399
  */
356
400
  updateRuleset(args: UpdateRulesetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRulesetCommandOutput>;
357
401
  updateRuleset(args: UpdateRulesetCommandInput, cb: (err: any, data?: UpdateRulesetCommandOutput) => void): void;
358
402
  updateRuleset(args: UpdateRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRulesetCommandOutput) => void): void;
359
403
  /**
404
+ * @public
360
405
  * <p>Modifies the definition of an existing DataBrew schedule.</p>
361
406
  */
362
407
  updateSchedule(args: UpdateScheduleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateScheduleCommandOutput>;
@@ -52,15 +52,24 @@ import { UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput } from "./com
52
52
  import { UpdateRulesetCommandInput, UpdateRulesetCommandOutput } from "./commands/UpdateRulesetCommand";
53
53
  import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput } from "./commands/UpdateScheduleCommand";
54
54
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
55
+ /**
56
+ * @public
57
+ */
55
58
  export type ServiceInputTypes = BatchDeleteRecipeVersionCommandInput | CreateDatasetCommandInput | CreateProfileJobCommandInput | CreateProjectCommandInput | CreateRecipeCommandInput | CreateRecipeJobCommandInput | CreateRulesetCommandInput | CreateScheduleCommandInput | DeleteDatasetCommandInput | DeleteJobCommandInput | DeleteProjectCommandInput | DeleteRecipeVersionCommandInput | DeleteRulesetCommandInput | DeleteScheduleCommandInput | DescribeDatasetCommandInput | DescribeJobCommandInput | DescribeJobRunCommandInput | DescribeProjectCommandInput | DescribeRecipeCommandInput | DescribeRulesetCommandInput | DescribeScheduleCommandInput | ListDatasetsCommandInput | ListJobRunsCommandInput | ListJobsCommandInput | ListProjectsCommandInput | ListRecipeVersionsCommandInput | ListRecipesCommandInput | ListRulesetsCommandInput | ListSchedulesCommandInput | ListTagsForResourceCommandInput | PublishRecipeCommandInput | SendProjectSessionActionCommandInput | StartJobRunCommandInput | StartProjectSessionCommandInput | StopJobRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDatasetCommandInput | UpdateProfileJobCommandInput | UpdateProjectCommandInput | UpdateRecipeCommandInput | UpdateRecipeJobCommandInput | UpdateRulesetCommandInput | UpdateScheduleCommandInput;
59
+ /**
60
+ * @public
61
+ */
56
62
  export type ServiceOutputTypes = BatchDeleteRecipeVersionCommandOutput | CreateDatasetCommandOutput | CreateProfileJobCommandOutput | CreateProjectCommandOutput | CreateRecipeCommandOutput | CreateRecipeJobCommandOutput | CreateRulesetCommandOutput | CreateScheduleCommandOutput | DeleteDatasetCommandOutput | DeleteJobCommandOutput | DeleteProjectCommandOutput | DeleteRecipeVersionCommandOutput | DeleteRulesetCommandOutput | DeleteScheduleCommandOutput | DescribeDatasetCommandOutput | DescribeJobCommandOutput | DescribeJobRunCommandOutput | DescribeProjectCommandOutput | DescribeRecipeCommandOutput | DescribeRulesetCommandOutput | DescribeScheduleCommandOutput | ListDatasetsCommandOutput | ListJobRunsCommandOutput | ListJobsCommandOutput | ListProjectsCommandOutput | ListRecipeVersionsCommandOutput | ListRecipesCommandOutput | ListRulesetsCommandOutput | ListSchedulesCommandOutput | ListTagsForResourceCommandOutput | PublishRecipeCommandOutput | SendProjectSessionActionCommandOutput | StartJobRunCommandOutput | StartProjectSessionCommandOutput | StopJobRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDatasetCommandOutput | UpdateProfileJobCommandOutput | UpdateProjectCommandOutput | UpdateRecipeCommandOutput | UpdateRecipeJobCommandOutput | UpdateRulesetCommandOutput | UpdateScheduleCommandOutput;
63
+ /**
64
+ * @public
65
+ */
57
66
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
58
67
  /**
59
68
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
60
69
  */
61
70
  requestHandler?: __HttpHandler;
62
71
  /**
63
- * A constructor for a class implementing the {@link __Checksum} interface
72
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
64
73
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
65
74
  * @internal
66
75
  */
@@ -150,23 +159,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
150
159
  */
151
160
  logger?: __Logger;
152
161
  /**
153
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
162
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
154
163
  */
155
164
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
156
165
  }
166
+ /**
167
+ * @public
168
+ */
157
169
  type DataBrewClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
158
170
  /**
159
- * The configuration interface of DataBrewClient class constructor that set the region, credentials and other options.
171
+ * @public
172
+ *
173
+ * The configuration interface of DataBrewClient class constructor that set the region, credentials and other options.
160
174
  */
161
175
  export interface DataBrewClientConfig extends DataBrewClientConfigType {
162
176
  }
177
+ /**
178
+ * @public
179
+ */
163
180
  type DataBrewClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
164
181
  /**
165
- * The resolved configuration interface of DataBrewClient class. This is resolved and normalized from the {@link DataBrewClientConfig | constructor configuration interface}.
182
+ * @public
183
+ *
184
+ * The resolved configuration interface of DataBrewClient class. This is resolved and normalized from the {@link DataBrewClientConfig | constructor configuration interface}.
166
185
  */
167
186
  export interface DataBrewClientResolvedConfig extends DataBrewClientResolvedConfigType {
168
187
  }
169
188
  /**
189
+ * @public
170
190
  * <p>Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew
171
191
  * simplifies data preparation tasks, targeting data issues that are hard to spot and
172
192
  * time-consuming to fix. DataBrew empowers users of all technical levels to visualize the
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
5
5
  import { BatchDeleteRecipeVersionRequest, BatchDeleteRecipeVersionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchDeleteRecipeVersionCommand}.
8
10
  */
9
11
  export interface BatchDeleteRecipeVersionCommandInput extends BatchDeleteRecipeVersionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchDeleteRecipeVersionCommand}.
13
17
  */
14
18
  export interface BatchDeleteRecipeVersionCommandOutput extends BatchDeleteRecipeVersionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes one or more versions of a recipe at a time.</p>
18
23
  * <p>The entire request will be rejected if:</p>
19
24
  * <ul>
@@ -63,6 +68,8 @@ export interface BatchDeleteRecipeVersionCommandOutput extends BatchDeleteRecipe
63
68
  * const response = await client.send(command);
64
69
  * ```
65
70
  *
71
+ * @param BatchDeleteRecipeVersionCommandInput - {@link BatchDeleteRecipeVersionCommandInput}
72
+ * @returns {@link BatchDeleteRecipeVersionCommandOutput}
66
73
  * @see {@link BatchDeleteRecipeVersionCommandInput} for command's `input` shape.
67
74
  * @see {@link BatchDeleteRecipeVersionCommandOutput} for command's `response` shape.
68
75
  * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
@@ -81,11 +88,20 @@ export interface BatchDeleteRecipeVersionCommandOutput extends BatchDeleteRecipe
81
88
  export declare class BatchDeleteRecipeVersionCommand extends $Command<BatchDeleteRecipeVersionCommandInput, BatchDeleteRecipeVersionCommandOutput, DataBrewClientResolvedConfig> {
82
89
  readonly input: BatchDeleteRecipeVersionCommandInput;
83
90
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
+ /**
92
+ * @public
93
+ */
84
94
  constructor(input: BatchDeleteRecipeVersionCommandInput);
85
95
  /**
86
96
  * @internal
87
97
  */
88
98
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDeleteRecipeVersionCommandInput, BatchDeleteRecipeVersionCommandOutput>;
99
+ /**
100
+ * @internal
101
+ */
89
102
  private serialize;
103
+ /**
104
+ * @internal
105
+ */
90
106
  private deserialize;
91
107
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
5
5
  import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateDatasetCommand}.
8
10
  */
9
11
  export interface CreateDatasetCommandInput extends CreateDatasetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateDatasetCommand}.
13
17
  */
14
18
  export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new DataBrew dataset.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateDatasetCommandInput - {@link CreateDatasetCommandInput}
34
+ * @returns {@link CreateDatasetCommandOutput}
28
35
  * @see {@link CreateDatasetCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateDatasetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
@@ -46,11 +53,20 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
46
53
  export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, DataBrewClientResolvedConfig> {
47
54
  readonly input: CreateDatasetCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: CreateDatasetCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDatasetCommandInput, CreateDatasetCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
5
5
  import { CreateProfileJobRequest, CreateProfileJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateProfileJobCommand}.
8
10
  */
9
11
  export interface CreateProfileJobCommandInput extends CreateProfileJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateProfileJobCommand}.
13
17
  */
14
18
  export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new job to analyze a dataset and create its data profile.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateProfileJobCommandInput - {@link CreateProfileJobCommandInput}
34
+ * @returns {@link CreateProfileJobCommandOutput}
28
35
  * @see {@link CreateProfileJobCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateProfileJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse,
49
56
  export declare class CreateProfileJobCommand extends $Command<CreateProfileJobCommandInput, CreateProfileJobCommandOutput, DataBrewClientResolvedConfig> {
50
57
  readonly input: CreateProfileJobCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateProfileJobCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProfileJobCommandInput, CreateProfileJobCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
5
5
  import { CreateProjectRequest, CreateProjectResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateProjectCommand}.
8
10
  */
9
11
  export interface CreateProjectCommandInput extends CreateProjectRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateProjectCommand}.
13
17
  */
14
18
  export interface CreateProjectCommandOutput extends CreateProjectResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new DataBrew project.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateProjectCommandInput - {@link CreateProjectCommandInput}
34
+ * @returns {@link CreateProjectCommandOutput}
28
35
  * @see {@link CreateProjectCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateProjectCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
@@ -46,11 +53,20 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
46
53
  export declare class CreateProjectCommand extends $Command<CreateProjectCommandInput, CreateProjectCommandOutput, DataBrewClientResolvedConfig> {
47
54
  readonly input: CreateProjectCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: CreateProjectCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProjectCommandInput, CreateProjectCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
5
5
  import { CreateRecipeRequest, CreateRecipeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateRecipeCommand}.
8
10
  */
9
11
  export interface CreateRecipeCommandInput extends CreateRecipeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateRecipeCommand}.
13
17
  */
14
18
  export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new DataBrew recipe.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateRecipeCommandInput - {@link CreateRecipeCommandInput}
34
+ * @returns {@link CreateRecipeCommandOutput}
28
35
  * @see {@link CreateRecipeCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateRecipeCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
@@ -43,11 +50,20 @@ export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __Metad
43
50
  export declare class CreateRecipeCommand extends $Command<CreateRecipeCommandInput, CreateRecipeCommandOutput, DataBrewClientResolvedConfig> {
44
51
  readonly input: CreateRecipeCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: CreateRecipeCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRecipeCommandInput, CreateRecipeCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }