@aws-sdk/client-databrew 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/DataBrew.d.ts +752 -225
- package/dist-types/ts3.4/DataBrewClient.d.ts +368 -117
- package/dist-types/ts3.4/commands/BatchDeleteRecipeVersionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateProfileJobCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateRecipeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateRecipeJobCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateRulesetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteRecipeVersionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteRulesetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeRecipeCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeRulesetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListRecipeVersionsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListRecipesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListRulesetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PublishRecipeCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SendProjectSessionActionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartProjectSessionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StopJobRunCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateProfileJobCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateRecipeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateRecipeJobCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateRulesetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +44 -44
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/DataBrewServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1293 -1771
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProjectsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecipeVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecipesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRulesetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchedulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +533 -134
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,117 +1,368 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
import {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
import {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
BatchDeleteRecipeVersionCommandInput,
|
|
47
|
+
BatchDeleteRecipeVersionCommandOutput,
|
|
48
|
+
} from "./commands/BatchDeleteRecipeVersionCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateDatasetCommandInput,
|
|
51
|
+
CreateDatasetCommandOutput,
|
|
52
|
+
} from "./commands/CreateDatasetCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateProfileJobCommandInput,
|
|
55
|
+
CreateProfileJobCommandOutput,
|
|
56
|
+
} from "./commands/CreateProfileJobCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateProjectCommandInput,
|
|
59
|
+
CreateProjectCommandOutput,
|
|
60
|
+
} from "./commands/CreateProjectCommand";
|
|
61
|
+
import {
|
|
62
|
+
CreateRecipeCommandInput,
|
|
63
|
+
CreateRecipeCommandOutput,
|
|
64
|
+
} from "./commands/CreateRecipeCommand";
|
|
65
|
+
import {
|
|
66
|
+
CreateRecipeJobCommandInput,
|
|
67
|
+
CreateRecipeJobCommandOutput,
|
|
68
|
+
} from "./commands/CreateRecipeJobCommand";
|
|
69
|
+
import {
|
|
70
|
+
CreateRulesetCommandInput,
|
|
71
|
+
CreateRulesetCommandOutput,
|
|
72
|
+
} from "./commands/CreateRulesetCommand";
|
|
73
|
+
import {
|
|
74
|
+
CreateScheduleCommandInput,
|
|
75
|
+
CreateScheduleCommandOutput,
|
|
76
|
+
} from "./commands/CreateScheduleCommand";
|
|
77
|
+
import {
|
|
78
|
+
DeleteDatasetCommandInput,
|
|
79
|
+
DeleteDatasetCommandOutput,
|
|
80
|
+
} from "./commands/DeleteDatasetCommand";
|
|
81
|
+
import {
|
|
82
|
+
DeleteJobCommandInput,
|
|
83
|
+
DeleteJobCommandOutput,
|
|
84
|
+
} from "./commands/DeleteJobCommand";
|
|
85
|
+
import {
|
|
86
|
+
DeleteProjectCommandInput,
|
|
87
|
+
DeleteProjectCommandOutput,
|
|
88
|
+
} from "./commands/DeleteProjectCommand";
|
|
89
|
+
import {
|
|
90
|
+
DeleteRecipeVersionCommandInput,
|
|
91
|
+
DeleteRecipeVersionCommandOutput,
|
|
92
|
+
} from "./commands/DeleteRecipeVersionCommand";
|
|
93
|
+
import {
|
|
94
|
+
DeleteRulesetCommandInput,
|
|
95
|
+
DeleteRulesetCommandOutput,
|
|
96
|
+
} from "./commands/DeleteRulesetCommand";
|
|
97
|
+
import {
|
|
98
|
+
DeleteScheduleCommandInput,
|
|
99
|
+
DeleteScheduleCommandOutput,
|
|
100
|
+
} from "./commands/DeleteScheduleCommand";
|
|
101
|
+
import {
|
|
102
|
+
DescribeDatasetCommandInput,
|
|
103
|
+
DescribeDatasetCommandOutput,
|
|
104
|
+
} from "./commands/DescribeDatasetCommand";
|
|
105
|
+
import {
|
|
106
|
+
DescribeJobCommandInput,
|
|
107
|
+
DescribeJobCommandOutput,
|
|
108
|
+
} from "./commands/DescribeJobCommand";
|
|
109
|
+
import {
|
|
110
|
+
DescribeJobRunCommandInput,
|
|
111
|
+
DescribeJobRunCommandOutput,
|
|
112
|
+
} from "./commands/DescribeJobRunCommand";
|
|
113
|
+
import {
|
|
114
|
+
DescribeProjectCommandInput,
|
|
115
|
+
DescribeProjectCommandOutput,
|
|
116
|
+
} from "./commands/DescribeProjectCommand";
|
|
117
|
+
import {
|
|
118
|
+
DescribeRecipeCommandInput,
|
|
119
|
+
DescribeRecipeCommandOutput,
|
|
120
|
+
} from "./commands/DescribeRecipeCommand";
|
|
121
|
+
import {
|
|
122
|
+
DescribeRulesetCommandInput,
|
|
123
|
+
DescribeRulesetCommandOutput,
|
|
124
|
+
} from "./commands/DescribeRulesetCommand";
|
|
125
|
+
import {
|
|
126
|
+
DescribeScheduleCommandInput,
|
|
127
|
+
DescribeScheduleCommandOutput,
|
|
128
|
+
} from "./commands/DescribeScheduleCommand";
|
|
129
|
+
import {
|
|
130
|
+
ListDatasetsCommandInput,
|
|
131
|
+
ListDatasetsCommandOutput,
|
|
132
|
+
} from "./commands/ListDatasetsCommand";
|
|
133
|
+
import {
|
|
134
|
+
ListJobRunsCommandInput,
|
|
135
|
+
ListJobRunsCommandOutput,
|
|
136
|
+
} from "./commands/ListJobRunsCommand";
|
|
137
|
+
import {
|
|
138
|
+
ListJobsCommandInput,
|
|
139
|
+
ListJobsCommandOutput,
|
|
140
|
+
} from "./commands/ListJobsCommand";
|
|
141
|
+
import {
|
|
142
|
+
ListProjectsCommandInput,
|
|
143
|
+
ListProjectsCommandOutput,
|
|
144
|
+
} from "./commands/ListProjectsCommand";
|
|
145
|
+
import {
|
|
146
|
+
ListRecipesCommandInput,
|
|
147
|
+
ListRecipesCommandOutput,
|
|
148
|
+
} from "./commands/ListRecipesCommand";
|
|
149
|
+
import {
|
|
150
|
+
ListRecipeVersionsCommandInput,
|
|
151
|
+
ListRecipeVersionsCommandOutput,
|
|
152
|
+
} from "./commands/ListRecipeVersionsCommand";
|
|
153
|
+
import {
|
|
154
|
+
ListRulesetsCommandInput,
|
|
155
|
+
ListRulesetsCommandOutput,
|
|
156
|
+
} from "./commands/ListRulesetsCommand";
|
|
157
|
+
import {
|
|
158
|
+
ListSchedulesCommandInput,
|
|
159
|
+
ListSchedulesCommandOutput,
|
|
160
|
+
} from "./commands/ListSchedulesCommand";
|
|
161
|
+
import {
|
|
162
|
+
ListTagsForResourceCommandInput,
|
|
163
|
+
ListTagsForResourceCommandOutput,
|
|
164
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
165
|
+
import {
|
|
166
|
+
PublishRecipeCommandInput,
|
|
167
|
+
PublishRecipeCommandOutput,
|
|
168
|
+
} from "./commands/PublishRecipeCommand";
|
|
169
|
+
import {
|
|
170
|
+
SendProjectSessionActionCommandInput,
|
|
171
|
+
SendProjectSessionActionCommandOutput,
|
|
172
|
+
} from "./commands/SendProjectSessionActionCommand";
|
|
173
|
+
import {
|
|
174
|
+
StartJobRunCommandInput,
|
|
175
|
+
StartJobRunCommandOutput,
|
|
176
|
+
} from "./commands/StartJobRunCommand";
|
|
177
|
+
import {
|
|
178
|
+
StartProjectSessionCommandInput,
|
|
179
|
+
StartProjectSessionCommandOutput,
|
|
180
|
+
} from "./commands/StartProjectSessionCommand";
|
|
181
|
+
import {
|
|
182
|
+
StopJobRunCommandInput,
|
|
183
|
+
StopJobRunCommandOutput,
|
|
184
|
+
} from "./commands/StopJobRunCommand";
|
|
185
|
+
import {
|
|
186
|
+
TagResourceCommandInput,
|
|
187
|
+
TagResourceCommandOutput,
|
|
188
|
+
} from "./commands/TagResourceCommand";
|
|
189
|
+
import {
|
|
190
|
+
UntagResourceCommandInput,
|
|
191
|
+
UntagResourceCommandOutput,
|
|
192
|
+
} from "./commands/UntagResourceCommand";
|
|
193
|
+
import {
|
|
194
|
+
UpdateDatasetCommandInput,
|
|
195
|
+
UpdateDatasetCommandOutput,
|
|
196
|
+
} from "./commands/UpdateDatasetCommand";
|
|
197
|
+
import {
|
|
198
|
+
UpdateProfileJobCommandInput,
|
|
199
|
+
UpdateProfileJobCommandOutput,
|
|
200
|
+
} from "./commands/UpdateProfileJobCommand";
|
|
201
|
+
import {
|
|
202
|
+
UpdateProjectCommandInput,
|
|
203
|
+
UpdateProjectCommandOutput,
|
|
204
|
+
} from "./commands/UpdateProjectCommand";
|
|
205
|
+
import {
|
|
206
|
+
UpdateRecipeCommandInput,
|
|
207
|
+
UpdateRecipeCommandOutput,
|
|
208
|
+
} from "./commands/UpdateRecipeCommand";
|
|
209
|
+
import {
|
|
210
|
+
UpdateRecipeJobCommandInput,
|
|
211
|
+
UpdateRecipeJobCommandOutput,
|
|
212
|
+
} from "./commands/UpdateRecipeJobCommand";
|
|
213
|
+
import {
|
|
214
|
+
UpdateRulesetCommandInput,
|
|
215
|
+
UpdateRulesetCommandOutput,
|
|
216
|
+
} from "./commands/UpdateRulesetCommand";
|
|
217
|
+
import {
|
|
218
|
+
UpdateScheduleCommandInput,
|
|
219
|
+
UpdateScheduleCommandOutput,
|
|
220
|
+
} from "./commands/UpdateScheduleCommand";
|
|
221
|
+
export declare type ServiceInputTypes =
|
|
222
|
+
| BatchDeleteRecipeVersionCommandInput
|
|
223
|
+
| CreateDatasetCommandInput
|
|
224
|
+
| CreateProfileJobCommandInput
|
|
225
|
+
| CreateProjectCommandInput
|
|
226
|
+
| CreateRecipeCommandInput
|
|
227
|
+
| CreateRecipeJobCommandInput
|
|
228
|
+
| CreateRulesetCommandInput
|
|
229
|
+
| CreateScheduleCommandInput
|
|
230
|
+
| DeleteDatasetCommandInput
|
|
231
|
+
| DeleteJobCommandInput
|
|
232
|
+
| DeleteProjectCommandInput
|
|
233
|
+
| DeleteRecipeVersionCommandInput
|
|
234
|
+
| DeleteRulesetCommandInput
|
|
235
|
+
| DeleteScheduleCommandInput
|
|
236
|
+
| DescribeDatasetCommandInput
|
|
237
|
+
| DescribeJobCommandInput
|
|
238
|
+
| DescribeJobRunCommandInput
|
|
239
|
+
| DescribeProjectCommandInput
|
|
240
|
+
| DescribeRecipeCommandInput
|
|
241
|
+
| DescribeRulesetCommandInput
|
|
242
|
+
| DescribeScheduleCommandInput
|
|
243
|
+
| ListDatasetsCommandInput
|
|
244
|
+
| ListJobRunsCommandInput
|
|
245
|
+
| ListJobsCommandInput
|
|
246
|
+
| ListProjectsCommandInput
|
|
247
|
+
| ListRecipeVersionsCommandInput
|
|
248
|
+
| ListRecipesCommandInput
|
|
249
|
+
| ListRulesetsCommandInput
|
|
250
|
+
| ListSchedulesCommandInput
|
|
251
|
+
| ListTagsForResourceCommandInput
|
|
252
|
+
| PublishRecipeCommandInput
|
|
253
|
+
| SendProjectSessionActionCommandInput
|
|
254
|
+
| StartJobRunCommandInput
|
|
255
|
+
| StartProjectSessionCommandInput
|
|
256
|
+
| StopJobRunCommandInput
|
|
257
|
+
| TagResourceCommandInput
|
|
258
|
+
| UntagResourceCommandInput
|
|
259
|
+
| UpdateDatasetCommandInput
|
|
260
|
+
| UpdateProfileJobCommandInput
|
|
261
|
+
| UpdateProjectCommandInput
|
|
262
|
+
| UpdateRecipeCommandInput
|
|
263
|
+
| UpdateRecipeJobCommandInput
|
|
264
|
+
| UpdateRulesetCommandInput
|
|
265
|
+
| UpdateScheduleCommandInput;
|
|
266
|
+
export declare type ServiceOutputTypes =
|
|
267
|
+
| BatchDeleteRecipeVersionCommandOutput
|
|
268
|
+
| CreateDatasetCommandOutput
|
|
269
|
+
| CreateProfileJobCommandOutput
|
|
270
|
+
| CreateProjectCommandOutput
|
|
271
|
+
| CreateRecipeCommandOutput
|
|
272
|
+
| CreateRecipeJobCommandOutput
|
|
273
|
+
| CreateRulesetCommandOutput
|
|
274
|
+
| CreateScheduleCommandOutput
|
|
275
|
+
| DeleteDatasetCommandOutput
|
|
276
|
+
| DeleteJobCommandOutput
|
|
277
|
+
| DeleteProjectCommandOutput
|
|
278
|
+
| DeleteRecipeVersionCommandOutput
|
|
279
|
+
| DeleteRulesetCommandOutput
|
|
280
|
+
| DeleteScheduleCommandOutput
|
|
281
|
+
| DescribeDatasetCommandOutput
|
|
282
|
+
| DescribeJobCommandOutput
|
|
283
|
+
| DescribeJobRunCommandOutput
|
|
284
|
+
| DescribeProjectCommandOutput
|
|
285
|
+
| DescribeRecipeCommandOutput
|
|
286
|
+
| DescribeRulesetCommandOutput
|
|
287
|
+
| DescribeScheduleCommandOutput
|
|
288
|
+
| ListDatasetsCommandOutput
|
|
289
|
+
| ListJobRunsCommandOutput
|
|
290
|
+
| ListJobsCommandOutput
|
|
291
|
+
| ListProjectsCommandOutput
|
|
292
|
+
| ListRecipeVersionsCommandOutput
|
|
293
|
+
| ListRecipesCommandOutput
|
|
294
|
+
| ListRulesetsCommandOutput
|
|
295
|
+
| ListSchedulesCommandOutput
|
|
296
|
+
| ListTagsForResourceCommandOutput
|
|
297
|
+
| PublishRecipeCommandOutput
|
|
298
|
+
| SendProjectSessionActionCommandOutput
|
|
299
|
+
| StartJobRunCommandOutput
|
|
300
|
+
| StartProjectSessionCommandOutput
|
|
301
|
+
| StopJobRunCommandOutput
|
|
302
|
+
| TagResourceCommandOutput
|
|
303
|
+
| UntagResourceCommandOutput
|
|
304
|
+
| UpdateDatasetCommandOutput
|
|
305
|
+
| UpdateProfileJobCommandOutput
|
|
306
|
+
| UpdateProjectCommandOutput
|
|
307
|
+
| UpdateRecipeCommandOutput
|
|
308
|
+
| UpdateRecipeJobCommandOutput
|
|
309
|
+
| UpdateRulesetCommandOutput
|
|
310
|
+
| UpdateScheduleCommandOutput;
|
|
311
|
+
export interface ClientDefaults
|
|
312
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
313
|
+
requestHandler?: __HttpHandler;
|
|
314
|
+
sha256?: __HashConstructor;
|
|
315
|
+
urlParser?: __UrlParser;
|
|
316
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
317
|
+
streamCollector?: __StreamCollector;
|
|
318
|
+
base64Decoder?: __Decoder;
|
|
319
|
+
base64Encoder?: __Encoder;
|
|
320
|
+
utf8Decoder?: __Decoder;
|
|
321
|
+
utf8Encoder?: __Encoder;
|
|
322
|
+
runtime?: string;
|
|
323
|
+
disableHostPrefix?: boolean;
|
|
324
|
+
maxAttempts?: number | __Provider<number>;
|
|
325
|
+
retryMode?: string | __Provider<string>;
|
|
326
|
+
logger?: __Logger;
|
|
327
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
328
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
329
|
+
serviceId?: string;
|
|
330
|
+
region?: string | __Provider<string>;
|
|
331
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
332
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
333
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
334
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
335
|
+
}
|
|
336
|
+
declare type DataBrewClientConfigType = Partial<
|
|
337
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
338
|
+
> &
|
|
339
|
+
ClientDefaults &
|
|
340
|
+
RegionInputConfig &
|
|
341
|
+
EndpointsInputConfig &
|
|
342
|
+
RetryInputConfig &
|
|
343
|
+
HostHeaderInputConfig &
|
|
344
|
+
AwsAuthInputConfig &
|
|
345
|
+
UserAgentInputConfig;
|
|
346
|
+
export interface DataBrewClientConfig extends DataBrewClientConfigType {}
|
|
347
|
+
declare type DataBrewClientResolvedConfigType =
|
|
348
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
349
|
+
Required<ClientDefaults> &
|
|
350
|
+
RegionResolvedConfig &
|
|
351
|
+
EndpointsResolvedConfig &
|
|
352
|
+
RetryResolvedConfig &
|
|
353
|
+
HostHeaderResolvedConfig &
|
|
354
|
+
AwsAuthResolvedConfig &
|
|
355
|
+
UserAgentResolvedConfig;
|
|
356
|
+
export interface DataBrewClientResolvedConfig
|
|
357
|
+
extends DataBrewClientResolvedConfigType {}
|
|
358
|
+
export declare class DataBrewClient extends __Client<
|
|
359
|
+
__HttpHandlerOptions,
|
|
360
|
+
ServiceInputTypes,
|
|
361
|
+
ServiceOutputTypes,
|
|
362
|
+
DataBrewClientResolvedConfig
|
|
363
|
+
> {
|
|
364
|
+
readonly config: DataBrewClientResolvedConfig;
|
|
365
|
+
constructor(configuration: DataBrewClientConfig);
|
|
366
|
+
destroy(): void;
|
|
367
|
+
}
|
|
368
|
+
export {};
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataBrewClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataBrewClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchDeleteRecipeVersionRequest,
|
|
15
|
+
BatchDeleteRecipeVersionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchDeleteRecipeVersionCommandInput
|
|
18
|
+
extends BatchDeleteRecipeVersionRequest {}
|
|
19
|
+
export interface BatchDeleteRecipeVersionCommandOutput
|
|
20
|
+
extends BatchDeleteRecipeVersionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class BatchDeleteRecipeVersionCommand extends $Command<
|
|
23
|
+
BatchDeleteRecipeVersionCommandInput,
|
|
24
|
+
BatchDeleteRecipeVersionCommandOutput,
|
|
25
|
+
DataBrewClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: BatchDeleteRecipeVersionCommandInput;
|
|
28
|
+
constructor(input: BatchDeleteRecipeVersionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DataBrewClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
BatchDeleteRecipeVersionCommandInput,
|
|
35
|
+
BatchDeleteRecipeVersionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataBrewClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataBrewClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateDatasetRequest,
|
|
15
|
+
CreateDatasetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateDatasetCommandInput extends CreateDatasetRequest {}
|
|
18
|
+
export interface CreateDatasetCommandOutput
|
|
19
|
+
extends CreateDatasetResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CreateDatasetCommand extends $Command<
|
|
22
|
+
CreateDatasetCommandInput,
|
|
23
|
+
CreateDatasetCommandOutput,
|
|
24
|
+
DataBrewClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CreateDatasetCommandInput;
|
|
27
|
+
constructor(input: CreateDatasetCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: DataBrewClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateDatasetCommandInput, CreateDatasetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataBrewClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataBrewClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateProfileJobRequest,
|
|
15
|
+
CreateProfileJobResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateProfileJobCommandInput extends CreateProfileJobRequest {}
|
|
18
|
+
export interface CreateProfileJobCommandOutput
|
|
19
|
+
extends CreateProfileJobResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CreateProfileJobCommand extends $Command<
|
|
22
|
+
CreateProfileJobCommandInput,
|
|
23
|
+
CreateProfileJobCommandOutput,
|
|
24
|
+
DataBrewClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CreateProfileJobCommandInput;
|
|
27
|
+
constructor(input: CreateProfileJobCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: DataBrewClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateProfileJobCommandInput, CreateProfileJobCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|