@aws-sdk/client-amplifyuibuilder 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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AmplifyUIBuilderServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +68 -1
- package/dist-cjs/protocols/Aws_restJson1.js +146 -402
- package/dist-es/index.js +1 -0
- package/dist-es/models/AmplifyUIBuilderServiceException.js +12 -0
- package/dist-es/models/models_0.js +62 -1
- package/dist-es/protocols/Aws_restJson1.js +285 -464
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AmplifyUIBuilderServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +37 -21
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AmplifyUIBuilderServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -21
- package/package.json +25 -25
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 AmplifyUIBuilderServiceException = (function (_super) {
|
|
4
|
+
__extends(AmplifyUIBuilderServiceException, _super);
|
|
5
|
+
function AmplifyUIBuilderServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, AmplifyUIBuilderServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return AmplifyUIBuilderServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { AmplifyUIBuilderServiceException };
|
|
@@ -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 { AmplifyUIBuilderServiceException as __BaseException } from "./AmplifyUIBuilderServiceException";
|
|
3
4
|
export var ComponentPropertyBindingProperties;
|
|
4
5
|
(function (ComponentPropertyBindingProperties) {
|
|
5
6
|
ComponentPropertyBindingProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -16,10 +17,70 @@ export var ComponentVariant;
|
|
|
16
17
|
(function (ComponentVariant) {
|
|
17
18
|
ComponentVariant.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
19
|
})(ComponentVariant || (ComponentVariant = {}));
|
|
20
|
+
var InternalServerException = (function (_super) {
|
|
21
|
+
__extends(InternalServerException, _super);
|
|
22
|
+
function InternalServerException(opts) {
|
|
23
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
24
|
+
_this.name = "InternalServerException";
|
|
25
|
+
_this.$fault = "server";
|
|
26
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
return InternalServerException;
|
|
30
|
+
}(__BaseException));
|
|
31
|
+
export { InternalServerException };
|
|
32
|
+
var InvalidParameterException = (function (_super) {
|
|
33
|
+
__extends(InvalidParameterException, _super);
|
|
34
|
+
function InvalidParameterException(opts) {
|
|
35
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
36
|
+
_this.name = "InvalidParameterException";
|
|
37
|
+
_this.$fault = "client";
|
|
38
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
39
|
+
return _this;
|
|
40
|
+
}
|
|
41
|
+
return InvalidParameterException;
|
|
42
|
+
}(__BaseException));
|
|
43
|
+
export { InvalidParameterException };
|
|
44
|
+
var ResourceConflictException = (function (_super) {
|
|
45
|
+
__extends(ResourceConflictException, _super);
|
|
46
|
+
function ResourceConflictException(opts) {
|
|
47
|
+
var _this = _super.call(this, __assign({ name: "ResourceConflictException", $fault: "client" }, opts)) || this;
|
|
48
|
+
_this.name = "ResourceConflictException";
|
|
49
|
+
_this.$fault = "client";
|
|
50
|
+
Object.setPrototypeOf(_this, ResourceConflictException.prototype);
|
|
51
|
+
return _this;
|
|
52
|
+
}
|
|
53
|
+
return ResourceConflictException;
|
|
54
|
+
}(__BaseException));
|
|
55
|
+
export { ResourceConflictException };
|
|
56
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
57
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
58
|
+
function ServiceQuotaExceededException(opts) {
|
|
59
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
60
|
+
_this.name = "ServiceQuotaExceededException";
|
|
61
|
+
_this.$fault = "client";
|
|
62
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
63
|
+
return _this;
|
|
64
|
+
}
|
|
65
|
+
return ServiceQuotaExceededException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { ServiceQuotaExceededException };
|
|
19
68
|
export var DeleteComponentRequest;
|
|
20
69
|
(function (DeleteComponentRequest) {
|
|
21
70
|
DeleteComponentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
71
|
})(DeleteComponentRequest || (DeleteComponentRequest = {}));
|
|
72
|
+
var ResourceNotFoundException = (function (_super) {
|
|
73
|
+
__extends(ResourceNotFoundException, _super);
|
|
74
|
+
function ResourceNotFoundException(opts) {
|
|
75
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
76
|
+
_this.name = "ResourceNotFoundException";
|
|
77
|
+
_this.$fault = "client";
|
|
78
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
79
|
+
return _this;
|
|
80
|
+
}
|
|
81
|
+
return ResourceNotFoundException;
|
|
82
|
+
}(__BaseException));
|
|
83
|
+
export { ResourceNotFoundException };
|
|
23
84
|
export var ExportComponentsRequest;
|
|
24
85
|
(function (ExportComponentsRequest) {
|
|
25
86
|
ExportComponentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|