@aws-sdk/client-route53-recovery-cluster 3.183.0 → 3.185.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.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **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))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
@@ -484,10 +484,10 @@ const deserializeAws_json1_0ValidationExceptionFieldList = (output, context) =>
484
484
  return retVal;
485
485
  };
486
486
  const deserializeMetadata = (output) => {
487
- var _a;
487
+ var _a, _b;
488
488
  return ({
489
489
  httpStatusCode: output.statusCode,
490
- requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
490
+ requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
491
491
  extendedRequestId: output.headers["x-amz-id-2"],
492
492
  cfId: output.headers["x-amz-cf-id"],
493
493
  });
@@ -1,63 +1,70 @@
1
+ import { __extends } from "tslib";
1
2
  import { GetRoutingControlStateCommand, } from "./commands/GetRoutingControlStateCommand";
2
3
  import { ListRoutingControlsCommand, } from "./commands/ListRoutingControlsCommand";
3
4
  import { UpdateRoutingControlStateCommand, } from "./commands/UpdateRoutingControlStateCommand";
4
5
  import { UpdateRoutingControlStatesCommand, } from "./commands/UpdateRoutingControlStatesCommand";
5
6
  import { Route53RecoveryClusterClient } from "./Route53RecoveryClusterClient";
6
- export class Route53RecoveryCluster extends Route53RecoveryClusterClient {
7
- getRoutingControlState(args, optionsOrCb, cb) {
8
- const command = new GetRoutingControlStateCommand(args);
7
+ var Route53RecoveryCluster = (function (_super) {
8
+ __extends(Route53RecoveryCluster, _super);
9
+ function Route53RecoveryCluster() {
10
+ return _super !== null && _super.apply(this, arguments) || this;
11
+ }
12
+ Route53RecoveryCluster.prototype.getRoutingControlState = function (args, optionsOrCb, cb) {
13
+ var command = new GetRoutingControlStateCommand(args);
9
14
  if (typeof optionsOrCb === "function") {
10
15
  this.send(command, optionsOrCb);
11
16
  }
12
17
  else if (typeof cb === "function") {
13
18
  if (typeof optionsOrCb !== "object")
14
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
19
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
15
20
  this.send(command, optionsOrCb || {}, cb);
16
21
  }
17
22
  else {
18
23
  return this.send(command, optionsOrCb);
19
24
  }
20
- }
21
- listRoutingControls(args, optionsOrCb, cb) {
22
- const command = new ListRoutingControlsCommand(args);
25
+ };
26
+ Route53RecoveryCluster.prototype.listRoutingControls = function (args, optionsOrCb, cb) {
27
+ var command = new ListRoutingControlsCommand(args);
23
28
  if (typeof optionsOrCb === "function") {
24
29
  this.send(command, optionsOrCb);
25
30
  }
26
31
  else if (typeof cb === "function") {
27
32
  if (typeof optionsOrCb !== "object")
28
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
33
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
29
34
  this.send(command, optionsOrCb || {}, cb);
30
35
  }
31
36
  else {
32
37
  return this.send(command, optionsOrCb);
33
38
  }
34
- }
35
- updateRoutingControlState(args, optionsOrCb, cb) {
36
- const command = new UpdateRoutingControlStateCommand(args);
39
+ };
40
+ Route53RecoveryCluster.prototype.updateRoutingControlState = function (args, optionsOrCb, cb) {
41
+ var command = new UpdateRoutingControlStateCommand(args);
37
42
  if (typeof optionsOrCb === "function") {
38
43
  this.send(command, optionsOrCb);
39
44
  }
40
45
  else if (typeof cb === "function") {
41
46
  if (typeof optionsOrCb !== "object")
42
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
47
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
43
48
  this.send(command, optionsOrCb || {}, cb);
44
49
  }
45
50
  else {
46
51
  return this.send(command, optionsOrCb);
47
52
  }
48
- }
49
- updateRoutingControlStates(args, optionsOrCb, cb) {
50
- const command = new UpdateRoutingControlStatesCommand(args);
53
+ };
54
+ Route53RecoveryCluster.prototype.updateRoutingControlStates = function (args, optionsOrCb, cb) {
55
+ var command = new UpdateRoutingControlStatesCommand(args);
51
56
  if (typeof optionsOrCb === "function") {
52
57
  this.send(command, optionsOrCb);
53
58
  }
54
59
  else if (typeof cb === "function") {
55
60
  if (typeof optionsOrCb !== "object")
56
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
61
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
57
62
  this.send(command, optionsOrCb || {}, cb);
58
63
  }
59
64
  else {
60
65
  return this.send(command, optionsOrCb);
61
66
  }
62
- }
63
- }
67
+ };
68
+ return Route53RecoveryCluster;
69
+ }(Route53RecoveryClusterClient));
70
+ export { Route53RecoveryCluster };
@@ -1,3 +1,4 @@
1
+ import { __extends } from "tslib";
1
2
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
2
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
3
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
9
10
  import { Client as __Client, } from "@aws-sdk/smithy-client";
10
11
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
11
- export class Route53RecoveryClusterClient extends __Client {
12
- constructor(configuration) {
13
- const _config_0 = __getRuntimeConfig(configuration);
14
- const _config_1 = resolveRegionConfig(_config_0);
15
- const _config_2 = resolveEndpointsConfig(_config_1);
16
- const _config_3 = resolveRetryConfig(_config_2);
17
- const _config_4 = resolveHostHeaderConfig(_config_3);
18
- const _config_5 = resolveAwsAuthConfig(_config_4);
19
- const _config_6 = resolveUserAgentConfig(_config_5);
20
- super(_config_6);
21
- this.config = _config_6;
22
- this.middlewareStack.use(getRetryPlugin(this.config));
23
- this.middlewareStack.use(getContentLengthPlugin(this.config));
24
- this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
- this.middlewareStack.use(getLoggerPlugin(this.config));
26
- this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
- this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
- this.middlewareStack.use(getUserAgentPlugin(this.config));
12
+ var Route53RecoveryClusterClient = (function (_super) {
13
+ __extends(Route53RecoveryClusterClient, _super);
14
+ function Route53RecoveryClusterClient(configuration) {
15
+ var _this = this;
16
+ var _config_0 = __getRuntimeConfig(configuration);
17
+ var _config_1 = resolveRegionConfig(_config_0);
18
+ var _config_2 = resolveEndpointsConfig(_config_1);
19
+ var _config_3 = resolveRetryConfig(_config_2);
20
+ var _config_4 = resolveHostHeaderConfig(_config_3);
21
+ var _config_5 = resolveAwsAuthConfig(_config_4);
22
+ var _config_6 = resolveUserAgentConfig(_config_5);
23
+ _this = _super.call(this, _config_6) || this;
24
+ _this.config = _config_6;
25
+ _this.middlewareStack.use(getRetryPlugin(_this.config));
26
+ _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
+ _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
+ _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
+ _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
+ _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
+ return _this;
29
33
  }
30
- destroy() {
31
- super.destroy();
32
- }
33
- }
34
+ Route53RecoveryClusterClient.prototype.destroy = function () {
35
+ _super.prototype.destroy.call(this);
36
+ };
37
+ return Route53RecoveryClusterClient;
38
+ }(__Client));
39
+ export { Route53RecoveryClusterClient };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetRoutingControlStateRequestFilterSensitiveLog, GetRoutingControlStateResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0GetRoutingControlStateCommand, serializeAws_json1_0GetRoutingControlStateCommand, } from "../protocols/Aws_json1_0";
5
- export class GetRoutingControlStateCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetRoutingControlStateCommand = (function (_super) {
7
+ __extends(GetRoutingControlStateCommand, _super);
8
+ function GetRoutingControlStateCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetRoutingControlStateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "Route53RecoveryClusterClient";
15
- const commandName = "GetRoutingControlStateCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "Route53RecoveryClusterClient";
18
+ var commandName = "GetRoutingControlStateCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetRoutingControlStateRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetRoutingControlStateResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetRoutingControlStateCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0GetRoutingControlStateCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetRoutingControlStateCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0GetRoutingControlStateCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetRoutingControlStateCommand;
38
+ }($Command));
39
+ export { GetRoutingControlStateCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListRoutingControlsRequestFilterSensitiveLog, ListRoutingControlsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0ListRoutingControlsCommand, serializeAws_json1_0ListRoutingControlsCommand, } from "../protocols/Aws_json1_0";
5
- export class ListRoutingControlsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListRoutingControlsCommand = (function (_super) {
7
+ __extends(ListRoutingControlsCommand, _super);
8
+ function ListRoutingControlsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListRoutingControlsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "Route53RecoveryClusterClient";
15
- const commandName = "ListRoutingControlsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "Route53RecoveryClusterClient";
18
+ var commandName = "ListRoutingControlsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListRoutingControlsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListRoutingControlsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListRoutingControlsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0ListRoutingControlsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListRoutingControlsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListRoutingControlsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListRoutingControlsCommand;
38
+ }($Command));
39
+ export { ListRoutingControlsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UpdateRoutingControlStateRequestFilterSensitiveLog, UpdateRoutingControlStateResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0UpdateRoutingControlStateCommand, serializeAws_json1_0UpdateRoutingControlStateCommand, } from "../protocols/Aws_json1_0";
5
- export class UpdateRoutingControlStateCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateRoutingControlStateCommand = (function (_super) {
7
+ __extends(UpdateRoutingControlStateCommand, _super);
8
+ function UpdateRoutingControlStateCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateRoutingControlStateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "Route53RecoveryClusterClient";
15
- const commandName = "UpdateRoutingControlStateCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "Route53RecoveryClusterClient";
18
+ var commandName = "UpdateRoutingControlStateCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateRoutingControlStateRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UpdateRoutingControlStateResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateRoutingControlStateCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0UpdateRoutingControlStateCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateRoutingControlStateCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0UpdateRoutingControlStateCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateRoutingControlStateCommand;
38
+ }($Command));
39
+ export { UpdateRoutingControlStateCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UpdateRoutingControlStatesRequestFilterSensitiveLog, UpdateRoutingControlStatesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0UpdateRoutingControlStatesCommand, serializeAws_json1_0UpdateRoutingControlStatesCommand, } from "../protocols/Aws_json1_0";
5
- export class UpdateRoutingControlStatesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateRoutingControlStatesCommand = (function (_super) {
7
+ __extends(UpdateRoutingControlStatesCommand, _super);
8
+ function UpdateRoutingControlStatesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateRoutingControlStatesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "Route53RecoveryClusterClient";
15
- const commandName = "UpdateRoutingControlStatesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "Route53RecoveryClusterClient";
18
+ var commandName = "UpdateRoutingControlStatesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateRoutingControlStatesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UpdateRoutingControlStatesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateRoutingControlStatesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0UpdateRoutingControlStatesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateRoutingControlStatesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0UpdateRoutingControlStatesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateRoutingControlStatesCommand;
38
+ }($Command));
39
+ export { UpdateRoutingControlStatesCommand };
@@ -1,6 +1,7 @@
1
+ import { __assign, __awaiter, __generator } from "tslib";
1
2
  import { getRegionInfo } from "@aws-sdk/config-resolver";
2
- const regionHash = {};
3
- const partitionHash = {
3
+ var regionHash = {};
4
+ var partitionHash = {
4
5
  aws: {
5
6
  regions: [
6
7
  "af-south-1",
@@ -120,9 +121,8 @@ const partitionHash = {
120
121
  ],
121
122
  },
122
123
  };
123
- export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
124
- ...options,
125
- signingService: "route53-recovery-cluster",
126
- regionHash,
127
- partitionHash,
128
- });
124
+ export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
125
+ return __generator(this, function (_a) {
126
+ return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "route53-recovery-cluster", regionHash: regionHash, partitionHash: partitionHash }))];
127
+ });
128
+ }); };
@@ -1,7 +1,12 @@
1
+ import { __extends } from "tslib";
1
2
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
2
- export class Route53RecoveryClusterServiceException extends __ServiceException {
3
- constructor(options) {
4
- super(options);
5
- Object.setPrototypeOf(this, Route53RecoveryClusterServiceException.prototype);
3
+ var Route53RecoveryClusterServiceException = (function (_super) {
4
+ __extends(Route53RecoveryClusterServiceException, _super);
5
+ function Route53RecoveryClusterServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, Route53RecoveryClusterServiceException.prototype);
8
+ return _this;
6
9
  }
7
- }
10
+ return Route53RecoveryClusterServiceException;
11
+ }(__ServiceException));
12
+ export { Route53RecoveryClusterServiceException };