@aws-sdk/client-athena 3.100.0 → 3.105.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-athena
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class AthenaClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var AthenaClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -662,9 +662,7 @@ export interface CreateDataCatalogInput {
662
662
  * </li>
663
663
  * </ul>
664
664
  */
665
- Parameters?: {
666
- [key: string]: string;
667
- };
665
+ Parameters?: Record<string, string>;
668
666
  /**
669
667
  * <p>A list of comma separated tags to add to the data catalog that is created.</p>
670
668
  */
@@ -997,9 +995,7 @@ export interface Database {
997
995
  /**
998
996
  * <p>A set of custom key/value pairs.</p>
999
997
  */
1000
- Parameters?: {
1001
- [key: string]: string;
1002
- };
998
+ Parameters?: Record<string, string>;
1003
999
  }
1004
1000
  export declare namespace Database {
1005
1001
  /**
@@ -1133,9 +1129,7 @@ export interface DataCatalog {
1133
1129
  * </li>
1134
1130
  * </ul>
1135
1131
  */
1136
- Parameters?: {
1137
- [key: string]: string;
1138
- };
1132
+ Parameters?: Record<string, string>;
1139
1133
  }
1140
1134
  export declare namespace DataCatalog {
1141
1135
  /**
@@ -1509,9 +1503,7 @@ export interface TableMetadata {
1509
1503
  /**
1510
1504
  * <p>A set of custom key/value pairs for table properties.</p>
1511
1505
  */
1512
- Parameters?: {
1513
- [key: string]: string;
1514
- };
1506
+ Parameters?: Record<string, string>;
1515
1507
  }
1516
1508
  export declare namespace TableMetadata {
1517
1509
  /**
@@ -2237,9 +2229,7 @@ export interface UpdateDataCatalogInput {
2237
2229
  * </li>
2238
2230
  * </ul>
2239
2231
  */
2240
- Parameters?: {
2241
- [key: string]: string;
2242
- };
2232
+ Parameters?: Record<string, string>;
2243
2233
  }
2244
2234
  export declare namespace UpdateDataCatalogInput {
2245
2235
  /**
@@ -278,9 +278,7 @@ export interface CreateDataCatalogInput {
278
278
 
279
279
  Description?: string;
280
280
 
281
- Parameters?: {
282
- [key: string]: string;
283
- };
281
+ Parameters?: Record<string, string>;
284
282
 
285
283
  Tags?: Tag[];
286
284
  }
@@ -465,9 +463,7 @@ export interface Database {
465
463
 
466
464
  Description?: string;
467
465
 
468
- Parameters?: {
469
- [key: string]: string;
470
- };
466
+ Parameters?: Record<string, string>;
471
467
  }
472
468
  export declare namespace Database {
473
469
 
@@ -506,9 +502,7 @@ export interface DataCatalog {
506
502
 
507
503
  Type: DataCatalogType | string | undefined;
508
504
 
509
- Parameters?: {
510
- [key: string]: string;
511
- };
505
+ Parameters?: Record<string, string>;
512
506
  }
513
507
  export declare namespace DataCatalog {
514
508
 
@@ -723,9 +717,7 @@ export interface TableMetadata {
723
717
 
724
718
  PartitionKeys?: Column[];
725
719
 
726
- Parameters?: {
727
- [key: string]: string;
728
- };
720
+ Parameters?: Record<string, string>;
729
721
  }
730
722
  export declare namespace TableMetadata {
731
723
 
@@ -1102,9 +1094,7 @@ export interface UpdateDataCatalogInput {
1102
1094
 
1103
1095
  Description?: string;
1104
1096
 
1105
- Parameters?: {
1106
- [key: string]: string;
1107
- };
1097
+ Parameters?: Record<string, string>;
1108
1098
  }
1109
1099
  export declare namespace UpdateDataCatalogInput {
1110
1100
 
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.100.0",
4
+ "version": "3.105.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,15 +18,16 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.100.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.100.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",