@aws-sdk/client-athena 3.583.0 → 3.587.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.
@@ -27,11 +27,12 @@ declare const GetQueryRuntimeStatisticsCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Returns query execution runtime statistics related to a single execution of a query if
30
- * you have access to the workgroup in which the query ran. Query execution runtime
31
- * statistics are returned only when <a>QueryExecutionStatus$State</a> is in a
32
- * SUCCEEDED or FAILED state. Stage-level input and output row count and data size
33
- * statistics are not shown when a query has row-level filters defined in Lake
34
- * Formation.</p>
30
+ * you have access to the workgroup in which the query ran. Statistics from the
31
+ * <code>Timeline</code> section of the response object are available as soon as <a>QueryExecutionStatus$State</a> is in a SUCCEEDED or FAILED state. The
32
+ * remaining non-timeline statistics in the response (like stage-level input and output row
33
+ * count and data size) are updated asynchronously and may not be available immediately
34
+ * after a query completes. The non-timeline statistics are also not included when a query
35
+ * has row-level filters defined in Lake Formation.</p>
35
36
  * @example
36
37
  * Use a bare-bones client and the command you need to make an API call.
37
38
  * ```javascript
@@ -27,10 +27,11 @@ declare const ImportNotebookCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Imports a single <code>ipynb</code> file to a Spark enabled workgroup. To import the
30
- * notebook, the request must specify a value for either <code>Payload</code> or <code>NoteBookS3LocationUri</code>. If neither is specified or both are specified, an
31
- * <code>InvalidRequestException</code> occurs. The maximum file size that can be imported is 10
32
- * megabytes. If an <code>ipynb</code> file with the same name already exists in the
33
- * workgroup, throws an error.</p>
30
+ * notebook, the request must specify a value for either <code>Payload</code> or
31
+ * <code>NoteBookS3LocationUri</code>. If neither is specified or both are specified,
32
+ * an <code>InvalidRequestException</code> occurs. The maximum file size that can be
33
+ * imported is 10 megabytes. If an <code>ipynb</code> file with the same name already
34
+ * exists in the workgroup, throws an error.</p>
34
35
  * @example
35
36
  * Use a bare-bones client and the command you need to make an API call.
36
37
  * ```javascript
