@aws-sdk/client-databrew 3.295.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 +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { CreateRecipeJobRequest, CreateRecipeJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRecipeJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRecipeJobCommandInput extends CreateRecipeJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRecipeJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new job to transform input data, using steps defined in an existing Glue DataBrew recipe</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateRecipeJobCommandInput - {@link CreateRecipeJobCommandInput}
|
|
34
|
+
* @returns {@link CreateRecipeJobCommandOutput}
|
|
28
35
|
* @see {@link CreateRecipeJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateRecipeJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _
|
|
|
49
56
|
export declare class CreateRecipeJobCommand extends $Command<CreateRecipeJobCommandInput, CreateRecipeJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateRecipeJobCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateRecipeJobCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRecipeJobCommandInput, CreateRecipeJobCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
|
|
5
5
|
import { CreateRulesetRequest, CreateRulesetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRulesetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRulesetCommandInput extends CreateRulesetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRulesetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRulesetCommandOutput extends CreateRulesetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new ruleset that can be used in a profile job to validate
|
|
18
23
|
* the data quality of a dataset.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateRulesetCommandOutput extends CreateRulesetResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateRulesetCommandInput - {@link CreateRulesetCommandInput}
|
|
35
|
+
* @returns {@link CreateRulesetCommandOutput}
|
|
29
36
|
* @see {@link CreateRulesetCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateRulesetCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface CreateRulesetCommandOutput extends CreateRulesetResponse, __Met
|
|
|
44
51
|
export declare class CreateRulesetCommand extends $Command<CreateRulesetCommandInput, CreateRulesetCommandOutput, DataBrewClientResolvedConfig> {
|
|
45
52
|
readonly input: CreateRulesetCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: CreateRulesetCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRulesetCommandInput, CreateRulesetCommandOutput>;
|
|
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 { CreateScheduleRequest, CreateScheduleResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateScheduleCommandInput extends CreateScheduleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific
|
|
18
23
|
* date and time, or at regular intervals.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateScheduleCommandInput - {@link CreateScheduleCommandInput}
|
|
35
|
+
* @returns {@link CreateScheduleCommandOutput}
|
|
29
36
|
* @see {@link CreateScheduleCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateScheduleCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __M
|
|
|
44
51
|
export declare class CreateScheduleCommand extends $Command<CreateScheduleCommandInput, CreateScheduleCommandOutput, DataBrewClientResolvedConfig> {
|
|
45
52
|
readonly input: CreateScheduleCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: CreateScheduleCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateScheduleCommandInput, CreateScheduleCommandOutput>;
|
|
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 { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDatasetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDatasetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a dataset from DataBrew.</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 DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDatasetCommandInput - {@link DeleteDatasetCommandInput}
|
|
34
|
+
* @returns {@link DeleteDatasetCommandOutput}
|
|
28
35
|
* @see {@link DeleteDatasetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDatasetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
|
|
|
43
50
|
export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteDatasetCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteDatasetCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatasetCommandInput, DeleteDatasetCommandOutput>;
|
|
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 { DeleteJobRequest, DeleteJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteJobCommandInput extends DeleteJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified 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 DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteJobCommandInput - {@link DeleteJobCommandInput}
|
|
34
|
+
* @returns {@link DeleteJobCommandOutput}
|
|
28
35
|
* @see {@link DeleteJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
|
|
|
43
50
|
export declare class DeleteJobCommand extends $Command<DeleteJobCommandInput, DeleteJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteJobCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteJobCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobCommandInput, DeleteJobCommandOutput>;
|
|
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 { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteProjectCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteProjectCommandInput extends DeleteProjectRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteProjectCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeleteProjectCommandOutput extends DeleteProjectResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteProjectCommandInput - {@link DeleteProjectCommandInput}
|
|
34
|
+
* @returns {@link DeleteProjectCommandOutput}
|
|
28
35
|
* @see {@link DeleteProjectCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteProjectCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met
|
|
|
43
50
|
export declare class DeleteProjectCommand extends $Command<DeleteProjectCommandInput, DeleteProjectCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteProjectCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteProjectCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteProjectCommandInput, DeleteProjectCommandOutput>;
|
|
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 { DeleteRecipeVersionRequest, DeleteRecipeVersionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteRecipeVersionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteRecipeVersionCommandInput extends DeleteRecipeVersionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteRecipeVersionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteRecipeVersionCommandOutput extends DeleteRecipeVersionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a single version of a DataBrew recipe.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteRecipeVersionCommandOutput extends DeleteRecipeVersionRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteRecipeVersionCommandInput - {@link DeleteRecipeVersionCommandInput}
|
|
34
|
+
* @returns {@link DeleteRecipeVersionCommandOutput}
|
|
28
35
|
* @see {@link DeleteRecipeVersionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteRecipeVersionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteRecipeVersionCommandOutput extends DeleteRecipeVersionRes
|
|
|
43
50
|
export declare class DeleteRecipeVersionCommand extends $Command<DeleteRecipeVersionCommandInput, DeleteRecipeVersionCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteRecipeVersionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteRecipeVersionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRecipeVersionCommandInput, DeleteRecipeVersionCommandOutput>;
|
|
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 { DeleteRulesetRequest, DeleteRulesetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteRulesetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteRulesetCommandInput extends DeleteRulesetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteRulesetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteRulesetCommandOutput extends DeleteRulesetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a 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 DeleteRulesetCommandOutput extends DeleteRulesetResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteRulesetCommandInput - {@link DeleteRulesetCommandInput}
|
|
34
|
+
* @returns {@link DeleteRulesetCommandOutput}
|
|
28
35
|
* @see {@link DeleteRulesetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteRulesetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteRulesetCommandOutput extends DeleteRulesetResponse, __Met
|
|
|
43
50
|
export declare class DeleteRulesetCommand extends $Command<DeleteRulesetCommandInput, DeleteRulesetCommandOutput, DataBrewClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteRulesetCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteRulesetCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRulesetCommandInput, DeleteRulesetCommandOutput>;
|
|
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 { DeleteScheduleRequest, DeleteScheduleResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteScheduleCommandInput extends DeleteScheduleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified 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 DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteScheduleCommandInput - {@link DeleteScheduleCommandInput}
|
|
34
|
+
* @returns {@link DeleteScheduleCommandOutput}
|
|
28
35
|
* @see {@link DeleteScheduleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteScheduleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M
|
|
|
40
47
|
export declare class DeleteScheduleCommand extends $Command<DeleteScheduleCommandInput, DeleteScheduleCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: DeleteScheduleCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeleteScheduleCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteScheduleCommandInput, DeleteScheduleCommandOutput>;
|
|
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 { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDatasetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDatasetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the definition of a specific 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 DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeDatasetCommandInput - {@link DescribeDatasetCommandInput}
|
|
34
|
+
* @returns {@link DescribeDatasetCommandOutput}
|
|
28
35
|
* @see {@link DescribeDatasetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeDatasetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
40
47
|
export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeDatasetCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeDatasetCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDatasetCommandInput, DescribeDatasetCommandOutput>;
|
|
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 { DescribeJobRequest, DescribeJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeJobCommandInput extends DescribeJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeJobCommandOutput extends DescribeJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the definition of a specific 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 DescribeJobCommandOutput extends DescribeJobResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeJobCommandInput - {@link DescribeJobCommandInput}
|
|
34
|
+
* @returns {@link DescribeJobCommandOutput}
|
|
28
35
|
* @see {@link DescribeJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeJobCommandOutput extends DescribeJobResponse, __Metadat
|
|
|
40
47
|
export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeJobCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeJobCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
|
|
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 { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeJobRunCommandInput extends DescribeJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Represents one run of 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 DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeJobRunCommandInput - {@link DescribeJobRunCommandInput}
|
|
34
|
+
* @returns {@link DescribeJobRunCommandOutput}
|
|
28
35
|
* @see {@link DescribeJobRunCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeJobRunCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
|
|
|
40
47
|
export declare class DescribeJobRunCommand extends $Command<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeJobRunCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeJobRunCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobRunCommandInput, DescribeJobRunCommandOutput>;
|
|
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 { DescribeProjectRequest, DescribeProjectResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeProjectCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeProjectCommandInput extends DescribeProjectRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeProjectCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeProjectCommandOutput extends DescribeProjectResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the definition of a specific 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 DescribeProjectCommandOutput extends DescribeProjectResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeProjectCommandInput - {@link DescribeProjectCommandInput}
|
|
34
|
+
* @returns {@link DescribeProjectCommandOutput}
|
|
28
35
|
* @see {@link DescribeProjectCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeProjectCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, _
|
|
|
40
47
|
export declare class DescribeProjectCommand extends $Command<DescribeProjectCommandInput, DescribeProjectCommandOutput, DataBrewClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeProjectCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeProjectCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeProjectCommandInput, DescribeProjectCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|