@aws-sdk/client-wellarchitected 3.205.0 → 3.209.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.
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
4
5
  const url_parser_1 = require("@aws-sdk/url-parser");
5
6
  const util_base64_1 = require("@aws-sdk/util-base64");
6
7
  const endpointResolver_1 = require("./endpoint/endpointResolver");
@@ -10,7 +11,7 @@ const getRuntimeConfig = (config) => ({
10
11
  base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64,
11
12
  disableHostPrefix: config?.disableHostPrefix ?? false,
12
13
  endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
13
- logger: config?.logger ?? {},
14
+ logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
14
15
  serviceId: config?.serviceId ?? "WellArchitected",
15
16
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
16
17
  });
@@ -1,3 +1,4 @@
1
+ import { NoOpLogger } from "@aws-sdk/smithy-client";
1
2
  import { parseUrl } from "@aws-sdk/url-parser";
2
3
  import { fromBase64, toBase64 } from "@aws-sdk/util-base64";
3
4
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
@@ -7,7 +8,7 @@ export const getRuntimeConfig = (config) => ({
7
8
  base64Encoder: config?.base64Encoder ?? toBase64,
8
9
  disableHostPrefix: config?.disableHostPrefix ?? false,
9
10
  endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
10
- logger: config?.logger ?? {},
11
+ logger: config?.logger ?? new NoOpLogger(),
11
12
  serviceId: config?.serviceId ?? "WellArchitected",
12
13
  urlParser: config?.urlParser ?? parseUrl,
13
14
  });
@@ -1,4 +1,3 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
1
  import { WellArchitectedClientConfig } from "./WellArchitectedClient";
