@aws-sdk/client-databrew 3.40.0 → 3.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +41 -0
- package/dist-cjs/DataBrew.js +75 -0
- package/dist-cjs/DataBrewClient.js +1 -0
- package/dist-cjs/commands/CreateRulesetCommand.js +36 -0
- package/dist-cjs/commands/DeleteRulesetCommand.js +36 -0
- package/dist-cjs/commands/DescribeRulesetCommand.js +36 -0
- package/dist-cjs/commands/ListRulesetsCommand.js +36 -0
- package/dist-cjs/commands/UpdateRulesetCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoints.js +8 -0
- package/dist-cjs/models/models_0.js +130 -3
- package/dist-cjs/pagination/ListRulesetsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +727 -4
- package/dist-es/DataBrew.js +75 -0
- package/dist-es/DataBrewClient.js +2 -1
- package/dist-es/commands/CreateRulesetCommand.js +39 -0
- package/dist-es/commands/DeleteRulesetCommand.js +39 -0
- package/dist-es/commands/DescribeRulesetCommand.js +39 -0
- package/dist-es/commands/ListRulesetsCommand.js +39 -0
- package/dist-es/commands/UpdateRulesetCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoints.js +8 -0
- package/dist-es/models/models_0.js +92 -2
- package/dist-es/pagination/ListRulesetsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +818 -42
- package/dist-types/DataBrew.d.ts +37 -0
- package/dist-types/DataBrewClient.d.ts +7 -2
- package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +1 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +1 -1
- package/dist-types/commands/CreateProfileJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +1 -1
- package/dist-types/commands/CreateRecipeCommand.d.ts +1 -1
- package/dist-types/commands/CreateRecipeJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateRulesetCommand.d.ts +36 -0
- package/dist-types/commands/CreateScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRulesetCommand.d.ts +35 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobRunCommand.d.ts +1 -1
- package/dist-types/commands/DescribeProjectCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRecipeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRulesetCommand.d.ts +35 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/commands/ListJobRunsCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListRecipeVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListRecipesCommand.d.ts +1 -1
- package/dist-types/commands/ListRulesetsCommand.d.ts +36 -0
- package/dist-types/commands/ListSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PublishRecipeCommand.d.ts +1 -1
- package/dist-types/commands/SendProjectSessionActionCommand.d.ts +1 -1
- package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
- package/dist-types/commands/StartProjectSessionCommand.d.ts +1 -1
- package/dist-types/commands/StopJobRunCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatasetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProfileJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecipeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecipeJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRulesetCommand.d.ts +35 -0
- package/dist-types/commands/UpdateScheduleCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +577 -17
- package/dist-types/pagination/ListRulesetsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/DataBrew.d.ts +25 -0
- package/dist-types/ts3.4/DataBrewClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/CreateRulesetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRulesetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeRulesetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRulesetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateRulesetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +267 -1
- package/dist-types/ts3.4/pagination/ListRulesetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +4 -4
package/dist-types/DataBrew.d.ts
CHANGED
|
@@ -5,17 +5,20 @@ import { CreateProfileJobCommandInput, CreateProfileJobCommandOutput } from "./c
|
|
|
5
5
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
6
6
|
import { CreateRecipeCommandInput, CreateRecipeCommandOutput } from "./commands/CreateRecipeCommand";
|
|
7
7
|
import { CreateRecipeJobCommandInput, CreateRecipeJobCommandOutput } from "./commands/CreateRecipeJobCommand";
|
|
8
|
+
import { CreateRulesetCommandInput, CreateRulesetCommandOutput } from "./commands/CreateRulesetCommand";
|
|
8
9
|
import { CreateScheduleCommandInput, CreateScheduleCommandOutput } from "./commands/CreateScheduleCommand";
|
|
9
10
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
10
11
|
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
11
12
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
12
13
|
import { DeleteRecipeVersionCommandInput, DeleteRecipeVersionCommandOutput } from "./commands/DeleteRecipeVersionCommand";
|
|
14
|
+
import { DeleteRulesetCommandInput, DeleteRulesetCommandOutput } from "./commands/DeleteRulesetCommand";
|
|
13
15
|
import { DeleteScheduleCommandInput, DeleteScheduleCommandOutput } from "./commands/DeleteScheduleCommand";
|
|
14
16
|
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
15
17
|
import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
16
18
|
import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "./commands/DescribeJobRunCommand";
|
|
17
19
|
import { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "./commands/DescribeProjectCommand";
|
|
18
20
|
import { DescribeRecipeCommandInput, DescribeRecipeCommandOutput } from "./commands/DescribeRecipeCommand";
|
|
21
|
+
import { DescribeRulesetCommandInput, DescribeRulesetCommandOutput } from "./commands/DescribeRulesetCommand";
|
|
19
22
|
import { DescribeScheduleCommandInput, DescribeScheduleCommandOutput } from "./commands/DescribeScheduleCommand";
|
|
20
23
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
21
24
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
@@ -23,6 +26,7 @@ import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobs
|
|
|
23
26
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
24
27
|
import { ListRecipesCommandInput, ListRecipesCommandOutput } from "./commands/ListRecipesCommand";
|
|
25
28
|
import { ListRecipeVersionsCommandInput, ListRecipeVersionsCommandOutput } from "./commands/ListRecipeVersionsCommand";
|
|
29
|
+
import { ListRulesetsCommandInput, ListRulesetsCommandOutput } from "./commands/ListRulesetsCommand";
|
|
26
30
|
import { ListSchedulesCommandInput, ListSchedulesCommandOutput } from "./commands/ListSchedulesCommand";
|
|
27
31
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
28
32
|
import { PublishRecipeCommandInput, PublishRecipeCommandOutput } from "./commands/PublishRecipeCommand";
|
|
@@ -37,6 +41,7 @@ import { UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput } from "./c
|
|
|
37
41
|
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
38
42
|
import { UpdateRecipeCommandInput, UpdateRecipeCommandOutput } from "./commands/UpdateRecipeCommand";
|
|
39
43
|
import { UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput } from "./commands/UpdateRecipeJobCommand";
|
|
44
|
+
import { UpdateRulesetCommandInput, UpdateRulesetCommandOutput } from "./commands/UpdateRulesetCommand";
|
|
40
45
|
import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput } from "./commands/UpdateScheduleCommand";
|
|
41
46
|
import { DataBrewClient } from "./DataBrewClient";
|
|
42
47
|
/**
|
|
@@ -122,6 +127,13 @@ export declare class DataBrew extends DataBrewClient {
|
|
|
122
127
|
createRecipeJob(args: CreateRecipeJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecipeJobCommandOutput>;
|
|
123
128
|
createRecipeJob(args: CreateRecipeJobCommandInput, cb: (err: any, data?: CreateRecipeJobCommandOutput) => void): void;
|
|
124
129
|
createRecipeJob(args: CreateRecipeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecipeJobCommandOutput) => void): void;
|
|
130
|
+
/**
|
|
131
|
+
* <p>Creates a new ruleset that can be used in a profile job to validate
|
|
132
|
+
* the data quality of a dataset.</p>
|
|
133
|
+
*/
|
|
134
|
+
createRuleset(args: CreateRulesetCommandInput, options?: __HttpHandlerOptions): Promise<CreateRulesetCommandOutput>;
|
|
135
|
+
createRuleset(args: CreateRulesetCommandInput, cb: (err: any, data?: CreateRulesetCommandOutput) => void): void;
|
|
136
|
+
createRuleset(args: CreateRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRulesetCommandOutput) => void): void;
|
|
125
137
|
/**
|
|
126
138
|
* <p>Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific
|
|
127
139
|
* date and time, or at regular intervals.</p>
|
|
@@ -153,6 +165,12 @@ export declare class DataBrew extends DataBrewClient {
|
|
|
153
165
|
deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecipeVersionCommandOutput>;
|
|
154
166
|
deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, cb: (err: any, data?: DeleteRecipeVersionCommandOutput) => void): void;
|
|
155
167
|
deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecipeVersionCommandOutput) => void): void;
|
|
168
|
+
/**
|
|
169
|
+
* <p>Deletes a ruleset.</p>
|
|
170
|
+
*/
|
|
171
|
+
deleteRuleset(args: DeleteRulesetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRulesetCommandOutput>;
|
|
172
|
+
deleteRuleset(args: DeleteRulesetCommandInput, cb: (err: any, data?: DeleteRulesetCommandOutput) => void): void;
|
|
173
|
+
deleteRuleset(args: DeleteRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRulesetCommandOutput) => void): void;
|
|
156
174
|
/**
|
|
157
175
|
* <p>Deletes the specified DataBrew schedule.</p>
|
|
158
176
|
*/
|
|
@@ -190,6 +208,12 @@ export declare class DataBrew extends DataBrewClient {
|
|
|
190
208
|
describeRecipe(args: DescribeRecipeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecipeCommandOutput>;
|
|
191
209
|
describeRecipe(args: DescribeRecipeCommandInput, cb: (err: any, data?: DescribeRecipeCommandOutput) => void): void;
|
|
192
210
|
describeRecipe(args: DescribeRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecipeCommandOutput) => void): void;
|
|
211
|
+
/**
|
|
212
|
+
* <p>Retrieves detailed information about the ruleset.</p>
|
|
213
|
+
*/
|
|
214
|
+
describeRuleset(args: DescribeRulesetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRulesetCommandOutput>;
|
|
215
|
+
describeRuleset(args: DescribeRulesetCommandInput, cb: (err: any, data?: DescribeRulesetCommandOutput) => void): void;
|
|
216
|
+
describeRuleset(args: DescribeRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRulesetCommandOutput) => void): void;
|
|
193
217
|
/**
|
|
194
218
|
* <p>Returns the definition of a specific DataBrew schedule.</p>
|
|
195
219
|
*/
|
|
@@ -233,6 +257,13 @@ export declare class DataBrew extends DataBrewClient {
|
|
|
233
257
|
listRecipeVersions(args: ListRecipeVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecipeVersionsCommandOutput>;
|
|
234
258
|
listRecipeVersions(args: ListRecipeVersionsCommandInput, cb: (err: any, data?: ListRecipeVersionsCommandOutput) => void): void;
|
|
235
259
|
listRecipeVersions(args: ListRecipeVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecipeVersionsCommandOutput) => void): void;
|
|
260
|
+
/**
|
|
261
|
+
* <p>List all rulesets available in the current account or rulesets associated
|
|
262
|
+
* with a specific resource (dataset).</p>
|
|
263
|
+
*/
|
|
264
|
+
listRulesets(args: ListRulesetsCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesetsCommandOutput>;
|
|
265
|
+
listRulesets(args: ListRulesetsCommandInput, cb: (err: any, data?: ListRulesetsCommandOutput) => void): void;
|
|
266
|
+
listRulesets(args: ListRulesetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesetsCommandOutput) => void): void;
|
|
236
267
|
/**
|
|
237
268
|
* <p>Lists the DataBrew schedules that are defined.</p>
|
|
238
269
|
*/
|
|
@@ -321,6 +352,12 @@ export declare class DataBrew extends DataBrewClient {
|
|
|
321
352
|
updateRecipeJob(args: UpdateRecipeJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecipeJobCommandOutput>;
|
|
322
353
|
updateRecipeJob(args: UpdateRecipeJobCommandInput, cb: (err: any, data?: UpdateRecipeJobCommandOutput) => void): void;
|
|
323
354
|
updateRecipeJob(args: UpdateRecipeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecipeJobCommandOutput) => void): void;
|
|
355
|
+
/**
|
|
356
|
+
* <p>Updates specified ruleset.</p>
|
|
357
|
+
*/
|
|
358
|
+
updateRuleset(args: UpdateRulesetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRulesetCommandOutput>;
|
|
359
|
+
updateRuleset(args: UpdateRulesetCommandInput, cb: (err: any, data?: UpdateRulesetCommandOutput) => void): void;
|
|
360
|
+
updateRuleset(args: UpdateRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRulesetCommandOutput) => void): void;
|
|
324
361
|
/**
|
|
325
362
|
* <p>Modifies the definition of an existing DataBrew schedule.</p>
|
|
326
363
|
*/
|
|
@@ -12,17 +12,20 @@ import { CreateProfileJobCommandInput, CreateProfileJobCommandOutput } from "./c
|
|
|
12
12
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
13
13
|
import { CreateRecipeCommandInput, CreateRecipeCommandOutput } from "./commands/CreateRecipeCommand";
|
|
14
14
|
import { CreateRecipeJobCommandInput, CreateRecipeJobCommandOutput } from "./commands/CreateRecipeJobCommand";
|
|
15
|
+
import { CreateRulesetCommandInput, CreateRulesetCommandOutput } from "./commands/CreateRulesetCommand";
|
|
15
16
|
import { CreateScheduleCommandInput, CreateScheduleCommandOutput } from "./commands/CreateScheduleCommand";
|
|
16
17
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
17
18
|
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
18
19
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
19
20
|
import { DeleteRecipeVersionCommandInput, DeleteRecipeVersionCommandOutput } from "./commands/DeleteRecipeVersionCommand";
|
|
21
|
+
import { DeleteRulesetCommandInput, DeleteRulesetCommandOutput } from "./commands/DeleteRulesetCommand";
|
|
20
22
|
import { DeleteScheduleCommandInput, DeleteScheduleCommandOutput } from "./commands/DeleteScheduleCommand";
|
|
21
23
|
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
22
24
|
import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
23
25
|
import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "./commands/DescribeJobRunCommand";
|
|
24
26
|
import { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "./commands/DescribeProjectCommand";
|
|
25
27
|
import { DescribeRecipeCommandInput, DescribeRecipeCommandOutput } from "./commands/DescribeRecipeCommand";
|
|
28
|
+
import { DescribeRulesetCommandInput, DescribeRulesetCommandOutput } from "./commands/DescribeRulesetCommand";
|
|
26
29
|
import { DescribeScheduleCommandInput, DescribeScheduleCommandOutput } from "./commands/DescribeScheduleCommand";
|
|
27
30
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
28
31
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
@@ -30,6 +33,7 @@ import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobs
|
|
|
30
33
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
31
34
|
import { ListRecipesCommandInput, ListRecipesCommandOutput } from "./commands/ListRecipesCommand";
|
|
32
35
|
import { ListRecipeVersionsCommandInput, ListRecipeVersionsCommandOutput } from "./commands/ListRecipeVersionsCommand";
|
|
36
|
+
import { ListRulesetsCommandInput, ListRulesetsCommandOutput } from "./commands/ListRulesetsCommand";
|
|
33
37
|
import { ListSchedulesCommandInput, ListSchedulesCommandOutput } from "./commands/ListSchedulesCommand";
|
|
34
38
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
35
39
|
import { PublishRecipeCommandInput, PublishRecipeCommandOutput } from "./commands/PublishRecipeCommand";
|
|
@@ -44,9 +48,10 @@ import { UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput } from "./c
|
|
|
44
48
|
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
45
49
|
import { UpdateRecipeCommandInput, UpdateRecipeCommandOutput } from "./commands/UpdateRecipeCommand";
|
|
46
50
|
import { UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput } from "./commands/UpdateRecipeJobCommand";
|
|
51
|
+
import { UpdateRulesetCommandInput, UpdateRulesetCommandOutput } from "./commands/UpdateRulesetCommand";
|
|
47
52
|
import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput } from "./commands/UpdateScheduleCommand";
|
|
48
|
-
export declare type ServiceInputTypes = BatchDeleteRecipeVersionCommandInput | CreateDatasetCommandInput | CreateProfileJobCommandInput | CreateProjectCommandInput | CreateRecipeCommandInput | CreateRecipeJobCommandInput | CreateScheduleCommandInput | DeleteDatasetCommandInput | DeleteJobCommandInput | DeleteProjectCommandInput | DeleteRecipeVersionCommandInput | DeleteScheduleCommandInput | DescribeDatasetCommandInput | DescribeJobCommandInput | DescribeJobRunCommandInput | DescribeProjectCommandInput | DescribeRecipeCommandInput | DescribeScheduleCommandInput | ListDatasetsCommandInput | ListJobRunsCommandInput | ListJobsCommandInput | ListProjectsCommandInput | ListRecipeVersionsCommandInput | ListRecipesCommandInput | ListSchedulesCommandInput | ListTagsForResourceCommandInput | PublishRecipeCommandInput | SendProjectSessionActionCommandInput | StartJobRunCommandInput | StartProjectSessionCommandInput | StopJobRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDatasetCommandInput | UpdateProfileJobCommandInput | UpdateProjectCommandInput | UpdateRecipeCommandInput | UpdateRecipeJobCommandInput | UpdateScheduleCommandInput;
|
|
49
|
-
export declare type ServiceOutputTypes = BatchDeleteRecipeVersionCommandOutput | CreateDatasetCommandOutput | CreateProfileJobCommandOutput | CreateProjectCommandOutput | CreateRecipeCommandOutput | CreateRecipeJobCommandOutput | CreateScheduleCommandOutput | DeleteDatasetCommandOutput | DeleteJobCommandOutput | DeleteProjectCommandOutput | DeleteRecipeVersionCommandOutput | DeleteScheduleCommandOutput | DescribeDatasetCommandOutput | DescribeJobCommandOutput | DescribeJobRunCommandOutput | DescribeProjectCommandOutput | DescribeRecipeCommandOutput | DescribeScheduleCommandOutput | ListDatasetsCommandOutput | ListJobRunsCommandOutput | ListJobsCommandOutput | ListProjectsCommandOutput | ListRecipeVersionsCommandOutput | ListRecipesCommandOutput | ListSchedulesCommandOutput | ListTagsForResourceCommandOutput | PublishRecipeCommandOutput | SendProjectSessionActionCommandOutput | StartJobRunCommandOutput | StartProjectSessionCommandOutput | StopJobRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDatasetCommandOutput | UpdateProfileJobCommandOutput | UpdateProjectCommandOutput | UpdateRecipeCommandOutput | UpdateRecipeJobCommandOutput | UpdateScheduleCommandOutput;
|
|
53
|
+
export declare 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;
|
|
54
|
+
export declare 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;
|
|
50
55
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
51
56
|
/**
|
|
52
57
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -60,7 +60,7 @@ export interface BatchDeleteRecipeVersionCommandOutput extends BatchDeleteRecipe
|
|
|
60
60
|
*
|
|
61
61
|
* @see {@link BatchDeleteRecipeVersionCommandInput} for command's `input` shape.
|
|
62
62
|
* @see {@link BatchDeleteRecipeVersionCommandOutput} for command's `response` shape.
|
|
63
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
63
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
64
64
|
*
|
|
65
65
|
*/
|
|
66
66
|
export declare class BatchDeleteRecipeVersionCommand extends $Command<BatchDeleteRecipeVersionCommandInput, BatchDeleteRecipeVersionCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateDatasetCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateDatasetCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateProfileJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateProfileJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateProfileJobCommand extends $Command<CreateProfileJobCommandInput, CreateProfileJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateProjectCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateProjectCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateProjectCommand extends $Command<CreateProjectCommandInput, CreateProjectCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateRecipeCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateRecipeCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateRecipeCommand extends $Command<CreateRecipeCommandInput, CreateRecipeCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateRecipeJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateRecipeJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateRecipeJobCommand extends $Command<CreateRecipeJobCommandInput, CreateRecipeJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
4
|
+
import { CreateRulesetRequest, CreateRulesetResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateRulesetCommandInput extends CreateRulesetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateRulesetCommandOutput extends CreateRulesetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates a new ruleset that can be used in a profile job to validate
|
|
11
|
+
* the data quality of a dataset.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { DataBrewClient, CreateRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
|
|
16
|
+
* // const { DataBrewClient, CreateRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
|
|
17
|
+
* const client = new DataBrewClient(config);
|
|
18
|
+
* const command = new CreateRulesetCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link CreateRulesetCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link CreateRulesetCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class CreateRulesetCommand extends $Command<CreateRulesetCommandInput, CreateRulesetCommandOutput, DataBrewClientResolvedConfig> {
|
|
28
|
+
readonly input: CreateRulesetCommandInput;
|
|
29
|
+
constructor(input: CreateRulesetCommandInput);
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRulesetCommandInput, CreateRulesetCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -21,7 +21,7 @@ export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __M
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link CreateScheduleCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link CreateScheduleCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class CreateScheduleCommand extends $Command<CreateScheduleCommandInput, CreateScheduleCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteDatasetCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteDatasetCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteJobCommand extends $Command<DeleteJobCommandInput, DeleteJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteProjectCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteProjectCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteProjectCommand extends $Command<DeleteProjectCommandInput, DeleteProjectCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteRecipeVersionCommandOutput extends DeleteRecipeVersionRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteRecipeVersionCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteRecipeVersionCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteRecipeVersionCommand extends $Command<DeleteRecipeVersionCommandInput, DeleteRecipeVersionCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
4
|
+
import { DeleteRulesetRequest, DeleteRulesetResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteRulesetCommandInput extends DeleteRulesetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteRulesetCommandOutput extends DeleteRulesetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Deletes a ruleset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { DataBrewClient, DeleteRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
|
|
15
|
+
* // const { DataBrewClient, DeleteRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
|
|
16
|
+
* const client = new DataBrewClient(config);
|
|
17
|
+
* const command = new DeleteRulesetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DeleteRulesetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DeleteRulesetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DeleteRulesetCommand extends $Command<DeleteRulesetCommandInput, DeleteRulesetCommandOutput, DataBrewClientResolvedConfig> {
|
|
27
|
+
readonly input: DeleteRulesetCommandInput;
|
|
28
|
+
constructor(input: DeleteRulesetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRulesetCommandInput, DeleteRulesetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteScheduleCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteScheduleCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteScheduleCommand extends $Command<DeleteScheduleCommandInput, DeleteScheduleCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeDatasetCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeDatasetCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeJobCommandOutput extends DescribeJobResponse, __Metadat
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeJobRunCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeJobRunCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeJobRunCommand extends $Command<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeProjectCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeProjectCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeProjectCommand extends $Command<DescribeProjectCommandInput, DescribeProjectCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface DescribeRecipeCommandOutput extends DescribeRecipeResponse, __M
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DescribeRecipeCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DescribeRecipeCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class DescribeRecipeCommand extends $Command<DescribeRecipeCommandInput, DescribeRecipeCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
4
|
+
import { DescribeRulesetRequest, DescribeRulesetResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeRulesetCommandInput extends DescribeRulesetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeRulesetCommandOutput extends DescribeRulesetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Retrieves detailed information about the ruleset.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { DataBrewClient, DescribeRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
|
|
15
|
+
* // const { DataBrewClient, DescribeRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
|
|
16
|
+
* const client = new DataBrewClient(config);
|
|
17
|
+
* const command = new DescribeRulesetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DescribeRulesetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DescribeRulesetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DescribeRulesetCommand extends $Command<DescribeRulesetCommandInput, DescribeRulesetCommandOutput, DataBrewClientResolvedConfig> {
|
|
27
|
+
readonly input: DescribeRulesetCommandInput;
|
|
28
|
+
constructor(input: DescribeRulesetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRulesetCommandInput, DescribeRulesetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeScheduleCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeScheduleCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeScheduleCommand extends $Command<DescribeScheduleCommandInput, DescribeScheduleCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListDatasetsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListDatasetsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListJobRunsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListJobRunsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListJobRunsCommand extends $Command<ListJobRunsCommandInput, ListJobRunsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListJobsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListJobsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListProjectsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListProjectsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ListRecipeVersionsCommandOutput extends ListRecipeVersionsRespo
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListRecipeVersionsCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListRecipeVersionsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListRecipeVersionsCommand extends $Command<ListRecipeVersionsCommandInput, ListRecipeVersionsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListRecipesCommandOutput extends ListRecipesResponse, __Metadat
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListRecipesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListRecipesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListRecipesCommand extends $Command<ListRecipesCommandInput, ListRecipesCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
4
|
+
import { ListRulesetsRequest, ListRulesetsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListRulesetsCommandInput extends ListRulesetsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListRulesetsCommandOutput extends ListRulesetsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>List all rulesets available in the current account or rulesets associated
|
|
11
|
+
* with a specific resource (dataset).</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { DataBrewClient, ListRulesetsCommand } from "@aws-sdk/client-databrew"; // ES Modules import
|
|
16
|
+
* // const { DataBrewClient, ListRulesetsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
|
|
17
|
+
* const client = new DataBrewClient(config);
|
|
18
|
+
* const command = new ListRulesetsCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link ListRulesetsCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link ListRulesetsCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class ListRulesetsCommand extends $Command<ListRulesetsCommandInput, ListRulesetsCommandOutput, DataBrewClientResolvedConfig> {
|
|
28
|
+
readonly input: ListRulesetsCommandInput;
|
|
29
|
+
constructor(input: ListRulesetsCommandInput);
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRulesetsCommandInput, ListRulesetsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface ListSchedulesCommandOutput extends ListSchedulesResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListSchedulesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListSchedulesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListSchedulesCommand extends $Command<ListSchedulesCommandInput, ListSchedulesCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface PublishRecipeCommandOutput extends PublishRecipeResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link PublishRecipeCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link PublishRecipeCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class PublishRecipeCommand extends $Command<PublishRecipeCommandInput, PublishRecipeCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link SendProjectSessionActionCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link SendProjectSessionActionCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class SendProjectSessionActionCommand extends $Command<SendProjectSessionActionCommandInput, SendProjectSessionActionCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartJobRunCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartJobRunCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link DataBrewClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, DataBrewClientResolvedConfig> {
|