@aws-sdk/client-emr-containers 3.52.0 → 3.53.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/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./EMRContainersClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { EMRContainersServiceException } from "./models/EMRContainersServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var EMRContainersServiceException = (function (_super) {
4
+ __extends(EMRContainersServiceException, _super);
5
+ function EMRContainersServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, EMRContainersServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return EMRContainersServiceException;
11
+ }(__ServiceException));
12
+ export { EMRContainersServiceException };
@@ -1,5 +1,6 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ import { EMRContainersServiceException as __BaseException } from "./EMRContainersServiceException";
3
4
  export var CancelJobRunRequest;
4
5
  (function (CancelJobRunRequest) {
5
6
  CancelJobRunRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -8,6 +9,30 @@ export var CancelJobRunResponse;
8
9
  (function (CancelJobRunResponse) {
9
10
  CancelJobRunResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
10
11
  })(CancelJobRunResponse || (CancelJobRunResponse = {}));
12
+ var InternalServerException = (function (_super) {
13
+ __extends(InternalServerException, _super);
14
+ function InternalServerException(opts) {
15
+ var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
16
+ _this.name = "InternalServerException";
17
+ _this.$fault = "server";
18
+ Object.setPrototypeOf(_this, InternalServerException.prototype);
19
+ return _this;
20
+ }
21
+ return InternalServerException;
22
+ }(__BaseException));
23
+ export { InternalServerException };
24
+ var ValidationException = (function (_super) {
25
+ __extends(ValidationException, _super);
26
+ function ValidationException(opts) {
27
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
28
+ _this.name = "ValidationException";
29
+ _this.$fault = "client";
30
+ Object.setPrototypeOf(_this, ValidationException.prototype);
31
+ return _this;
32
+ }
33
+ return ValidationException;
34
+ }(__BaseException));
35
+ export { ValidationException };
11
36
  export var CloudWatchMonitoringConfiguration;
12
37
  (function (CloudWatchMonitoringConfiguration) {
13
38
  CloudWatchMonitoringConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -29,6 +54,18 @@ export var CreateManagedEndpointResponse;
29
54
  (function (CreateManagedEndpointResponse) {
30
55
  CreateManagedEndpointResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
31
56
  })(CreateManagedEndpointResponse || (CreateManagedEndpointResponse = {}));
57
+ var ResourceNotFoundException = (function (_super) {
58
+ __extends(ResourceNotFoundException, _super);
59
+ function ResourceNotFoundException(opts) {
60
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
61
+ _this.name = "ResourceNotFoundException";
62
+ _this.$fault = "client";
63
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
64
+ return _this;
65
+ }
66
+ return ResourceNotFoundException;
67
+ }(__BaseException));
68
+ export { ResourceNotFoundException };
32
69
  export var EksInfo;
33
70
  (function (EksInfo) {
34
71
  EksInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };