@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.
- package/dist-types/DataBrew.d.ts +45 -0
- package/dist-types/DataBrewClient.d.ts +24 -4
- package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +16 -0
- package/dist-types/commands/CreateProfileJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +16 -0
- package/dist-types/commands/CreateRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateRecipeJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateRulesetCommand.d.ts +16 -0
- package/dist-types/commands/CreateScheduleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteJobCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRulesetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobRunCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRulesetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +16 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListRecipeVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListRulesetsCommand.d.ts +16 -0
- package/dist-types/commands/ListSchedulesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PublishRecipeCommand.d.ts +16 -0
- package/dist-types/commands/SendProjectSessionActionCommand.d.ts +16 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
- package/dist-types/commands/StartProjectSessionCommand.d.ts +16 -0
- package/dist-types/commands/StopJobRunCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDatasetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProfileJobCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRecipeCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRecipeJobCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRulesetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateScheduleCommand.d.ts +16 -0
- package/dist-types/models/DataBrewServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +373 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDatasetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecipeVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRulesetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSchedulesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { SendProjectSessionActionRequest, SendProjectSessionActionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SendProjectSessionActionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SendProjectSessionActionCommandInput extends SendProjectSessionActionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SendProjectSessionActionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SendProjectSessionActionCommandOutput extends SendProjectSessionActionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Performs a recipe step within an interactive DataBrew session that's currently
|
|
18
23
|
* open.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param SendProjectSessionActionCommandInput - {@link SendProjectSessionActionCommandInput}
|
|
35
|
+
* @returns {@link SendProjectSessionActionCommandOutput}
|
|
29
36
|
* @see {@link SendProjectSessionActionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link SendProjectSessionActionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
|
|
|
44
51
|
export declare class SendProjectSessionActionCommand extends $Command<SendProjectSessionActionCommandInput, SendProjectSessionActionCommandOutput, DataBrewClientResolvedConfig> {
|
|
45
52
|
readonly input: SendProjectSessionActionCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: SendProjectSessionActionCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendProjectSessionActionCommandInput, SendProjectSessionActionCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartJobRunCommandInput extends StartJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartJobRunCommandOutput extends StartJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Runs a DataBrew job.</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 StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartJobRunCommandInput - {@link StartJobRunCommandInput}
|
|
34
|
+
* @returns {@link StartJobRunCommandOutput}
|
|
28
35
|
* @see {@link StartJobRunCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartJobRunCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
46
53
|
export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, DataBrewClientResolvedConfig> {
|
|
47
54
|
readonly input: StartJobRunCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: StartJobRunCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartJobRunCommandInput, StartJobRunCommandOutput>;
|
|
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 { StartProjectSessionRequest, StartProjectSessionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartProjectSessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartProjectSessionCommandInput extends StartProjectSessionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartProjectSessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartProjectSessionCommandOutput extends StartProjectSessionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an interactive session, enabling you to manipulate data in a DataBrew
|
|
18
23
|
* project.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StartProjectSessionCommandInput - {@link StartProjectSessionCommandInput}
|
|
35
|
+
* @returns {@link StartProjectSessionCommandOutput}
|
|
29
36
|
* @see {@link StartProjectSessionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StartProjectSessionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes
|
|
|
47
54
|
export declare class StartProjectSessionCommand extends $Command<StartProjectSessionCommandInput, StartProjectSessionCommandOutput, DataBrewClientResolvedConfig> {
|
|
48
55
|
readonly input: StartProjectSessionCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: StartProjectSessionCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartProjectSessionCommandInput, StartProjectSessionCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { StopJobRunRequest, StopJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopJobRunCommandInput extends StopJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops a particular run of a job.</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 StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopJobRunCommandInput - {@link StopJobRunCommandInput}
|
|
34
|
+
* @returns {@link StopJobRunCommandOutput}
|
|
28
35
|
* @see {@link StopJobRunCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopJobRunCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB
|
|
|
40
47
|
export declare class StopJobRunCommand extends $Command<StopJobRunCommandInput, StopJobRunCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: StopJobRunCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: StopJobRunCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopJobRunCommandInput, StopJobRunCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds metadata tags to a DataBrew resource, such as a dataset, project, recipe, job, or
|
|
18
23
|
* schedule.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
44
51
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataBrewClientResolvedConfig> {
|
|
45
52
|
readonly input: TagResourceCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: TagResourceCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes metadata tags from a DataBrew resource.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
43
50
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: UntagResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UntagResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDatasetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDatasetCommandInput extends UpdateDatasetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDatasetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the definition of an existing 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 UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateDatasetCommandInput - {@link UpdateDatasetCommandInput}
|
|
34
|
+
* @returns {@link UpdateDatasetCommandOutput}
|
|
28
35
|
* @see {@link UpdateDatasetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateDatasetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
|
|
|
43
50
|
export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateDatasetCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateDatasetCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatasetCommandInput, UpdateDatasetCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UpdateProfileJobRequest, UpdateProfileJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateProfileJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateProfileJobCommandInput extends UpdateProfileJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateProfileJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the definition of an existing profile job.</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 UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateProfileJobCommandInput - {@link UpdateProfileJobCommandInput}
|
|
34
|
+
* @returns {@link UpdateProfileJobCommandOutput}
|
|
28
35
|
* @see {@link UpdateProfileJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateProfileJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
|
|
|
43
50
|
export declare class UpdateProfileJobCommand extends $Command<UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateProfileJobCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateProfileJobCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateProjectCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateProjectCommandInput extends UpdateProjectRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateProjectCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the definition of an existing 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 UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateProjectCommandInput - {@link UpdateProjectCommandInput}
|
|
34
|
+
* @returns {@link UpdateProjectCommandOutput}
|
|
28
35
|
* @see {@link UpdateProjectCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateProjectCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
|
|
|
40
47
|
export declare class UpdateProjectCommand extends $Command<UpdateProjectCommandInput, UpdateProjectCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: UpdateProjectCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: UpdateProjectCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProjectCommandInput, UpdateProjectCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UpdateRecipeRequest, UpdateRecipeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateRecipeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateRecipeCommandInput extends UpdateRecipeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateRecipeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the definition of the <code>LATEST_WORKING</code> version of a DataBrew
|
|
18
23
|
* recipe.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateRecipeCommandInput - {@link UpdateRecipeCommandInput}
|
|
35
|
+
* @returns {@link UpdateRecipeCommandOutput}
|
|
29
36
|
* @see {@link UpdateRecipeCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateRecipeCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad
|
|
|
41
48
|
export declare class UpdateRecipeCommand extends $Command<UpdateRecipeCommandInput, UpdateRecipeCommandOutput, DataBrewClientResolvedConfig> {
|
|
42
49
|
readonly input: UpdateRecipeCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: UpdateRecipeCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRecipeCommandInput, UpdateRecipeCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UpdateRecipeJobRequest, UpdateRecipeJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateRecipeJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateRecipeJobCommandInput extends UpdateRecipeJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateRecipeJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the definition of an existing DataBrew recipe job.</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 UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateRecipeJobCommandInput - {@link UpdateRecipeJobCommandInput}
|
|
34
|
+
* @returns {@link UpdateRecipeJobCommandOutput}
|
|
28
35
|
* @see {@link UpdateRecipeJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateRecipeJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
|
|
|
43
50
|
export declare class UpdateRecipeJobCommand extends $Command<UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateRecipeJobCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateRecipeJobCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UpdateRulesetRequest, UpdateRulesetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateRulesetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateRulesetCommandInput extends UpdateRulesetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateRulesetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates specified ruleset.</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 UpdateRulesetCommandOutput extends UpdateRulesetResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateRulesetCommandInput - {@link UpdateRulesetCommandInput}
|
|
34
|
+
* @returns {@link UpdateRulesetCommandOutput}
|
|
28
35
|
* @see {@link UpdateRulesetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateRulesetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __Met
|
|
|
40
47
|
export declare class UpdateRulesetCommand extends $Command<UpdateRulesetCommandInput, UpdateRulesetCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: UpdateRulesetCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: UpdateRulesetCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRulesetCommandInput, UpdateRulesetCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { UpdateScheduleRequest, UpdateScheduleResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateScheduleCommandInput extends UpdateScheduleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the definition of an existing DataBrew schedule.</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 UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateScheduleCommandInput - {@link UpdateScheduleCommandInput}
|
|
34
|
+
* @returns {@link UpdateScheduleCommandOutput}
|
|
28
35
|
* @see {@link UpdateScheduleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateScheduleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M
|
|
|
43
50
|
export declare class UpdateScheduleCommand extends $Command<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateScheduleCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateScheduleCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateScheduleCommandInput, UpdateScheduleCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|