aws-sdk 2.832.0 → 2.833.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 +7 -1
- package/README.md +1 -1
- package/apis/databrew-2017-07-25.min.json +79 -62
- package/apis/managedblockchain-2018-09-24.min.json +159 -36
- package/apis/monitoring-2010-08-01.min.json +15 -9
- package/apis/robomaker-2018-06-29.min.json +198 -170
- package/clients/cloudwatch.d.ts +12 -1
- package/clients/databrew.d.ts +170 -143
- package/clients/iot.d.ts +2 -2
- package/clients/managedblockchain.d.ts +140 -6
- package/clients/robomaker.d.ts +35 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +18 -12
- package/dist/aws-sdk.min.js +29 -29
- package/lib/config.d.ts +1 -1
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/databrew.d.ts
CHANGED
|
@@ -12,307 +12,307 @@ declare class DataBrew extends Service {
|
|
|
12
12
|
constructor(options?: DataBrew.Types.ClientConfiguration)
|
|
13
13
|
config: Config & DataBrew.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
* Deletes one or more versions of a recipe at a time.
|
|
15
|
+
* Deletes one or more versions of a recipe at a time. The entire request will be rejected if: The recipe does not exist. There is an invalid version identifier in the list of versions. The verision list is empty. The version list size exceeds 50. The verison list contains duplicate entries. The request will complete successfully, but with partial failures, if: A version does not exist. A version is being used by a job. You specify LATEST_WORKING, but it's being used by a project. The version fails to be deleted. The LATEST_WORKING version will only be deleted if the recipe has no other versions. If you try to delete LATEST_WORKING while other versions exist (or if they can't be deleted), then LATEST_WORKING will be listed as partial failure in the response.
|
|
16
16
|
*/
|
|
17
17
|
batchDeleteRecipeVersion(params: DataBrew.Types.BatchDeleteRecipeVersionRequest, callback?: (err: AWSError, data: DataBrew.Types.BatchDeleteRecipeVersionResponse) => void): Request<DataBrew.Types.BatchDeleteRecipeVersionResponse, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
* Deletes one or more versions of a recipe at a time.
|
|
19
|
+
* Deletes one or more versions of a recipe at a time. The entire request will be rejected if: The recipe does not exist. There is an invalid version identifier in the list of versions. The verision list is empty. The version list size exceeds 50. The verison list contains duplicate entries. The request will complete successfully, but with partial failures, if: A version does not exist. A version is being used by a job. You specify LATEST_WORKING, but it's being used by a project. The version fails to be deleted. The LATEST_WORKING version will only be deleted if the recipe has no other versions. If you try to delete LATEST_WORKING while other versions exist (or if they can't be deleted), then LATEST_WORKING will be listed as partial failure in the response.
|
|
20
20
|
*/
|
|
21
21
|
batchDeleteRecipeVersion(callback?: (err: AWSError, data: DataBrew.Types.BatchDeleteRecipeVersionResponse) => void): Request<DataBrew.Types.BatchDeleteRecipeVersionResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Creates a new
|
|
23
|
+
* Creates a new DataBrew dataset.
|
|
24
24
|
*/
|
|
25
25
|
createDataset(params: DataBrew.Types.CreateDatasetRequest, callback?: (err: AWSError, data: DataBrew.Types.CreateDatasetResponse) => void): Request<DataBrew.Types.CreateDatasetResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Creates a new
|
|
27
|
+
* Creates a new DataBrew dataset.
|
|
28
28
|
*/
|
|
29
29
|
createDataset(callback?: (err: AWSError, data: DataBrew.Types.CreateDatasetResponse) => void): Request<DataBrew.Types.CreateDatasetResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* Creates a new job to
|
|
31
|
+
* Creates a new job to analyze a dataset and create its data profile.
|
|
32
32
|
*/
|
|
33
33
|
createProfileJob(params: DataBrew.Types.CreateProfileJobRequest, callback?: (err: AWSError, data: DataBrew.Types.CreateProfileJobResponse) => void): Request<DataBrew.Types.CreateProfileJobResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* Creates a new job to
|
|
35
|
+
* Creates a new job to analyze a dataset and create its data profile.
|
|
36
36
|
*/
|
|
37
37
|
createProfileJob(callback?: (err: AWSError, data: DataBrew.Types.CreateProfileJobResponse) => void): Request<DataBrew.Types.CreateProfileJobResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Creates a new
|
|
39
|
+
* Creates a new DataBrew project.
|
|
40
40
|
*/
|
|
41
41
|
createProject(params: DataBrew.Types.CreateProjectRequest, callback?: (err: AWSError, data: DataBrew.Types.CreateProjectResponse) => void): Request<DataBrew.Types.CreateProjectResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Creates a new
|
|
43
|
+
* Creates a new DataBrew project.
|
|
44
44
|
*/
|
|
45
45
|
createProject(callback?: (err: AWSError, data: DataBrew.Types.CreateProjectResponse) => void): Request<DataBrew.Types.CreateProjectResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Creates a new
|
|
47
|
+
* Creates a new DataBrew recipe.
|
|
48
48
|
*/
|
|
49
49
|
createRecipe(params: DataBrew.Types.CreateRecipeRequest, callback?: (err: AWSError, data: DataBrew.Types.CreateRecipeResponse) => void): Request<DataBrew.Types.CreateRecipeResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Creates a new
|
|
51
|
+
* Creates a new DataBrew recipe.
|
|
52
52
|
*/
|
|
53
53
|
createRecipe(callback?: (err: AWSError, data: DataBrew.Types.CreateRecipeResponse) => void): Request<DataBrew.Types.CreateRecipeResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Creates a new job
|
|
55
|
+
* Creates a new job to transform input data, using steps defined in an existing AWS Glue DataBrew recipe
|
|
56
56
|
*/
|
|
57
57
|
createRecipeJob(params: DataBrew.Types.CreateRecipeJobRequest, callback?: (err: AWSError, data: DataBrew.Types.CreateRecipeJobResponse) => void): Request<DataBrew.Types.CreateRecipeJobResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Creates a new job
|
|
59
|
+
* Creates a new job to transform input data, using steps defined in an existing AWS Glue DataBrew recipe
|
|
60
60
|
*/
|
|
61
61
|
createRecipeJob(callback?: (err: AWSError, data: DataBrew.Types.CreateRecipeJobResponse) => void): Request<DataBrew.Types.CreateRecipeJobResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Creates a new schedule for one or more
|
|
63
|
+
* Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific date and time, or at regular intervals.
|
|
64
64
|
*/
|
|
65
65
|
createSchedule(params: DataBrew.Types.CreateScheduleRequest, callback?: (err: AWSError, data: DataBrew.Types.CreateScheduleResponse) => void): Request<DataBrew.Types.CreateScheduleResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Creates a new schedule for one or more
|
|
67
|
+
* Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific date and time, or at regular intervals.
|
|
68
68
|
*/
|
|
69
69
|
createSchedule(callback?: (err: AWSError, data: DataBrew.Types.CreateScheduleResponse) => void): Request<DataBrew.Types.CreateScheduleResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Deletes a dataset from
|
|
71
|
+
* Deletes a dataset from DataBrew.
|
|
72
72
|
*/
|
|
73
73
|
deleteDataset(params: DataBrew.Types.DeleteDatasetRequest, callback?: (err: AWSError, data: DataBrew.Types.DeleteDatasetResponse) => void): Request<DataBrew.Types.DeleteDatasetResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Deletes a dataset from
|
|
75
|
+
* Deletes a dataset from DataBrew.
|
|
76
76
|
*/
|
|
77
77
|
deleteDataset(callback?: (err: AWSError, data: DataBrew.Types.DeleteDatasetResponse) => void): Request<DataBrew.Types.DeleteDatasetResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
* Deletes the specified
|
|
79
|
+
* Deletes the specified DataBrew job.
|
|
80
80
|
*/
|
|
81
81
|
deleteJob(params: DataBrew.Types.DeleteJobRequest, callback?: (err: AWSError, data: DataBrew.Types.DeleteJobResponse) => void): Request<DataBrew.Types.DeleteJobResponse, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
* Deletes the specified
|
|
83
|
+
* Deletes the specified DataBrew job.
|
|
84
84
|
*/
|
|
85
85
|
deleteJob(callback?: (err: AWSError, data: DataBrew.Types.DeleteJobResponse) => void): Request<DataBrew.Types.DeleteJobResponse, AWSError>;
|
|
86
86
|
/**
|
|
87
|
-
* Deletes an existing
|
|
87
|
+
* Deletes an existing DataBrew project.
|
|
88
88
|
*/
|
|
89
89
|
deleteProject(params: DataBrew.Types.DeleteProjectRequest, callback?: (err: AWSError, data: DataBrew.Types.DeleteProjectResponse) => void): Request<DataBrew.Types.DeleteProjectResponse, AWSError>;
|
|
90
90
|
/**
|
|
91
|
-
* Deletes an existing
|
|
91
|
+
* Deletes an existing DataBrew project.
|
|
92
92
|
*/
|
|
93
93
|
deleteProject(callback?: (err: AWSError, data: DataBrew.Types.DeleteProjectResponse) => void): Request<DataBrew.Types.DeleteProjectResponse, AWSError>;
|
|
94
94
|
/**
|
|
95
|
-
* Deletes a single version of
|
|
95
|
+
* Deletes a single version of a DataBrew recipe.
|
|
96
96
|
*/
|
|
97
97
|
deleteRecipeVersion(params: DataBrew.Types.DeleteRecipeVersionRequest, callback?: (err: AWSError, data: DataBrew.Types.DeleteRecipeVersionResponse) => void): Request<DataBrew.Types.DeleteRecipeVersionResponse, AWSError>;
|
|
98
98
|
/**
|
|
99
|
-
* Deletes a single version of
|
|
99
|
+
* Deletes a single version of a DataBrew recipe.
|
|
100
100
|
*/
|
|
101
101
|
deleteRecipeVersion(callback?: (err: AWSError, data: DataBrew.Types.DeleteRecipeVersionResponse) => void): Request<DataBrew.Types.DeleteRecipeVersionResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* Deletes the specified
|
|
103
|
+
* Deletes the specified DataBrew schedule.
|
|
104
104
|
*/
|
|
105
105
|
deleteSchedule(params: DataBrew.Types.DeleteScheduleRequest, callback?: (err: AWSError, data: DataBrew.Types.DeleteScheduleResponse) => void): Request<DataBrew.Types.DeleteScheduleResponse, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* Deletes the specified
|
|
107
|
+
* Deletes the specified DataBrew schedule.
|
|
108
108
|
*/
|
|
109
109
|
deleteSchedule(callback?: (err: AWSError, data: DataBrew.Types.DeleteScheduleResponse) => void): Request<DataBrew.Types.DeleteScheduleResponse, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Returns the definition of a specific
|
|
111
|
+
* Returns the definition of a specific DataBrew dataset.
|
|
112
112
|
*/
|
|
113
113
|
describeDataset(params: DataBrew.Types.DescribeDatasetRequest, callback?: (err: AWSError, data: DataBrew.Types.DescribeDatasetResponse) => void): Request<DataBrew.Types.DescribeDatasetResponse, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Returns the definition of a specific
|
|
115
|
+
* Returns the definition of a specific DataBrew dataset.
|
|
116
116
|
*/
|
|
117
117
|
describeDataset(callback?: (err: AWSError, data: DataBrew.Types.DescribeDatasetResponse) => void): Request<DataBrew.Types.DescribeDatasetResponse, AWSError>;
|
|
118
118
|
/**
|
|
119
|
-
* Returns the definition of a specific
|
|
119
|
+
* Returns the definition of a specific DataBrew job.
|
|
120
120
|
*/
|
|
121
121
|
describeJob(params: DataBrew.Types.DescribeJobRequest, callback?: (err: AWSError, data: DataBrew.Types.DescribeJobResponse) => void): Request<DataBrew.Types.DescribeJobResponse, AWSError>;
|
|
122
122
|
/**
|
|
123
|
-
* Returns the definition of a specific
|
|
123
|
+
* Returns the definition of a specific DataBrew job.
|
|
124
124
|
*/
|
|
125
125
|
describeJob(callback?: (err: AWSError, data: DataBrew.Types.DescribeJobResponse) => void): Request<DataBrew.Types.DescribeJobResponse, AWSError>;
|
|
126
126
|
/**
|
|
127
|
-
* Returns the definition of a specific
|
|
127
|
+
* Returns the definition of a specific DataBrew project.
|
|
128
128
|
*/
|
|
129
129
|
describeProject(params: DataBrew.Types.DescribeProjectRequest, callback?: (err: AWSError, data: DataBrew.Types.DescribeProjectResponse) => void): Request<DataBrew.Types.DescribeProjectResponse, AWSError>;
|
|
130
130
|
/**
|
|
131
|
-
* Returns the definition of a specific
|
|
131
|
+
* Returns the definition of a specific DataBrew project.
|
|
132
132
|
*/
|
|
133
133
|
describeProject(callback?: (err: AWSError, data: DataBrew.Types.DescribeProjectResponse) => void): Request<DataBrew.Types.DescribeProjectResponse, AWSError>;
|
|
134
134
|
/**
|
|
135
|
-
* Returns the definition of a specific
|
|
135
|
+
* Returns the definition of a specific DataBrew recipe corresponding to a particular version.
|
|
136
136
|
*/
|
|
137
137
|
describeRecipe(params: DataBrew.Types.DescribeRecipeRequest, callback?: (err: AWSError, data: DataBrew.Types.DescribeRecipeResponse) => void): Request<DataBrew.Types.DescribeRecipeResponse, AWSError>;
|
|
138
138
|
/**
|
|
139
|
-
* Returns the definition of a specific
|
|
139
|
+
* Returns the definition of a specific DataBrew recipe corresponding to a particular version.
|
|
140
140
|
*/
|
|
141
141
|
describeRecipe(callback?: (err: AWSError, data: DataBrew.Types.DescribeRecipeResponse) => void): Request<DataBrew.Types.DescribeRecipeResponse, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
* Returns the definition of a specific
|
|
143
|
+
* Returns the definition of a specific DataBrew schedule.
|
|
144
144
|
*/
|
|
145
145
|
describeSchedule(params: DataBrew.Types.DescribeScheduleRequest, callback?: (err: AWSError, data: DataBrew.Types.DescribeScheduleResponse) => void): Request<DataBrew.Types.DescribeScheduleResponse, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
* Returns the definition of a specific
|
|
147
|
+
* Returns the definition of a specific DataBrew schedule.
|
|
148
148
|
*/
|
|
149
149
|
describeSchedule(callback?: (err: AWSError, data: DataBrew.Types.DescribeScheduleResponse) => void): Request<DataBrew.Types.DescribeScheduleResponse, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
* Lists all of the
|
|
151
|
+
* Lists all of the DataBrew datasets.
|
|
152
152
|
*/
|
|
153
153
|
listDatasets(params: DataBrew.Types.ListDatasetsRequest, callback?: (err: AWSError, data: DataBrew.Types.ListDatasetsResponse) => void): Request<DataBrew.Types.ListDatasetsResponse, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
* Lists all of the
|
|
155
|
+
* Lists all of the DataBrew datasets.
|
|
156
156
|
*/
|
|
157
157
|
listDatasets(callback?: (err: AWSError, data: DataBrew.Types.ListDatasetsResponse) => void): Request<DataBrew.Types.ListDatasetsResponse, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
* Lists all of the previous runs of a particular
|
|
159
|
+
* Lists all of the previous runs of a particular DataBrew job.
|
|
160
160
|
*/
|
|
161
161
|
listJobRuns(params: DataBrew.Types.ListJobRunsRequest, callback?: (err: AWSError, data: DataBrew.Types.ListJobRunsResponse) => void): Request<DataBrew.Types.ListJobRunsResponse, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
* Lists all of the previous runs of a particular
|
|
163
|
+
* Lists all of the previous runs of a particular DataBrew job.
|
|
164
164
|
*/
|
|
165
165
|
listJobRuns(callback?: (err: AWSError, data: DataBrew.Types.ListJobRunsResponse) => void): Request<DataBrew.Types.ListJobRunsResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Lists
|
|
167
|
+
* Lists all of the DataBrew jobs that are defined.
|
|
168
168
|
*/
|
|
169
169
|
listJobs(params: DataBrew.Types.ListJobsRequest, callback?: (err: AWSError, data: DataBrew.Types.ListJobsResponse) => void): Request<DataBrew.Types.ListJobsResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Lists
|
|
171
|
+
* Lists all of the DataBrew jobs that are defined.
|
|
172
172
|
*/
|
|
173
173
|
listJobs(callback?: (err: AWSError, data: DataBrew.Types.ListJobsResponse) => void): Request<DataBrew.Types.ListJobsResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
* Lists all of the DataBrew projects
|
|
175
|
+
* Lists all of the DataBrew projects that are defined.
|
|
176
176
|
*/
|
|
177
177
|
listProjects(params: DataBrew.Types.ListProjectsRequest, callback?: (err: AWSError, data: DataBrew.Types.ListProjectsResponse) => void): Request<DataBrew.Types.ListProjectsResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
* Lists all of the DataBrew projects
|
|
179
|
+
* Lists all of the DataBrew projects that are defined.
|
|
180
180
|
*/
|
|
181
181
|
listProjects(callback?: (err: AWSError, data: DataBrew.Types.ListProjectsResponse) => void): Request<DataBrew.Types.ListProjectsResponse, AWSError>;
|
|
182
182
|
/**
|
|
183
|
-
* Lists
|
|
183
|
+
* Lists the versions of a particular DataBrew recipe, except for LATEST_WORKING.
|
|
184
184
|
*/
|
|
185
185
|
listRecipeVersions(params: DataBrew.Types.ListRecipeVersionsRequest, callback?: (err: AWSError, data: DataBrew.Types.ListRecipeVersionsResponse) => void): Request<DataBrew.Types.ListRecipeVersionsResponse, AWSError>;
|
|
186
186
|
/**
|
|
187
|
-
* Lists
|
|
187
|
+
* Lists the versions of a particular DataBrew recipe, except for LATEST_WORKING.
|
|
188
188
|
*/
|
|
189
189
|
listRecipeVersions(callback?: (err: AWSError, data: DataBrew.Types.ListRecipeVersionsResponse) => void): Request<DataBrew.Types.ListRecipeVersionsResponse, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
* Lists all of the
|
|
191
|
+
* Lists all of the DataBrew recipes that are defined.
|
|
192
192
|
*/
|
|
193
193
|
listRecipes(params: DataBrew.Types.ListRecipesRequest, callback?: (err: AWSError, data: DataBrew.Types.ListRecipesResponse) => void): Request<DataBrew.Types.ListRecipesResponse, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
* Lists all of the
|
|
195
|
+
* Lists all of the DataBrew recipes that are defined.
|
|
196
196
|
*/
|
|
197
197
|
listRecipes(callback?: (err: AWSError, data: DataBrew.Types.ListRecipesResponse) => void): Request<DataBrew.Types.ListRecipesResponse, AWSError>;
|
|
198
198
|
/**
|
|
199
|
-
* Lists the
|
|
199
|
+
* Lists the DataBrew schedules that are defined.
|
|
200
200
|
*/
|
|
201
201
|
listSchedules(params: DataBrew.Types.ListSchedulesRequest, callback?: (err: AWSError, data: DataBrew.Types.ListSchedulesResponse) => void): Request<DataBrew.Types.ListSchedulesResponse, AWSError>;
|
|
202
202
|
/**
|
|
203
|
-
* Lists the
|
|
203
|
+
* Lists the DataBrew schedules that are defined.
|
|
204
204
|
*/
|
|
205
205
|
listSchedules(callback?: (err: AWSError, data: DataBrew.Types.ListSchedulesResponse) => void): Request<DataBrew.Types.ListSchedulesResponse, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
* Lists all the tags for
|
|
207
|
+
* Lists all the tags for a DataBrew resource.
|
|
208
208
|
*/
|
|
209
209
|
listTagsForResource(params: DataBrew.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: DataBrew.Types.ListTagsForResourceResponse) => void): Request<DataBrew.Types.ListTagsForResourceResponse, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
* Lists all the tags for
|
|
211
|
+
* Lists all the tags for a DataBrew resource.
|
|
212
212
|
*/
|
|
213
213
|
listTagsForResource(callback?: (err: AWSError, data: DataBrew.Types.ListTagsForResourceResponse) => void): Request<DataBrew.Types.ListTagsForResourceResponse, AWSError>;
|
|
214
214
|
/**
|
|
215
|
-
* Publishes a new
|
|
215
|
+
* Publishes a new version of a DataBrew recipe.
|
|
216
216
|
*/
|
|
217
217
|
publishRecipe(params: DataBrew.Types.PublishRecipeRequest, callback?: (err: AWSError, data: DataBrew.Types.PublishRecipeResponse) => void): Request<DataBrew.Types.PublishRecipeResponse, AWSError>;
|
|
218
218
|
/**
|
|
219
|
-
* Publishes a new
|
|
219
|
+
* Publishes a new version of a DataBrew recipe.
|
|
220
220
|
*/
|
|
221
221
|
publishRecipe(callback?: (err: AWSError, data: DataBrew.Types.PublishRecipeResponse) => void): Request<DataBrew.Types.PublishRecipeResponse, AWSError>;
|
|
222
222
|
/**
|
|
223
|
-
* Performs a recipe step within an interactive
|
|
223
|
+
* Performs a recipe step within an interactive DataBrew session that's currently open.
|
|
224
224
|
*/
|
|
225
225
|
sendProjectSessionAction(params: DataBrew.Types.SendProjectSessionActionRequest, callback?: (err: AWSError, data: DataBrew.Types.SendProjectSessionActionResponse) => void): Request<DataBrew.Types.SendProjectSessionActionResponse, AWSError>;
|
|
226
226
|
/**
|
|
227
|
-
* Performs a recipe step within an interactive
|
|
227
|
+
* Performs a recipe step within an interactive DataBrew session that's currently open.
|
|
228
228
|
*/
|
|
229
229
|
sendProjectSessionAction(callback?: (err: AWSError, data: DataBrew.Types.SendProjectSessionActionResponse) => void): Request<DataBrew.Types.SendProjectSessionActionResponse, AWSError>;
|
|
230
230
|
/**
|
|
231
|
-
* Runs
|
|
231
|
+
* Runs a DataBrew job.
|
|
232
232
|
*/
|
|
233
233
|
startJobRun(params: DataBrew.Types.StartJobRunRequest, callback?: (err: AWSError, data: DataBrew.Types.StartJobRunResponse) => void): Request<DataBrew.Types.StartJobRunResponse, AWSError>;
|
|
234
234
|
/**
|
|
235
|
-
* Runs
|
|
235
|
+
* Runs a DataBrew job.
|
|
236
236
|
*/
|
|
237
237
|
startJobRun(callback?: (err: AWSError, data: DataBrew.Types.StartJobRunResponse) => void): Request<DataBrew.Types.StartJobRunResponse, AWSError>;
|
|
238
238
|
/**
|
|
239
|
-
* Creates an interactive session, enabling you to manipulate
|
|
239
|
+
* Creates an interactive session, enabling you to manipulate data in a DataBrew project.
|
|
240
240
|
*/
|
|
241
241
|
startProjectSession(params: DataBrew.Types.StartProjectSessionRequest, callback?: (err: AWSError, data: DataBrew.Types.StartProjectSessionResponse) => void): Request<DataBrew.Types.StartProjectSessionResponse, AWSError>;
|
|
242
242
|
/**
|
|
243
|
-
* Creates an interactive session, enabling you to manipulate
|
|
243
|
+
* Creates an interactive session, enabling you to manipulate data in a DataBrew project.
|
|
244
244
|
*/
|
|
245
245
|
startProjectSession(callback?: (err: AWSError, data: DataBrew.Types.StartProjectSessionResponse) => void): Request<DataBrew.Types.StartProjectSessionResponse, AWSError>;
|
|
246
246
|
/**
|
|
247
|
-
* Stops
|
|
247
|
+
* Stops a particular run of a job.
|
|
248
248
|
*/
|
|
249
249
|
stopJobRun(params: DataBrew.Types.StopJobRunRequest, callback?: (err: AWSError, data: DataBrew.Types.StopJobRunResponse) => void): Request<DataBrew.Types.StopJobRunResponse, AWSError>;
|
|
250
250
|
/**
|
|
251
|
-
* Stops
|
|
251
|
+
* Stops a particular run of a job.
|
|
252
252
|
*/
|
|
253
253
|
stopJobRun(callback?: (err: AWSError, data: DataBrew.Types.StopJobRunResponse) => void): Request<DataBrew.Types.StopJobRunResponse, AWSError>;
|
|
254
254
|
/**
|
|
255
|
-
* Adds metadata tags to
|
|
255
|
+
* Adds metadata tags to a DataBrew resource, such as a dataset, project, recipe, job, or schedule.
|
|
256
256
|
*/
|
|
257
257
|
tagResource(params: DataBrew.Types.TagResourceRequest, callback?: (err: AWSError, data: DataBrew.Types.TagResourceResponse) => void): Request<DataBrew.Types.TagResourceResponse, AWSError>;
|
|
258
258
|
/**
|
|
259
|
-
* Adds metadata tags to
|
|
259
|
+
* Adds metadata tags to a DataBrew resource, such as a dataset, project, recipe, job, or schedule.
|
|
260
260
|
*/
|
|
261
261
|
tagResource(callback?: (err: AWSError, data: DataBrew.Types.TagResourceResponse) => void): Request<DataBrew.Types.TagResourceResponse, AWSError>;
|
|
262
262
|
/**
|
|
263
|
-
* Removes metadata tags from
|
|
263
|
+
* Removes metadata tags from a DataBrew resource.
|
|
264
264
|
*/
|
|
265
265
|
untagResource(params: DataBrew.Types.UntagResourceRequest, callback?: (err: AWSError, data: DataBrew.Types.UntagResourceResponse) => void): Request<DataBrew.Types.UntagResourceResponse, AWSError>;
|
|
266
266
|
/**
|
|
267
|
-
* Removes metadata tags from
|
|
267
|
+
* Removes metadata tags from a DataBrew resource.
|
|
268
268
|
*/
|
|
269
269
|
untagResource(callback?: (err: AWSError, data: DataBrew.Types.UntagResourceResponse) => void): Request<DataBrew.Types.UntagResourceResponse, AWSError>;
|
|
270
270
|
/**
|
|
271
|
-
* Modifies the definition of an existing
|
|
271
|
+
* Modifies the definition of an existing DataBrew dataset.
|
|
272
272
|
*/
|
|
273
273
|
updateDataset(params: DataBrew.Types.UpdateDatasetRequest, callback?: (err: AWSError, data: DataBrew.Types.UpdateDatasetResponse) => void): Request<DataBrew.Types.UpdateDatasetResponse, AWSError>;
|
|
274
274
|
/**
|
|
275
|
-
* Modifies the definition of an existing
|
|
275
|
+
* Modifies the definition of an existing DataBrew dataset.
|
|
276
276
|
*/
|
|
277
277
|
updateDataset(callback?: (err: AWSError, data: DataBrew.Types.UpdateDatasetResponse) => void): Request<DataBrew.Types.UpdateDatasetResponse, AWSError>;
|
|
278
278
|
/**
|
|
279
|
-
* Modifies the definition of an existing
|
|
279
|
+
* Modifies the definition of an existing profile job.
|
|
280
280
|
*/
|
|
281
281
|
updateProfileJob(params: DataBrew.Types.UpdateProfileJobRequest, callback?: (err: AWSError, data: DataBrew.Types.UpdateProfileJobResponse) => void): Request<DataBrew.Types.UpdateProfileJobResponse, AWSError>;
|
|
282
282
|
/**
|
|
283
|
-
* Modifies the definition of an existing
|
|
283
|
+
* Modifies the definition of an existing profile job.
|
|
284
284
|
*/
|
|
285
285
|
updateProfileJob(callback?: (err: AWSError, data: DataBrew.Types.UpdateProfileJobResponse) => void): Request<DataBrew.Types.UpdateProfileJobResponse, AWSError>;
|
|
286
286
|
/**
|
|
287
|
-
* Modifies the definition of an existing
|
|
287
|
+
* Modifies the definition of an existing DataBrew project.
|
|
288
288
|
*/
|
|
289
289
|
updateProject(params: DataBrew.Types.UpdateProjectRequest, callback?: (err: AWSError, data: DataBrew.Types.UpdateProjectResponse) => void): Request<DataBrew.Types.UpdateProjectResponse, AWSError>;
|
|
290
290
|
/**
|
|
291
|
-
* Modifies the definition of an existing
|
|
291
|
+
* Modifies the definition of an existing DataBrew project.
|
|
292
292
|
*/
|
|
293
293
|
updateProject(callback?: (err: AWSError, data: DataBrew.Types.UpdateProjectResponse) => void): Request<DataBrew.Types.UpdateProjectResponse, AWSError>;
|
|
294
294
|
/**
|
|
295
|
-
* Modifies the definition of the
|
|
295
|
+
* Modifies the definition of the LATEST_WORKING version of a DataBrew recipe.
|
|
296
296
|
*/
|
|
297
297
|
updateRecipe(params: DataBrew.Types.UpdateRecipeRequest, callback?: (err: AWSError, data: DataBrew.Types.UpdateRecipeResponse) => void): Request<DataBrew.Types.UpdateRecipeResponse, AWSError>;
|
|
298
298
|
/**
|
|
299
|
-
* Modifies the definition of the
|
|
299
|
+
* Modifies the definition of the LATEST_WORKING version of a DataBrew recipe.
|
|
300
300
|
*/
|
|
301
301
|
updateRecipe(callback?: (err: AWSError, data: DataBrew.Types.UpdateRecipeResponse) => void): Request<DataBrew.Types.UpdateRecipeResponse, AWSError>;
|
|
302
302
|
/**
|
|
303
|
-
* Modifies the definition of an existing
|
|
303
|
+
* Modifies the definition of an existing DataBrew recipe job.
|
|
304
304
|
*/
|
|
305
305
|
updateRecipeJob(params: DataBrew.Types.UpdateRecipeJobRequest, callback?: (err: AWSError, data: DataBrew.Types.UpdateRecipeJobResponse) => void): Request<DataBrew.Types.UpdateRecipeJobResponse, AWSError>;
|
|
306
306
|
/**
|
|
307
|
-
* Modifies the definition of an existing
|
|
307
|
+
* Modifies the definition of an existing DataBrew recipe job.
|
|
308
308
|
*/
|
|
309
309
|
updateRecipeJob(callback?: (err: AWSError, data: DataBrew.Types.UpdateRecipeJobResponse) => void): Request<DataBrew.Types.UpdateRecipeJobResponse, AWSError>;
|
|
310
310
|
/**
|
|
311
|
-
* Modifies the definition of an existing
|
|
311
|
+
* Modifies the definition of an existing DataBrew schedule.
|
|
312
312
|
*/
|
|
313
313
|
updateSchedule(params: DataBrew.Types.UpdateScheduleRequest, callback?: (err: AWSError, data: DataBrew.Types.UpdateScheduleResponse) => void): Request<DataBrew.Types.UpdateScheduleResponse, AWSError>;
|
|
314
314
|
/**
|
|
315
|
-
* Modifies the definition of an existing
|
|
315
|
+
* Modifies the definition of an existing DataBrew schedule.
|
|
316
316
|
*/
|
|
317
317
|
updateSchedule(callback?: (err: AWSError, data: DataBrew.Types.UpdateScheduleResponse) => void): Request<DataBrew.Types.UpdateScheduleResponse, AWSError>;
|
|
318
318
|
}
|
|
@@ -324,11 +324,11 @@ declare namespace DataBrew {
|
|
|
324
324
|
export type Attempt = number;
|
|
325
325
|
export interface BatchDeleteRecipeVersionRequest {
|
|
326
326
|
/**
|
|
327
|
-
* The name of the recipe to be
|
|
327
|
+
* The name of the recipe whose versions are to be deleted.
|
|
328
328
|
*/
|
|
329
329
|
Name: RecipeName;
|
|
330
330
|
/**
|
|
331
|
-
* An array of version identifiers to be deleted.
|
|
331
|
+
* An array of version identifiers, for the recipe versions to be deleted. You can specify numeric versions (X.Y) or LATEST_WORKING. LATEST_PUBLISHED is not supported.
|
|
332
332
|
*/
|
|
333
333
|
RecipeVersions: RecipeVersionList;
|
|
334
334
|
}
|
|
@@ -338,7 +338,7 @@ declare namespace DataBrew {
|
|
|
338
338
|
*/
|
|
339
339
|
Name: RecipeName;
|
|
340
340
|
/**
|
|
341
|
-
* Errors, if any, that
|
|
341
|
+
* Errors, if any, that occurred while attempting to delete the recipe versions.
|
|
342
342
|
*/
|
|
343
343
|
Errors?: RecipeErrorList;
|
|
344
344
|
}
|
|
@@ -360,7 +360,7 @@ declare namespace DataBrew {
|
|
|
360
360
|
*/
|
|
361
361
|
Value?: ConditionValue;
|
|
362
362
|
/**
|
|
363
|
-
* A column to apply this condition to
|
|
363
|
+
* A column to apply this condition to.
|
|
364
364
|
*/
|
|
365
365
|
TargetColumn: TargetColumn;
|
|
366
366
|
}
|
|
@@ -368,7 +368,7 @@ declare namespace DataBrew {
|
|
|
368
368
|
export type ConditionValue = string;
|
|
369
369
|
export interface CreateDatasetRequest {
|
|
370
370
|
/**
|
|
371
|
-
* The name of the dataset to be created.
|
|
371
|
+
* The name of the dataset to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
|
|
372
372
|
*/
|
|
373
373
|
Name: DatasetName;
|
|
374
374
|
FormatOptions?: FormatOptions;
|
|
@@ -398,11 +398,11 @@ declare namespace DataBrew {
|
|
|
398
398
|
*/
|
|
399
399
|
EncryptionMode?: EncryptionMode;
|
|
400
400
|
/**
|
|
401
|
-
* The name of the job to be created.
|
|
401
|
+
* The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
|
|
402
402
|
*/
|
|
403
403
|
Name: JobName;
|
|
404
404
|
/**
|
|
405
|
-
*
|
|
405
|
+
* Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log stream for each job run.
|
|
406
406
|
*/
|
|
407
407
|
LogSubscription?: LogSubscription;
|
|
408
408
|
/**
|
|
@@ -415,7 +415,7 @@ declare namespace DataBrew {
|
|
|
415
415
|
MaxRetries?: MaxRetries;
|
|
416
416
|
OutputLocation: S3Location;
|
|
417
417
|
/**
|
|
418
|
-
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed
|
|
418
|
+
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
419
419
|
*/
|
|
420
420
|
RoleArn: Arn;
|
|
421
421
|
/**
|
|
@@ -435,11 +435,11 @@ declare namespace DataBrew {
|
|
|
435
435
|
}
|
|
436
436
|
export interface CreateProjectRequest {
|
|
437
437
|
/**
|
|
438
|
-
* The name of
|
|
438
|
+
* The name of an existing dataset to associate this project with.
|
|
439
439
|
*/
|
|
440
440
|
DatasetName: DatasetName;
|
|
441
441
|
/**
|
|
442
|
-
* A unique name for the new project.
|
|
442
|
+
* A unique name for the new project. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
|
|
443
443
|
*/
|
|
444
444
|
Name: ProjectName;
|
|
445
445
|
/**
|
|
@@ -476,11 +476,11 @@ declare namespace DataBrew {
|
|
|
476
476
|
*/
|
|
477
477
|
EncryptionMode?: EncryptionMode;
|
|
478
478
|
/**
|
|
479
|
-
* A unique name for the job.
|
|
479
|
+
* A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
|
|
480
480
|
*/
|
|
481
481
|
Name: JobName;
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log stream for each job run.
|
|
484
484
|
*/
|
|
485
485
|
LogSubscription?: LogSubscription;
|
|
486
486
|
/**
|
|
@@ -501,11 +501,11 @@ declare namespace DataBrew {
|
|
|
501
501
|
ProjectName?: ProjectName;
|
|
502
502
|
RecipeReference?: RecipeReference;
|
|
503
503
|
/**
|
|
504
|
-
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed
|
|
504
|
+
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
505
505
|
*/
|
|
506
506
|
RoleArn: Arn;
|
|
507
507
|
/**
|
|
508
|
-
* Metadata tags to apply to this job
|
|
508
|
+
* Metadata tags to apply to this job.
|
|
509
509
|
*/
|
|
510
510
|
Tags?: TagMap;
|
|
511
511
|
/**
|
|
@@ -525,7 +525,7 @@ declare namespace DataBrew {
|
|
|
525
525
|
*/
|
|
526
526
|
Description?: RecipeDescription;
|
|
527
527
|
/**
|
|
528
|
-
* A unique name for the recipe.
|
|
528
|
+
* A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
|
|
529
529
|
*/
|
|
530
530
|
Name: RecipeName;
|
|
531
531
|
/**
|
|
@@ -549,7 +549,7 @@ declare namespace DataBrew {
|
|
|
549
549
|
*/
|
|
550
550
|
JobNames?: JobNameList;
|
|
551
551
|
/**
|
|
552
|
-
* The date or dates and time or times
|
|
552
|
+
* The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the AWS Glue DataBrew Developer Guide.
|
|
553
553
|
*/
|
|
554
554
|
CronExpression: CronExpression;
|
|
555
555
|
/**
|
|
@@ -557,7 +557,7 @@ declare namespace DataBrew {
|
|
|
557
557
|
*/
|
|
558
558
|
Tags?: TagMap;
|
|
559
559
|
/**
|
|
560
|
-
* A unique name for the schedule.
|
|
560
|
+
* A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
|
|
561
561
|
*/
|
|
562
562
|
Name: ScheduleName;
|
|
563
563
|
}
|
|
@@ -569,6 +569,18 @@ declare namespace DataBrew {
|
|
|
569
569
|
}
|
|
570
570
|
export type CreatedBy = string;
|
|
571
571
|
export type CronExpression = string;
|
|
572
|
+
export interface CsvOptions {
|
|
573
|
+
/**
|
|
574
|
+
* A single character that specifies the delimiter being used in the Csv file.
|
|
575
|
+
*/
|
|
576
|
+
Delimiter?: Delimiter;
|
|
577
|
+
}
|
|
578
|
+
export interface CsvOutputOptions {
|
|
579
|
+
/**
|
|
580
|
+
* A single character that specifies the delimiter used to create Csv job output.
|
|
581
|
+
*/
|
|
582
|
+
Delimiter?: Delimiter;
|
|
583
|
+
}
|
|
572
584
|
export interface DataCatalogInputDefinition {
|
|
573
585
|
/**
|
|
574
586
|
* The unique identifier of the AWS account that holds the Data Catalog that stores the data.
|
|
@@ -594,7 +606,7 @@ declare namespace DataBrew {
|
|
|
594
606
|
*/
|
|
595
607
|
AccountId?: AccountId;
|
|
596
608
|
/**
|
|
597
|
-
* The
|
|
609
|
+
* The Amazon Resource Name (ARN) of the user who created the dataset.
|
|
598
610
|
*/
|
|
599
611
|
CreatedBy?: CreatedBy;
|
|
600
612
|
/**
|
|
@@ -618,7 +630,7 @@ declare namespace DataBrew {
|
|
|
618
630
|
*/
|
|
619
631
|
LastModifiedDate?: _Date;
|
|
620
632
|
/**
|
|
621
|
-
* The
|
|
633
|
+
* The Amazon Resource Name (ARN) of the user who last modified the dataset.
|
|
622
634
|
*/
|
|
623
635
|
LastModifiedBy?: LastModifiedBy;
|
|
624
636
|
/**
|
|
@@ -675,11 +687,11 @@ declare namespace DataBrew {
|
|
|
675
687
|
}
|
|
676
688
|
export interface DeleteRecipeVersionRequest {
|
|
677
689
|
/**
|
|
678
|
-
* The name of the recipe
|
|
690
|
+
* The name of the recipe.
|
|
679
691
|
*/
|
|
680
692
|
Name: RecipeName;
|
|
681
693
|
/**
|
|
682
|
-
* The version of the recipe to be deleted.
|
|
694
|
+
* The version of the recipe to be deleted. You can specify a numeric versions (X.Y) or LATEST_WORKING. LATEST_PUBLISHED is not supported.
|
|
683
695
|
*/
|
|
684
696
|
RecipeVersion: RecipeVersion;
|
|
685
697
|
}
|
|
@@ -705,6 +717,7 @@ declare namespace DataBrew {
|
|
|
705
717
|
*/
|
|
706
718
|
Name: ScheduleName;
|
|
707
719
|
}
|
|
720
|
+
export type Delimiter = string;
|
|
708
721
|
export interface DescribeDatasetRequest {
|
|
709
722
|
/**
|
|
710
723
|
* The name of the dataset to be described.
|
|
@@ -791,11 +804,11 @@ declare namespace DataBrew {
|
|
|
791
804
|
*/
|
|
792
805
|
LastModifiedDate?: _Date;
|
|
793
806
|
/**
|
|
794
|
-
*
|
|
807
|
+
* Indicates whether Amazon CloudWatch logging is enabled for this job.
|
|
795
808
|
*/
|
|
796
809
|
LogSubscription?: LogSubscription;
|
|
797
810
|
/**
|
|
798
|
-
* The maximum number of nodes that
|
|
811
|
+
* The maximum number of compute nodes that DataBrew can consume when the job processes data.
|
|
799
812
|
*/
|
|
800
813
|
MaxCapacity?: MaxCapacity;
|
|
801
814
|
/**
|
|
@@ -816,7 +829,7 @@ declare namespace DataBrew {
|
|
|
816
829
|
*/
|
|
817
830
|
ResourceArn?: Arn;
|
|
818
831
|
/**
|
|
819
|
-
* The ARN of the AWS Identity and Access Management (IAM) role
|
|
832
|
+
* The ARN of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
820
833
|
*/
|
|
821
834
|
RoleArn?: Arn;
|
|
822
835
|
/**
|
|
@@ -869,7 +882,7 @@ declare namespace DataBrew {
|
|
|
869
882
|
ResourceArn?: Arn;
|
|
870
883
|
Sample?: Sample;
|
|
871
884
|
/**
|
|
872
|
-
* The ARN of the AWS Identity and Access Management (IAM) role
|
|
885
|
+
* The ARN of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
873
886
|
*/
|
|
874
887
|
RoleArn?: Arn;
|
|
875
888
|
/**
|
|
@@ -985,7 +998,7 @@ declare namespace DataBrew {
|
|
|
985
998
|
*/
|
|
986
999
|
ResourceArn?: Arn;
|
|
987
1000
|
/**
|
|
988
|
-
* The date or dates and time or times
|
|
1001
|
+
* The date or dates and time or times when the jobs are to be run for the schedule. For more information, see Cron expressions in the AWS Glue DataBrew Developer Guide.
|
|
989
1002
|
*/
|
|
990
1003
|
CronExpression?: CronExpression;
|
|
991
1004
|
/**
|
|
@@ -1020,6 +1033,10 @@ declare namespace DataBrew {
|
|
|
1020
1033
|
* Options that define how Excel input is to be interpreted by DataBrew.
|
|
1021
1034
|
*/
|
|
1022
1035
|
Excel?: ExcelOptions;
|
|
1036
|
+
/**
|
|
1037
|
+
* Options that define how Csv input is to be interpreted by DataBrew.
|
|
1038
|
+
*/
|
|
1039
|
+
Csv?: CsvOptions;
|
|
1023
1040
|
}
|
|
1024
1041
|
export type HiddenColumnList = ColumnName[];
|
|
1025
1042
|
export interface Input {
|
|
@@ -1038,7 +1055,7 @@ declare namespace DataBrew {
|
|
|
1038
1055
|
*/
|
|
1039
1056
|
AccountId?: AccountId;
|
|
1040
1057
|
/**
|
|
1041
|
-
* The
|
|
1058
|
+
* The Amazon Resource Name (ARN) of the user who created the job.
|
|
1042
1059
|
*/
|
|
1043
1060
|
CreatedBy?: CreatedBy;
|
|
1044
1061
|
/**
|
|
@@ -1050,7 +1067,7 @@ declare namespace DataBrew {
|
|
|
1050
1067
|
*/
|
|
1051
1068
|
DatasetName?: DatasetName;
|
|
1052
1069
|
/**
|
|
1053
|
-
* The Amazon Resource Name (ARN) of an encryption key that is used to protect
|
|
1070
|
+
* The Amazon Resource Name (ARN) of an encryption key that is used to protect the job output. For more information, see Encrypting data written by DataBrew jobs
|
|
1054
1071
|
*/
|
|
1055
1072
|
EncryptionKeyArn?: EncryptionKeyArn;
|
|
1056
1073
|
/**
|
|
@@ -1066,7 +1083,7 @@ declare namespace DataBrew {
|
|
|
1066
1083
|
*/
|
|
1067
1084
|
Type?: JobType;
|
|
1068
1085
|
/**
|
|
1069
|
-
* The
|
|
1086
|
+
* The Amazon Resource Name (ARN) of the user who last modified the job.
|
|
1070
1087
|
*/
|
|
1071
1088
|
LastModifiedBy?: LastModifiedBy;
|
|
1072
1089
|
/**
|
|
@@ -1167,7 +1184,7 @@ declare namespace DataBrew {
|
|
|
1167
1184
|
*/
|
|
1168
1185
|
RecipeReference?: RecipeReference;
|
|
1169
1186
|
/**
|
|
1170
|
-
* The
|
|
1187
|
+
* The Amazon Resource Name (ARN) of the user who initiated the job run.
|
|
1171
1188
|
*/
|
|
1172
1189
|
StartedBy?: StartedBy;
|
|
1173
1190
|
/**
|
|
@@ -1194,17 +1211,17 @@ declare namespace DataBrew {
|
|
|
1194
1211
|
*/
|
|
1195
1212
|
MaxResults?: MaxResults100;
|
|
1196
1213
|
/**
|
|
1197
|
-
*
|
|
1214
|
+
* The token returned by a previous call to retrieve the next set of results.
|
|
1198
1215
|
*/
|
|
1199
1216
|
NextToken?: NextToken;
|
|
1200
1217
|
}
|
|
1201
1218
|
export interface ListDatasetsResponse {
|
|
1202
1219
|
/**
|
|
1203
|
-
* A list of datasets that are defined
|
|
1220
|
+
* A list of datasets that are defined.
|
|
1204
1221
|
*/
|
|
1205
1222
|
Datasets: DatasetList;
|
|
1206
1223
|
/**
|
|
1207
|
-
* A token
|
|
1224
|
+
* A token that you can use in a subsequent call to retrieve the next set of results.
|
|
1208
1225
|
*/
|
|
1209
1226
|
NextToken?: NextToken;
|
|
1210
1227
|
}
|
|
@@ -1218,7 +1235,7 @@ declare namespace DataBrew {
|
|
|
1218
1235
|
*/
|
|
1219
1236
|
MaxResults?: MaxResults100;
|
|
1220
1237
|
/**
|
|
1221
|
-
*
|
|
1238
|
+
* The token returned by a previous call to retrieve the next set of results.
|
|
1222
1239
|
*/
|
|
1223
1240
|
NextToken?: NextToken;
|
|
1224
1241
|
}
|
|
@@ -1228,7 +1245,7 @@ declare namespace DataBrew {
|
|
|
1228
1245
|
*/
|
|
1229
1246
|
JobRuns: JobRunList;
|
|
1230
1247
|
/**
|
|
1231
|
-
* A token
|
|
1248
|
+
* A token that you can use in a subsequent call to retrieve the next set of results.
|
|
1232
1249
|
*/
|
|
1233
1250
|
NextToken?: NextToken;
|
|
1234
1251
|
}
|
|
@@ -1252,17 +1269,17 @@ declare namespace DataBrew {
|
|
|
1252
1269
|
}
|
|
1253
1270
|
export interface ListJobsResponse {
|
|
1254
1271
|
/**
|
|
1255
|
-
* A list of jobs that are defined
|
|
1272
|
+
* A list of jobs that are defined.
|
|
1256
1273
|
*/
|
|
1257
1274
|
Jobs: JobList;
|
|
1258
1275
|
/**
|
|
1259
|
-
* A token
|
|
1276
|
+
* A token that you can use in a subsequent call to retrieve the next set of results.
|
|
1260
1277
|
*/
|
|
1261
1278
|
NextToken?: NextToken;
|
|
1262
1279
|
}
|
|
1263
1280
|
export interface ListProjectsRequest {
|
|
1264
1281
|
/**
|
|
1265
|
-
*
|
|
1282
|
+
* The token returned by a previous call to retrieve the next set of results.
|
|
1266
1283
|
*/
|
|
1267
1284
|
NextToken?: NextToken;
|
|
1268
1285
|
/**
|
|
@@ -1272,11 +1289,11 @@ declare namespace DataBrew {
|
|
|
1272
1289
|
}
|
|
1273
1290
|
export interface ListProjectsResponse {
|
|
1274
1291
|
/**
|
|
1275
|
-
* A list of projects that are defined
|
|
1292
|
+
* A list of projects that are defined .
|
|
1276
1293
|
*/
|
|
1277
1294
|
Projects: ProjectList;
|
|
1278
1295
|
/**
|
|
1279
|
-
* A token
|
|
1296
|
+
* A token that you can use in a subsequent call to retrieve the next set of results.
|
|
1280
1297
|
*/
|
|
1281
1298
|
NextToken?: NextToken;
|
|
1282
1299
|
}
|
|
@@ -1286,7 +1303,7 @@ declare namespace DataBrew {
|
|
|
1286
1303
|
*/
|
|
1287
1304
|
MaxResults?: MaxResults100;
|
|
1288
1305
|
/**
|
|
1289
|
-
*
|
|
1306
|
+
* The token returned by a previous call to retrieve the next set of results.
|
|
1290
1307
|
*/
|
|
1291
1308
|
NextToken?: NextToken;
|
|
1292
1309
|
/**
|
|
@@ -1296,7 +1313,7 @@ declare namespace DataBrew {
|
|
|
1296
1313
|
}
|
|
1297
1314
|
export interface ListRecipeVersionsResponse {
|
|
1298
1315
|
/**
|
|
1299
|
-
* A token
|
|
1316
|
+
* A token that you can use in a subsequent call to retrieve the next set of results.
|
|
1300
1317
|
*/
|
|
1301
1318
|
NextToken?: NextToken;
|
|
1302
1319
|
/**
|
|
@@ -1310,21 +1327,21 @@ declare namespace DataBrew {
|
|
|
1310
1327
|
*/
|
|
1311
1328
|
MaxResults?: MaxResults100;
|
|
1312
1329
|
/**
|
|
1313
|
-
*
|
|
1330
|
+
* The token returned by a previous call to retrieve the next set of results.
|
|
1314
1331
|
*/
|
|
1315
1332
|
NextToken?: NextToken;
|
|
1316
1333
|
/**
|
|
1317
|
-
*
|
|
1334
|
+
* Return only those recipes with a version identifier of LATEST_WORKING or LATEST_PUBLISHED. If RecipeVersion is omitted, ListRecipes returns all of the LATEST_PUBLISHED recipe versions. Valid values: LATEST_WORKING | LATEST_PUBLISHED
|
|
1318
1335
|
*/
|
|
1319
1336
|
RecipeVersion?: RecipeVersion;
|
|
1320
1337
|
}
|
|
1321
1338
|
export interface ListRecipesResponse {
|
|
1322
1339
|
/**
|
|
1323
|
-
* A list of recipes that are defined
|
|
1340
|
+
* A list of recipes that are defined.
|
|
1324
1341
|
*/
|
|
1325
1342
|
Recipes: RecipeList;
|
|
1326
1343
|
/**
|
|
1327
|
-
* A token
|
|
1344
|
+
* A token that you can use in a subsequent call to retrieve the next set of results.
|
|
1328
1345
|
*/
|
|
1329
1346
|
NextToken?: NextToken;
|
|
1330
1347
|
}
|
|
@@ -1338,17 +1355,17 @@ declare namespace DataBrew {
|
|
|
1338
1355
|
*/
|
|
1339
1356
|
MaxResults?: MaxResults100;
|
|
1340
1357
|
/**
|
|
1341
|
-
*
|
|
1358
|
+
* The token returned by a previous call to retrieve the next set of results.
|
|
1342
1359
|
*/
|
|
1343
1360
|
NextToken?: NextToken;
|
|
1344
1361
|
}
|
|
1345
1362
|
export interface ListSchedulesResponse {
|
|
1346
1363
|
/**
|
|
1347
|
-
* A list of schedules
|
|
1364
|
+
* A list of schedules that are defined.
|
|
1348
1365
|
*/
|
|
1349
1366
|
Schedules: ScheduleList;
|
|
1350
1367
|
/**
|
|
1351
|
-
* A token
|
|
1368
|
+
* A token that you can use in a subsequent call to retrieve the next set of results.
|
|
1352
1369
|
*/
|
|
1353
1370
|
NextToken?: NextToken;
|
|
1354
1371
|
}
|
|
@@ -1394,8 +1411,18 @@ declare namespace DataBrew {
|
|
|
1394
1411
|
* A value that, if true, means that any data in the location specified for output is overwritten with new output.
|
|
1395
1412
|
*/
|
|
1396
1413
|
Overwrite?: OverwriteOutput;
|
|
1414
|
+
/**
|
|
1415
|
+
* Options that define how DataBrew formats job output files.
|
|
1416
|
+
*/
|
|
1417
|
+
FormatOptions?: OutputFormatOptions;
|
|
1397
1418
|
}
|
|
1398
1419
|
export type OutputFormat = "CSV"|"JSON"|"PARQUET"|"GLUEPARQUET"|"AVRO"|"ORC"|"XML"|string;
|
|
1420
|
+
export interface OutputFormatOptions {
|
|
1421
|
+
/**
|
|
1422
|
+
* Options that define how DataBrew writes Csv output.
|
|
1423
|
+
*/
|
|
1424
|
+
Csv?: CsvOutputOptions;
|
|
1425
|
+
}
|
|
1399
1426
|
export type OutputList = Output[];
|
|
1400
1427
|
export type OverwriteOutput = boolean;
|
|
1401
1428
|
export type ParameterMap = {[key: string]: ParameterValue};
|
|
@@ -1412,7 +1439,7 @@ declare namespace DataBrew {
|
|
|
1412
1439
|
*/
|
|
1413
1440
|
CreateDate?: _Date;
|
|
1414
1441
|
/**
|
|
1415
|
-
* The
|
|
1442
|
+
* The Amazon Resource Name (ARN) of the user who crated the project.
|
|
1416
1443
|
*/
|
|
1417
1444
|
CreatedBy?: CreatedBy;
|
|
1418
1445
|
/**
|
|
@@ -1424,7 +1451,7 @@ declare namespace DataBrew {
|
|
|
1424
1451
|
*/
|
|
1425
1452
|
LastModifiedDate?: _Date;
|
|
1426
1453
|
/**
|
|
1427
|
-
* The
|
|
1454
|
+
* The Amazon Resource Name (ARN) of the user who last modified the project.
|
|
1428
1455
|
*/
|
|
1429
1456
|
LastModifiedBy?: LastModifiedBy;
|
|
1430
1457
|
/**
|
|
@@ -1452,7 +1479,7 @@ declare namespace DataBrew {
|
|
|
1452
1479
|
*/
|
|
1453
1480
|
RoleArn?: Arn;
|
|
1454
1481
|
/**
|
|
1455
|
-
* The
|
|
1482
|
+
* The Amazon Resource Name (ARN) of the user that opened the project for use.
|
|
1456
1483
|
*/
|
|
1457
1484
|
OpenedBy?: OpenedBy;
|
|
1458
1485
|
/**
|
|
@@ -1481,7 +1508,7 @@ declare namespace DataBrew {
|
|
|
1481
1508
|
export type PublishedBy = string;
|
|
1482
1509
|
export interface Recipe {
|
|
1483
1510
|
/**
|
|
1484
|
-
* The
|
|
1511
|
+
* The Amazon Resource Name (ARN) of the user who created the recipe.
|
|
1485
1512
|
*/
|
|
1486
1513
|
CreatedBy?: CreatedBy;
|
|
1487
1514
|
/**
|
|
@@ -1489,7 +1516,7 @@ declare namespace DataBrew {
|
|
|
1489
1516
|
*/
|
|
1490
1517
|
CreateDate?: _Date;
|
|
1491
1518
|
/**
|
|
1492
|
-
* The
|
|
1519
|
+
* The Amazon Resource Name (ARN) of the user who last modified the recipe.
|
|
1493
1520
|
*/
|
|
1494
1521
|
LastModifiedBy?: LastModifiedBy;
|
|
1495
1522
|
/**
|
|
@@ -1501,7 +1528,7 @@ declare namespace DataBrew {
|
|
|
1501
1528
|
*/
|
|
1502
1529
|
ProjectName?: ProjectName;
|
|
1503
1530
|
/**
|
|
1504
|
-
* The
|
|
1531
|
+
* The Amazon Resource Name (ARN) of the user who published the recipe.
|
|
1505
1532
|
*/
|
|
1506
1533
|
PublishedBy?: PublishedBy;
|
|
1507
1534
|
/**
|
|
@@ -1529,7 +1556,7 @@ declare namespace DataBrew {
|
|
|
1529
1556
|
*/
|
|
1530
1557
|
Tags?: TagMap;
|
|
1531
1558
|
/**
|
|
1532
|
-
* The identifier for the version for the recipe.
|
|
1559
|
+
* The identifier for the version for the recipe. Must be one of the following: Numeric version (X.Y) - X and Y stand for major and minor version numbers. The maximum length of each is 6 digits, and neither can be negative values. Both X and Y are required, and "0.0" is not a valid version. LATEST_WORKING - the most recent valid version being developed in a DataBrew project. LATEST_PUBLISHED - the most recent published version.
|
|
1533
1560
|
*/
|
|
1534
1561
|
RecipeVersion?: RecipeVersion;
|
|
1535
1562
|
}
|
|
@@ -1614,7 +1641,7 @@ declare namespace DataBrew {
|
|
|
1614
1641
|
*/
|
|
1615
1642
|
AccountId?: AccountId;
|
|
1616
1643
|
/**
|
|
1617
|
-
* The
|
|
1644
|
+
* The Amazon Resource Name (ARN) of the user who created the schedule.
|
|
1618
1645
|
*/
|
|
1619
1646
|
CreatedBy?: CreatedBy;
|
|
1620
1647
|
/**
|
|
@@ -1626,7 +1653,7 @@ declare namespace DataBrew {
|
|
|
1626
1653
|
*/
|
|
1627
1654
|
JobNames?: JobNameList;
|
|
1628
1655
|
/**
|
|
1629
|
-
* The
|
|
1656
|
+
* The Amazon Resource Name (ARN) of the user who last modified the schedule.
|
|
1630
1657
|
*/
|
|
1631
1658
|
LastModifiedBy?: LastModifiedBy;
|
|
1632
1659
|
/**
|
|
@@ -1638,7 +1665,7 @@ declare namespace DataBrew {
|
|
|
1638
1665
|
*/
|
|
1639
1666
|
ResourceArn?: Arn;
|
|
1640
1667
|
/**
|
|
1641
|
-
* The date(s) and time(s)
|
|
1668
|
+
* The date(s) and time(s) when the job will run. For more information, see Cron expressions in the AWS Glue DataBrew Developer Guide.
|
|
1642
1669
|
*/
|
|
1643
1670
|
CronExpression?: CronExpression;
|
|
1644
1671
|
/**
|
|
@@ -1654,7 +1681,7 @@ declare namespace DataBrew {
|
|
|
1654
1681
|
export type ScheduleName = string;
|
|
1655
1682
|
export interface SendProjectSessionActionRequest {
|
|
1656
1683
|
/**
|
|
1657
|
-
*
|
|
1684
|
+
* If true, the result of the recipe step will be returned, but not applied.
|
|
1658
1685
|
*/
|
|
1659
1686
|
Preview?: Preview;
|
|
1660
1687
|
/**
|
|
@@ -1764,7 +1791,7 @@ declare namespace DataBrew {
|
|
|
1764
1791
|
export type Timeout = number;
|
|
1765
1792
|
export interface UntagResourceRequest {
|
|
1766
1793
|
/**
|
|
1767
|
-
*
|
|
1794
|
+
* A DataBrew resource from which you want to remove a tag or tags. The value for this parameter is an Amazon Resource Name (ARN).
|
|
1768
1795
|
*/
|
|
1769
1796
|
ResourceArn: Arn;
|
|
1770
1797
|
/**
|
|
@@ -1802,11 +1829,11 @@ declare namespace DataBrew {
|
|
|
1802
1829
|
*/
|
|
1803
1830
|
Name: JobName;
|
|
1804
1831
|
/**
|
|
1805
|
-
*
|
|
1832
|
+
* Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log stream for each job run.
|
|
1806
1833
|
*/
|
|
1807
1834
|
LogSubscription?: LogSubscription;
|
|
1808
1835
|
/**
|
|
1809
|
-
* The maximum number of nodes that DataBrew can use when the job processes data.
|
|
1836
|
+
* The maximum number of compute nodes that DataBrew can use when the job processes data.
|
|
1810
1837
|
*/
|
|
1811
1838
|
MaxCapacity?: MaxCapacity;
|
|
1812
1839
|
/**
|
|
@@ -1815,7 +1842,7 @@ declare namespace DataBrew {
|
|
|
1815
1842
|
MaxRetries?: MaxRetries;
|
|
1816
1843
|
OutputLocation: S3Location;
|
|
1817
1844
|
/**
|
|
1818
|
-
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed
|
|
1845
|
+
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
1819
1846
|
*/
|
|
1820
1847
|
RoleArn: Arn;
|
|
1821
1848
|
/**
|
|
@@ -1864,7 +1891,7 @@ declare namespace DataBrew {
|
|
|
1864
1891
|
*/
|
|
1865
1892
|
Name: JobName;
|
|
1866
1893
|
/**
|
|
1867
|
-
*
|
|
1894
|
+
* Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log stream for each job run.
|
|
1868
1895
|
*/
|
|
1869
1896
|
LogSubscription?: LogSubscription;
|
|
1870
1897
|
/**
|
|
@@ -1880,7 +1907,7 @@ declare namespace DataBrew {
|
|
|
1880
1907
|
*/
|
|
1881
1908
|
Outputs: OutputList;
|
|
1882
1909
|
/**
|
|
1883
|
-
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed
|
|
1910
|
+
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
1884
1911
|
*/
|
|
1885
1912
|
RoleArn: Arn;
|
|
1886
1913
|
/**
|
|
@@ -1920,7 +1947,7 @@ declare namespace DataBrew {
|
|
|
1920
1947
|
*/
|
|
1921
1948
|
JobNames?: JobNameList;
|
|
1922
1949
|
/**
|
|
1923
|
-
* The date or dates and time or times
|
|
1950
|
+
* The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the AWS Glue DataBrew Developer Guide.
|
|
1924
1951
|
*/
|
|
1925
1952
|
CronExpression: CronExpression;
|
|
1926
1953
|
/**
|