@aws-sdk/client-route53-recovery-cluster 3.201.0 → 3.204.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.
@@ -8,7 +8,6 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
8
8
  const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
9
9
  const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
10
10
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
11
- const util_base64_browser_1 = require("@aws-sdk/util-base64-browser");
12
11
  const util_body_length_browser_1 = require("@aws-sdk/util-body-length-browser");
13
12
  const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
14
13
  const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
@@ -24,8 +23,6 @@ const getRuntimeConfig = (config) => {
24
23
  ...config,
25
24
  runtime: "browser",
26
25
  defaultsMode,
27
- base64Decoder: config?.base64Decoder ?? util_base64_browser_1.fromBase64,
28
- base64Encoder: config?.base64Encoder ?? util_base64_browser_1.toBase64,
29
26
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
30
27
  credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
31
28
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -10,7 +10,6 @@ const hash_node_1 = require("@aws-sdk/hash-node");
10
10
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
11
11
  const node_config_provider_1 = require("@aws-sdk/node-config-provider");
12
12
  const node_http_handler_1 = require("@aws-sdk/node-http-handler");
13
- const util_base64_node_1 = require("@aws-sdk/util-base64-node");
14
13
  const util_body_length_node_1 = require("@aws-sdk/util-body-length-node");
15
14
  const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
16
15
  const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
@@ -28,8 +27,6 @@ const getRuntimeConfig = (config) => {
28
27
  ...config,
29
28
  runtime: "node",
30
29
  defaultsMode,
31
- base64Decoder: config?.base64Decoder ?? util_base64_node_1.fromBase64,
32
- base64Encoder: config?.base64Encoder ?? util_base64_node_1.toBase64,
33
30
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
34
31
  credentialDefaultProvider: config?.credentialDefaultProvider ?? (0, client_sts_1.decorateDefaultCredentialProvider)(credential_provider_node_1.defaultProvider),
35
32
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -2,9 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const url_parser_1 = require("@aws-sdk/url-parser");
5
+ const util_base64_1 = require("@aws-sdk/util-base64");
5
6
  const endpointResolver_1 = require("./endpoint/endpointResolver");
6
7
  const getRuntimeConfig = (config) => ({
7
8
  apiVersion: "2019-12-02",
9
+ base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64,
10
+ base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64,
8
11
  disableHostPrefix: config?.disableHostPrefix ?? false,
9
12
  endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
10
13
  logger: config?.logger ?? {},
@@ -4,7 +4,6 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-
4
4
  import { FetchHttpHandler as RequestHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
5
5
  import { invalidProvider } from "@aws-sdk/invalid-dependency";
6
6
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
7
- import { fromBase64, toBase64 } from "@aws-sdk/util-base64-browser";
8
7
  import { calculateBodyLength } from "@aws-sdk/util-body-length-browser";
9
8
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
10
9
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
@@ -20,8 +19,6 @@ export const getRuntimeConfig = (config) => {
20
19
  ...config,
21
20
  runtime: "browser",
22
21
  defaultsMode,
23
- base64Decoder: config?.base64Decoder ?? fromBase64,
24
- base64Encoder: config?.base64Encoder ?? toBase64,
25
22
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
26
23
  credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
27
24
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -6,7 +6,6 @@ import { Hash } from "@aws-sdk/hash-node";
6
6
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@aws-sdk/middleware-retry";
7
7
  import { loadConfig as loadNodeConfig } from "@aws-sdk/node-config-provider";
8
8
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@aws-sdk/node-http-handler";
9
- import { fromBase64, toBase64 } from "@aws-sdk/util-base64-node";
10
9
  import { calculateBodyLength } from "@aws-sdk/util-body-length-node";
11
10
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
12
11
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
@@ -24,8 +23,6 @@ export const getRuntimeConfig = (config) => {
24
23
  ...config,
25
24
  runtime: "node",
26
25
  defaultsMode,
27
- base64Decoder: config?.base64Decoder ?? fromBase64,
28
- base64Encoder: config?.base64Encoder ?? toBase64,
29
26
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
30
27
  credentialDefaultProvider: config?.credentialDefaultProvider ?? decorateDefaultCredentialProvider(credentialDefaultProvider),
31
28
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -1,7 +1,10 @@
1
1
  import { parseUrl } from "@aws-sdk/url-parser";
2
+ import { fromBase64, toBase64 } from "@aws-sdk/util-base64";
2
3
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
3
4
  export const getRuntimeConfig = (config) => ({
4
5
  apiVersion: "2019-12-02",
6
+ base64Decoder: config?.base64Decoder ?? fromBase64,
7
+ base64Encoder: config?.base64Encoder ?? toBase64,
5
8
  disableHostPrefix: config?.disableHostPrefix ?? false,
6
9
  endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
7
10
  logger: config?.logger ?? {},
@@ -6,8 +6,6 @@ import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClie
6
6
  export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
- base64Decoder: import("@aws-sdk/types").Decoder;
10
- base64Encoder: import("@aws-sdk/types").Encoder;
11
9
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
@@ -23,6 +21,8 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
23
21
  utf8Encoder: import("@aws-sdk/types").Encoder;
24
22
  apiVersion: string;
25
23
  urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
@@ -6,8 +6,6 @@ import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClie
6
6
  export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
- base64Decoder: import("@aws-sdk/types").Decoder;
10
- base64Encoder: import("@aws-sdk/types").Encoder;
11
9
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
@@ -23,6 +21,8 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
23
21
  utf8Encoder: import("@aws-sdk/types").Encoder;
24
22
  apiVersion: string;
25
23
  urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
@@ -5,6 +5,8 @@ import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClie
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConfig) => {
7
7
  apiVersion: string;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
8
10
  disableHostPrefix: boolean;
9
11
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
10
12
  logger?: __Logger | undefined;
@@ -7,8 +7,6 @@ export declare const getRuntimeConfig: (
7
7
  defaultsMode: import("@aws-sdk/types").Provider<
8
8
  import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
9
  >;
10
- base64Decoder: import("@aws-sdk/types").Decoder;
11
- base64Encoder: import("@aws-sdk/types").Encoder;
12
10
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
11
  credentialDefaultProvider: (
14
12
  input: any
@@ -35,6 +33,8 @@ export declare const getRuntimeConfig: (
35
33
  utf8Encoder: import("@aws-sdk/types").Encoder;
36
34
  apiVersion: string;
37
35
  urlParser: import("@aws-sdk/types").UrlParser;
36
+ base64Decoder: import("@aws-sdk/types").Decoder;
37
+ base64Encoder: import("@aws-sdk/types").Encoder;
38
38
  disableHostPrefix: boolean;
39
39
  logger: import("@aws-sdk/types").Logger;
40
40
  serviceId: string;
@@ -7,8 +7,6 @@ export declare const getRuntimeConfig: (
7
7
  defaultsMode: import("@aws-sdk/types").Provider<
8
8
  import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
9
  >;
10
- base64Decoder: import("@aws-sdk/types").Decoder;
11
- base64Encoder: import("@aws-sdk/types").Encoder;
12
10
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
11
  credentialDefaultProvider: (
14
12
  input: any
@@ -35,6 +33,8 @@ export declare const getRuntimeConfig: (
35
33
  utf8Encoder: import("@aws-sdk/types").Encoder;
36
34
  apiVersion: string;
37
35
  urlParser: import("@aws-sdk/types").UrlParser;
36
+ base64Decoder: import("@aws-sdk/types").Decoder;
37
+ base64Encoder: import("@aws-sdk/types").Encoder;
38
38
  disableHostPrefix: boolean;
39
39
  logger: import("@aws-sdk/types").Logger;
40
40
  serviceId: string;
@@ -4,6 +4,8 @@ export declare const getRuntimeConfig: (
4
4
  config: Route53RecoveryClusterClientConfig
5
5
  ) => {
6
6
  apiVersion: string;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
7
9
  disableHostPrefix: boolean;
8
10
  endpointProvider: (
9
11
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route53-recovery-cluster",
3
3
  "description": "AWS SDK for JavaScript Route53 Recovery Cluster Client for Node.js, Browser and React Native",
4
- "version": "3.201.0",
4
+ "version": "3.204.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,10 +19,10 @@
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.201.0",
22
+ "@aws-sdk/client-sts": "3.204.0",
23
23
  "@aws-sdk/config-resolver": "3.201.0",
24
- "@aws-sdk/credential-provider-node": "3.201.0",
25
- "@aws-sdk/fetch-http-handler": "3.201.0",
24
+ "@aws-sdk/credential-provider-node": "3.204.0",
25
+ "@aws-sdk/fetch-http-handler": "3.204.0",
26
26
  "@aws-sdk/hash-node": "3.201.0",
27
27
  "@aws-sdk/invalid-dependency": "3.201.0",
28
28
  "@aws-sdk/middleware-content-length": "3.201.0",
@@ -41,13 +41,14 @@
41
41
  "@aws-sdk/smithy-client": "3.201.0",
42
42
  "@aws-sdk/types": "3.201.0",
43
43
  "@aws-sdk/url-parser": "3.201.0",
44
+ "@aws-sdk/util-base64": "3.202.0",
44
45
  "@aws-sdk/util-base64-browser": "3.188.0",
45
46
  "@aws-sdk/util-base64-node": "3.201.0",
46
47
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
48
  "@aws-sdk/util-body-length-node": "3.201.0",
48
49
  "@aws-sdk/util-defaults-mode-browser": "3.201.0",
49
50
  "@aws-sdk/util-defaults-mode-node": "3.201.0",
50
- "@aws-sdk/util-endpoints": "3.201.0",
51
+ "@aws-sdk/util-endpoints": "3.202.0",
51
52
  "@aws-sdk/util-user-agent-browser": "3.201.0",
52
53
  "@aws-sdk/util-user-agent-node": "3.201.0",
53
54
  "@aws-sdk/util-utf8-browser": "3.188.0",
package/CHANGELOG.md DELETED
@@ -1,915 +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.201.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.200.0...v3.201.0) (2022-11-01)
7
-
8
-
9
- ### Features
10
-
11
- * 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))
12
-
13
-
14
-
15
-
16
-
17
- # [3.200.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.199.0...v3.200.0) (2022-10-31)
18
-
19
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
20
-
21
-
22
-
23
-
24
-
25
- # [3.199.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.198.0...v3.199.0) (2022-10-28)
26
-
27
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
28
-
29
-
30
-
31
-
32
-
33
- # [3.198.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.197.0...v3.198.0) (2022-10-27)
34
-
35
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
36
-
37
-
38
-
39
-
40
-
41
- # [3.197.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.196.0...v3.197.0) (2022-10-26)
42
-
43
-
44
- ### Bug Fixes
45
-
46
- * **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))
47
-
48
-
49
-
50
-
51
-
52
- # [3.196.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.195.0...v3.196.0) (2022-10-25)
53
-
54
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
55
-
56
-
57
-
58
-
59
-
60
- # [3.195.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.194.0...v3.195.0) (2022-10-24)
61
-
62
-
63
- ### Features
64
-
65
- * **endpoint:** endpoints models for awsJson1.0 ([#4078](https://github.com/aws/aws-sdk-js-v3/issues/4078)) ([eb9ec5e](https://github.com/aws/aws-sdk-js-v3/commit/eb9ec5ec8928744d3ba484b507393cd86e3b2414))
66
-
67
-
68
-
69
-
70
-
71
- # [3.194.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.193.0...v3.194.0) (2022-10-21)
72
-
73
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
74
-
75
-
76
-
77
-
78
-
79
- # [3.193.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.192.0...v3.193.0) (2022-10-20)
80
-
81
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
82
-
83
-
84
-
85
-
86
-
87
- # [3.192.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.191.0...v3.192.0) (2022-10-19)
88
-
89
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
90
-
91
-
92
-
93
-
94
-
95
- # [3.190.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.189.0...v3.190.0) (2022-10-17)
96
-
97
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
98
-
99
-
100
-
101
-
102
-
103
- # [3.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
104
-
105
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
106
-
107
-
108
-
109
-
110
-
111
- # [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
112
-
113
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
114
-
115
-
116
-
117
-
118
-
119
- # [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
120
-
121
-
122
- ### Bug Fixes
123
-
124
- * **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))
125
-
126
-
127
-
128
-
129
-
130
- # [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
131
-
132
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
133
-
134
-
135
-
136
-
137
-
138
- # [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
139
-
140
-
141
- ### Bug Fixes
142
-
143
- * **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))
144
- * **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))
145
-
146
-
147
-
148
-
149
-
150
- # [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
151
-
152
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
153
-
154
-
155
-
156
-
157
-
158
- # [3.179.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.178.0...v3.179.0) (2022-09-26)
159
-
160
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
161
-
162
-
163
-
164
-
165
-
166
- # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
167
-
168
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
169
-
170
-
171
-
172
-
173
-
174
- # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
175
-
176
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
177
-
178
-
179
-
180
-
181
-
182
- # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
183
-
184
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
185
-
186
-
187
-
188
-
189
-
190
- # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
191
-
192
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
193
-
194
-
195
-
196
-
197
-
198
- # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
199
-
200
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
201
-
202
-
203
-
204
-
205
-
206
- # [3.165.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.164.0...v3.165.0) (2022-09-06)
207
-
208
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
209
-
210
-
211
-
212
-
213
-
214
- # [3.163.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.162.0...v3.163.0) (2022-09-01)
215
-
216
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
217
-
218
-
219
-
220
-
221
-
222
- # [3.162.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.161.0...v3.162.0) (2022-08-31)
223
-
224
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
225
-
226
-
227
-
228
-
229
-
230
- # [3.161.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.160.0...v3.161.0) (2022-08-30)
231
-
232
-
233
- ### Features
234
-
235
- * **clients:** update client endpoints as of 2022-08-30 ([59043d3](https://github.com/aws/aws-sdk-js-v3/commit/59043d3755015c9185990f3ad850aaded13bd58c))
236
-
237
-
238
-
239
-
240
-
241
- # [3.160.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.159.0...v3.160.0) (2022-08-29)
242
-
243
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
244
-
245
-
246
-
247
-
248
-
249
- # [3.159.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.158.0...v3.159.0) (2022-08-26)
250
-
251
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
252
-
253
-
254
-
255
-
256
-
257
- # [3.154.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.153.0...v3.154.0) (2022-08-19)
258
-
259
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
260
-
261
-
262
-
263
-
264
-
265
- # [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
266
-
267
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
268
-
269
-
270
-
271
-
272
-
273
- # [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
274
-
275
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
276
-
277
-
278
-
279
-
280
-
281
- # [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
282
-
283
-
284
- ### Features
285
-
286
- * **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))
287
-
288
-
289
-
290
-
291
-
292
- # [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
293
-
294
-
295
- ### Features
296
-
297
- * **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
298
-
299
-
300
-
301
-
302
-
303
- # [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
304
-
305
-
306
- ### Features
307
-
308
- * **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))
309
-
310
-
311
-
312
-
313
-
314
- # [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
315
-
316
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
317
-
318
-
319
-
320
-
321
-
322
- # [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
323
-
324
-
325
- ### Bug Fixes
326
-
327
- * **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))
328
-
329
-
330
-
331
-
332
-
333
- # [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
334
-
335
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
336
-
337
-
338
-
339
-
340
-
341
- # [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
342
-
343
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
344
-
345
-
346
-
347
-
348
-
349
- # [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
350
-
351
-
352
- ### Features
353
-
354
- * **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))
355
-
356
-
357
-
358
-
359
-
360
- ## [3.118.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.118.0...v3.118.1) (2022-06-27)
361
-
362
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
363
-
364
-
365
-
366
-
367
-
368
- # [3.118.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.117.0...v3.118.0) (2022-06-24)
369
-
370
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
371
-
372
-
373
-
374
-
375
-
376
- # [3.112.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.111.0...v3.112.0) (2022-06-16)
377
-
378
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
379
-
380
-
381
-
382
-
383
-
384
- # [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
385
-
386
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
387
-
388
-
389
-
390
-
391
-
392
- # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
393
-
394
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
395
-
396
-
397
-
398
-
399
-
400
- # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
401
-
402
-
403
- ### Features
404
-
405
- * **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))
406
-
407
-
408
-
409
-
410
-
411
- # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
412
-
413
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
414
-
415
-
416
-
417
-
418
-
419
- # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
420
-
421
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
422
-
423
-
424
-
425
-
426
-
427
- # [3.95.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.94.0...v3.95.0) (2022-05-19)
428
-
429
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
430
-
431
-
432
-
433
-
434
-
435
- # [3.94.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.93.0...v3.94.0) (2022-05-18)
436
-
437
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
438
-
439
-
440
-
441
-
442
-
443
- # [3.92.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.91.0...v3.92.0) (2022-05-16)
444
-
445
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
446
-
447
-
448
-
449
-
450
-
451
- # [3.87.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.86.0...v3.87.0) (2022-05-09)
452
-
453
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
454
-
455
-
456
-
457
-
458
-
459
- # [3.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05)
460
-
461
-
462
- ### Features
463
-
464
- * **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))
465
-
466
-
467
-
468
-
469
-
470
- # [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02)
471
-
472
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
473
-
474
-
475
-
476
-
477
-
478
- # [3.81.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.80.0...v3.81.0) (2022-04-29)
479
-
480
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
481
-
482
-
483
-
484
-
485
-
486
- # [3.80.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.79.0...v3.80.0) (2022-04-28)
487
-
488
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
489
-
490
-
491
-
492
-
493
-
494
- # [3.79.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.78.0...v3.79.0) (2022-04-27)
495
-
496
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
497
-
498
-
499
-
500
-
501
-
502
- # [3.78.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.77.0...v3.78.0) (2022-04-26)
503
-
504
-
505
- ### Features
506
-
507
- * **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))
508
-
509
-
510
-
511
-
512
-
513
- # [3.76.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.75.0...v3.76.0) (2022-04-22)
514
-
515
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
516
-
517
-
518
-
519
-
520
-
521
- # [3.75.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.74.0...v3.75.0) (2022-04-21)
522
-
523
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
524
-
525
-
526
-
527
-
528
-
529
- # [3.74.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.73.0...v3.74.0) (2022-04-20)
530
-
531
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
532
-
533
-
534
-
535
-
536
-
537
- # [3.72.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.71.0...v3.72.0) (2022-04-15)
538
-
539
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
540
-
541
-
542
-
543
-
544
-
545
- # [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
546
-
547
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
548
-
549
-
550
-
551
-
552
-
553
- # [3.61.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.60.0...v3.61.0) (2022-03-31)
554
-
555
-
556
- ### Features
557
-
558
- * **client-route53-recovery-cluster:** This release adds a new API "ListRoutingControls" to list routing control states using the highly reliable Route 53 ARC data plane endpoints. ([ac15087](https://github.com/aws/aws-sdk-js-v3/commit/ac1508711cd99e732b3e5cf8fa120fe46ea2ad8b))
559
-
560
-
561
-
562
-
563
-
564
- # [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
565
-
566
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
567
-
568
-
569
-
570
-
571
-
572
- # [3.56.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.55.0...v3.56.0) (2022-03-24)
573
-
574
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
575
-
576
-
577
-
578
-
579
-
580
- # [3.55.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.1...v3.55.0) (2022-03-21)
581
-
582
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
583
-
584
-
585
-
586
-
587
-
588
- ## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
589
-
590
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
591
-
592
-
593
-
594
-
595
-
596
- # [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
597
-
598
-
599
- ### Features
600
-
601
- * **clients:** update clients as of 2022/03/10 ([#3411](https://github.com/aws/aws-sdk-js-v3/issues/3411)) ([8fa517a](https://github.com/aws/aws-sdk-js-v3/commit/8fa517a2c56d2f98a2e4a9c4ea6fd99b6ce61a71))
602
-
603
-
604
-
605
-
606
-
607
- # [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
608
-
609
-
610
- ### Features
611
-
612
- * **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))
613
-
614
-
615
-
616
-
617
-
618
- # [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
619
-
620
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
621
-
622
-
623
-
624
-
625
-
626
- # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
627
-
628
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
629
-
630
-
631
-
632
-
633
-
634
- # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
635
-
636
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
637
-
638
-
639
-
640
-
641
-
642
- # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
643
-
644
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
645
-
646
-
647
-
648
-
649
-
650
- # [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
651
-
652
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
653
-
654
-
655
-
656
-
657
-
658
- ## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
659
-
660
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
661
-
662
-
663
-
664
-
665
-
666
- ## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
667
-
668
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
669
-
670
-
671
-
672
-
673
-
674
- # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
675
-
676
-
677
- ### Features
678
-
679
- * **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))
680
-
681
-
682
-
683
-
684
-
685
- # [3.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
686
-
687
-
688
- ### Bug Fixes
689
-
690
- * **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))
691
-
692
-
693
- ### Features
694
-
695
- * **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))
696
- * 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))
697
-
698
-
699
-
700
-
701
-
702
- # [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
703
-
704
-
705
- ### Features
706
-
707
- * **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))
708
-
709
-
710
-
711
-
712
-
713
- # [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
714
-
715
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
716
-
717
-
718
-
719
-
720
-
721
- # [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
722
-
723
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
724
-
725
-
726
-
727
-
728
-
729
- # [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
730
-
731
-
732
- ### Features
733
-
734
- * **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))
735
-
736
-
737
-
738
-
739
-
740
- # [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
741
-
742
-
743
- ### Features
744
-
745
- * **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))
746
-
747
-
748
-
749
-
750
-
751
- # [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
752
-
753
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
754
-
755
-
756
-
757
-
758
-
759
- # [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
760
-
761
-
762
- ### Features
763
-
764
- * **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))
765
- * **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))
766
-
767
-
768
-
769
-
770
-
771
- # [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
772
-
773
-
774
- ### Features
775
-
776
- * **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))
777
-
778
-
779
-
780
-
781
-
782
- ## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
783
-
784
-
785
- ### Bug Fixes
786
-
787
- * **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))
788
-
789
-
790
-
791
-
792
-
793
- # [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
794
-
795
-
796
- ### Features
797
-
798
- * 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))
799
- * **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))
800
- * **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))
801
-
802
-
803
-
804
-
805
-
806
- # [3.35.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.34.0...v3.35.0) (2021-10-04)
807
-
808
-
809
- ### Features
810
-
811
- * **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))
812
- * **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))
813
-
814
-
815
-
816
-
817
-
818
- # [3.34.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.33.0...v3.34.0) (2021-09-24)
819
-
820
-
821
- ### Features
822
-
823
- * **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))
824
-
825
-
826
-
827
-
828
-
829
- # [3.33.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.32.0...v3.33.0) (2021-09-21)
830
-
831
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
832
-
833
-
834
-
835
-
836
-
837
- # [3.32.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.31.0...v3.32.0) (2021-09-17)
838
-
839
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
840
-
841
-
842
-
843
-
844
-
845
- # [3.31.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.30.0...v3.31.0) (2021-09-11)
846
-
847
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
848
-
849
-
850
-
851
-
852
-
853
- # [3.30.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.29.0...v3.30.0) (2021-09-07)
854
-
855
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
856
-
857
-
858
-
859
-
860
-
861
- # [3.29.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.28.0...v3.29.0) (2021-09-02)
862
-
863
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
864
-
865
-
866
-
867
-
868
-
869
- # [3.28.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.27.0...v3.28.0) (2021-08-27)
870
-
871
-
872
- ### Bug Fixes
873
-
874
- * **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))
875
-
876
-
877
- ### Features
878
-
879
- * **clients:** allow setting path prefix from custom endpoints ([#2722](https://github.com/aws/aws-sdk-js-v3/issues/2722)) ([990ba2f](https://github.com/aws/aws-sdk-js-v3/commit/990ba2fe1c03cf10c3cb345cee4d137af7095f3d))
880
- * **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))
881
-
882
-
883
-
884
-
885
-
886
- # [3.27.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.26.0...v3.27.0) (2021-08-19)
887
-
888
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
889
-
890
-
891
-
892
-
893
-
894
- # [3.26.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.25.0...v3.26.0) (2021-08-13)
895
-
896
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
897
-
898
-
899
-
900
-
901
-
902
- # [3.25.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.24.0...v3.25.0) (2021-08-05)
903
-
904
- **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
905
-
906
-
907
-
908
-
909
-
910
- # [3.24.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.23.0...v3.24.0) (2021-07-29)
911
-
912
-
913
- ### Features
914
-
915
- * **clients:** update clients as of 07/29/2021 ([#2631](https://github.com/aws/aws-sdk-js-v3/issues/2631)) ([a34551e](https://github.com/aws/aws-sdk-js-v3/commit/a34551e2590b01aeacc40d1afd9ee1076f000a77))