cdk-docker-image-deployment 0.0.89 → 0.0.90
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +11 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/accessanalyzer-2019-11-01.min.json +2 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +762 -46
- package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +20 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +230 -14
- package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.examples.json +5 -0
- package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.min.json +586 -0
- package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.paginators.json +16 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +1169 -483
- package/node_modules/aws-sdk/apis/glue-2017-03-31.paginators.json +20 -0
- package/node_modules/aws-sdk/apis/metadata.json +8 -0
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +6 -3
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +2666 -931
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +42 -0
- package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.examples.json +5 -0
- package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.min.json +1516 -0
- package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.paginators.json +26 -0
- package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +5 -1
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/athena.d.ts +1043 -42
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +269 -26
- package/node_modules/aws-sdk/clients/docdbelastic.d.ts +565 -0
- package/node_modules/aws-sdk/clients/docdbelastic.js +18 -0
- package/node_modules/aws-sdk/clients/glue.d.ts +1026 -83
- package/node_modules/aws-sdk/clients/s3control.d.ts +18 -6
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +2434 -98
- package/node_modules/aws-sdk/clients/sagemakergeospatial.d.ts +1610 -0
- package/node_modules/aws-sdk/clients/sagemakergeospatial.js +18 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +87 -13
- package/node_modules/aws-sdk/dist/aws-sdk.js +765 -21
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
|
@@ -51,6 +51,14 @@ declare class Athena extends Service {
|
|
|
51
51
|
* Creates a named query in the specified workgroup. Requires that you have access to the workgroup. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
52
52
|
*/
|
|
53
53
|
createNamedQuery(callback?: (err: AWSError, data: Athena.Types.CreateNamedQueryOutput) => void): Request<Athena.Types.CreateNamedQueryOutput, AWSError>;
|
|
54
|
+
/**
|
|
55
|
+
* Creates an empty ipynb file in the specified Apache Spark enabled workgroup. Throws an error if a file in the workgroup with the same name already exists.
|
|
56
|
+
*/
|
|
57
|
+
createNotebook(params: Athena.Types.CreateNotebookInput, callback?: (err: AWSError, data: Athena.Types.CreateNotebookOutput) => void): Request<Athena.Types.CreateNotebookOutput, AWSError>;
|
|
58
|
+
/**
|
|
59
|
+
* Creates an empty ipynb file in the specified Apache Spark enabled workgroup. Throws an error if a file in the workgroup with the same name already exists.
|
|
60
|
+
*/
|
|
61
|
+
createNotebook(callback?: (err: AWSError, data: Athena.Types.CreateNotebookOutput) => void): Request<Athena.Types.CreateNotebookOutput, AWSError>;
|
|
54
62
|
/**
|
|
55
63
|
* Creates a prepared statement for use with SQL queries in Athena.
|
|
56
64
|
*/
|
|
@@ -60,11 +68,19 @@ declare class Athena extends Service {
|
|
|
60
68
|
*/
|
|
61
69
|
createPreparedStatement(callback?: (err: AWSError, data: Athena.Types.CreatePreparedStatementOutput) => void): Request<Athena.Types.CreatePreparedStatementOutput, AWSError>;
|
|
62
70
|
/**
|
|
63
|
-
*
|
|
71
|
+
* Gets an authentication token and the URL at which the notebook can be accessed. During programmatic access, CreatePresignedNotebookUrl must be called every 10 minutes to refresh the authentication token.
|
|
72
|
+
*/
|
|
73
|
+
createPresignedNotebookUrl(params: Athena.Types.CreatePresignedNotebookUrlRequest, callback?: (err: AWSError, data: Athena.Types.CreatePresignedNotebookUrlResponse) => void): Request<Athena.Types.CreatePresignedNotebookUrlResponse, AWSError>;
|
|
74
|
+
/**
|
|
75
|
+
* Gets an authentication token and the URL at which the notebook can be accessed. During programmatic access, CreatePresignedNotebookUrl must be called every 10 minutes to refresh the authentication token.
|
|
76
|
+
*/
|
|
77
|
+
createPresignedNotebookUrl(callback?: (err: AWSError, data: Athena.Types.CreatePresignedNotebookUrlResponse) => void): Request<Athena.Types.CreatePresignedNotebookUrlResponse, AWSError>;
|
|
78
|
+
/**
|
|
79
|
+
* Creates a workgroup with the specified name. Only one of Configurations or Configuration can be specified; Configurations for a workgroup with multi engine support (for example, an Apache Spark enabled workgroup) or Configuration for an Athena SQL workgroup.
|
|
64
80
|
*/
|
|
65
81
|
createWorkGroup(params: Athena.Types.CreateWorkGroupInput, callback?: (err: AWSError, data: Athena.Types.CreateWorkGroupOutput) => void): Request<Athena.Types.CreateWorkGroupOutput, AWSError>;
|
|
66
82
|
/**
|
|
67
|
-
* Creates a workgroup with the specified name.
|
|
83
|
+
* Creates a workgroup with the specified name. Only one of Configurations or Configuration can be specified; Configurations for a workgroup with multi engine support (for example, an Apache Spark enabled workgroup) or Configuration for an Athena SQL workgroup.
|
|
68
84
|
*/
|
|
69
85
|
createWorkGroup(callback?: (err: AWSError, data: Athena.Types.CreateWorkGroupOutput) => void): Request<Athena.Types.CreateWorkGroupOutput, AWSError>;
|
|
70
86
|
/**
|
|
@@ -83,6 +99,14 @@ declare class Athena extends Service {
|
|
|
83
99
|
* Deletes the named query if you have access to the workgroup in which the query was saved. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
84
100
|
*/
|
|
85
101
|
deleteNamedQuery(callback?: (err: AWSError, data: Athena.Types.DeleteNamedQueryOutput) => void): Request<Athena.Types.DeleteNamedQueryOutput, AWSError>;
|
|
102
|
+
/**
|
|
103
|
+
* Deletes the specified notebook.
|
|
104
|
+
*/
|
|
105
|
+
deleteNotebook(params: Athena.Types.DeleteNotebookInput, callback?: (err: AWSError, data: Athena.Types.DeleteNotebookOutput) => void): Request<Athena.Types.DeleteNotebookOutput, AWSError>;
|
|
106
|
+
/**
|
|
107
|
+
* Deletes the specified notebook.
|
|
108
|
+
*/
|
|
109
|
+
deleteNotebook(callback?: (err: AWSError, data: Athena.Types.DeleteNotebookOutput) => void): Request<Athena.Types.DeleteNotebookOutput, AWSError>;
|
|
86
110
|
/**
|
|
87
111
|
* Deletes the prepared statement with the specified name from the specified workgroup.
|
|
88
112
|
*/
|
|
@@ -99,6 +123,38 @@ declare class Athena extends Service {
|
|
|
99
123
|
* Deletes the workgroup with the specified name. The primary workgroup cannot be deleted.
|
|
100
124
|
*/
|
|
101
125
|
deleteWorkGroup(callback?: (err: AWSError, data: Athena.Types.DeleteWorkGroupOutput) => void): Request<Athena.Types.DeleteWorkGroupOutput, AWSError>;
|
|
126
|
+
/**
|
|
127
|
+
* Exports the specified notebook and its metadata.
|
|
128
|
+
*/
|
|
129
|
+
exportNotebook(params: Athena.Types.ExportNotebookInput, callback?: (err: AWSError, data: Athena.Types.ExportNotebookOutput) => void): Request<Athena.Types.ExportNotebookOutput, AWSError>;
|
|
130
|
+
/**
|
|
131
|
+
* Exports the specified notebook and its metadata.
|
|
132
|
+
*/
|
|
133
|
+
exportNotebook(callback?: (err: AWSError, data: Athena.Types.ExportNotebookOutput) => void): Request<Athena.Types.ExportNotebookOutput, AWSError>;
|
|
134
|
+
/**
|
|
135
|
+
* Describes a previously submitted calculation execution.
|
|
136
|
+
*/
|
|
137
|
+
getCalculationExecution(params: Athena.Types.GetCalculationExecutionRequest, callback?: (err: AWSError, data: Athena.Types.GetCalculationExecutionResponse) => void): Request<Athena.Types.GetCalculationExecutionResponse, AWSError>;
|
|
138
|
+
/**
|
|
139
|
+
* Describes a previously submitted calculation execution.
|
|
140
|
+
*/
|
|
141
|
+
getCalculationExecution(callback?: (err: AWSError, data: Athena.Types.GetCalculationExecutionResponse) => void): Request<Athena.Types.GetCalculationExecutionResponse, AWSError>;
|
|
142
|
+
/**
|
|
143
|
+
* Retrieves a pre-signed URL to a copy of the code that was executed for the calculation.
|
|
144
|
+
*/
|
|
145
|
+
getCalculationExecutionCode(params: Athena.Types.GetCalculationExecutionCodeRequest, callback?: (err: AWSError, data: Athena.Types.GetCalculationExecutionCodeResponse) => void): Request<Athena.Types.GetCalculationExecutionCodeResponse, AWSError>;
|
|
146
|
+
/**
|
|
147
|
+
* Retrieves a pre-signed URL to a copy of the code that was executed for the calculation.
|
|
148
|
+
*/
|
|
149
|
+
getCalculationExecutionCode(callback?: (err: AWSError, data: Athena.Types.GetCalculationExecutionCodeResponse) => void): Request<Athena.Types.GetCalculationExecutionCodeResponse, AWSError>;
|
|
150
|
+
/**
|
|
151
|
+
* Gets the status of a current calculation.
|
|
152
|
+
*/
|
|
153
|
+
getCalculationExecutionStatus(params: Athena.Types.GetCalculationExecutionStatusRequest, callback?: (err: AWSError, data: Athena.Types.GetCalculationExecutionStatusResponse) => void): Request<Athena.Types.GetCalculationExecutionStatusResponse, AWSError>;
|
|
154
|
+
/**
|
|
155
|
+
* Gets the status of a current calculation.
|
|
156
|
+
*/
|
|
157
|
+
getCalculationExecutionStatus(callback?: (err: AWSError, data: Athena.Types.GetCalculationExecutionStatusResponse) => void): Request<Athena.Types.GetCalculationExecutionStatusResponse, AWSError>;
|
|
102
158
|
/**
|
|
103
159
|
* Returns the specified data catalog.
|
|
104
160
|
*/
|
|
@@ -123,6 +179,14 @@ declare class Athena extends Service {
|
|
|
123
179
|
* Returns information about a single query. Requires that you have access to the workgroup in which the query was saved.
|
|
124
180
|
*/
|
|
125
181
|
getNamedQuery(callback?: (err: AWSError, data: Athena.Types.GetNamedQueryOutput) => void): Request<Athena.Types.GetNamedQueryOutput, AWSError>;
|
|
182
|
+
/**
|
|
183
|
+
* Retrieves notebook metadata for the specified notebook ID.
|
|
184
|
+
*/
|
|
185
|
+
getNotebookMetadata(params: Athena.Types.GetNotebookMetadataInput, callback?: (err: AWSError, data: Athena.Types.GetNotebookMetadataOutput) => void): Request<Athena.Types.GetNotebookMetadataOutput, AWSError>;
|
|
186
|
+
/**
|
|
187
|
+
* Retrieves notebook metadata for the specified notebook ID.
|
|
188
|
+
*/
|
|
189
|
+
getNotebookMetadata(callback?: (err: AWSError, data: Athena.Types.GetNotebookMetadataOutput) => void): Request<Athena.Types.GetNotebookMetadataOutput, AWSError>;
|
|
126
190
|
/**
|
|
127
191
|
* Retrieves the prepared statement with the specified name from the specified workgroup.
|
|
128
192
|
*/
|
|
@@ -155,6 +219,22 @@ declare class Athena extends Service {
|
|
|
155
219
|
* Returns query execution runtime statistics related to a single execution of a query if you have access to the workgroup in which the query ran. The query execution runtime statistics is returned only when QueryExecutionStatus$State is in a SUCCEEDED or FAILED state.
|
|
156
220
|
*/
|
|
157
221
|
getQueryRuntimeStatistics(callback?: (err: AWSError, data: Athena.Types.GetQueryRuntimeStatisticsOutput) => void): Request<Athena.Types.GetQueryRuntimeStatisticsOutput, AWSError>;
|
|
222
|
+
/**
|
|
223
|
+
* Gets the full details of a previously created session, including the session status and configuration.
|
|
224
|
+
*/
|
|
225
|
+
getSession(params: Athena.Types.GetSessionRequest, callback?: (err: AWSError, data: Athena.Types.GetSessionResponse) => void): Request<Athena.Types.GetSessionResponse, AWSError>;
|
|
226
|
+
/**
|
|
227
|
+
* Gets the full details of a previously created session, including the session status and configuration.
|
|
228
|
+
*/
|
|
229
|
+
getSession(callback?: (err: AWSError, data: Athena.Types.GetSessionResponse) => void): Request<Athena.Types.GetSessionResponse, AWSError>;
|
|
230
|
+
/**
|
|
231
|
+
* Gets the current status of a session.
|
|
232
|
+
*/
|
|
233
|
+
getSessionStatus(params: Athena.Types.GetSessionStatusRequest, callback?: (err: AWSError, data: Athena.Types.GetSessionStatusResponse) => void): Request<Athena.Types.GetSessionStatusResponse, AWSError>;
|
|
234
|
+
/**
|
|
235
|
+
* Gets the current status of a session.
|
|
236
|
+
*/
|
|
237
|
+
getSessionStatus(callback?: (err: AWSError, data: Athena.Types.GetSessionStatusResponse) => void): Request<Athena.Types.GetSessionStatusResponse, AWSError>;
|
|
158
238
|
/**
|
|
159
239
|
* Returns table metadata for the specified catalog, database, and table.
|
|
160
240
|
*/
|
|
@@ -171,6 +251,30 @@ declare class Athena extends Service {
|
|
|
171
251
|
* Returns information about the workgroup with the specified name.
|
|
172
252
|
*/
|
|
173
253
|
getWorkGroup(callback?: (err: AWSError, data: Athena.Types.GetWorkGroupOutput) => void): Request<Athena.Types.GetWorkGroupOutput, AWSError>;
|
|
254
|
+
/**
|
|
255
|
+
* Imports a single ipynb file to a Spark enabled workgroup. The maximum file size that can be imported is 10 megabytes. If an ipynb file with the same name already exists in the workgroup, throws an error.
|
|
256
|
+
*/
|
|
257
|
+
importNotebook(params: Athena.Types.ImportNotebookInput, callback?: (err: AWSError, data: Athena.Types.ImportNotebookOutput) => void): Request<Athena.Types.ImportNotebookOutput, AWSError>;
|
|
258
|
+
/**
|
|
259
|
+
* Imports a single ipynb file to a Spark enabled workgroup. The maximum file size that can be imported is 10 megabytes. If an ipynb file with the same name already exists in the workgroup, throws an error.
|
|
260
|
+
*/
|
|
261
|
+
importNotebook(callback?: (err: AWSError, data: Athena.Types.ImportNotebookOutput) => void): Request<Athena.Types.ImportNotebookOutput, AWSError>;
|
|
262
|
+
/**
|
|
263
|
+
* Returns the supported DPU sizes for the supported application runtimes (for example, Jupyter 1.0).
|
|
264
|
+
*/
|
|
265
|
+
listApplicationDPUSizes(params: Athena.Types.ListApplicationDPUSizesInput, callback?: (err: AWSError, data: Athena.Types.ListApplicationDPUSizesOutput) => void): Request<Athena.Types.ListApplicationDPUSizesOutput, AWSError>;
|
|
266
|
+
/**
|
|
267
|
+
* Returns the supported DPU sizes for the supported application runtimes (for example, Jupyter 1.0).
|
|
268
|
+
*/
|
|
269
|
+
listApplicationDPUSizes(callback?: (err: AWSError, data: Athena.Types.ListApplicationDPUSizesOutput) => void): Request<Athena.Types.ListApplicationDPUSizesOutput, AWSError>;
|
|
270
|
+
/**
|
|
271
|
+
* Lists the calculations that have been submitted to a session in descending order. Newer calculations are listed first; older calculations are listed later.
|
|
272
|
+
*/
|
|
273
|
+
listCalculationExecutions(params: Athena.Types.ListCalculationExecutionsRequest, callback?: (err: AWSError, data: Athena.Types.ListCalculationExecutionsResponse) => void): Request<Athena.Types.ListCalculationExecutionsResponse, AWSError>;
|
|
274
|
+
/**
|
|
275
|
+
* Lists the calculations that have been submitted to a session in descending order. Newer calculations are listed first; older calculations are listed later.
|
|
276
|
+
*/
|
|
277
|
+
listCalculationExecutions(callback?: (err: AWSError, data: Athena.Types.ListCalculationExecutionsResponse) => void): Request<Athena.Types.ListCalculationExecutionsResponse, AWSError>;
|
|
174
278
|
/**
|
|
175
279
|
* Lists the data catalogs in the current Amazon Web Services account.
|
|
176
280
|
*/
|
|
@@ -195,6 +299,14 @@ declare class Athena extends Service {
|
|
|
195
299
|
* Returns a list of engine versions that are available to choose from, including the Auto option.
|
|
196
300
|
*/
|
|
197
301
|
listEngineVersions(callback?: (err: AWSError, data: Athena.Types.ListEngineVersionsOutput) => void): Request<Athena.Types.ListEngineVersionsOutput, AWSError>;
|
|
302
|
+
/**
|
|
303
|
+
* Lists, in descending order, the executors that have been submitted to a session. Newer executors are listed first; older executors are listed later. The result can be optionally filtered by state.
|
|
304
|
+
*/
|
|
305
|
+
listExecutors(params: Athena.Types.ListExecutorsRequest, callback?: (err: AWSError, data: Athena.Types.ListExecutorsResponse) => void): Request<Athena.Types.ListExecutorsResponse, AWSError>;
|
|
306
|
+
/**
|
|
307
|
+
* Lists, in descending order, the executors that have been submitted to a session. Newer executors are listed first; older executors are listed later. The result can be optionally filtered by state.
|
|
308
|
+
*/
|
|
309
|
+
listExecutors(callback?: (err: AWSError, data: Athena.Types.ListExecutorsResponse) => void): Request<Athena.Types.ListExecutorsResponse, AWSError>;
|
|
198
310
|
/**
|
|
199
311
|
* Provides a list of available query IDs only for queries saved in the specified workgroup. Requires that you have access to the specified workgroup. If a workgroup is not specified, lists the saved queries for the primary workgroup. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
200
312
|
*/
|
|
@@ -203,6 +315,22 @@ declare class Athena extends Service {
|
|
|
203
315
|
* Provides a list of available query IDs only for queries saved in the specified workgroup. Requires that you have access to the specified workgroup. If a workgroup is not specified, lists the saved queries for the primary workgroup. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
204
316
|
*/
|
|
205
317
|
listNamedQueries(callback?: (err: AWSError, data: Athena.Types.ListNamedQueriesOutput) => void): Request<Athena.Types.ListNamedQueriesOutput, AWSError>;
|
|
318
|
+
/**
|
|
319
|
+
* Displays the notebook files for the specified workgroup in paginated format.
|
|
320
|
+
*/
|
|
321
|
+
listNotebookMetadata(params: Athena.Types.ListNotebookMetadataInput, callback?: (err: AWSError, data: Athena.Types.ListNotebookMetadataOutput) => void): Request<Athena.Types.ListNotebookMetadataOutput, AWSError>;
|
|
322
|
+
/**
|
|
323
|
+
* Displays the notebook files for the specified workgroup in paginated format.
|
|
324
|
+
*/
|
|
325
|
+
listNotebookMetadata(callback?: (err: AWSError, data: Athena.Types.ListNotebookMetadataOutput) => void): Request<Athena.Types.ListNotebookMetadataOutput, AWSError>;
|
|
326
|
+
/**
|
|
327
|
+
* Lists, in descending order, the sessions that have been created in a notebook that are in an active state like CREATING, CREATED, IDLE or BUSY. Newer sessions are listed first; older sessions are listed later.
|
|
328
|
+
*/
|
|
329
|
+
listNotebookSessions(params: Athena.Types.ListNotebookSessionsRequest, callback?: (err: AWSError, data: Athena.Types.ListNotebookSessionsResponse) => void): Request<Athena.Types.ListNotebookSessionsResponse, AWSError>;
|
|
330
|
+
/**
|
|
331
|
+
* Lists, in descending order, the sessions that have been created in a notebook that are in an active state like CREATING, CREATED, IDLE or BUSY. Newer sessions are listed first; older sessions are listed later.
|
|
332
|
+
*/
|
|
333
|
+
listNotebookSessions(callback?: (err: AWSError, data: Athena.Types.ListNotebookSessionsResponse) => void): Request<Athena.Types.ListNotebookSessionsResponse, AWSError>;
|
|
206
334
|
/**
|
|
207
335
|
* Lists the prepared statements in the specified workgroup.
|
|
208
336
|
*/
|
|
@@ -219,6 +347,14 @@ declare class Athena extends Service {
|
|
|
219
347
|
* Provides a list of available query execution IDs for the queries in the specified workgroup. If a workgroup is not specified, returns a list of query execution IDs for the primary workgroup. Requires you to have access to the workgroup in which the queries ran. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
220
348
|
*/
|
|
221
349
|
listQueryExecutions(callback?: (err: AWSError, data: Athena.Types.ListQueryExecutionsOutput) => void): Request<Athena.Types.ListQueryExecutionsOutput, AWSError>;
|
|
350
|
+
/**
|
|
351
|
+
* Lists the sessions in a workgroup that are in an active state like CREATING, CREATED, IDLE, or BUSY. Newer sessions are listed first; older sessions are listed later.
|
|
352
|
+
*/
|
|
353
|
+
listSessions(params: Athena.Types.ListSessionsRequest, callback?: (err: AWSError, data: Athena.Types.ListSessionsResponse) => void): Request<Athena.Types.ListSessionsResponse, AWSError>;
|
|
354
|
+
/**
|
|
355
|
+
* Lists the sessions in a workgroup that are in an active state like CREATING, CREATED, IDLE, or BUSY. Newer sessions are listed first; older sessions are listed later.
|
|
356
|
+
*/
|
|
357
|
+
listSessions(callback?: (err: AWSError, data: Athena.Types.ListSessionsResponse) => void): Request<Athena.Types.ListSessionsResponse, AWSError>;
|
|
222
358
|
/**
|
|
223
359
|
* Lists the metadata for the tables in the specified data catalog database.
|
|
224
360
|
*/
|
|
@@ -243,6 +379,14 @@ declare class Athena extends Service {
|
|
|
243
379
|
* Lists available workgroups for the account.
|
|
244
380
|
*/
|
|
245
381
|
listWorkGroups(callback?: (err: AWSError, data: Athena.Types.ListWorkGroupsOutput) => void): Request<Athena.Types.ListWorkGroupsOutput, AWSError>;
|
|
382
|
+
/**
|
|
383
|
+
* Submits calculations for execution within a session. You can supply the code to run as an inline code block within the request or as an Amazon S3 URL.
|
|
384
|
+
*/
|
|
385
|
+
startCalculationExecution(params: Athena.Types.StartCalculationExecutionRequest, callback?: (err: AWSError, data: Athena.Types.StartCalculationExecutionResponse) => void): Request<Athena.Types.StartCalculationExecutionResponse, AWSError>;
|
|
386
|
+
/**
|
|
387
|
+
* Submits calculations for execution within a session. You can supply the code to run as an inline code block within the request or as an Amazon S3 URL.
|
|
388
|
+
*/
|
|
389
|
+
startCalculationExecution(callback?: (err: AWSError, data: Athena.Types.StartCalculationExecutionResponse) => void): Request<Athena.Types.StartCalculationExecutionResponse, AWSError>;
|
|
246
390
|
/**
|
|
247
391
|
* Runs the SQL query statements contained in the Query. Requires you to have access to the workgroup in which the query ran. Running queries against an external catalog requires GetDataCatalog permission to the catalog. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
248
392
|
*/
|
|
@@ -251,6 +395,22 @@ declare class Athena extends Service {
|
|
|
251
395
|
* Runs the SQL query statements contained in the Query. Requires you to have access to the workgroup in which the query ran. Running queries against an external catalog requires GetDataCatalog permission to the catalog. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
252
396
|
*/
|
|
253
397
|
startQueryExecution(callback?: (err: AWSError, data: Athena.Types.StartQueryExecutionOutput) => void): Request<Athena.Types.StartQueryExecutionOutput, AWSError>;
|
|
398
|
+
/**
|
|
399
|
+
* Creates a session for running calculations within a workgroup. The session is ready when it reaches an IDLE state.
|
|
400
|
+
*/
|
|
401
|
+
startSession(params: Athena.Types.StartSessionRequest, callback?: (err: AWSError, data: Athena.Types.StartSessionResponse) => void): Request<Athena.Types.StartSessionResponse, AWSError>;
|
|
402
|
+
/**
|
|
403
|
+
* Creates a session for running calculations within a workgroup. The session is ready when it reaches an IDLE state.
|
|
404
|
+
*/
|
|
405
|
+
startSession(callback?: (err: AWSError, data: Athena.Types.StartSessionResponse) => void): Request<Athena.Types.StartSessionResponse, AWSError>;
|
|
406
|
+
/**
|
|
407
|
+
* Requests the cancellation of a calculation. A StopCalculationExecution call on a calculation that is already in a terminal state (for example, STOPPED, FAILED, or COMPLETED) succeeds but has no effect. Cancelling a calculation is done on a best effort basis. If a calculation cannot be cancelled, you can be charged for its completion. If you are concerned about being charged for a calculation that cannot be cancelled, consider terminating the session in which the calculation is running.
|
|
408
|
+
*/
|
|
409
|
+
stopCalculationExecution(params: Athena.Types.StopCalculationExecutionRequest, callback?: (err: AWSError, data: Athena.Types.StopCalculationExecutionResponse) => void): Request<Athena.Types.StopCalculationExecutionResponse, AWSError>;
|
|
410
|
+
/**
|
|
411
|
+
* Requests the cancellation of a calculation. A StopCalculationExecution call on a calculation that is already in a terminal state (for example, STOPPED, FAILED, or COMPLETED) succeeds but has no effect. Cancelling a calculation is done on a best effort basis. If a calculation cannot be cancelled, you can be charged for its completion. If you are concerned about being charged for a calculation that cannot be cancelled, consider terminating the session in which the calculation is running.
|
|
412
|
+
*/
|
|
413
|
+
stopCalculationExecution(callback?: (err: AWSError, data: Athena.Types.StopCalculationExecutionResponse) => void): Request<Athena.Types.StopCalculationExecutionResponse, AWSError>;
|
|
254
414
|
/**
|
|
255
415
|
* Stops a query execution. Requires you to have access to the workgroup in which the query ran. For code samples using the Amazon Web Services SDK for Java, see Examples and Code Samples in the Amazon Athena User Guide.
|
|
256
416
|
*/
|
|
@@ -267,6 +427,14 @@ declare class Athena extends Service {
|
|
|
267
427
|
* Adds one or more tags to an Athena resource. A tag is a label that you assign to a resource. In Athena, a resource can be a workgroup or data catalog. Each tag consists of a key and an optional value, both of which you define. For example, you can use tags to categorize Athena workgroups or data catalogs by purpose, owner, or environment. Use a consistent set of tag keys to make it easier to search and filter workgroups or data catalogs in your account. For best practices, see Tagging Best Practices. Tag keys can be from 1 to 128 UTF-8 Unicode characters, and tag values can be from 0 to 256 UTF-8 Unicode characters. Tags can use letters and numbers representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case-sensitive. Tag keys must be unique per resource. If you specify more than one tag, separate them by commas.
|
|
268
428
|
*/
|
|
269
429
|
tagResource(callback?: (err: AWSError, data: Athena.Types.TagResourceOutput) => void): Request<Athena.Types.TagResourceOutput, AWSError>;
|
|
430
|
+
/**
|
|
431
|
+
* Terminates an active session. A TerminateSession call on a session that is already inactive (for example, in a FAILED, TERMINATED or TERMINATING state) succeeds but has no effect. Calculations running in the session when TerminateSession is called are forcefully stopped, but may display as FAILED instead of STOPPED.
|
|
432
|
+
*/
|
|
433
|
+
terminateSession(params: Athena.Types.TerminateSessionRequest, callback?: (err: AWSError, data: Athena.Types.TerminateSessionResponse) => void): Request<Athena.Types.TerminateSessionResponse, AWSError>;
|
|
434
|
+
/**
|
|
435
|
+
* Terminates an active session. A TerminateSession call on a session that is already inactive (for example, in a FAILED, TERMINATED or TERMINATING state) succeeds but has no effect. Calculations running in the session when TerminateSession is called are forcefully stopped, but may display as FAILED instead of STOPPED.
|
|
436
|
+
*/
|
|
437
|
+
terminateSession(callback?: (err: AWSError, data: Athena.Types.TerminateSessionResponse) => void): Request<Athena.Types.TerminateSessionResponse, AWSError>;
|
|
270
438
|
/**
|
|
271
439
|
* Removes one or more tags from a data catalog or workgroup resource.
|
|
272
440
|
*/
|
|
@@ -291,6 +459,22 @@ declare class Athena extends Service {
|
|
|
291
459
|
* Updates a NamedQuery object. The database or workgroup cannot be updated.
|
|
292
460
|
*/
|
|
293
461
|
updateNamedQuery(callback?: (err: AWSError, data: Athena.Types.UpdateNamedQueryOutput) => void): Request<Athena.Types.UpdateNamedQueryOutput, AWSError>;
|
|
462
|
+
/**
|
|
463
|
+
* Updates the contents of a Spark notebook.
|
|
464
|
+
*/
|
|
465
|
+
updateNotebook(params: Athena.Types.UpdateNotebookInput, callback?: (err: AWSError, data: Athena.Types.UpdateNotebookOutput) => void): Request<Athena.Types.UpdateNotebookOutput, AWSError>;
|
|
466
|
+
/**
|
|
467
|
+
* Updates the contents of a Spark notebook.
|
|
468
|
+
*/
|
|
469
|
+
updateNotebook(callback?: (err: AWSError, data: Athena.Types.UpdateNotebookOutput) => void): Request<Athena.Types.UpdateNotebookOutput, AWSError>;
|
|
470
|
+
/**
|
|
471
|
+
* Updates the metadata for a notebook.
|
|
472
|
+
*/
|
|
473
|
+
updateNotebookMetadata(params: Athena.Types.UpdateNotebookMetadataInput, callback?: (err: AWSError, data: Athena.Types.UpdateNotebookMetadataOutput) => void): Request<Athena.Types.UpdateNotebookMetadataOutput, AWSError>;
|
|
474
|
+
/**
|
|
475
|
+
* Updates the metadata for a notebook.
|
|
476
|
+
*/
|
|
477
|
+
updateNotebookMetadata(callback?: (err: AWSError, data: Athena.Types.UpdateNotebookMetadataOutput) => void): Request<Athena.Types.UpdateNotebookMetadataOutput, AWSError>;
|
|
294
478
|
/**
|
|
295
479
|
* Updates a prepared statement.
|
|
296
480
|
*/
|
|
@@ -300,11 +484,11 @@ declare class Athena extends Service {
|
|
|
300
484
|
*/
|
|
301
485
|
updatePreparedStatement(callback?: (err: AWSError, data: Athena.Types.UpdatePreparedStatementOutput) => void): Request<Athena.Types.UpdatePreparedStatementOutput, AWSError>;
|
|
302
486
|
/**
|
|
303
|
-
* Updates the workgroup with the specified name. The workgroup's name cannot be changed.
|
|
487
|
+
* Updates the workgroup with the specified name. The workgroup's name cannot be changed. Only one of ConfigurationsUpdates or ConfigurationUpdates can be specified; ConfigurationsUpdates for a workgroup with multi engine support (for example, an Apache Spark enabled workgroup) or ConfigurationUpdates for an Athena SQL workgroup.
|
|
304
488
|
*/
|
|
305
489
|
updateWorkGroup(params: Athena.Types.UpdateWorkGroupInput, callback?: (err: AWSError, data: Athena.Types.UpdateWorkGroupOutput) => void): Request<Athena.Types.UpdateWorkGroupOutput, AWSError>;
|
|
306
490
|
/**
|
|
307
|
-
* Updates the workgroup with the specified name. The workgroup's name cannot be changed.
|
|
491
|
+
* Updates the workgroup with the specified name. The workgroup's name cannot be changed. Only one of ConfigurationsUpdates or ConfigurationUpdates can be specified; ConfigurationsUpdates for a workgroup with multi engine support (for example, an Apache Spark enabled workgroup) or ConfigurationUpdates for an Athena SQL workgroup.
|
|
308
492
|
*/
|
|
309
493
|
updateWorkGroup(callback?: (err: AWSError, data: Athena.Types.UpdateWorkGroupOutput) => void): Request<Athena.Types.UpdateWorkGroupOutput, AWSError>;
|
|
310
494
|
}
|
|
@@ -317,6 +501,17 @@ declare namespace Athena {
|
|
|
317
501
|
}
|
|
318
502
|
export type Age = number;
|
|
319
503
|
export type AmazonResourceName = string;
|
|
504
|
+
export interface ApplicationDPUSizes {
|
|
505
|
+
/**
|
|
506
|
+
* The name of the supported application runtime (for example, Jupyter 1.0).
|
|
507
|
+
*/
|
|
508
|
+
ApplicationRuntimeId?: NameString;
|
|
509
|
+
/**
|
|
510
|
+
* A list of the supported DPU sizes that the application runtime supports.
|
|
511
|
+
*/
|
|
512
|
+
SupportedDPUSizes?: SupportedDPUSizeList;
|
|
513
|
+
}
|
|
514
|
+
export type ApplicationDPUSizesList = ApplicationDPUSizes[];
|
|
320
515
|
export interface AthenaError {
|
|
321
516
|
/**
|
|
322
517
|
* An integer value that specifies the category of a query failure error. The following list shows the category for each integer value. 1 - System 2 - User 3 - Other
|
|
@@ -335,6 +530,7 @@ declare namespace Athena {
|
|
|
335
530
|
*/
|
|
336
531
|
ErrorMessage?: String;
|
|
337
532
|
}
|
|
533
|
+
export type AuthToken = string;
|
|
338
534
|
export type AwsAccountId = string;
|
|
339
535
|
export interface BatchGetNamedQueryInput {
|
|
340
536
|
/**
|
|
@@ -391,7 +587,79 @@ declare namespace Athena {
|
|
|
391
587
|
export type Boolean = boolean;
|
|
392
588
|
export type BoxedBoolean = boolean;
|
|
393
589
|
export type BytesScannedCutoffValue = number;
|
|
590
|
+
export interface CalculationConfiguration {
|
|
591
|
+
/**
|
|
592
|
+
* A string that contains the code for the calculation.
|
|
593
|
+
*/
|
|
594
|
+
CodeBlock?: CodeBlock;
|
|
595
|
+
}
|
|
596
|
+
export type CalculationExecutionId = string;
|
|
597
|
+
export type CalculationExecutionState = "CREATING"|"CREATED"|"QUEUED"|"RUNNING"|"CANCELING"|"CANCELED"|"COMPLETED"|"FAILED"|string;
|
|
598
|
+
export interface CalculationResult {
|
|
599
|
+
/**
|
|
600
|
+
* The Amazon S3 location of the stdout file for the calculation.
|
|
601
|
+
*/
|
|
602
|
+
StdOutS3Uri?: S3Uri;
|
|
603
|
+
/**
|
|
604
|
+
* The Amazon S3 location of the stderr error messages file for the calculation.
|
|
605
|
+
*/
|
|
606
|
+
StdErrorS3Uri?: S3Uri;
|
|
607
|
+
/**
|
|
608
|
+
* The Amazon S3 location of the folder for the calculation results.
|
|
609
|
+
*/
|
|
610
|
+
ResultS3Uri?: S3Uri;
|
|
611
|
+
/**
|
|
612
|
+
* The data format of the calculation result.
|
|
613
|
+
*/
|
|
614
|
+
ResultType?: CalculationResultType;
|
|
615
|
+
}
|
|
616
|
+
export type CalculationResultType = string;
|
|
617
|
+
export interface CalculationStatistics {
|
|
618
|
+
/**
|
|
619
|
+
* The data processing unit execution time in milliseconds for the calculation.
|
|
620
|
+
*/
|
|
621
|
+
DpuExecutionInMillis?: Long;
|
|
622
|
+
/**
|
|
623
|
+
* The progress of the calculation.
|
|
624
|
+
*/
|
|
625
|
+
Progress?: DescriptionString;
|
|
626
|
+
}
|
|
627
|
+
export interface CalculationStatus {
|
|
628
|
+
/**
|
|
629
|
+
* The date and time the calculation was submitted for processing.
|
|
630
|
+
*/
|
|
631
|
+
SubmissionDateTime?: _Date;
|
|
632
|
+
/**
|
|
633
|
+
* The date and time the calculation completed processing.
|
|
634
|
+
*/
|
|
635
|
+
CompletionDateTime?: _Date;
|
|
636
|
+
/**
|
|
637
|
+
* The state of the calculation execution. A description of each state follows. CREATING - The calculation is in the process of being created. CREATED - The calculation has been created and is ready to run. QUEUED - The calculation has been queued for processing. RUNNING - The calculation is running. CANCELING - A request to cancel the calculation has been received and the system is working to stop it. CANCELED - The calculation is no longer running as the result of a cancel request. COMPLETED - The calculation has completed without error. FAILED - The calculation failed and is no longer running.
|
|
638
|
+
*/
|
|
639
|
+
State?: CalculationExecutionState;
|
|
640
|
+
/**
|
|
641
|
+
* The reason for the calculation state change (for example, the calculation was canceled because the session was terminated).
|
|
642
|
+
*/
|
|
643
|
+
StateChangeReason?: DescriptionString;
|
|
644
|
+
}
|
|
645
|
+
export interface CalculationSummary {
|
|
646
|
+
/**
|
|
647
|
+
* The calculation execution UUID.
|
|
648
|
+
*/
|
|
649
|
+
CalculationExecutionId?: CalculationExecutionId;
|
|
650
|
+
/**
|
|
651
|
+
* A description of the calculation.
|
|
652
|
+
*/
|
|
653
|
+
Description?: DescriptionString;
|
|
654
|
+
/**
|
|
655
|
+
* Contains information about the status of the calculation.
|
|
656
|
+
*/
|
|
657
|
+
Status?: CalculationStatus;
|
|
658
|
+
}
|
|
659
|
+
export type CalculationsList = CalculationSummary[];
|
|
394
660
|
export type CatalogNameString = string;
|
|
661
|
+
export type ClientRequestToken = string;
|
|
662
|
+
export type CodeBlock = string;
|
|
395
663
|
export interface Column {
|
|
396
664
|
/**
|
|
397
665
|
* The name of the column.
|
|
@@ -452,6 +720,7 @@ declare namespace Athena {
|
|
|
452
720
|
export type ColumnList = Column[];
|
|
453
721
|
export type ColumnNullable = "NOT_NULL"|"NULLABLE"|"UNKNOWN"|string;
|
|
454
722
|
export type CommentString = string;
|
|
723
|
+
export type CoordinatorDpuSize = number;
|
|
455
724
|
export interface CreateDataCatalogInput {
|
|
456
725
|
/**
|
|
457
726
|
* The name of the data catalog to create. The catalog name must be unique for the Amazon Web Services account and can use a maximum of 127 alphanumeric, underscore, at sign, or hyphen characters. The remainder of the length constraint of 256 is reserved for use by Athena.
|
|
@@ -508,6 +777,26 @@ declare namespace Athena {
|
|
|
508
777
|
*/
|
|
509
778
|
NamedQueryId?: NamedQueryId;
|
|
510
779
|
}
|
|
780
|
+
export interface CreateNotebookInput {
|
|
781
|
+
/**
|
|
782
|
+
* The name of the Spark enabled workgroup in which the notebook will be created.
|
|
783
|
+
*/
|
|
784
|
+
WorkGroup: WorkGroupName;
|
|
785
|
+
/**
|
|
786
|
+
* The name of the ipynb file to be created in the Spark workgroup, without the .ipynb extension.
|
|
787
|
+
*/
|
|
788
|
+
Name: NotebookName;
|
|
789
|
+
/**
|
|
790
|
+
* A unique case-sensitive string used to ensure the request to create the notebook is idempotent (executes only once). This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
|
|
791
|
+
*/
|
|
792
|
+
ClientRequestToken?: ClientRequestToken;
|
|
793
|
+
}
|
|
794
|
+
export interface CreateNotebookOutput {
|
|
795
|
+
/**
|
|
796
|
+
* A unique identifier for the notebook.
|
|
797
|
+
*/
|
|
798
|
+
NotebookId?: NotebookId;
|
|
799
|
+
}
|
|
511
800
|
export interface CreatePreparedStatementInput {
|
|
512
801
|
/**
|
|
513
802
|
* The name of the prepared statement.
|
|
@@ -528,13 +817,33 @@ declare namespace Athena {
|
|
|
528
817
|
}
|
|
529
818
|
export interface CreatePreparedStatementOutput {
|
|
530
819
|
}
|
|
820
|
+
export interface CreatePresignedNotebookUrlRequest {
|
|
821
|
+
/**
|
|
822
|
+
* The session ID.
|
|
823
|
+
*/
|
|
824
|
+
SessionId: SessionId;
|
|
825
|
+
}
|
|
826
|
+
export interface CreatePresignedNotebookUrlResponse {
|
|
827
|
+
/**
|
|
828
|
+
* The URL of the notebook. The URL includes the authentication token and notebook file name and points directly to the opened notebook.
|
|
829
|
+
*/
|
|
830
|
+
NotebookUrl: String;
|
|
831
|
+
/**
|
|
832
|
+
* The authentication token for the notebook.
|
|
833
|
+
*/
|
|
834
|
+
AuthToken: AuthToken;
|
|
835
|
+
/**
|
|
836
|
+
* The UTC epoch time when the authentication token expires.
|
|
837
|
+
*/
|
|
838
|
+
AuthTokenExpirationTime: Long;
|
|
839
|
+
}
|
|
531
840
|
export interface CreateWorkGroupInput {
|
|
532
841
|
/**
|
|
533
842
|
* The workgroup name.
|
|
534
843
|
*/
|
|
535
844
|
Name: WorkGroupName;
|
|
536
845
|
/**
|
|
537
|
-
*
|
|
846
|
+
* Contains configuration information for creating an Athena SQL workgroup, which includes the location in Amazon S3 where query results are stored, the encryption configuration, if any, used for encrypting query results, whether the Amazon CloudWatch Metrics are enabled for the workgroup, the limit for the amount of bytes scanned (cutoff) per query, if it is specified, and whether workgroup's settings (specified with EnforceWorkGroupConfiguration) in the WorkGroupConfiguration override client-side settings. See WorkGroupConfiguration$EnforceWorkGroupConfiguration.
|
|
538
847
|
*/
|
|
539
848
|
Configuration?: WorkGroupConfiguration;
|
|
540
849
|
/**
|
|
@@ -548,6 +857,12 @@ declare namespace Athena {
|
|
|
548
857
|
}
|
|
549
858
|
export interface CreateWorkGroupOutput {
|
|
550
859
|
}
|
|
860
|
+
export interface CustomerContentEncryptionConfiguration {
|
|
861
|
+
/**
|
|
862
|
+
* The KMS key that is used to encrypt the user's data stores in Athena.
|
|
863
|
+
*/
|
|
864
|
+
KmsKey: KmsKey;
|
|
865
|
+
}
|
|
551
866
|
export interface DataCatalog {
|
|
552
867
|
/**
|
|
553
868
|
* The name of the data catalog. The catalog name must be unique for the Amazon Web Services account and can use a maximum of 127 alphanumeric, underscore, at sign, or hyphen characters. The remainder of the length constraint of 256 is reserved for use by Athena.
|
|
@@ -601,6 +916,7 @@ declare namespace Athena {
|
|
|
601
916
|
*/
|
|
602
917
|
VarCharValue?: datumString;
|
|
603
918
|
}
|
|
919
|
+
export type DefaultExecutorDpuSize = number;
|
|
604
920
|
export interface DeleteDataCatalogInput {
|
|
605
921
|
/**
|
|
606
922
|
* The name of the data catalog to delete.
|
|
@@ -617,6 +933,14 @@ declare namespace Athena {
|
|
|
617
933
|
}
|
|
618
934
|
export interface DeleteNamedQueryOutput {
|
|
619
935
|
}
|
|
936
|
+
export interface DeleteNotebookInput {
|
|
937
|
+
/**
|
|
938
|
+
* The ID of the notebook to delete.
|
|
939
|
+
*/
|
|
940
|
+
NotebookId: NotebookId;
|
|
941
|
+
}
|
|
942
|
+
export interface DeleteNotebookOutput {
|
|
943
|
+
}
|
|
620
944
|
export interface DeletePreparedStatementInput {
|
|
621
945
|
/**
|
|
622
946
|
* The name of the prepared statement to delete.
|
|
@@ -653,6 +977,24 @@ declare namespace Athena {
|
|
|
653
977
|
KmsKey?: String;
|
|
654
978
|
}
|
|
655
979
|
export type EncryptionOption = "SSE_S3"|"SSE_KMS"|"CSE_KMS"|string;
|
|
980
|
+
export interface EngineConfiguration {
|
|
981
|
+
/**
|
|
982
|
+
* The number of DPUs to use for the coordinator. A coordinator is a special executor that orchestrates processing work and manages other executors in a notebook session.
|
|
983
|
+
*/
|
|
984
|
+
CoordinatorDpuSize?: CoordinatorDpuSize;
|
|
985
|
+
/**
|
|
986
|
+
* The maximum number of DPUs that can run concurrently.
|
|
987
|
+
*/
|
|
988
|
+
MaxConcurrentDpus: MaxConcurrentDpus;
|
|
989
|
+
/**
|
|
990
|
+
* The default number of DPUs to use for executors. An executor is the smallest unit of compute that a notebook session can request from Athena.
|
|
991
|
+
*/
|
|
992
|
+
DefaultExecutorDpuSize?: DefaultExecutorDpuSize;
|
|
993
|
+
/**
|
|
994
|
+
* Contains additional notebook engine MAP<string, string> parameter mappings in the form of key-value pairs. To specify an Amazon S3 URI that the Jupyter server will download and serve, specify a value for the StartSessionRequest$NotebookVersion field, and then add a key named NotebookFileURI to AdditionalConfigs that has value of the Amazon S3 URI.
|
|
995
|
+
*/
|
|
996
|
+
AdditionalConfigs?: ParametersMap;
|
|
997
|
+
}
|
|
656
998
|
export interface EngineVersion {
|
|
657
999
|
/**
|
|
658
1000
|
* The engine version requested by the user. Possible values are determined by the output of ListEngineVersions, including Auto. The default is Auto.
|
|
@@ -670,7 +1012,123 @@ declare namespace Athena {
|
|
|
670
1012
|
export type ErrorType = number;
|
|
671
1013
|
export type ExecutionParameter = string;
|
|
672
1014
|
export type ExecutionParameters = ExecutionParameter[];
|
|
1015
|
+
export type ExecutorId = string;
|
|
1016
|
+
export type ExecutorState = "CREATING"|"CREATED"|"REGISTERED"|"TERMINATING"|"TERMINATED"|"FAILED"|string;
|
|
1017
|
+
export type ExecutorType = "COORDINATOR"|"GATEWAY"|"WORKER"|string;
|
|
1018
|
+
export interface ExecutorsSummary {
|
|
1019
|
+
/**
|
|
1020
|
+
* The UUID of the executor.
|
|
1021
|
+
*/
|
|
1022
|
+
ExecutorId: ExecutorId;
|
|
1023
|
+
/**
|
|
1024
|
+
* The type of executor used for the application (COORDINATOR, GATEWAY, or WORKER).
|
|
1025
|
+
*/
|
|
1026
|
+
ExecutorType?: ExecutorType;
|
|
1027
|
+
/**
|
|
1028
|
+
* The date and time that the executor started.
|
|
1029
|
+
*/
|
|
1030
|
+
StartDateTime?: Long;
|
|
1031
|
+
/**
|
|
1032
|
+
* The date and time that the executor was terminated.
|
|
1033
|
+
*/
|
|
1034
|
+
TerminationDateTime?: Long;
|
|
1035
|
+
/**
|
|
1036
|
+
* The processing state of the executor. A description of each state follows. CREATING - The executor is being started, including acquiring resources. CREATED - The executor has been started. REGISTERED - The executor has been registered. TERMINATING - The executor is in the process of shutting down. TERMINATED - The executor is no longer running. FAILED - Due to a failure, the executor is no longer running.
|
|
1037
|
+
*/
|
|
1038
|
+
ExecutorState?: ExecutorState;
|
|
1039
|
+
/**
|
|
1040
|
+
* The smallest unit of compute that a session can request from Athena. Size is measured in data processing unit (DPU) values, a relative measure of processing power.
|
|
1041
|
+
*/
|
|
1042
|
+
ExecutorSize?: Long;
|
|
1043
|
+
}
|
|
1044
|
+
export type ExecutorsSummaryList = ExecutorsSummary[];
|
|
1045
|
+
export interface ExportNotebookInput {
|
|
1046
|
+
/**
|
|
1047
|
+
* The ID of the notebook to export.
|
|
1048
|
+
*/
|
|
1049
|
+
NotebookId: NotebookId;
|
|
1050
|
+
}
|
|
1051
|
+
export interface ExportNotebookOutput {
|
|
1052
|
+
/**
|
|
1053
|
+
* The notebook metadata, including notebook ID, notebook name, and workgroup name.
|
|
1054
|
+
*/
|
|
1055
|
+
NotebookMetadata?: NotebookMetadata;
|
|
1056
|
+
/**
|
|
1057
|
+
* The content of the exported notebook.
|
|
1058
|
+
*/
|
|
1059
|
+
Payload?: Payload;
|
|
1060
|
+
}
|
|
673
1061
|
export type ExpressionString = string;
|
|
1062
|
+
export interface FilterDefinition {
|
|
1063
|
+
/**
|
|
1064
|
+
* The name of the notebook to search for.
|
|
1065
|
+
*/
|
|
1066
|
+
Name?: NotebookName;
|
|
1067
|
+
}
|
|
1068
|
+
export interface GetCalculationExecutionCodeRequest {
|
|
1069
|
+
/**
|
|
1070
|
+
* The calculation execution UUID.
|
|
1071
|
+
*/
|
|
1072
|
+
CalculationExecutionId: CalculationExecutionId;
|
|
1073
|
+
}
|
|
1074
|
+
export interface GetCalculationExecutionCodeResponse {
|
|
1075
|
+
/**
|
|
1076
|
+
* A pre-signed URL to the code that executed the calculation.
|
|
1077
|
+
*/
|
|
1078
|
+
CodeBlock?: CodeBlock;
|
|
1079
|
+
}
|
|
1080
|
+
export interface GetCalculationExecutionRequest {
|
|
1081
|
+
/**
|
|
1082
|
+
* The calculation execution UUID.
|
|
1083
|
+
*/
|
|
1084
|
+
CalculationExecutionId: CalculationExecutionId;
|
|
1085
|
+
}
|
|
1086
|
+
export interface GetCalculationExecutionResponse {
|
|
1087
|
+
/**
|
|
1088
|
+
* The calculation execution UUID.
|
|
1089
|
+
*/
|
|
1090
|
+
CalculationExecutionId?: CalculationExecutionId;
|
|
1091
|
+
/**
|
|
1092
|
+
* The session ID that the calculation ran in.
|
|
1093
|
+
*/
|
|
1094
|
+
SessionId?: SessionId;
|
|
1095
|
+
/**
|
|
1096
|
+
* The description of the calculation execution.
|
|
1097
|
+
*/
|
|
1098
|
+
Description?: DescriptionString;
|
|
1099
|
+
/**
|
|
1100
|
+
* The Amazon S3 location in which calculation results are stored.
|
|
1101
|
+
*/
|
|
1102
|
+
WorkingDirectory?: S3Uri;
|
|
1103
|
+
/**
|
|
1104
|
+
* Contains information about the status of the calculation.
|
|
1105
|
+
*/
|
|
1106
|
+
Status?: CalculationStatus;
|
|
1107
|
+
/**
|
|
1108
|
+
* Contains information about the data processing unit (DPU) execution time and progress. This field is populated only when statistics are available.
|
|
1109
|
+
*/
|
|
1110
|
+
Statistics?: CalculationStatistics;
|
|
1111
|
+
/**
|
|
1112
|
+
* Contains result information. This field is populated only if the calculation is completed.
|
|
1113
|
+
*/
|
|
1114
|
+
Result?: CalculationResult;
|
|
1115
|
+
}
|
|
1116
|
+
export interface GetCalculationExecutionStatusRequest {
|
|
1117
|
+
/**
|
|
1118
|
+
* The calculation execution UUID.
|
|
1119
|
+
*/
|
|
1120
|
+
CalculationExecutionId: CalculationExecutionId;
|
|
1121
|
+
}
|
|
1122
|
+
export interface GetCalculationExecutionStatusResponse {
|
|
1123
|
+
/**
|
|
1124
|
+
* Contains information about the calculation execution status.
|
|
1125
|
+
*/
|
|
1126
|
+
Status?: CalculationStatus;
|
|
1127
|
+
/**
|
|
1128
|
+
* Contains information about the DPU execution time and progress.
|
|
1129
|
+
*/
|
|
1130
|
+
Statistics?: CalculationStatistics;
|
|
1131
|
+
}
|
|
674
1132
|
export interface GetDataCatalogInput {
|
|
675
1133
|
/**
|
|
676
1134
|
* The name of the data catalog to return.
|
|
@@ -711,6 +1169,18 @@ declare namespace Athena {
|
|
|
711
1169
|
*/
|
|
712
1170
|
NamedQuery?: NamedQuery;
|
|
713
1171
|
}
|
|
1172
|
+
export interface GetNotebookMetadataInput {
|
|
1173
|
+
/**
|
|
1174
|
+
* The ID of the notebook whose metadata is to be retrieved.
|
|
1175
|
+
*/
|
|
1176
|
+
NotebookId: NotebookId;
|
|
1177
|
+
}
|
|
1178
|
+
export interface GetNotebookMetadataOutput {
|
|
1179
|
+
/**
|
|
1180
|
+
* The metadata that is returned for the specified notebook ID.
|
|
1181
|
+
*/
|
|
1182
|
+
NotebookMetadata?: NotebookMetadata;
|
|
1183
|
+
}
|
|
714
1184
|
export interface GetPreparedStatementInput {
|
|
715
1185
|
/**
|
|
716
1186
|
* The name of the prepared statement to retrieve.
|
|
@@ -749,71 +1219,208 @@ declare namespace Athena {
|
|
|
749
1219
|
*/
|
|
750
1220
|
NextToken?: Token;
|
|
751
1221
|
/**
|
|
752
|
-
* The maximum number of results (rows) to return in this request.
|
|
1222
|
+
* The maximum number of results (rows) to return in this request.
|
|
1223
|
+
*/
|
|
1224
|
+
MaxResults?: MaxQueryResults;
|
|
1225
|
+
}
|
|
1226
|
+
export interface GetQueryResultsOutput {
|
|
1227
|
+
/**
|
|
1228
|
+
* The number of rows inserted with a CREATE TABLE AS SELECT statement.
|
|
1229
|
+
*/
|
|
1230
|
+
UpdateCount?: Long;
|
|
1231
|
+
/**
|
|
1232
|
+
* The results of the query execution.
|
|
1233
|
+
*/
|
|
1234
|
+
ResultSet?: ResultSet;
|
|
1235
|
+
/**
|
|
1236
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1237
|
+
*/
|
|
1238
|
+
NextToken?: Token;
|
|
1239
|
+
}
|
|
1240
|
+
export interface GetQueryRuntimeStatisticsInput {
|
|
1241
|
+
/**
|
|
1242
|
+
* The unique ID of the query execution.
|
|
1243
|
+
*/
|
|
1244
|
+
QueryExecutionId: QueryExecutionId;
|
|
1245
|
+
}
|
|
1246
|
+
export interface GetQueryRuntimeStatisticsOutput {
|
|
1247
|
+
/**
|
|
1248
|
+
* Runtime statistics about the query execution.
|
|
1249
|
+
*/
|
|
1250
|
+
QueryRuntimeStatistics?: QueryRuntimeStatistics;
|
|
1251
|
+
}
|
|
1252
|
+
export interface GetSessionRequest {
|
|
1253
|
+
/**
|
|
1254
|
+
* The session ID.
|
|
1255
|
+
*/
|
|
1256
|
+
SessionId: SessionId;
|
|
1257
|
+
}
|
|
1258
|
+
export interface GetSessionResponse {
|
|
1259
|
+
/**
|
|
1260
|
+
* The session ID.
|
|
1261
|
+
*/
|
|
1262
|
+
SessionId?: SessionId;
|
|
1263
|
+
/**
|
|
1264
|
+
* The session description.
|
|
1265
|
+
*/
|
|
1266
|
+
Description?: DescriptionString;
|
|
1267
|
+
/**
|
|
1268
|
+
* The workgroup to which the session belongs.
|
|
1269
|
+
*/
|
|
1270
|
+
WorkGroup?: WorkGroupName;
|
|
1271
|
+
/**
|
|
1272
|
+
* The engine version used by the session (for example, PySpark engine version 3). You can get a list of engine versions by calling ListEngineVersions.
|
|
1273
|
+
*/
|
|
1274
|
+
EngineVersion?: NameString;
|
|
1275
|
+
/**
|
|
1276
|
+
* Contains engine configuration information like DPU usage.
|
|
1277
|
+
*/
|
|
1278
|
+
EngineConfiguration?: EngineConfiguration;
|
|
1279
|
+
/**
|
|
1280
|
+
* The notebook version.
|
|
1281
|
+
*/
|
|
1282
|
+
NotebookVersion?: NameString;
|
|
1283
|
+
/**
|
|
1284
|
+
* Contains the workgroup configuration information used by the session.
|
|
1285
|
+
*/
|
|
1286
|
+
SessionConfiguration?: SessionConfiguration;
|
|
1287
|
+
/**
|
|
1288
|
+
* Contains information about the status of the session.
|
|
1289
|
+
*/
|
|
1290
|
+
Status?: SessionStatus;
|
|
1291
|
+
/**
|
|
1292
|
+
* Contains the DPU execution time.
|
|
1293
|
+
*/
|
|
1294
|
+
Statistics?: SessionStatistics;
|
|
1295
|
+
}
|
|
1296
|
+
export interface GetSessionStatusRequest {
|
|
1297
|
+
/**
|
|
1298
|
+
* The session ID.
|
|
1299
|
+
*/
|
|
1300
|
+
SessionId: SessionId;
|
|
1301
|
+
}
|
|
1302
|
+
export interface GetSessionStatusResponse {
|
|
1303
|
+
/**
|
|
1304
|
+
* The session ID.
|
|
1305
|
+
*/
|
|
1306
|
+
SessionId?: SessionId;
|
|
1307
|
+
/**
|
|
1308
|
+
* Contains information about the status of the session.
|
|
1309
|
+
*/
|
|
1310
|
+
Status?: SessionStatus;
|
|
1311
|
+
}
|
|
1312
|
+
export interface GetTableMetadataInput {
|
|
1313
|
+
/**
|
|
1314
|
+
* The name of the data catalog that contains the database and table metadata to return.
|
|
1315
|
+
*/
|
|
1316
|
+
CatalogName: CatalogNameString;
|
|
1317
|
+
/**
|
|
1318
|
+
* The name of the database that contains the table metadata to return.
|
|
1319
|
+
*/
|
|
1320
|
+
DatabaseName: NameString;
|
|
1321
|
+
/**
|
|
1322
|
+
* The name of the table for which metadata is returned.
|
|
1323
|
+
*/
|
|
1324
|
+
TableName: NameString;
|
|
1325
|
+
}
|
|
1326
|
+
export interface GetTableMetadataOutput {
|
|
1327
|
+
/**
|
|
1328
|
+
* An object that contains table metadata.
|
|
1329
|
+
*/
|
|
1330
|
+
TableMetadata?: TableMetadata;
|
|
1331
|
+
}
|
|
1332
|
+
export interface GetWorkGroupInput {
|
|
1333
|
+
/**
|
|
1334
|
+
* The name of the workgroup.
|
|
1335
|
+
*/
|
|
1336
|
+
WorkGroup: WorkGroupName;
|
|
1337
|
+
}
|
|
1338
|
+
export interface GetWorkGroupOutput {
|
|
1339
|
+
/**
|
|
1340
|
+
* Information about the workgroup.
|
|
1341
|
+
*/
|
|
1342
|
+
WorkGroup?: WorkGroup;
|
|
1343
|
+
}
|
|
1344
|
+
export type IdempotencyToken = string;
|
|
1345
|
+
export interface ImportNotebookInput {
|
|
1346
|
+
/**
|
|
1347
|
+
* The name of the Spark enabled workgroup to import the notebook to.
|
|
1348
|
+
*/
|
|
1349
|
+
WorkGroup: WorkGroupName;
|
|
1350
|
+
/**
|
|
1351
|
+
* The name of the notebook to import.
|
|
1352
|
+
*/
|
|
1353
|
+
Name: NotebookName;
|
|
1354
|
+
/**
|
|
1355
|
+
* The notebook content to be imported.
|
|
1356
|
+
*/
|
|
1357
|
+
Payload: Payload;
|
|
1358
|
+
/**
|
|
1359
|
+
* The notebook content type. Currently, the only valid type is IPYNB.
|
|
1360
|
+
*/
|
|
1361
|
+
Type: NotebookType;
|
|
1362
|
+
/**
|
|
1363
|
+
* A unique case-sensitive string used to ensure the request to import the notebook is idempotent (executes only once). This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
|
|
753
1364
|
*/
|
|
754
|
-
|
|
1365
|
+
ClientRequestToken?: ClientRequestToken;
|
|
755
1366
|
}
|
|
756
|
-
export interface
|
|
1367
|
+
export interface ImportNotebookOutput {
|
|
757
1368
|
/**
|
|
758
|
-
* The
|
|
1369
|
+
* The ID of the notebook to import.
|
|
759
1370
|
*/
|
|
760
|
-
|
|
1371
|
+
NotebookId?: NotebookId;
|
|
1372
|
+
}
|
|
1373
|
+
export type Integer = number;
|
|
1374
|
+
export type KeyString = string;
|
|
1375
|
+
export type KmsKey = string;
|
|
1376
|
+
export interface ListApplicationDPUSizesInput {
|
|
761
1377
|
/**
|
|
762
|
-
*
|
|
1378
|
+
* Specifies the maximum number of results to return.
|
|
763
1379
|
*/
|
|
764
|
-
|
|
1380
|
+
MaxResults?: MaxApplicationDPUSizesCount;
|
|
765
1381
|
/**
|
|
766
|
-
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
|
|
1382
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
|
|
767
1383
|
*/
|
|
768
1384
|
NextToken?: Token;
|
|
769
1385
|
}
|
|
770
|
-
export interface
|
|
1386
|
+
export interface ListApplicationDPUSizesOutput {
|
|
771
1387
|
/**
|
|
772
|
-
*
|
|
1388
|
+
* A list of the supported DPU sizes that the application runtime supports.
|
|
773
1389
|
*/
|
|
774
|
-
|
|
775
|
-
}
|
|
776
|
-
export interface GetQueryRuntimeStatisticsOutput {
|
|
1390
|
+
ApplicationDPUSizes?: ApplicationDPUSizesList;
|
|
777
1391
|
/**
|
|
778
|
-
*
|
|
1392
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
779
1393
|
*/
|
|
780
|
-
|
|
1394
|
+
NextToken?: Token;
|
|
781
1395
|
}
|
|
782
|
-
export interface
|
|
1396
|
+
export interface ListCalculationExecutionsRequest {
|
|
783
1397
|
/**
|
|
784
|
-
* The
|
|
1398
|
+
* The session ID.
|
|
785
1399
|
*/
|
|
786
|
-
|
|
1400
|
+
SessionId: SessionId;
|
|
787
1401
|
/**
|
|
788
|
-
* The
|
|
1402
|
+
* A filter for a specific calculation execution state. A description of each state follows. CREATING - The calculation is in the process of being created. CREATED - The calculation has been created and is ready to run. QUEUED - The calculation has been queued for processing. RUNNING - The calculation is running. CANCELING - A request to cancel the calculation has been received and the system is working to stop it. CANCELED - The calculation is no longer running as the result of a cancel request. COMPLETED - The calculation has completed without error. FAILED - The calculation failed and is no longer running.
|
|
789
1403
|
*/
|
|
790
|
-
|
|
1404
|
+
StateFilter?: CalculationExecutionState;
|
|
791
1405
|
/**
|
|
792
|
-
* The
|
|
1406
|
+
* The maximum number of calculation executions to return.
|
|
793
1407
|
*/
|
|
794
|
-
|
|
795
|
-
}
|
|
796
|
-
export interface GetTableMetadataOutput {
|
|
1408
|
+
MaxResults?: MaxCalculationsCount;
|
|
797
1409
|
/**
|
|
798
|
-
*
|
|
1410
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
799
1411
|
*/
|
|
800
|
-
|
|
1412
|
+
NextToken?: SessionManagerToken;
|
|
801
1413
|
}
|
|
802
|
-
export interface
|
|
1414
|
+
export interface ListCalculationExecutionsResponse {
|
|
803
1415
|
/**
|
|
804
|
-
*
|
|
1416
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
805
1417
|
*/
|
|
806
|
-
|
|
807
|
-
}
|
|
808
|
-
export interface GetWorkGroupOutput {
|
|
1418
|
+
NextToken?: SessionManagerToken;
|
|
809
1419
|
/**
|
|
810
|
-
*
|
|
1420
|
+
* A list of CalculationSummary objects.
|
|
811
1421
|
*/
|
|
812
|
-
|
|
1422
|
+
Calculations?: CalculationsList;
|
|
813
1423
|
}
|
|
814
|
-
export type IdempotencyToken = string;
|
|
815
|
-
export type Integer = number;
|
|
816
|
-
export type KeyString = string;
|
|
817
1424
|
export interface ListDataCatalogsInput {
|
|
818
1425
|
/**
|
|
819
1426
|
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
@@ -878,6 +1485,38 @@ declare namespace Athena {
|
|
|
878
1485
|
*/
|
|
879
1486
|
NextToken?: Token;
|
|
880
1487
|
}
|
|
1488
|
+
export interface ListExecutorsRequest {
|
|
1489
|
+
/**
|
|
1490
|
+
* The session ID.
|
|
1491
|
+
*/
|
|
1492
|
+
SessionId: SessionId;
|
|
1493
|
+
/**
|
|
1494
|
+
* A filter for a specific executor state. A description of each state follows. CREATING - The executor is being started, including acquiring resources. CREATED - The executor has been started. REGISTERED - The executor has been registered. TERMINATING - The executor is in the process of shutting down. TERMINATED - The executor is no longer running. FAILED - Due to a failure, the executor is no longer running.
|
|
1495
|
+
*/
|
|
1496
|
+
ExecutorStateFilter?: ExecutorState;
|
|
1497
|
+
/**
|
|
1498
|
+
* The maximum number of executors to return.
|
|
1499
|
+
*/
|
|
1500
|
+
MaxResults?: MaxListExecutorsCount;
|
|
1501
|
+
/**
|
|
1502
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1503
|
+
*/
|
|
1504
|
+
NextToken?: SessionManagerToken;
|
|
1505
|
+
}
|
|
1506
|
+
export interface ListExecutorsResponse {
|
|
1507
|
+
/**
|
|
1508
|
+
* The session ID.
|
|
1509
|
+
*/
|
|
1510
|
+
SessionId: SessionId;
|
|
1511
|
+
/**
|
|
1512
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1513
|
+
*/
|
|
1514
|
+
NextToken?: SessionManagerToken;
|
|
1515
|
+
/**
|
|
1516
|
+
* Contains summary information about the executor.
|
|
1517
|
+
*/
|
|
1518
|
+
ExecutorsSummary?: ExecutorsSummaryList;
|
|
1519
|
+
}
|
|
881
1520
|
export interface ListNamedQueriesInput {
|
|
882
1521
|
/**
|
|
883
1522
|
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
@@ -902,6 +1541,58 @@ declare namespace Athena {
|
|
|
902
1541
|
*/
|
|
903
1542
|
NextToken?: Token;
|
|
904
1543
|
}
|
|
1544
|
+
export interface ListNotebookMetadataInput {
|
|
1545
|
+
/**
|
|
1546
|
+
* Search filter string.
|
|
1547
|
+
*/
|
|
1548
|
+
Filters?: FilterDefinition;
|
|
1549
|
+
/**
|
|
1550
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
|
|
1551
|
+
*/
|
|
1552
|
+
NextToken?: Token;
|
|
1553
|
+
/**
|
|
1554
|
+
* Specifies the maximum number of results to return.
|
|
1555
|
+
*/
|
|
1556
|
+
MaxResults?: MaxNotebooksCount;
|
|
1557
|
+
/**
|
|
1558
|
+
* The name of the Spark enabled workgroup to retrieve notebook metadata for.
|
|
1559
|
+
*/
|
|
1560
|
+
WorkGroup: WorkGroupName;
|
|
1561
|
+
}
|
|
1562
|
+
export interface ListNotebookMetadataOutput {
|
|
1563
|
+
/**
|
|
1564
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1565
|
+
*/
|
|
1566
|
+
NextToken?: Token;
|
|
1567
|
+
/**
|
|
1568
|
+
* The list of notebook metadata for the specified workgroup.
|
|
1569
|
+
*/
|
|
1570
|
+
NotebookMetadataList?: NotebookMetadataArray;
|
|
1571
|
+
}
|
|
1572
|
+
export interface ListNotebookSessionsRequest {
|
|
1573
|
+
/**
|
|
1574
|
+
* The ID of the notebook to list sessions for.
|
|
1575
|
+
*/
|
|
1576
|
+
NotebookId: NotebookId;
|
|
1577
|
+
/**
|
|
1578
|
+
* The maximum number of notebook sessions to return.
|
|
1579
|
+
*/
|
|
1580
|
+
MaxResults?: MaxSessionsCount;
|
|
1581
|
+
/**
|
|
1582
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1583
|
+
*/
|
|
1584
|
+
NextToken?: Token;
|
|
1585
|
+
}
|
|
1586
|
+
export interface ListNotebookSessionsResponse {
|
|
1587
|
+
/**
|
|
1588
|
+
* A list of the sessions belonging to the notebook.
|
|
1589
|
+
*/
|
|
1590
|
+
NotebookSessionsList: NotebookSessionsList;
|
|
1591
|
+
/**
|
|
1592
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1593
|
+
*/
|
|
1594
|
+
NextToken?: Token;
|
|
1595
|
+
}
|
|
905
1596
|
export interface ListPreparedStatementsInput {
|
|
906
1597
|
/**
|
|
907
1598
|
* The workgroup to list the prepared statements for.
|
|
@@ -950,6 +1641,34 @@ declare namespace Athena {
|
|
|
950
1641
|
*/
|
|
951
1642
|
NextToken?: Token;
|
|
952
1643
|
}
|
|
1644
|
+
export interface ListSessionsRequest {
|
|
1645
|
+
/**
|
|
1646
|
+
* The workgroup to which the session belongs.
|
|
1647
|
+
*/
|
|
1648
|
+
WorkGroup: WorkGroupName;
|
|
1649
|
+
/**
|
|
1650
|
+
* A filter for a specific session state. A description of each state follows. CREATING - The session is being started, including acquiring resources. CREATED - The session has been started. IDLE - The session is able to accept a calculation. BUSY - The session is processing another task and is unable to accept a calculation. TERMINATING - The session is in the process of shutting down. TERMINATED - The session and its resources are no longer running. DEGRADED - The session has no healthy coordinators. FAILED - Due to a failure, the session and its resources are no longer running.
|
|
1651
|
+
*/
|
|
1652
|
+
StateFilter?: SessionState;
|
|
1653
|
+
/**
|
|
1654
|
+
* The maximum number of sessions to return.
|
|
1655
|
+
*/
|
|
1656
|
+
MaxResults?: MaxSessionsCount;
|
|
1657
|
+
/**
|
|
1658
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1659
|
+
*/
|
|
1660
|
+
NextToken?: SessionManagerToken;
|
|
1661
|
+
}
|
|
1662
|
+
export interface ListSessionsResponse {
|
|
1663
|
+
/**
|
|
1664
|
+
* A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
|
|
1665
|
+
*/
|
|
1666
|
+
NextToken?: SessionManagerToken;
|
|
1667
|
+
/**
|
|
1668
|
+
* A list of sessions.
|
|
1669
|
+
*/
|
|
1670
|
+
Sessions?: SessionsList;
|
|
1671
|
+
}
|
|
953
1672
|
export interface ListTableMetadataInput {
|
|
954
1673
|
/**
|
|
955
1674
|
* The name of the data catalog for which table metadata should be returned.
|
|
@@ -1027,13 +1746,19 @@ declare namespace Athena {
|
|
|
1027
1746
|
NextToken?: Token;
|
|
1028
1747
|
}
|
|
1029
1748
|
export type Long = number;
|
|
1749
|
+
export type MaxApplicationDPUSizesCount = number;
|
|
1750
|
+
export type MaxCalculationsCount = number;
|
|
1751
|
+
export type MaxConcurrentDpus = number;
|
|
1030
1752
|
export type MaxDataCatalogsCount = number;
|
|
1031
1753
|
export type MaxDatabasesCount = number;
|
|
1032
1754
|
export type MaxEngineVersionsCount = number;
|
|
1755
|
+
export type MaxListExecutorsCount = number;
|
|
1033
1756
|
export type MaxNamedQueriesCount = number;
|
|
1757
|
+
export type MaxNotebooksCount = number;
|
|
1034
1758
|
export type MaxPreparedStatementsCount = number;
|
|
1035
1759
|
export type MaxQueryExecutionsCount = number;
|
|
1036
1760
|
export type MaxQueryResults = number;
|
|
1761
|
+
export type MaxSessionsCount = number;
|
|
1037
1762
|
export type MaxTableMetadataCount = number;
|
|
1038
1763
|
export type MaxTagsCount = number;
|
|
1039
1764
|
export type MaxWorkGroupsCount = number;
|
|
@@ -1068,8 +1793,50 @@ declare namespace Athena {
|
|
|
1068
1793
|
export type NamedQueryId = string;
|
|
1069
1794
|
export type NamedQueryIdList = NamedQueryId[];
|
|
1070
1795
|
export type NamedQueryList = NamedQuery[];
|
|
1796
|
+
export type NotebookId = string;
|
|
1797
|
+
export interface NotebookMetadata {
|
|
1798
|
+
/**
|
|
1799
|
+
* The notebook ID.
|
|
1800
|
+
*/
|
|
1801
|
+
NotebookId?: NotebookId;
|
|
1802
|
+
/**
|
|
1803
|
+
* The name of the notebook.
|
|
1804
|
+
*/
|
|
1805
|
+
Name?: NotebookName;
|
|
1806
|
+
/**
|
|
1807
|
+
* The name of the Spark enabled workgroup to which the notebook belongs.
|
|
1808
|
+
*/
|
|
1809
|
+
WorkGroup?: WorkGroupName;
|
|
1810
|
+
/**
|
|
1811
|
+
* The time when the notebook was created.
|
|
1812
|
+
*/
|
|
1813
|
+
CreationTime?: _Date;
|
|
1814
|
+
/**
|
|
1815
|
+
* The type of notebook. Currently, the only valid type is IPYNB.
|
|
1816
|
+
*/
|
|
1817
|
+
Type?: NotebookType;
|
|
1818
|
+
/**
|
|
1819
|
+
* The time when the notebook was last modified.
|
|
1820
|
+
*/
|
|
1821
|
+
LastModifiedTime?: _Date;
|
|
1822
|
+
}
|
|
1823
|
+
export type NotebookMetadataArray = NotebookMetadata[];
|
|
1824
|
+
export type NotebookName = string;
|
|
1825
|
+
export interface NotebookSessionSummary {
|
|
1826
|
+
/**
|
|
1827
|
+
* The notebook session ID.
|
|
1828
|
+
*/
|
|
1829
|
+
SessionId?: SessionId;
|
|
1830
|
+
/**
|
|
1831
|
+
* The time when the notebook session was created.
|
|
1832
|
+
*/
|
|
1833
|
+
CreationTime?: _Date;
|
|
1834
|
+
}
|
|
1835
|
+
export type NotebookSessionsList = NotebookSessionSummary[];
|
|
1836
|
+
export type NotebookType = "IPYNB"|string;
|
|
1071
1837
|
export type ParametersMap = {[key: string]: ParametersMapValue};
|
|
1072
1838
|
export type ParametersMapValue = string;
|
|
1839
|
+
export type Payload = string;
|
|
1073
1840
|
export interface PreparedStatement {
|
|
1074
1841
|
/**
|
|
1075
1842
|
* The name of the prepared statement.
|
|
@@ -1419,6 +2186,7 @@ declare namespace Athena {
|
|
|
1419
2186
|
*/
|
|
1420
2187
|
ColumnInfo?: ColumnInfoList;
|
|
1421
2188
|
}
|
|
2189
|
+
export type RoleArn = string;
|
|
1422
2190
|
export interface Row {
|
|
1423
2191
|
/**
|
|
1424
2192
|
* The data that populates a row in a query result table.
|
|
@@ -1427,6 +2195,113 @@ declare namespace Athena {
|
|
|
1427
2195
|
}
|
|
1428
2196
|
export type RowList = Row[];
|
|
1429
2197
|
export type S3AclOption = "BUCKET_OWNER_FULL_CONTROL"|string;
|
|
2198
|
+
export type S3Uri = string;
|
|
2199
|
+
export interface SessionConfiguration {
|
|
2200
|
+
/**
|
|
2201
|
+
* The ARN of the execution role used for the session.
|
|
2202
|
+
*/
|
|
2203
|
+
ExecutionRole?: RoleArn;
|
|
2204
|
+
/**
|
|
2205
|
+
* The Amazon S3 location that stores information for the notebook.
|
|
2206
|
+
*/
|
|
2207
|
+
WorkingDirectory?: ResultOutputLocation;
|
|
2208
|
+
/**
|
|
2209
|
+
* The idle timeout in seconds for the session.
|
|
2210
|
+
*/
|
|
2211
|
+
IdleTimeoutSeconds?: Long;
|
|
2212
|
+
EncryptionConfiguration?: EncryptionConfiguration;
|
|
2213
|
+
}
|
|
2214
|
+
export type SessionId = string;
|
|
2215
|
+
export type SessionIdleTimeoutInMinutes = number;
|
|
2216
|
+
export type SessionManagerToken = string;
|
|
2217
|
+
export type SessionState = "CREATING"|"CREATED"|"IDLE"|"BUSY"|"TERMINATING"|"TERMINATED"|"DEGRADED"|"FAILED"|string;
|
|
2218
|
+
export interface SessionStatistics {
|
|
2219
|
+
/**
|
|
2220
|
+
* The data processing unit execution time for a session in milliseconds.
|
|
2221
|
+
*/
|
|
2222
|
+
DpuExecutionInMillis?: Long;
|
|
2223
|
+
}
|
|
2224
|
+
export interface SessionStatus {
|
|
2225
|
+
/**
|
|
2226
|
+
* The date and time that the session started.
|
|
2227
|
+
*/
|
|
2228
|
+
StartDateTime?: _Date;
|
|
2229
|
+
/**
|
|
2230
|
+
* The most recent date and time that the session was modified.
|
|
2231
|
+
*/
|
|
2232
|
+
LastModifiedDateTime?: _Date;
|
|
2233
|
+
/**
|
|
2234
|
+
* The date and time that the session ended.
|
|
2235
|
+
*/
|
|
2236
|
+
EndDateTime?: _Date;
|
|
2237
|
+
/**
|
|
2238
|
+
* The date and time starting at which the session became idle. Can be empty if the session is not currently idle.
|
|
2239
|
+
*/
|
|
2240
|
+
IdleSinceDateTime?: _Date;
|
|
2241
|
+
/**
|
|
2242
|
+
* The state of the session. A description of each state follows. CREATING - The session is being started, including acquiring resources. CREATED - The session has been started. IDLE - The session is able to accept a calculation. BUSY - The session is processing another task and is unable to accept a calculation. TERMINATING - The session is in the process of shutting down. TERMINATED - The session and its resources are no longer running. DEGRADED - The session has no healthy coordinators. FAILED - Due to a failure, the session and its resources are no longer running.
|
|
2243
|
+
*/
|
|
2244
|
+
State?: SessionState;
|
|
2245
|
+
/**
|
|
2246
|
+
* The reason for the session state change (for example, canceled because the session was terminated).
|
|
2247
|
+
*/
|
|
2248
|
+
StateChangeReason?: DescriptionString;
|
|
2249
|
+
}
|
|
2250
|
+
export interface SessionSummary {
|
|
2251
|
+
/**
|
|
2252
|
+
* The session ID.
|
|
2253
|
+
*/
|
|
2254
|
+
SessionId?: SessionId;
|
|
2255
|
+
/**
|
|
2256
|
+
* The session description.
|
|
2257
|
+
*/
|
|
2258
|
+
Description?: DescriptionString;
|
|
2259
|
+
/**
|
|
2260
|
+
* The engine version used by the session (for example, PySpark engine version 3).
|
|
2261
|
+
*/
|
|
2262
|
+
EngineVersion?: EngineVersion;
|
|
2263
|
+
/**
|
|
2264
|
+
* The notebook version.
|
|
2265
|
+
*/
|
|
2266
|
+
NotebookVersion?: NameString;
|
|
2267
|
+
/**
|
|
2268
|
+
* Contains information about the session status.
|
|
2269
|
+
*/
|
|
2270
|
+
Status?: SessionStatus;
|
|
2271
|
+
}
|
|
2272
|
+
export type SessionsList = SessionSummary[];
|
|
2273
|
+
export interface StartCalculationExecutionRequest {
|
|
2274
|
+
/**
|
|
2275
|
+
* The session ID.
|
|
2276
|
+
*/
|
|
2277
|
+
SessionId: SessionId;
|
|
2278
|
+
/**
|
|
2279
|
+
* A description of the calculation.
|
|
2280
|
+
*/
|
|
2281
|
+
Description?: DescriptionString;
|
|
2282
|
+
/**
|
|
2283
|
+
* Contains configuration information for the calculation.
|
|
2284
|
+
*/
|
|
2285
|
+
CalculationConfiguration?: CalculationConfiguration;
|
|
2286
|
+
/**
|
|
2287
|
+
* A string that contains the code of the calculation.
|
|
2288
|
+
*/
|
|
2289
|
+
CodeBlock?: CodeBlock;
|
|
2290
|
+
/**
|
|
2291
|
+
* A unique case-sensitive string used to ensure the request to create the calculation is idempotent (executes only once). If another StartCalculationExecutionRequest is received, the same response is returned and another calculation is not created. If a parameter has changed, an error is returned. This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
|
|
2292
|
+
*/
|
|
2293
|
+
ClientRequestToken?: IdempotencyToken;
|
|
2294
|
+
}
|
|
2295
|
+
export interface StartCalculationExecutionResponse {
|
|
2296
|
+
/**
|
|
2297
|
+
* The calculation execution UUID.
|
|
2298
|
+
*/
|
|
2299
|
+
CalculationExecutionId?: CalculationExecutionId;
|
|
2300
|
+
/**
|
|
2301
|
+
* CREATING - The calculation is in the process of being created. CREATED - The calculation has been created and is ready to run. QUEUED - The calculation has been queued for processing. RUNNING - The calculation is running. CANCELING - A request to cancel the calculation has been received and the system is working to stop it. CANCELED - The calculation is no longer running as the result of a cancel request. COMPLETED - The calculation has completed without error. FAILED - The calculation failed and is no longer running.
|
|
2302
|
+
*/
|
|
2303
|
+
State?: CalculationExecutionState;
|
|
2304
|
+
}
|
|
1430
2305
|
export interface StartQueryExecutionInput {
|
|
1431
2306
|
/**
|
|
1432
2307
|
* The SQL query statements to be executed.
|
|
@@ -1463,8 +2338,56 @@ declare namespace Athena {
|
|
|
1463
2338
|
*/
|
|
1464
2339
|
QueryExecutionId?: QueryExecutionId;
|
|
1465
2340
|
}
|
|
2341
|
+
export interface StartSessionRequest {
|
|
2342
|
+
/**
|
|
2343
|
+
* The session description.
|
|
2344
|
+
*/
|
|
2345
|
+
Description?: DescriptionString;
|
|
2346
|
+
/**
|
|
2347
|
+
* The workgroup to which the session belongs.
|
|
2348
|
+
*/
|
|
2349
|
+
WorkGroup: WorkGroupName;
|
|
2350
|
+
/**
|
|
2351
|
+
* Contains engine data processing unit (DPU) configuration settings and parameter mappings.
|
|
2352
|
+
*/
|
|
2353
|
+
EngineConfiguration: EngineConfiguration;
|
|
2354
|
+
/**
|
|
2355
|
+
* The notebook version. This value is required only when requesting that a notebook server be started for the session. The only valid notebook version is Jupyter1.0.
|
|
2356
|
+
*/
|
|
2357
|
+
NotebookVersion?: NameString;
|
|
2358
|
+
/**
|
|
2359
|
+
* The idle timeout in minutes for the session.
|
|
2360
|
+
*/
|
|
2361
|
+
SessionIdleTimeoutInMinutes?: SessionIdleTimeoutInMinutes;
|
|
2362
|
+
/**
|
|
2363
|
+
* A unique case-sensitive string used to ensure the request to create the session is idempotent (executes only once). If another StartSessionRequest is received, the same response is returned and another session is not created. If a parameter has changed, an error is returned. This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
|
|
2364
|
+
*/
|
|
2365
|
+
ClientRequestToken?: IdempotencyToken;
|
|
2366
|
+
}
|
|
2367
|
+
export interface StartSessionResponse {
|
|
2368
|
+
/**
|
|
2369
|
+
* The session ID.
|
|
2370
|
+
*/
|
|
2371
|
+
SessionId?: SessionId;
|
|
2372
|
+
/**
|
|
2373
|
+
* The state of the session. A description of each state follows. CREATING - The session is being started, including acquiring resources. CREATED - The session has been started. IDLE - The session is able to accept a calculation. BUSY - The session is processing another task and is unable to accept a calculation. TERMINATING - The session is in the process of shutting down. TERMINATED - The session and its resources are no longer running. DEGRADED - The session has no healthy coordinators. FAILED - Due to a failure, the session and its resources are no longer running.
|
|
2374
|
+
*/
|
|
2375
|
+
State?: SessionState;
|
|
2376
|
+
}
|
|
1466
2377
|
export type StatementName = string;
|
|
1467
2378
|
export type StatementType = "DDL"|"DML"|"UTILITY"|string;
|
|
2379
|
+
export interface StopCalculationExecutionRequest {
|
|
2380
|
+
/**
|
|
2381
|
+
* The calculation execution UUID.
|
|
2382
|
+
*/
|
|
2383
|
+
CalculationExecutionId: CalculationExecutionId;
|
|
2384
|
+
}
|
|
2385
|
+
export interface StopCalculationExecutionResponse {
|
|
2386
|
+
/**
|
|
2387
|
+
* CREATING - The calculation is in the process of being created. CREATED - The calculation has been created and is ready to run. QUEUED - The calculation has been queued for processing. RUNNING - The calculation is running. CANCELING - A request to cancel the calculation has been received and the system is working to stop it. CANCELED - The calculation is no longer running as the result of a cancel request. COMPLETED - The calculation has completed without error. FAILED - The calculation failed and is no longer running.
|
|
2388
|
+
*/
|
|
2389
|
+
State?: CalculationExecutionState;
|
|
2390
|
+
}
|
|
1468
2391
|
export interface StopQueryExecutionInput {
|
|
1469
2392
|
/**
|
|
1470
2393
|
* The unique ID of the query execution to stop.
|
|
@@ -1475,6 +2398,7 @@ declare namespace Athena {
|
|
|
1475
2398
|
}
|
|
1476
2399
|
export type String = string;
|
|
1477
2400
|
export type StringList = String[];
|
|
2401
|
+
export type SupportedDPUSizeList = Integer[];
|
|
1478
2402
|
export interface TableMetadata {
|
|
1479
2403
|
/**
|
|
1480
2404
|
* The name of the table.
|
|
@@ -1533,6 +2457,18 @@ declare namespace Athena {
|
|
|
1533
2457
|
export interface TagResourceOutput {
|
|
1534
2458
|
}
|
|
1535
2459
|
export type TagValue = string;
|
|
2460
|
+
export interface TerminateSessionRequest {
|
|
2461
|
+
/**
|
|
2462
|
+
* The session ID.
|
|
2463
|
+
*/
|
|
2464
|
+
SessionId: SessionId;
|
|
2465
|
+
}
|
|
2466
|
+
export interface TerminateSessionResponse {
|
|
2467
|
+
/**
|
|
2468
|
+
* The state of the session. A description of each state follows. CREATING - The session is being started, including acquiring resources. CREATED - The session has been started. IDLE - The session is able to accept a calculation. BUSY - The session is processing another task and is unable to accept a calculation. TERMINATING - The session is in the process of shutting down. TERMINATED - The session and its resources are no longer running. DEGRADED - The session has no healthy coordinators. FAILED - Due to a failure, the session and its resources are no longer running.
|
|
2469
|
+
*/
|
|
2470
|
+
State?: SessionState;
|
|
2471
|
+
}
|
|
1536
2472
|
export type Timestamp = Date;
|
|
1537
2473
|
export type Token = string;
|
|
1538
2474
|
export type TypeString = string;
|
|
@@ -1633,6 +2569,46 @@ declare namespace Athena {
|
|
|
1633
2569
|
}
|
|
1634
2570
|
export interface UpdateNamedQueryOutput {
|
|
1635
2571
|
}
|
|
2572
|
+
export interface UpdateNotebookInput {
|
|
2573
|
+
/**
|
|
2574
|
+
* The ID of the notebook to update.
|
|
2575
|
+
*/
|
|
2576
|
+
NotebookId: NotebookId;
|
|
2577
|
+
/**
|
|
2578
|
+
* The updated content for the notebook.
|
|
2579
|
+
*/
|
|
2580
|
+
Payload?: Payload;
|
|
2581
|
+
/**
|
|
2582
|
+
* The notebook content type. Currently, the only valid type is IPYNB.
|
|
2583
|
+
*/
|
|
2584
|
+
Type?: NotebookType;
|
|
2585
|
+
/**
|
|
2586
|
+
* The ID of the session in which the notebook will be updated.
|
|
2587
|
+
*/
|
|
2588
|
+
SessionId?: SessionId;
|
|
2589
|
+
/**
|
|
2590
|
+
* A unique case-sensitive string used to ensure the request to create the notebook is idempotent (executes only once). This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
|
|
2591
|
+
*/
|
|
2592
|
+
ClientRequestToken?: ClientRequestToken;
|
|
2593
|
+
}
|
|
2594
|
+
export interface UpdateNotebookMetadataInput {
|
|
2595
|
+
/**
|
|
2596
|
+
* The ID of the notebook to update the metadata for.
|
|
2597
|
+
*/
|
|
2598
|
+
NotebookId: NotebookId;
|
|
2599
|
+
/**
|
|
2600
|
+
* A unique case-sensitive string used to ensure the request to create the notebook is idempotent (executes only once). This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
|
|
2601
|
+
*/
|
|
2602
|
+
ClientRequestToken?: ClientRequestToken;
|
|
2603
|
+
/**
|
|
2604
|
+
* The name to update the notebook to.
|
|
2605
|
+
*/
|
|
2606
|
+
Name: NotebookName;
|
|
2607
|
+
}
|
|
2608
|
+
export interface UpdateNotebookMetadataOutput {
|
|
2609
|
+
}
|
|
2610
|
+
export interface UpdateNotebookOutput {
|
|
2611
|
+
}
|
|
1636
2612
|
export interface UpdatePreparedStatementInput {
|
|
1637
2613
|
/**
|
|
1638
2614
|
* The name of the prepared statement.
|
|
@@ -1663,7 +2639,7 @@ declare namespace Athena {
|
|
|
1663
2639
|
*/
|
|
1664
2640
|
Description?: WorkGroupDescriptionString;
|
|
1665
2641
|
/**
|
|
1666
|
-
*
|
|
2642
|
+
* Contains configuration updates for an Athena SQL workgroup.
|
|
1667
2643
|
*/
|
|
1668
2644
|
ConfigurationUpdates?: WorkGroupConfigurationUpdates;
|
|
1669
2645
|
/**
|
|
@@ -1720,6 +2696,18 @@ declare namespace Athena {
|
|
|
1720
2696
|
* The engine version that all queries running on the workgroup use. Queries on the AmazonAthenaPreviewFunctionality workgroup run on the preview engine regardless of this setting.
|
|
1721
2697
|
*/
|
|
1722
2698
|
EngineVersion?: EngineVersion;
|
|
2699
|
+
/**
|
|
2700
|
+
* Specifies a user defined JSON string that is passed to the notebook engine.
|
|
2701
|
+
*/
|
|
2702
|
+
AdditionalConfiguration?: NameString;
|
|
2703
|
+
/**
|
|
2704
|
+
* Role used in a notebook session for accessing the user's resources.
|
|
2705
|
+
*/
|
|
2706
|
+
ExecutionRole?: RoleArn;
|
|
2707
|
+
/**
|
|
2708
|
+
* Specifies the KMS key that is used to encrypt the user's data stores in Athena.
|
|
2709
|
+
*/
|
|
2710
|
+
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration;
|
|
1723
2711
|
}
|
|
1724
2712
|
export interface WorkGroupConfigurationUpdates {
|
|
1725
2713
|
/**
|
|
@@ -1750,6 +2738,19 @@ declare namespace Athena {
|
|
|
1750
2738
|
* The engine version requested when a workgroup is updated. After the update, all queries on the workgroup run on the requested engine version. If no value was previously set, the default is Auto. Queries on the AmazonAthenaPreviewFunctionality workgroup run on the preview engine regardless of this setting.
|
|
1751
2739
|
*/
|
|
1752
2740
|
EngineVersion?: EngineVersion;
|
|
2741
|
+
/**
|
|
2742
|
+
* Removes content encryption configuration for a workgroup.
|
|
2743
|
+
*/
|
|
2744
|
+
RemoveCustomerContentEncryptionConfiguration?: BoxedBoolean;
|
|
2745
|
+
/**
|
|
2746
|
+
* Contains a user defined string in JSON format for a Spark-enabled workgroup.
|
|
2747
|
+
*/
|
|
2748
|
+
AdditionalConfiguration?: NameString;
|
|
2749
|
+
/**
|
|
2750
|
+
* Contains the ARN of the execution role for the workgroup
|
|
2751
|
+
*/
|
|
2752
|
+
ExecutionRole?: RoleArn;
|
|
2753
|
+
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration;
|
|
1753
2754
|
}
|
|
1754
2755
|
export type WorkGroupDescriptionString = string;
|
|
1755
2756
|
export type WorkGroupName = string;
|