@@ -389,8 +389,7 @@ export interface ResultConfiguration {
389
389
  * such as <code>s3://path/to/query/bucket/</code>. To run the query, you must specify the
390
390
  * query results location using one of the ways: either for individual queries using either
391
391
  * this setting (client-side), or in the workgroup, using <a>WorkGroupConfiguration</a>. If none of them is set, Athena
392
- * issues an error that no output location is provided. For more information, see <a href="https://docs.aws.amazon.com/athena/latest/ug/querying.html">Working with query
393
- * results, recent queries, and output files</a>. If workgroup settings override
392
+ * issues an error that no output location is provided. If workgroup settings override
394
393
  * client-side settings, then the query uses the settings specified for the workgroup. See
395
394
  * <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>
396
395
  * @public
@@ -1200,8 +1199,7 @@ export interface WorkGroupConfiguration {
1200
1199
  * where query and calculation results are stored and the encryption option, if any, used
1201
1200
  * for query and calculation results. To run the query, you must specify the query results
1202
1201
  * location using one of the ways: either in the workgroup using this setting, or for
1203
- * individual queries (client-side), using <a>ResultConfiguration$OutputLocation</a>. If none of them is set, Athena issues an error that no output location is provided. For more
1204
- * information, see <a href="https://docs.aws.amazon.com/athena/latest/ug/querying.html">Working with query results, recent queries, and output files</a>.</p>
1202
+ * individual queries (client-side), using <a>ResultConfiguration$OutputLocation</a>. If none of them is set, Athena issues an error that no output location is provided.</p>
1205
1203
  * @public
1206
1204
  */
1207
1205
  ResultConfiguration?: ResultConfiguration;
@@ -2832,7 +2830,8 @@ export interface ImportNotebookInput {
2832
2830
  */
2833
2831
  Name: string | undefined;
2834
2832
  /**
2835
- * <p>The notebook content to be imported. The payload must be in <code>ipynb</code> format.</p>
2833
+ * <p>The notebook content to be imported. The payload must be in <code>ipynb</code>
2834
+ * format.</p>
2836
2835
  * @public
2837
2836
  */
2838
2837
  Payload?: string;
@@ -2843,7 +2842,8 @@ export interface ImportNotebookInput {
2843
2842
  */
2844
2843
  Type: NotebookType | undefined;
2845
2844
  /**
2846
- * <p>A URI that specifies the Amazon S3 location of a notebook file in <code>ipynb</code> format.</p>
2845
+ * <p>A URI that specifies the Amazon S3 location of a notebook file in
2846
+ * <code>ipynb</code> format.</p>
2847
2847
  * @public
2848
2848
  */
2849
2849
  NotebookS3LocationUri?: string;
@@ -4462,8 +4462,7 @@ export interface UpdatePreparedStatementOutput {
4462
4462
  export interface ResultConfigurationUpdates {
4463
4463
  /**
4464
4464
  * <p>The location in Amazon S3 where your query and calculation results are stored,
4465
- * such as <code>s3://path/to/query/bucket/</code>. For more information, see <a href="https://docs.aws.amazon.com/athena/latest/ug/querying.html">Working with query
4466
- * results, recent queries, and output files</a>. If workgroup settings override
4465
+ * such as <code>s3://path/to/query/bucket/</code>. If workgroup settings override
4467
4466
  * client-side settings, then the query uses the location for the query results and the
4468
4467
  * encryption configuration that are specified for the workgroup. The "workgroup settings
4469
4468
  * override" is specified in <code>EnforceWorkGroupConfiguration</code> (true/false) in the
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-athena",
3
3
  "description": "AWS SDK for JavaScript Athena Client for Node.js, Browser and React Native",
4
- "version": "3.583.0",
4
+ "version": "3.587.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-athena",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sso-oidc": "3.583.0",
24
- "@aws-sdk/client-sts": "3.583.0",
25
- "@aws-sdk/core": "3.582.0",
26
- "@aws-sdk/credential-provider-node": "3.583.0",
23
+ "@aws-sdk/client-sso-oidc": "3.587.0",
24
+ "@aws-sdk/client-sts": "3.587.0",
25
+ "@aws-sdk/core": "3.587.0",
26
+ "@aws-sdk/credential-provider-node": "3.587.0",
27
27
  "@aws-sdk/middleware-host-header": "3.577.0",
28
28
  "@aws-sdk/middleware-logger": "3.577.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.577.0",
30
- "@aws-sdk/middleware-user-agent": "3.583.0",
31
- "@aws-sdk/region-config-resolver": "3.577.0",
30
+ "@aws-sdk/middleware-user-agent": "3.587.0",
31
+ "@aws-sdk/region-config-resolver": "3.587.0",
32
32
  "@aws-sdk/types": "3.577.0",
33
- "@aws-sdk/util-endpoints": "3.583.0",
33
+ "@aws-sdk/util-endpoints": "3.587.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.577.0",
35
- "@aws-sdk/util-user-agent-node": "3.577.0",
36
- "@smithy/config-resolver": "^3.0.0",
37
- "@smithy/core": "^2.0.1",
35
+ "@aws-sdk/util-user-agent-node": "3.587.0",
36
+ "@smithy/config-resolver": "^3.0.1",
37
+ "@smithy/core": "^2.1.1",
38
38
  "@smithy/fetch-http-handler": "^3.0.1",
39
39
  "@smithy/hash-node": "^3.0.0",
40
40
  "@smithy/invalid-dependency": "^3.0.0",
41
41
  "@smithy/middleware-content-length": "^3.0.0",
42
- "@smithy/middleware-endpoint": "^3.0.0",
43
- "@smithy/middleware-retry": "^3.0.1",
42
+ "@smithy/middleware-endpoint": "^3.0.1",
43
+ "@smithy/middleware-retry": "^3.0.3",
44
44
  "@smithy/middleware-serde": "^3.0.0",
45
45
  "@smithy/middleware-stack": "^3.0.0",
46
- "@smithy/node-config-provider": "^3.0.0",
46
+ "@smithy/node-config-provider": "^3.1.0",
47
47
  "@smithy/node-http-handler": "^3.0.0",
48
48
  "@smithy/protocol-http": "^4.0.0",
49
- "@smithy/smithy-client": "^3.0.1",
49
+ "@smithy/smithy-client": "^3.1.1",
50
50
  "@smithy/types": "^3.0.0",
51
51
  "@smithy/url-parser": "^3.0.0",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.1",
56
- "@smithy/util-defaults-mode-node": "^3.0.1",
57
- "@smithy/util-endpoints": "^2.0.0",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.3",
56
+ "@smithy/util-defaults-mode-node": "^3.0.3",
57
+ "@smithy/util-endpoints": "^2.0.1",
58
58
  "@smithy/util-middleware": "^3.0.0",
59
59
  "@smithy/util-retry": "^3.0.0",
60
60
  "@smithy/util-utf8": "^3.0.0",