@aws-sdk/client-pinpoint-email 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/PinpointEmailServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +134 -3
- package/dist-cjs/protocols/Aws_restJson1.js +414 -1385
- package/dist-es/index.js +1 -0
- package/dist-es/models/PinpointEmailServiceException.js +12 -0
- package/dist-es/models/models_0.js +122 -1
- package/dist-es/protocols/Aws_restJson1.js +877 -1564
- package/dist-types/PinpointEmailClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/PinpointEmailServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -41
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/PinpointEmailClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/PinpointEmailServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
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 PinpointEmailServiceException = (function (_super) {
|
|
4
|
+
__extends(PinpointEmailServiceException, _super);
|
|
5
|
+
function PinpointEmailServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, PinpointEmailServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return PinpointEmailServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { PinpointEmailServiceException };
|
|
@@ -1,4 +1,53 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { PinpointEmailServiceException as __BaseException } from "./PinpointEmailServiceException";
|
|
3
|
+
var AccountSuspendedException = (function (_super) {
|
|
4
|
+
__extends(AccountSuspendedException, _super);
|
|
5
|
+
function AccountSuspendedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccountSuspendedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccountSuspendedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccountSuspendedException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return AccountSuspendedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccountSuspendedException };
|
|
15
|
+
var AlreadyExistsException = (function (_super) {
|
|
16
|
+
__extends(AlreadyExistsException, _super);
|
|
17
|
+
function AlreadyExistsException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "AlreadyExistsException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
|
|
22
|
+
return _this;
|
|
23
|
+
}
|
|
24
|
+
return AlreadyExistsException;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { AlreadyExistsException };
|
|
27
|
+
var BadRequestException = (function (_super) {
|
|
28
|
+
__extends(BadRequestException, _super);
|
|
29
|
+
function BadRequestException(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "BadRequestException";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
34
|
+
return _this;
|
|
35
|
+
}
|
|
36
|
+
return BadRequestException;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { BadRequestException };
|
|
39
|
+
var ConcurrentModificationException = (function (_super) {
|
|
40
|
+
__extends(ConcurrentModificationException, _super);
|
|
41
|
+
function ConcurrentModificationException(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "server" }, opts)) || this;
|
|
43
|
+
_this.name = "ConcurrentModificationException";
|
|
44
|
+
_this.$fault = "server";
|
|
45
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
46
|
+
return _this;
|
|
47
|
+
}
|
|
48
|
+
return ConcurrentModificationException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { ConcurrentModificationException };
|
|
2
51
|
export var TlsPolicy;
|
|
3
52
|
(function (TlsPolicy) {
|
|
4
53
|
TlsPolicy["OPTIONAL"] = "OPTIONAL";
|
|
@@ -32,6 +81,42 @@ export var CreateConfigurationSetResponse;
|
|
|
32
81
|
(function (CreateConfigurationSetResponse) {
|
|
33
82
|
CreateConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
34
83
|
})(CreateConfigurationSetResponse || (CreateConfigurationSetResponse = {}));
|
|
84
|
+
var LimitExceededException = (function (_super) {
|
|
85
|
+
__extends(LimitExceededException, _super);
|
|
86
|
+
function LimitExceededException(opts) {
|
|
87
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
88
|
+
_this.name = "LimitExceededException";
|
|
89
|
+
_this.$fault = "client";
|
|
90
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
91
|
+
return _this;
|
|
92
|
+
}
|
|
93
|
+
return LimitExceededException;
|
|
94
|
+
}(__BaseException));
|
|
95
|
+
export { LimitExceededException };
|
|
96
|
+
var NotFoundException = (function (_super) {
|
|
97
|
+
__extends(NotFoundException, _super);
|
|
98
|
+
function NotFoundException(opts) {
|
|
99
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
100
|
+
_this.name = "NotFoundException";
|
|
101
|
+
_this.$fault = "client";
|
|
102
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
103
|
+
return _this;
|
|
104
|
+
}
|
|
105
|
+
return NotFoundException;
|
|
106
|
+
}(__BaseException));
|
|
107
|
+
export { NotFoundException };
|
|
108
|
+
var TooManyRequestsException = (function (_super) {
|
|
109
|
+
__extends(TooManyRequestsException, _super);
|
|
110
|
+
function TooManyRequestsException(opts) {
|
|
111
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
112
|
+
_this.name = "TooManyRequestsException";
|
|
113
|
+
_this.$fault = "client";
|
|
114
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
115
|
+
return _this;
|
|
116
|
+
}
|
|
117
|
+
return TooManyRequestsException;
|
|
118
|
+
}(__BaseException));
|
|
119
|
+
export { TooManyRequestsException };
|
|
35
120
|
export var DimensionValueSource;
|
|
36
121
|
(function (DimensionValueSource) {
|
|
37
122
|
DimensionValueSource["EMAIL_HEADER"] = "EMAIL_HEADER";
|
|
@@ -126,6 +211,42 @@ export var CreateDeliverabilityTestReportResponse;
|
|
|
126
211
|
(function (CreateDeliverabilityTestReportResponse) {
|
|
127
212
|
CreateDeliverabilityTestReportResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
213
|
})(CreateDeliverabilityTestReportResponse || (CreateDeliverabilityTestReportResponse = {}));
|
|
214
|
+
var MailFromDomainNotVerifiedException = (function (_super) {
|
|
215
|
+
__extends(MailFromDomainNotVerifiedException, _super);
|
|
216
|
+
function MailFromDomainNotVerifiedException(opts) {
|
|
217
|
+
var _this = _super.call(this, __assign({ name: "MailFromDomainNotVerifiedException", $fault: "client" }, opts)) || this;
|
|
218
|
+
_this.name = "MailFromDomainNotVerifiedException";
|
|
219
|
+
_this.$fault = "client";
|
|
220
|
+
Object.setPrototypeOf(_this, MailFromDomainNotVerifiedException.prototype);
|
|
221
|
+
return _this;
|
|
222
|
+
}
|
|
223
|
+
return MailFromDomainNotVerifiedException;
|
|
224
|
+
}(__BaseException));
|
|
225
|
+
export { MailFromDomainNotVerifiedException };
|
|
226
|
+
var MessageRejected = (function (_super) {
|
|
227
|
+
__extends(MessageRejected, _super);
|
|
228
|
+
function MessageRejected(opts) {
|
|
229
|
+
var _this = _super.call(this, __assign({ name: "MessageRejected", $fault: "client" }, opts)) || this;
|
|
230
|
+
_this.name = "MessageRejected";
|
|
231
|
+
_this.$fault = "client";
|
|
232
|
+
Object.setPrototypeOf(_this, MessageRejected.prototype);
|
|
233
|
+
return _this;
|
|
234
|
+
}
|
|
235
|
+
return MessageRejected;
|
|
236
|
+
}(__BaseException));
|
|
237
|
+
export { MessageRejected };
|
|
238
|
+
var SendingPausedException = (function (_super) {
|
|
239
|
+
__extends(SendingPausedException, _super);
|
|
240
|
+
function SendingPausedException(opts) {
|
|
241
|
+
var _this = _super.call(this, __assign({ name: "SendingPausedException", $fault: "client" }, opts)) || this;
|
|
242
|
+
_this.name = "SendingPausedException";
|
|
243
|
+
_this.$fault = "client";
|
|
244
|
+
Object.setPrototypeOf(_this, SendingPausedException.prototype);
|
|
245
|
+
return _this;
|
|
246
|
+
}
|
|
247
|
+
return SendingPausedException;
|
|
248
|
+
}(__BaseException));
|
|
249
|
+
export { SendingPausedException };
|
|
129
250
|
export var CreateEmailIdentityRequest;
|
|
130
251
|
(function (CreateEmailIdentityRequest) {
|
|
131
252
|
CreateEmailIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|