@aws-sdk/client-ec2 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/CHANGELOG.md +12 -0
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/EC2ServiceException.js +11 -0
- package/dist-cjs/protocols/Aws_ec2.js +2085 -5210
- package/dist-es/endpoints.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/EC2ServiceException.js +12 -0
- package/dist-es/protocols/Aws_ec2.js +4170 -3648
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/EC2ServiceException.d.ts +10 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/EC2ServiceException.d.ts +6 -0
- package/package.json +27 -27
package/dist-es/endpoints.js
CHANGED
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var EC2ServiceException = (function (_super) {
|
|
4
|
+
__extends(EC2ServiceException, _super);
|
|
5
|
+
function EC2ServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, EC2ServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return EC2ServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { EC2ServiceException };
|