3
2
  /**
4
3
  * @internal
@@ -9,9 +8,9 @@ export declare const getRuntimeConfig: (config: WellArchitectedClientConfig) =>
9
8
  base64Encoder: import("@aws-sdk/types").Encoder;
10
9
  disableHostPrefix: boolean;
11
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
- logger?: __Logger | undefined;
11
+ logger?: import("@aws-sdk/types").Logger | undefined;
13
12
  }) => import("@aws-sdk/types").EndpointV2;
14
- logger: __Logger;
13
+ logger: import("@aws-sdk/types").Logger;
15
14
  serviceId: string;
16
15
  urlParser: import("@aws-sdk/types").UrlParser;
17
16
  };
@@ -1,4 +1,3 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
1
  import { WellArchitectedClientConfig } from "./WellArchitectedClient";
3
2
  export declare const getRuntimeConfig: (
4
3
  config: WellArchitectedClientConfig
@@ -10,10 +9,10 @@ export declare const getRuntimeConfig: (
10
9
  endpointProvider: (
11
10
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
12
11
  context?: {
13
- logger?: __Logger | undefined;
12
+ logger?: import("@aws-sdk/types").Logger | undefined;
14
13
  }
15
14
  ) => import("@aws-sdk/types").EndpointV2;
16
- logger: __Logger;
15
+ logger: import("@aws-sdk/types").Logger;
17
16
  serviceId: string;
18
17
  urlParser: import("@aws-sdk/types").UrlParser;
19
18
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-wellarchitected",
3
3
  "description": "AWS SDK for JavaScript Wellarchitected Client for Node.js, Browser and React Native",
4
- "version": "3.205.0",
4
+ "version": "3.209.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",
@@ -19,47 +19,45 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.204.0",
23
- "@aws-sdk/config-resolver": "3.201.0",
24
- "@aws-sdk/credential-provider-node": "3.204.0",
25
- "@aws-sdk/fetch-http-handler": "3.204.0",
26
- "@aws-sdk/hash-node": "3.201.0",
27
- "@aws-sdk/invalid-dependency": "3.201.0",
28
- "@aws-sdk/middleware-content-length": "3.201.0",
29
- "@aws-sdk/middleware-endpoint": "3.201.0",
30
- "@aws-sdk/middleware-host-header": "3.201.0",
31
- "@aws-sdk/middleware-logger": "3.201.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.201.0",
33
- "@aws-sdk/middleware-retry": "3.201.0",
34
- "@aws-sdk/middleware-serde": "3.201.0",
35
- "@aws-sdk/middleware-signing": "3.201.0",
36
- "@aws-sdk/middleware-stack": "3.201.0",
37
- "@aws-sdk/middleware-user-agent": "3.201.0",
38
- "@aws-sdk/node-config-provider": "3.201.0",
39
- "@aws-sdk/node-http-handler": "3.201.0",
40
- "@aws-sdk/protocol-http": "3.201.0",
41
- "@aws-sdk/smithy-client": "3.201.0",
42
- "@aws-sdk/types": "3.201.0",
43
- "@aws-sdk/url-parser": "3.201.0",
44
- "@aws-sdk/util-base64": "3.202.0",
45
- "@aws-sdk/util-base64-browser": "3.188.0",
46
- "@aws-sdk/util-base64-node": "3.201.0",
22
+ "@aws-sdk/client-sts": "3.209.0",
23
+ "@aws-sdk/config-resolver": "3.209.0",
24
+ "@aws-sdk/credential-provider-node": "3.209.0",
25
+ "@aws-sdk/fetch-http-handler": "3.208.0",
26
+ "@aws-sdk/hash-node": "3.208.0",
27
+ "@aws-sdk/invalid-dependency": "3.208.0",
28
+ "@aws-sdk/middleware-content-length": "3.208.0",
29
+ "@aws-sdk/middleware-endpoint": "3.208.0",
30
+ "@aws-sdk/middleware-host-header": "3.208.0",
31
+ "@aws-sdk/middleware-logger": "3.208.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.208.0",
33
+ "@aws-sdk/middleware-retry": "3.209.0",
34
+ "@aws-sdk/middleware-serde": "3.208.0",
35
+ "@aws-sdk/middleware-signing": "3.208.0",
36
+ "@aws-sdk/middleware-stack": "3.208.0",
37
+ "@aws-sdk/middleware-user-agent": "3.208.0",
38
+ "@aws-sdk/node-config-provider": "3.209.0",
39
+ "@aws-sdk/node-http-handler": "3.208.0",
40
+ "@aws-sdk/protocol-http": "3.208.0",
41
+ "@aws-sdk/smithy-client": "3.209.0",
42
+ "@aws-sdk/types": "3.208.0",
43
+ "@aws-sdk/url-parser": "3.208.0",
44
+ "@aws-sdk/util-base64": "3.208.0",
47
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
48
- "@aws-sdk/util-body-length-node": "3.201.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.201.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.201.0",
51
- "@aws-sdk/util-endpoints": "3.202.0",
52
- "@aws-sdk/util-user-agent-browser": "3.201.0",
53
- "@aws-sdk/util-user-agent-node": "3.201.0",
46
+ "@aws-sdk/util-body-length-node": "3.208.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.209.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.209.0",
49
+ "@aws-sdk/util-endpoints": "3.209.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.208.0",
51
+ "@aws-sdk/util-user-agent-node": "3.209.0",
54
52
  "@aws-sdk/util-utf8-browser": "3.188.0",
55
- "@aws-sdk/util-utf8-node": "3.201.0",
53
+ "@aws-sdk/util-utf8-node": "3.208.0",
56
54
  "tslib": "^2.3.1",
57
55
  "uuid": "^8.3.2"
58
56
  },
59
57
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.188.0",
58
+ "@aws-sdk/service-client-documentation-generator": "3.208.0",
61
59
  "@tsconfig/node14": "1.0.3",
62
- "@types/node": "^12.7.5",
60
+ "@types/node": "^14.14.31",
63
61
  "@types/uuid": "^8.3.0",
64
62
  "concurrently": "7.0.0",
65
63
  "downlevel-dts": "0.10.1",
package/CHANGELOG.md DELETED
@@ -1,1077 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [3.205.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.204.0...v3.205.0) (2022-11-07)
7
-
8
-
9
- ### Features
10
-
11
- * **client-wellarchitected:** This release adds support for integrations with AWS Trusted Advisor and AWS Service Catalog AppRegistry to improve workload discovery and speed up your workload reviews. ([761bbb6](https://github.com/aws/aws-sdk-js-v3/commit/761bbb6d7be5b2b39abb18dee04478994c745426))
12
-
13
-
14
-
15
-
16
-
17
- # [3.204.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.203.0...v3.204.0) (2022-11-04)
18
-
19
-
20
- ### Features
21
-
22
- * **clients:** update client endpoints as of 2022-11-04 ([7471107](https://github.com/aws/aws-sdk-js-v3/commit/7471107c0881b5d9e474447a660dd3354a50b195))
23
-
24
-
25
-
26
-
27
-
28
- # [3.202.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.201.0...v3.202.0) (2022-11-02)
29
-
30
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
31
-
32
-
33
-
34
-
35
-
36
- # [3.201.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.200.0...v3.201.0) (2022-11-01)
37
-
38
-
39
- ### Features
40
-
41
- * end support for Node.js 12.x ([#4123](https://github.com/aws/aws-sdk-js-v3/issues/4123)) ([83f913e](https://github.com/aws/aws-sdk-js-v3/commit/83f913ec2ac3878d8726c6964f585550dc5caf3e))
42
-
43
-
44
-
45
-
46
-
47
- # [3.200.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.199.0...v3.200.0) (2022-10-31)
48
-
49
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
50
-
51
-
52
-
53
-
54
-
55
- # [3.199.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.198.0...v3.199.0) (2022-10-28)
56
-
57
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
58
-
59
-
60
-
61
-
62
-
63
- # [3.198.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.197.0...v3.198.0) (2022-10-27)
64
-
65
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
66
-
67
-
68
-
69
-
70
-
71
- # [3.197.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.196.0...v3.197.0) (2022-10-26)
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * **types:** expand custom endpoint type ([#4097](https://github.com/aws/aws-sdk-js-v3/issues/4097)) ([3620ce4](https://github.com/aws/aws-sdk-js-v3/commit/3620ce4162435b9688823162281140f40365b14c))
77
-
78
-
79
-
80
-
81
-
82
- # [3.196.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.195.0...v3.196.0) (2022-10-25)
83
-
84
-
85
- ### Features
86
-
87
- * **endpoint:** add remaining restJson1 services endpoint models ([#4090](https://github.com/aws/aws-sdk-js-v3/issues/4090)) ([998113b](https://github.com/aws/aws-sdk-js-v3/commit/998113bd0a70a7de4bf5d975cb5f7524098866a0))
88
-
89
-
90
-
91
-
92
-
93
- # [3.194.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.193.0...v3.194.0) (2022-10-21)
94
-
95
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
96
-
97
-
98
-
99
-
100
-
101
- # [3.193.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.192.0...v3.193.0) (2022-10-20)
102
-
103
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
104
-
105
-
106
-
107
-
108
-
109
- # [3.192.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.191.0...v3.192.0) (2022-10-19)
110
-
111
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
112
-
113
-
114
-
115
-
116
-
117
- # [3.190.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.189.0...v3.190.0) (2022-10-17)
118
-
119
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
120
-
121
-
122
-
123
-
124
-
125
- # [3.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
126
-
127
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
128
-
129
-
130
-
131
-
132
-
133
- # [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
134
-
135
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
136
-
137
-
138
-
139
-
140
-
141
- # [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
142
-
143
-
144
- ### Bug Fixes
145
-
146
- * **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
147
-
148
-
149
-
150
-
151
-
152
- # [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
153
-
154
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
155
-
156
-
157
-
158
-
159
-
160
- # [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
161
-
162
-
163
- ### Bug Fixes
164
-
165
- * **clients:** make parseErrorBody async ([#3999](https://github.com/aws/aws-sdk-js-v3/issues/3999)) ([2558c93](https://github.com/aws/aws-sdk-js-v3/commit/2558c93c050357ac6dc47aa0452b15b12ebfd676))
166
- * **clients:** populate message field when parsing errors ([#3995](https://github.com/aws/aws-sdk-js-v3/issues/3995)) ([02e47f1](https://github.com/aws/aws-sdk-js-v3/commit/02e47f14397ae0a5d2e2883350d038b307fdcdb4))
167
-
168
-
169
-
170
-
171
-
172
- # [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
173
-
174
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
175
-
176
-
177
-
178
-
179
-
180
- # [3.179.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.178.0...v3.179.0) (2022-09-26)
181
-
182
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
183
-
184
-
185
-
186
-
187
-
188
- # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
189
-
190
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
191
-
192
-
193
-
194
-
195
-
196
- # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
197
-
198
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
199
-
200
-
201
-
202
-
203
-
204
- # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
205
-
206
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
207
-
208
-
209
-
210
-
211
-
212
- # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
213
-
214
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
215
-
216
-
217
-
218
-
219
-
220
- # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
221
-
222
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
223
-
224
-
225
-
226
-
227
-
228
- # [3.165.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.164.0...v3.165.0) (2022-09-06)
229
-
230
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
231
-
232
-
233
-
234
-
235
-
236
- # [3.163.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.162.0...v3.163.0) (2022-09-01)
237
-
238
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
239
-
240
-
241
-
242
-
243
-
244
- # [3.162.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.161.0...v3.162.0) (2022-08-31)
245
-
246
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
247
-
248
-
249
-
250
-
251
-
252
- # [3.161.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.160.0...v3.161.0) (2022-08-30)
253
-
254
-
255
- ### Features
256
-
257
- * **clients:** update client endpoints as of 2022-08-30 ([59043d3](https://github.com/aws/aws-sdk-js-v3/commit/59043d3755015c9185990f3ad850aaded13bd58c))
258
-
259
-
260
-
261
-
262
-
263
- # [3.160.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.159.0...v3.160.0) (2022-08-29)
264
-
265
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
266
-
267
-
268
-
269
-
270
-
271
- # [3.159.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.158.0...v3.159.0) (2022-08-26)
272
-
273
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
274
-
275
-
276
-
277
-
278
-
279
- # [3.154.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.153.0...v3.154.0) (2022-08-19)
280
-
281
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
282
-
283
-
284
-
285
-
286
-
287
- # [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
288
-
289
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
290
-
291
-
292
-
293
-
294
-
295
- # [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
296
-
297
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
298
-
299
-
300
-
301
-
302
-
303
- # [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
304
-
305
-
306
- ### Features
307
-
308
- * **codegen:** general data mapping function ([#3830](https://github.com/aws/aws-sdk-js-v3/issues/3830)) ([9417eae](https://github.com/aws/aws-sdk-js-v3/commit/9417eae722806799fb4c15c07921574268c1165c))
309
-
310
-
311
-
312
-
313
-
314
- # [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
315
-
316
-
317
- ### Features
318
-
319
- * **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
320
-
321
-
322
-
323
-
324
-
325
- # [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
326
-
327
-
328
- ### Features
329
-
330
- * **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
331
-
332
-
333
-
334
-
335
-
336
- # [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
337
-
338
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
339
-
340
-
341
-
342
-
343
-
344
- # [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
345
-
346
-
347
- ### Bug Fixes
348
-
349
- * **codegen:** fix error code parsing when it's a number ([#3371](https://github.com/aws/aws-sdk-js-v3/issues/3371)) ([c2d8522](https://github.com/aws/aws-sdk-js-v3/commit/c2d852279a3d23958521a6ceb4f4c642b0cb1848))
350
-
351
-
352
-
353
-
354
-
355
- # [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
356
-
357
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
358
-
359
-
360
-
361
-
362
-
363
- # [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
364
-
365
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
366
-
367
-
368
-
369
-
370
-
371
- # [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
372
-
373
-
374
- ### Features
375
-
376
- * **client-wellarchitected:** Added support for UpdateGlobalSettings API. Added status filter to ListWorkloadShares and ListLensShares. ([5d6f4e6](https://github.com/aws/aws-sdk-js-v3/commit/5d6f4e6f1257b2a92f3a6aebd409126fb53d4750))
377
- * **clients:** fallback to status code for unmodeled errors ([#3752](https://github.com/aws/aws-sdk-js-v3/issues/3752)) ([49bcc4f](https://github.com/aws/aws-sdk-js-v3/commit/49bcc4f153e890e798a8e82fd5fc397b2dcc449f))
378
-
379
-
380
-
381
-
382
-
383
- ## [3.118.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.118.0...v3.118.1) (2022-06-27)
384
-
385
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
386
-
387
-
388
-
389
-
390
-
391
- # [3.118.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.117.0...v3.118.0) (2022-06-24)
392
-
393
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
394
-
395
-
396
-
397
-
398
-
399
- # [3.115.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.114.0...v3.115.0) (2022-06-21)
400
-
401
-
402
- ### Features
403
-
404
- * **client-wellarchitected:** Adds support for lens tagging, Adds support for multiple helpful-resource urls and multiple improvement-plan urls. ([7347da1](https://github.com/aws/aws-sdk-js-v3/commit/7347da1d60a5df588c7b9b6f6963eb3c6f886be4))
405
-
406
-
407
-
408
-
409
-
410
- # [3.112.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.111.0...v3.112.0) (2022-06-16)
411
-
412
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
413
-
414
-
415
-
416
-
417
-
418
- # [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
419
-
420
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
421
-
422
-
423
-
424
-
425
-
426
- # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
427
-
428
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
429
-
430
-
431
-
432
-
433
-
434
- # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
435
-
436
-
437
- ### Features
438
-
439
- * **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))
440
-
441
-
442
-
443
-
444
-
445
- # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
446
-
447
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
448
-
449
-
450
-
451
-
452
-
453
- # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
454
-
455
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
456
-
457
-
458
-
459
-
460
-
461
- # [3.95.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.94.0...v3.95.0) (2022-05-19)
462
-
463
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
464
-
465
-
466
-
467
-
468
-
469
- # [3.94.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.93.0...v3.94.0) (2022-05-18)
470
-
471
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
472
-
473
-
474
-
475
-
476
-
477
- # [3.92.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.91.0...v3.92.0) (2022-05-16)
478
-
479
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
480
-
481
-
482
-
483
-
484
-
485
- # [3.87.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.86.0...v3.87.0) (2022-05-09)
486
-
487
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
488
-
489
-
490
-
491
-
492
-
493
- # [3.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05)
494
-
495
-
496
- ### Features
497
-
498
- * **codegen:** add codegen indicator comment to all generated files ([#3592](https://github.com/aws/aws-sdk-js-v3/issues/3592)) ([567a530](https://github.com/aws/aws-sdk-js-v3/commit/567a5304232fcc1f9db3fd3df545054de8336b4b))
499
-
500
-
501
-
502
-
503
-
504
- # [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02)
505
-
506
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
507
-
508
-
509
-
510
-
511
-
512
- # [3.81.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.80.0...v3.81.0) (2022-04-29)
513
-
514
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
515
-
516
-
517
-
518
-
519
-
520
- # [3.80.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.79.0...v3.80.0) (2022-04-28)
521
-
522
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
523
-
524
-
525
-
526
-
527
-
528
- # [3.79.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.78.0...v3.79.0) (2022-04-27)
529
-
530
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
531
-
532
-
533
-
534
-
535
-
536
- # [3.78.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.77.0...v3.78.0) (2022-04-26)
537
-
538
-
539
- ### Features
540
-
541
- * **types:** add pagination stopOnSameToken option ([#3524](https://github.com/aws/aws-sdk-js-v3/issues/3524)) ([9bf73e8](https://github.com/aws/aws-sdk-js-v3/commit/9bf73e81b8d9be9f12c72cbefbe26c502d1873c6))
542
-
543
-
544
-
545
-
546
-
547
- # [3.76.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.75.0...v3.76.0) (2022-04-22)
548
-
549
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
550
-
551
-
552
-
553
-
554
-
555
- # [3.75.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.74.0...v3.75.0) (2022-04-21)
556
-
557
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
558
-
559
-
560
-
561
-
562
-
563
- # [3.74.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.73.0...v3.74.0) (2022-04-20)
564
-
565
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
566
-
567
-
568
-
569
-
570
-
571
- # [3.72.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.71.0...v3.72.0) (2022-04-15)
572
-
573
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
574
-
575
-
576
-
577
-
578
-
579
- # [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
580
-
581
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
582
-
583
-
584
-
585
-
586
-
587
- # [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
588
-
589
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
590
-
591
-
592
-
593
-
594
-
595
- # [3.56.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.55.0...v3.56.0) (2022-03-24)
596
-
597
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
598
-
599
-
600
-
601
-
602
-
603
- # [3.55.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.1...v3.55.0) (2022-03-21)
604
-
605
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
606
-
607
-
608
-
609
-
610
-
611
- ## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
612
-
613
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
614
-
615
-
616
-
617
-
618
-
619
- # [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
620
-
621
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
622
-
623
-
624
-
625
-
626
-
627
- # [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
628
-
629
-
630
- ### Features
631
-
632
- * **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
633
-
634
-
635
-
636
-
637
-
638
- # [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
639
-
640
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
641
-
642
-
643
-
644
-
645
-
646
- # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
647
-
648
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
649
-
650
-
651
-
652
-
653
-
654
- # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
655
-
656
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
657
-
658
-
659
-
660
-
661
-
662
- # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
663
-
664
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
665
-
666
-
667
-
668
-
669
-
670
- # [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
671
-
672
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
673
-
674
-
675
-
676
-
677
-
678
- ## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
679
-
680
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
681
-
682
-
683
-
684
-
685
-
686
- ## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
687
-
688
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
689
-
690
-
691
-
692
-
693
-
694
- # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
695
-
696
-
697
- ### Features
698
-
699
- * **clients:** update clients to use default values inferred from defaults mode ([#3192](https://github.com/aws/aws-sdk-js-v3/issues/3192)) ([9152e21](https://github.com/aws/aws-sdk-js-v3/commit/9152e210c6ec29f34bb070eaf2874039022e6ab7))
700
-
701
-
702
-
703
-
704
-
705
- # [3.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
706
-
707
-
708
- ### Bug Fixes
709
-
710
- * **clients:** update clean:dist script to delete dist-* folder ([#3155](https://github.com/aws/aws-sdk-js-v3/issues/3155)) ([cdb1709](https://github.com/aws/aws-sdk-js-v3/commit/cdb17090f82d1fc8755811c82cbed5976ec7e60b))
711
-
712
-
713
- ### Features
714
-
715
- * **clients:** extend typedoc.json from root ([#3136](https://github.com/aws/aws-sdk-js-v3/issues/3136)) ([f6a3ef5](https://github.com/aws/aws-sdk-js-v3/commit/f6a3ef541ae2d92872d09d8cab6727911287ebb2))
716
- * end support for Node.js 10.x ([#3122](https://github.com/aws/aws-sdk-js-v3/issues/3122)) ([7acf18a](https://github.com/aws/aws-sdk-js-v3/commit/7acf18abd3fb1cc461f809110cdb0d7968c2070e))
717
-
718
-
719
-
720
-
721
-
722
- # [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
723
-
724
-
725
- ### Features
726
-
727
- * **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
728
-
729
-
730
-
731
-
732
-
733
- # [3.44.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.43.0...v3.44.0) (2021-12-02)
734
-
735
-
736
- ### Features
737
-
738
- * **clients:** update clients as of 2021/11/30 ([#3077](https://github.com/aws/aws-sdk-js-v3/issues/3077)) ([2bdba30](https://github.com/aws/aws-sdk-js-v3/commit/2bdba30963e550728ba2903d57daa1e666a29d71))
739
-
740
-
741
-
742
-
743
-
744
- # [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
745
-
746
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
747
-
748
-
749
-
750
-
751
-
752
- # [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
753
-
754
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
755
-
756
-
757
-
758
-
759
-
760
- # [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
761
-
762
-
763
- ### Features
764
-
765
- * **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
766
-
767
-
768
-
769
-
770
-
771
- # [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
772
-
773
-
774
- ### Features
775
-
776
- * **clients:** populate variants in endpoints hashes ([#2974](https://github.com/aws/aws-sdk-js-v3/issues/2974)) ([0dd68ef](https://github.com/aws/aws-sdk-js-v3/commit/0dd68ef8b04ea0e96e43b05a9a10221e433fdf86))
777
-
778
-
779
-
780
-
781
-
782
- # [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
783
-
784
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
785
-
786
-
787
-
788
-
789
-
790
- # [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
791
-
792
-
793
- ### Features
794
-
795
- * **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
796
- * **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
797
-
798
-
799
-
800
-
801
-
802
- # [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
803
-
804
-
805
- ### Features
806
-
807
- * **clients:** update clients as of 10/15/2021 ([#2902](https://github.com/aws/aws-sdk-js-v3/issues/2902)) ([2730b54](https://github.com/aws/aws-sdk-js-v3/commit/2730b5424377944a5a2ad5e1ad7d3ca4135dae1c))
808
-
809
-
810
-
811
-
812
-
813
- ## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
814
-
815
-
816
- ### Bug Fixes
817
-
818
- * **clients:** emitDeclarationOnly in tsconfig.types.json ([#2893](https://github.com/aws/aws-sdk-js-v3/issues/2893)) ([6dc3d56](https://github.com/aws/aws-sdk-js-v3/commit/6dc3d56c20809c90cbdc4dd48627eeebc64af99d))
819
-
820
-
821
-
822
-
823
-
824
- # [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
825
-
826
-
827
- ### Features
828
-
829
- * publish files in dist-* only ([#2873](https://github.com/aws/aws-sdk-js-v3/issues/2873)) ([53b4243](https://github.com/aws/aws-sdk-js-v3/commit/53b4243b066f25ff2412d5f0dea1036054b2df32))
830
- * **codegen:** ts-ignore packageInfo imports in codegen ([#2875](https://github.com/aws/aws-sdk-js-v3/issues/2875)) ([99d9267](https://github.com/aws/aws-sdk-js-v3/commit/99d926762193e83a354edec6e9de2b0543449704))
831
- * **tsconfig:** remove sourceMap ([#2867](https://github.com/aws/aws-sdk-js-v3/issues/2867)) ([d25f526](https://github.com/aws/aws-sdk-js-v3/commit/d25f526627a02a2ca28675fecce66c76b6c97966))
832
-
833
-
834
-
835
-
836
-
837
- # [3.35.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.34.0...v3.35.0) (2021-10-04)
838
-
839
-
840
- ### Features
841
-
842
- * **clients:** eslint --fix using esprint ([#2849](https://github.com/aws/aws-sdk-js-v3/issues/2849)) ([94d0a2d](https://github.com/aws/aws-sdk-js-v3/commit/94d0a2d8a0579ee0a742337937ad05735cfbc1ba))
843
- * **clients:** move source files to 'src' folder ([#2845](https://github.com/aws/aws-sdk-js-v3/issues/2845)) ([e0025cd](https://github.com/aws/aws-sdk-js-v3/commit/e0025cddbba244a41ddf1fd1adb761142e15c22d))
844
-
845
-
846
-
847
-
848
-
849
- # [3.34.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.33.0...v3.34.0) (2021-09-24)
850
-
851
-
852
- ### Features
853
-
854
- * **clients:** remove comments from transpiled JS files ([#2817](https://github.com/aws/aws-sdk-js-v3/issues/2817)) ([d01420b](https://github.com/aws/aws-sdk-js-v3/commit/d01420b247966c8ec84c1dd0a1b42512ede10c90))
855
-
856
-
857
-
858
-
859
-
860
- # [3.33.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.32.0...v3.33.0) (2021-09-21)
861
-
862
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
863
-
864
-
865
-
866
-
867
-
868
- # [3.32.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.31.0...v3.32.0) (2021-09-17)
869
-
870
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
871
-
872
-
873
-
874
-
875
-
876
- # [3.31.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.30.0...v3.31.0) (2021-09-11)
877
-
878
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
879
-
880
-
881
-
882
-
883
-
884
- # [3.30.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.29.0...v3.30.0) (2021-09-07)
885
-
886
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
887
-
888
-
889
-
890
-
891
-
892
- # [3.29.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.28.0...v3.29.0) (2021-09-02)
893
-
894
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
895
-
896
-
897
-
898
-
899
-
900
- # [3.28.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.27.0...v3.28.0) (2021-08-27)
901
-
902
-
903
- ### Bug Fixes
904
-
905
- * **clients:** use optional chaining while processing runtime config ([#2690](https://github.com/aws/aws-sdk-js-v3/issues/2690)) ([18469ce](https://github.com/aws/aws-sdk-js-v3/commit/18469cefc27840ba00d516265ebd976f10240496))
906
-
907
-
908
- ### Features
909
-
910
- * **clients:** modular endpoints resolution ([#2704](https://github.com/aws/aws-sdk-js-v3/issues/2704)) ([88de69b](https://github.com/aws/aws-sdk-js-v3/commit/88de69ba28aaedfc7f13fa165044ef8cae023bbe))
911
-
912
-
913
-
914
-
915
-
916
- # [3.27.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.26.0...v3.27.0) (2021-08-19)
917
-
918
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
919
-
920
-
921
-
922
-
923
-
924
- # [3.26.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.25.0...v3.26.0) (2021-08-13)
925
-
926
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
927
-
928
-
929
-
930
-
931
-
932
- # [3.25.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.24.0...v3.25.0) (2021-08-05)
933
-
934
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
935
-
936
-
937
-
938
-
939
-
940
- # [3.24.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.23.0...v3.24.0) (2021-07-29)
941
-
942
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
943
-
944
-
945
-
946
-
947
-
948
- # [3.23.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.22.0...v3.23.0) (2021-07-23)
949
-
950
-
951
- ### Bug Fixes
952
-
953
- * **clients:** allow undefined configuration ([#2617](https://github.com/aws/aws-sdk-js-v3/issues/2617)) ([a004d15](https://github.com/aws/aws-sdk-js-v3/commit/a004d1569e0b213259c50f72fddfd209fff0d7a3))
954
- * bump up tslib to 2.3.0 ([#2601](https://github.com/aws/aws-sdk-js-v3/issues/2601)) ([7040faa](https://github.com/aws/aws-sdk-js-v3/commit/7040faac07976c1dcfd5240675b82a2f275b2a55))
955
-
956
-
957
- ### Features
958
-
959
- * **clients:** change runtime config from constant to provider functions ([#2574](https://github.com/aws/aws-sdk-js-v3/issues/2574)) ([5eca565](https://github.com/aws/aws-sdk-js-v3/commit/5eca565b5237a31ee4f18a2ecb4608099ccd55ac))
960
-
961
-
962
-
963
-
964
-
965
- # [3.22.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.21.0...v3.22.0) (2021-07-16)
966
-
967
-
968
- ### Bug Fixes
969
-
970
- * **clients:** link to Hash Interface ([#2573](https://github.com/aws/aws-sdk-js-v3/issues/2573)) ([bb7b3ed](https://github.com/aws/aws-sdk-js-v3/commit/bb7b3edc152f2c33b0e1cf2848aba4231882c36d))
971
- * **clients:** prefix `dist/` for typesVersions TS<4 ([#2580](https://github.com/aws/aws-sdk-js-v3/issues/2580)) ([dff5cd4](https://github.com/aws/aws-sdk-js-v3/commit/dff5cd4b6fa00453e938ce8f238c1542ee7ba3d6))
972
-
973
-
974
- ### Features
975
-
976
- * **clients:** update clients as of 07/16/2021 ([#2591](https://github.com/aws/aws-sdk-js-v3/issues/2591)) ([f231e7c](https://github.com/aws/aws-sdk-js-v3/commit/f231e7ca1fcc437b4503901a4af3c501d128f59f))
977
-
978
-
979
-
980
-
981
-
982
- # [3.21.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.20.0...v3.21.0) (2021-07-09)
983
-
984
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
985
-
986
-
987
-
988
-
989
-
990
- # [3.20.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.19.0...v3.20.0) (2021-07-02)
991
-
992
-
993
- ### Bug Fixes
994
-
995
- * replace prepublishOnly script with downlevel-dts ([#2537](https://github.com/aws/aws-sdk-js-v3/issues/2537)) ([63818a1](https://github.com/aws/aws-sdk-js-v3/commit/63818a1e47b08af56f092031a01bbbff0a9af590))
996
-
997
-
998
-
999
-
1000
-
1001
- # [3.19.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.18.0...v3.19.0) (2021-06-24)
1002
-
1003
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
1004
-
1005
-
1006
-
1007
-
1008
-
1009
- # [3.18.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.17.0...v3.18.0) (2021-06-04)
1010
-
1011
-
1012
- ### Features
1013
-
1014
- * support Sigv4 for non AWS services ([#2385](https://github.com/aws/aws-sdk-js-v3/issues/2385)) ([0a251aa](https://github.com/aws/aws-sdk-js-v3/commit/0a251aa44d54fbf21e328ccf2b20db45e94aaa90)), closes [/github.com/awslabs/smithy/blob/main/smithy-aws-protocol-tests/model/restJson1/main.smithy#L11-L13](https://github.com//github.com/awslabs/smithy/blob/main/smithy-aws-protocol-tests/model/restJson1/main.smithy/issues/L11-L13)
1015
- * **clients:** add retryModeProvider in runtimeConfig ([#2440](https://github.com/aws/aws-sdk-js-v3/issues/2440)) ([fc0a5da](https://github.com/aws/aws-sdk-js-v3/commit/fc0a5dae2c13814d5a0c5fce1d892ce0e97c98e4))
1016
-
1017
-
1018
-
1019
-
1020
-
1021
- # [3.17.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.16.0...v3.17.0) (2021-05-26)
1022
-
1023
-
1024
- ### Features
1025
-
1026
- * **clients:** update endpoint resolution as of 05/12/2021 ([#2398](https://github.com/aws/aws-sdk-js-v3/issues/2398)) ([17afcbb](https://github.com/aws/aws-sdk-js-v3/commit/17afcbb65bb26f091ba258717716272d5dc4e2c7))
1027
-
1028
-
1029
-
1030
-
1031
-
1032
- # [3.16.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.15.0...v3.16.0) (2021-05-14)
1033
-
1034
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
1035
-
1036
-
1037
-
1038
-
1039
-
1040
- # [3.15.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.14.0...v3.15.0) (2021-05-10)
1041
-
1042
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
1043
-
1044
-
1045
-
1046
-
1047
-
1048
- # [3.14.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.13.1...v3.14.0) (2021-04-30)
1049
-
1050
-
1051
- ### Bug Fixes
1052
-
1053
- * **clients:** typo in README difference -> different ([#2314](https://github.com/aws/aws-sdk-js-v3/issues/2314)) ([9ac1f40](https://github.com/aws/aws-sdk-js-v3/commit/9ac1f40eea78075e6b301df50cfae17c19ad77c3))
1054
-
1055
-
1056
- ### Features
1057
-
1058
- * **clients:** update clients as of 04/29/2021 ([#2329](https://github.com/aws/aws-sdk-js-v3/issues/2329)) ([48ab750](https://github.com/aws/aws-sdk-js-v3/commit/48ab75045d1a94adfae94ac638a0dd882ebd05ac))
1059
-
1060
-
1061
-
1062
-
1063
-
1064
- ## [3.13.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.13.0...v3.13.1) (2021-04-22)
1065
-
1066
- **Note:** Version bump only for package @aws-sdk/client-wellarchitected
1067
-
1068
-
1069
-
1070
-
1071
-
1072
- # [3.13.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.12.0...v3.13.0) (2021-04-15)
1073
-
1074
-
1075
- ### Features
1076
-
1077
- * **clients:** update clients as of 04/14/2021 ([#2258](https://github.com/aws/aws-sdk-js-v3/issues/2258)) ([4f9f4a7](https://github.com/aws/aws-sdk-js-v3/commit/4f9f4a79b019c1c35530e05c4138fde88a6fb547))