@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.
@@ -206,7 +206,7 @@ var partitionHash = {
206
206
  tags: [],
207
207
  },
208
208
  {
209
- hostname: "ec2-fips.{region}.amazonaws.com",
209
+ hostname: "ec2.{region}.amazonaws.com",
210
210
  tags: ["fips"],
211
211
  },
212
212
  {
package/dist-es/index.js CHANGED
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { EC2ServiceException } from "./models/EC2ServiceException";
@@ -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 };