@aws-sdk/client-databrew 3.325.0 → 3.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +13 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
- package/dist-types/commands/CreateProfileJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +6 -0
- package/dist-types/commands/CreateRecipeCommand.d.ts +6 -0
- package/dist-types/commands/CreateRecipeJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateRulesetCommand.d.ts +6 -0
- package/dist-types/commands/CreateScheduleCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteJobCommand.d.ts +6 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +6 -0
- package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +7 -0
- package/dist-types/commands/DeleteRulesetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +95 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +152 -0
- package/dist-types/commands/DescribeJobRunCommand.d.ts +145 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +24 -0
- package/dist-types/commands/DescribeRecipeCommand.d.ts +36 -0
- package/dist-types/commands/DescribeRulesetCommand.d.ts +37 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +18 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +101 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +94 -0
- package/dist-types/commands/ListJobsCommand.d.ts +102 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +29 -0
- package/dist-types/commands/ListRecipeVersionsCommand.d.ts +41 -0
- package/dist-types/commands/ListRecipesCommand.d.ts +41 -0
- package/dist-types/commands/ListRulesetsCommand.d.ts +23 -0
- package/dist-types/commands/ListSchedulesCommand.d.ts +24 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PublishRecipeCommand.d.ts +6 -0
- package/dist-types/commands/SendProjectSessionActionCommand.d.ts +8 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +6 -0
- package/dist-types/commands/StartProjectSessionCommand.d.ts +7 -0
- package/dist-types/commands/StopJobRunCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDatasetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateProfileJobCommand.d.ts +6 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +7 -0
- package/dist-types/commands/UpdateRecipeCommand.d.ts +6 -0
- package/dist-types/commands/UpdateRecipeJobCommand.d.ts +6 -0
- package/dist-types/commands/UpdateRulesetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateScheduleCommand.d.ts +6 -0
- package/package.json +7 -7
|
@@ -32,6 +32,33 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListProjectsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListProjectsResponse
|
|
36
|
+
* // Projects: [ // ProjectList // required
|
|
37
|
+
* // { // Project
|
|
38
|
+
* // AccountId: "STRING_VALUE",
|
|
39
|
+
* // CreateDate: new Date("TIMESTAMP"),
|
|
40
|
+
* // CreatedBy: "STRING_VALUE",
|
|
41
|
+
* // DatasetName: "STRING_VALUE",
|
|
42
|
+
* // LastModifiedDate: new Date("TIMESTAMP"),
|
|
43
|
+
* // LastModifiedBy: "STRING_VALUE",
|
|
44
|
+
* // Name: "STRING_VALUE", // required
|
|
45
|
+
* // RecipeName: "STRING_VALUE", // required
|
|
46
|
+
* // ResourceArn: "STRING_VALUE",
|
|
47
|
+
* // Sample: { // Sample
|
|
48
|
+
* // Size: Number("int"),
|
|
49
|
+
* // Type: "FIRST_N" || "LAST_N" || "RANDOM", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // Tags: { // TagMap
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // RoleArn: "STRING_VALUE",
|
|
55
|
+
* // OpenedBy: "STRING_VALUE",
|
|
56
|
+
* // OpenDate: new Date("TIMESTAMP"),
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // NextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
35
62
|
* ```
|
|
36
63
|
*
|
|
37
64
|
* @param ListProjectsCommandInput - {@link ListProjectsCommandInput}
|
|
@@ -43,6 +70,8 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
|
|
|
43
70
|
* @throws {@link ValidationException} (client fault)
|
|
44
71
|
* <p>The input parameters for this request failed validation.</p>
|
|
45
72
|
*
|
|
73
|
+
* @throws {@link DataBrewServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
46
75
|
*
|
|
47
76
|
*/
|
|
48
77
|
export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -34,6 +34,45 @@ export interface ListRecipeVersionsCommandOutput extends ListRecipeVersionsRespo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListRecipeVersionsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListRecipeVersionsResponse
|
|
38
|
+
* // NextToken: "STRING_VALUE",
|
|
39
|
+
* // Recipes: [ // RecipeList // required
|
|
40
|
+
* // { // Recipe
|
|
41
|
+
* // CreatedBy: "STRING_VALUE",
|
|
42
|
+
* // CreateDate: new Date("TIMESTAMP"),
|
|
43
|
+
* // LastModifiedBy: "STRING_VALUE",
|
|
44
|
+
* // LastModifiedDate: new Date("TIMESTAMP"),
|
|
45
|
+
* // ProjectName: "STRING_VALUE",
|
|
46
|
+
* // PublishedBy: "STRING_VALUE",
|
|
47
|
+
* // PublishedDate: new Date("TIMESTAMP"),
|
|
48
|
+
* // Description: "STRING_VALUE",
|
|
49
|
+
* // Name: "STRING_VALUE", // required
|
|
50
|
+
* // ResourceArn: "STRING_VALUE",
|
|
51
|
+
* // Steps: [ // RecipeStepList
|
|
52
|
+
* // { // RecipeStep
|
|
53
|
+
* // Action: { // RecipeAction
|
|
54
|
+
* // Operation: "STRING_VALUE", // required
|
|
55
|
+
* // Parameters: { // ParameterMap
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ConditionExpressions: [ // ConditionExpressionList
|
|
60
|
+
* // { // ConditionExpression
|
|
61
|
+
* // Condition: "STRING_VALUE", // required
|
|
62
|
+
* // Value: "STRING_VALUE",
|
|
63
|
+
* // TargetColumn: "STRING_VALUE", // required
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // Tags: { // TagMap
|
|
69
|
+
* // "<keys>": "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // RecipeVersion: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
37
76
|
* ```
|
|
38
77
|
*
|
|
39
78
|
* @param ListRecipeVersionsCommandInput - {@link ListRecipeVersionsCommandInput}
|
|
@@ -45,6 +84,8 @@ export interface ListRecipeVersionsCommandOutput extends ListRecipeVersionsRespo
|
|
|
45
84
|
* @throws {@link ValidationException} (client fault)
|
|
46
85
|
* <p>The input parameters for this request failed validation.</p>
|
|
47
86
|
*
|
|
87
|
+
* @throws {@link DataBrewServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
48
89
|
*
|
|
49
90
|
*/
|
|
50
91
|
export declare class ListRecipeVersionsCommand extends $Command<ListRecipeVersionsCommandInput, ListRecipeVersionsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -33,6 +33,45 @@ export interface ListRecipesCommandOutput extends ListRecipesResponse, __Metadat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListRecipesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListRecipesResponse
|
|
37
|
+
* // Recipes: [ // RecipeList // required
|
|
38
|
+
* // { // Recipe
|
|
39
|
+
* // CreatedBy: "STRING_VALUE",
|
|
40
|
+
* // CreateDate: new Date("TIMESTAMP"),
|
|
41
|
+
* // LastModifiedBy: "STRING_VALUE",
|
|
42
|
+
* // LastModifiedDate: new Date("TIMESTAMP"),
|
|
43
|
+
* // ProjectName: "STRING_VALUE",
|
|
44
|
+
* // PublishedBy: "STRING_VALUE",
|
|
45
|
+
* // PublishedDate: new Date("TIMESTAMP"),
|
|
46
|
+
* // Description: "STRING_VALUE",
|
|
47
|
+
* // Name: "STRING_VALUE", // required
|
|
48
|
+
* // ResourceArn: "STRING_VALUE",
|
|
49
|
+
* // Steps: [ // RecipeStepList
|
|
50
|
+
* // { // RecipeStep
|
|
51
|
+
* // Action: { // RecipeAction
|
|
52
|
+
* // Operation: "STRING_VALUE", // required
|
|
53
|
+
* // Parameters: { // ParameterMap
|
|
54
|
+
* // "<keys>": "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // ConditionExpressions: [ // ConditionExpressionList
|
|
58
|
+
* // { // ConditionExpression
|
|
59
|
+
* // Condition: "STRING_VALUE", // required
|
|
60
|
+
* // Value: "STRING_VALUE",
|
|
61
|
+
* // TargetColumn: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // Tags: { // TagMap
|
|
67
|
+
* // "<keys>": "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // RecipeVersion: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // NextToken: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
36
75
|
* ```
|
|
37
76
|
*
|
|
38
77
|
* @param ListRecipesCommandInput - {@link ListRecipesCommandInput}
|
|
@@ -44,6 +83,8 @@ export interface ListRecipesCommandOutput extends ListRecipesResponse, __Metadat
|
|
|
44
83
|
* @throws {@link ValidationException} (client fault)
|
|
45
84
|
* <p>The input parameters for this request failed validation.</p>
|
|
46
85
|
*
|
|
86
|
+
* @throws {@link DataBrewServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
47
88
|
*
|
|
48
89
|
*/
|
|
49
90
|
export declare class ListRecipesCommand extends $Command<ListRecipesCommandInput, ListRecipesCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -34,6 +34,27 @@ export interface ListRulesetsCommandOutput extends ListRulesetsResponse, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListRulesetsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListRulesetsResponse
|
|
38
|
+
* // Rulesets: [ // RulesetItemList // required
|
|
39
|
+
* // { // RulesetItem
|
|
40
|
+
* // AccountId: "STRING_VALUE",
|
|
41
|
+
* // CreatedBy: "STRING_VALUE",
|
|
42
|
+
* // CreateDate: new Date("TIMESTAMP"),
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // LastModifiedBy: "STRING_VALUE",
|
|
45
|
+
* // LastModifiedDate: new Date("TIMESTAMP"),
|
|
46
|
+
* // Name: "STRING_VALUE", // required
|
|
47
|
+
* // ResourceArn: "STRING_VALUE",
|
|
48
|
+
* // RuleCount: Number("int"),
|
|
49
|
+
* // Tags: { // TagMap
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // TargetArn: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // NextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
37
58
|
* ```
|
|
38
59
|
*
|
|
39
60
|
* @param ListRulesetsCommandInput - {@link ListRulesetsCommandInput}
|
|
@@ -48,6 +69,8 @@ export interface ListRulesetsCommandOutput extends ListRulesetsResponse, __Metad
|
|
|
48
69
|
* @throws {@link ValidationException} (client fault)
|
|
49
70
|
* <p>The input parameters for this request failed validation.</p>
|
|
50
71
|
*
|
|
72
|
+
* @throws {@link DataBrewServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
51
74
|
*
|
|
52
75
|
*/
|
|
53
76
|
export declare class ListRulesetsCommand extends $Command<ListRulesetsCommandInput, ListRulesetsCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -33,6 +33,28 @@ export interface ListSchedulesCommandOutput extends ListSchedulesResponse, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSchedulesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSchedulesResponse
|
|
37
|
+
* // Schedules: [ // ScheduleList // required
|
|
38
|
+
* // { // Schedule
|
|
39
|
+
* // AccountId: "STRING_VALUE",
|
|
40
|
+
* // CreatedBy: "STRING_VALUE",
|
|
41
|
+
* // CreateDate: new Date("TIMESTAMP"),
|
|
42
|
+
* // JobNames: [ // JobNameList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // LastModifiedBy: "STRING_VALUE",
|
|
46
|
+
* // LastModifiedDate: new Date("TIMESTAMP"),
|
|
47
|
+
* // ResourceArn: "STRING_VALUE",
|
|
48
|
+
* // CronExpression: "STRING_VALUE",
|
|
49
|
+
* // Tags: { // TagMap
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // Name: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // NextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
36
58
|
* ```
|
|
37
59
|
*
|
|
38
60
|
* @param ListSchedulesCommandInput - {@link ListSchedulesCommandInput}
|
|
@@ -44,6 +66,8 @@ export interface ListSchedulesCommandOutput extends ListSchedulesResponse, __Met
|
|
|
44
66
|
* @throws {@link ValidationException} (client fault)
|
|
45
67
|
* <p>The input parameters for this request failed validation.</p>
|
|
46
68
|
*
|
|
69
|
+
* @throws {@link DataBrewServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
47
71
|
*
|
|
48
72
|
*/
|
|
49
73
|
export declare class ListSchedulesCommand extends $Command<ListSchedulesCommandInput, ListSchedulesCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* <p>The input parameters for this request failed validation.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link DataBrewServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface PublishRecipeCommandOutput extends PublishRecipeResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new PublishRecipeCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // PublishRecipeResponse
|
|
36
|
+
* // Name: "STRING_VALUE", // required
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param PublishRecipeCommandInput - {@link PublishRecipeCommandInput}
|
|
@@ -49,6 +53,8 @@ export interface PublishRecipeCommandOutput extends PublishRecipeResponse, __Met
|
|
|
49
53
|
* @throws {@link ValidationException} (client fault)
|
|
50
54
|
* <p>The input parameters for this request failed validation.</p>
|
|
51
55
|
*
|
|
56
|
+
* @throws {@link DataBrewServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
52
58
|
*
|
|
53
59
|
*/
|
|
54
60
|
export declare class PublishRecipeCommand extends $Command<PublishRecipeCommandInput, PublishRecipeCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -60,6 +60,12 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new SendProjectSessionActionCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // { // SendProjectSessionActionResponse
|
|
64
|
+
* // Result: "STRING_VALUE",
|
|
65
|
+
* // Name: "STRING_VALUE", // required
|
|
66
|
+
* // ActionId: Number("int"),
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
63
69
|
* ```
|
|
64
70
|
*
|
|
65
71
|
* @param SendProjectSessionActionCommandInput - {@link SendProjectSessionActionCommandInput}
|
|
@@ -77,6 +83,8 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
|
|
|
77
83
|
* @throws {@link ValidationException} (client fault)
|
|
78
84
|
* <p>The input parameters for this request failed validation.</p>
|
|
79
85
|
*
|
|
86
|
+
* @throws {@link DataBrewServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
80
88
|
*
|
|
81
89
|
*/
|
|
82
90
|
export declare class SendProjectSessionActionCommand extends $Command<SendProjectSessionActionCommandInput, SendProjectSessionActionCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartJobRunCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StartJobRunResponse
|
|
35
|
+
* // RunId: "STRING_VALUE", // required
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param StartJobRunCommandInput - {@link StartJobRunCommandInput}
|
|
@@ -51,6 +55,8 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
51
55
|
* @throws {@link ValidationException} (client fault)
|
|
52
56
|
* <p>The input parameters for this request failed validation.</p>
|
|
53
57
|
*
|
|
58
|
+
* @throws {@link DataBrewServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
54
60
|
*
|
|
55
61
|
*/
|
|
56
62
|
export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new StartProjectSessionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // StartProjectSessionResponse
|
|
37
|
+
* // Name: "STRING_VALUE", // required
|
|
38
|
+
* // ClientSessionId: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param StartProjectSessionCommandInput - {@link StartProjectSessionCommandInput}
|
|
@@ -53,6 +58,8 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes
|
|
|
53
58
|
* @throws {@link ValidationException} (client fault)
|
|
54
59
|
* <p>The input parameters for this request failed validation.</p>
|
|
55
60
|
*
|
|
61
|
+
* @throws {@link DataBrewServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
56
63
|
*
|
|
57
64
|
*/
|
|
58
65
|
export declare class StartProjectSessionCommand extends $Command<StartProjectSessionCommandInput, StartProjectSessionCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new StopJobRunCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // StopJobRunResponse
|
|
36
|
+
* // RunId: "STRING_VALUE", // required
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param StopJobRunCommandInput - {@link StopJobRunCommandInput}
|
|
@@ -46,6 +50,8 @@ export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB
|
|
|
46
50
|
* @throws {@link ValidationException} (client fault)
|
|
47
51
|
* <p>The input parameters for this request failed validation.</p>
|
|
48
52
|
*
|
|
53
|
+
* @throws {@link DataBrewServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
49
55
|
*
|
|
50
56
|
*/
|
|
51
57
|
export declare class StopJobRunCommand extends $Command<StopJobRunCommandInput, StopJobRunCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new TagResourceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
52
54
|
* @throws {@link ValidationException} (client fault)
|
|
53
55
|
* <p>The input parameters for this request failed validation.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link DataBrewServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>The input parameters for this request failed validation.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link DataBrewServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -111,6 +111,10 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
|
|
|
111
111
|
* };
|
|
112
112
|
* const command = new UpdateDatasetCommand(input);
|
|
113
113
|
* const response = await client.send(command);
|
|
114
|
+
* // { // UpdateDatasetResponse
|
|
115
|
+
* // Name: "STRING_VALUE", // required
|
|
116
|
+
* // };
|
|
117
|
+
*
|
|
114
118
|
* ```
|
|
115
119
|
*
|
|
116
120
|
* @param UpdateDatasetCommandInput - {@link UpdateDatasetCommandInput}
|
|
@@ -128,6 +132,8 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
|
|
|
128
132
|
* @throws {@link ValidationException} (client fault)
|
|
129
133
|
* <p>The input parameters for this request failed validation.</p>
|
|
130
134
|
*
|
|
135
|
+
* @throws {@link DataBrewServiceException}
|
|
136
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
131
137
|
*
|
|
132
138
|
*/
|
|
133
139
|
export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -109,6 +109,10 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
|
|
|
109
109
|
* };
|
|
110
110
|
* const command = new UpdateProfileJobCommand(input);
|
|
111
111
|
* const response = await client.send(command);
|
|
112
|
+
* // { // UpdateProfileJobResponse
|
|
113
|
+
* // Name: "STRING_VALUE", // required
|
|
114
|
+
* // };
|
|
115
|
+
*
|
|
112
116
|
* ```
|
|
113
117
|
*
|
|
114
118
|
* @param UpdateProfileJobCommandInput - {@link UpdateProfileJobCommandInput}
|
|
@@ -126,6 +130,8 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
|
|
|
126
130
|
* @throws {@link ValidationException} (client fault)
|
|
127
131
|
* <p>The input parameters for this request failed validation.</p>
|
|
128
132
|
*
|
|
133
|
+
* @throws {@link DataBrewServiceException}
|
|
134
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
129
135
|
*
|
|
130
136
|
*/
|
|
131
137
|
export declare class UpdateProfileJobCommand extends $Command<UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -36,6 +36,11 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateProjectCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // UpdateProjectResponse
|
|
40
|
+
* // LastModifiedDate: new Date("TIMESTAMP"),
|
|
41
|
+
* // Name: "STRING_VALUE", // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
41
46
|
* @param UpdateProjectCommandInput - {@link UpdateProjectCommandInput}
|
|
@@ -50,6 +55,8 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
|
|
|
50
55
|
* @throws {@link ValidationException} (client fault)
|
|
51
56
|
* <p>The input parameters for this request failed validation.</p>
|
|
52
57
|
*
|
|
58
|
+
* @throws {@link DataBrewServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
53
60
|
*
|
|
54
61
|
*/
|
|
55
62
|
export declare class UpdateProjectCommand extends $Command<UpdateProjectCommandInput, UpdateProjectCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -50,6 +50,10 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new UpdateRecipeCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // UpdateRecipeResponse
|
|
54
|
+
* // Name: "STRING_VALUE", // required
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
53
57
|
* ```
|
|
54
58
|
*
|
|
55
59
|
* @param UpdateRecipeCommandInput - {@link UpdateRecipeCommandInput}
|
|
@@ -64,6 +68,8 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad
|
|
|
64
68
|
* @throws {@link ValidationException} (client fault)
|
|
65
69
|
* <p>The input parameters for this request failed validation.</p>
|
|
66
70
|
*
|
|
71
|
+
* @throws {@link DataBrewServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
67
73
|
*
|
|
68
74
|
*/
|
|
69
75
|
export declare class UpdateRecipeCommand extends $Command<UpdateRecipeCommandInput, UpdateRecipeCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -96,6 +96,10 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
|
|
|
96
96
|
* };
|
|
97
97
|
* const command = new UpdateRecipeJobCommand(input);
|
|
98
98
|
* const response = await client.send(command);
|
|
99
|
+
* // { // UpdateRecipeJobResponse
|
|
100
|
+
* // Name: "STRING_VALUE", // required
|
|
101
|
+
* // };
|
|
102
|
+
*
|
|
99
103
|
* ```
|
|
100
104
|
*
|
|
101
105
|
* @param UpdateRecipeJobCommandInput - {@link UpdateRecipeJobCommandInput}
|
|
@@ -113,6 +117,8 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
|
|
|
113
117
|
* @throws {@link ValidationException} (client fault)
|
|
114
118
|
* <p>The input parameters for this request failed validation.</p>
|
|
115
119
|
*
|
|
120
|
+
* @throws {@link DataBrewServiceException}
|
|
121
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
116
122
|
*
|
|
117
123
|
*/
|
|
118
124
|
export declare class UpdateRecipeJobCommand extends $Command<UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -53,6 +53,10 @@ export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __Met
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new UpdateRulesetCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // UpdateRulesetResponse
|
|
57
|
+
* // Name: "STRING_VALUE", // required
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
56
60
|
* ```
|
|
57
61
|
*
|
|
58
62
|
* @param UpdateRulesetCommandInput - {@link UpdateRulesetCommandInput}
|
|
@@ -67,6 +71,8 @@ export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __Met
|
|
|
67
71
|
* @throws {@link ValidationException} (client fault)
|
|
68
72
|
* <p>The input parameters for this request failed validation.</p>
|
|
69
73
|
*
|
|
74
|
+
* @throws {@link DataBrewServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
70
76
|
*
|
|
71
77
|
*/
|
|
72
78
|
export declare class UpdateRulesetCommand extends $Command<UpdateRulesetCommandInput, UpdateRulesetCommandOutput, DataBrewClientResolvedConfig> {
|
|
@@ -35,6 +35,10 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateScheduleCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // UpdateScheduleResponse
|
|
39
|
+
* // Name: "STRING_VALUE", // required
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
38
42
|
* ```
|
|
39
43
|
*
|
|
40
44
|
* @param UpdateScheduleCommandInput - {@link UpdateScheduleCommandInput}
|
|
@@ -52,6 +56,8 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M
|
|
|
52
56
|
* @throws {@link ValidationException} (client fault)
|
|
53
57
|
* <p>The input parameters for this request failed validation.</p>
|
|
54
58
|
*
|
|
59
|
+
* @throws {@link DataBrewServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from DataBrew service.</p>
|
|
55
61
|
*
|
|
56
62
|
*/
|
|
57
63
|
export declare class UpdateScheduleCommand extends $Command<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, DataBrewClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-databrew",
|
|
3
3
|
"description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|