@aws-sdk/client-sesv2 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/SESv2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +163 -5
- package/dist-cjs/protocols/Aws_restJson1.js +736 -2592
- package/dist-es/index.js +1 -0
- package/dist-es/models/SESv2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +146 -1
- package/dist-es/protocols/Aws_restJson1.js +1639 -2929
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SESv2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +86 -49
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SESv2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +62 -49
- 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 SESv2ServiceException = (function (_super) {
|
|
4
|
+
__extends(SESv2ServiceException, _super);
|
|
5
|
+
function SESv2ServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, SESv2ServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return SESv2ServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { SESv2ServiceException };
|
|
@@ -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 { SESv2ServiceException as __BaseException } from "./SESv2ServiceException";
|
|
3
4
|
export var ContactLanguage;
|
|
4
5
|
(function (ContactLanguage) {
|
|
5
6
|
ContactLanguage["EN"] = "EN";
|
|
@@ -25,6 +26,42 @@ export var AccountDetails;
|
|
|
25
26
|
(function (AccountDetails) {
|
|
26
27
|
AccountDetails.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.WebsiteURL && { WebsiteURL: SENSITIVE_STRING })), (obj.UseCaseDescription && { UseCaseDescription: SENSITIVE_STRING })), (obj.AdditionalContactEmailAddresses && { AdditionalContactEmailAddresses: SENSITIVE_STRING }))); };
|
|
27
28
|
})(AccountDetails || (AccountDetails = {}));
|
|
29
|
+
var AccountSuspendedException = (function (_super) {
|
|
30
|
+
__extends(AccountSuspendedException, _super);
|
|
31
|
+
function AccountSuspendedException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "AccountSuspendedException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "AccountSuspendedException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, AccountSuspendedException.prototype);
|
|
36
|
+
return _this;
|
|
37
|
+
}
|
|
38
|
+
return AccountSuspendedException;
|
|
39
|
+
}(__BaseException));
|
|
40
|
+
export { AccountSuspendedException };
|
|
41
|
+
var AlreadyExistsException = (function (_super) {
|
|
42
|
+
__extends(AlreadyExistsException, _super);
|
|
43
|
+
function AlreadyExistsException(opts) {
|
|
44
|
+
var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
45
|
+
_this.name = "AlreadyExistsException";
|
|
46
|
+
_this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
|
|
48
|
+
return _this;
|
|
49
|
+
}
|
|
50
|
+
return AlreadyExistsException;
|
|
51
|
+
}(__BaseException));
|
|
52
|
+
export { AlreadyExistsException };
|
|
53
|
+
var BadRequestException = (function (_super) {
|
|
54
|
+
__extends(BadRequestException, _super);
|
|
55
|
+
function BadRequestException(opts) {
|
|
56
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
57
|
+
_this.name = "BadRequestException";
|
|
58
|
+
_this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
60
|
+
return _this;
|
|
61
|
+
}
|
|
62
|
+
return BadRequestException;
|
|
63
|
+
}(__BaseException));
|
|
64
|
+
export { BadRequestException };
|
|
28
65
|
export var BehaviorOnMxFailure;
|
|
29
66
|
(function (BehaviorOnMxFailure) {
|
|
30
67
|
BehaviorOnMxFailure["REJECT_MESSAGE"] = "REJECT_MESSAGE";
|
|
@@ -105,6 +142,30 @@ export var CloudWatchDestination;
|
|
|
105
142
|
(function (CloudWatchDestination) {
|
|
106
143
|
CloudWatchDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
144
|
})(CloudWatchDestination || (CloudWatchDestination = {}));
|
|
145
|
+
var ConcurrentModificationException = (function (_super) {
|
|
146
|
+
__extends(ConcurrentModificationException, _super);
|
|
147
|
+
function ConcurrentModificationException(opts) {
|
|
148
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "server" }, opts)) || this;
|
|
149
|
+
_this.name = "ConcurrentModificationException";
|
|
150
|
+
_this.$fault = "server";
|
|
151
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
152
|
+
return _this;
|
|
153
|
+
}
|
|
154
|
+
return ConcurrentModificationException;
|
|
155
|
+
}(__BaseException));
|
|
156
|
+
export { ConcurrentModificationException };
|
|
157
|
+
var ConflictException = (function (_super) {
|
|
158
|
+
__extends(ConflictException, _super);
|
|
159
|
+
function ConflictException(opts) {
|
|
160
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
161
|
+
_this.name = "ConflictException";
|
|
162
|
+
_this.$fault = "client";
|
|
163
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
164
|
+
return _this;
|
|
165
|
+
}
|
|
166
|
+
return ConflictException;
|
|
167
|
+
}(__BaseException));
|
|
168
|
+
export { ConflictException };
|
|
108
169
|
export var SubscriptionStatus;
|
|
109
170
|
(function (SubscriptionStatus) {
|
|
110
171
|
SubscriptionStatus["OPT_IN"] = "OPT_IN";
|
|
@@ -173,6 +234,42 @@ export var CreateConfigurationSetResponse;
|
|
|
173
234
|
(function (CreateConfigurationSetResponse) {
|
|
174
235
|
CreateConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
236
|
})(CreateConfigurationSetResponse || (CreateConfigurationSetResponse = {}));
|
|
237
|
+
var LimitExceededException = (function (_super) {
|
|
238
|
+
__extends(LimitExceededException, _super);
|
|
239
|
+
function LimitExceededException(opts) {
|
|
240
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
241
|
+
_this.name = "LimitExceededException";
|
|
242
|
+
_this.$fault = "client";
|
|
243
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
244
|
+
return _this;
|
|
245
|
+
}
|
|
246
|
+
return LimitExceededException;
|
|
247
|
+
}(__BaseException));
|
|
248
|
+
export { LimitExceededException };
|
|
249
|
+
var NotFoundException = (function (_super) {
|
|
250
|
+
__extends(NotFoundException, _super);
|
|
251
|
+
function NotFoundException(opts) {
|
|
252
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
253
|
+
_this.name = "NotFoundException";
|
|
254
|
+
_this.$fault = "client";
|
|
255
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
256
|
+
return _this;
|
|
257
|
+
}
|
|
258
|
+
return NotFoundException;
|
|
259
|
+
}(__BaseException));
|
|
260
|
+
export { NotFoundException };
|
|
261
|
+
var TooManyRequestsException = (function (_super) {
|
|
262
|
+
__extends(TooManyRequestsException, _super);
|
|
263
|
+
function TooManyRequestsException(opts) {
|
|
264
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
265
|
+
_this.name = "TooManyRequestsException";
|
|
266
|
+
_this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
268
|
+
return _this;
|
|
269
|
+
}
|
|
270
|
+
return TooManyRequestsException;
|
|
271
|
+
}(__BaseException));
|
|
272
|
+
export { TooManyRequestsException };
|
|
176
273
|
export var KinesisFirehoseDestination;
|
|
177
274
|
(function (KinesisFirehoseDestination) {
|
|
178
275
|
KinesisFirehoseDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -271,6 +368,42 @@ export var CreateDeliverabilityTestReportResponse;
|
|
|
271
368
|
(function (CreateDeliverabilityTestReportResponse) {
|
|
272
369
|
CreateDeliverabilityTestReportResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
370
|
})(CreateDeliverabilityTestReportResponse || (CreateDeliverabilityTestReportResponse = {}));
|
|
371
|
+
var MailFromDomainNotVerifiedException = (function (_super) {
|
|
372
|
+
__extends(MailFromDomainNotVerifiedException, _super);
|
|
373
|
+
function MailFromDomainNotVerifiedException(opts) {
|
|
374
|
+
var _this = _super.call(this, __assign({ name: "MailFromDomainNotVerifiedException", $fault: "client" }, opts)) || this;
|
|
375
|
+
_this.name = "MailFromDomainNotVerifiedException";
|
|
376
|
+
_this.$fault = "client";
|
|
377
|
+
Object.setPrototypeOf(_this, MailFromDomainNotVerifiedException.prototype);
|
|
378
|
+
return _this;
|
|
379
|
+
}
|
|
380
|
+
return MailFromDomainNotVerifiedException;
|
|
381
|
+
}(__BaseException));
|
|
382
|
+
export { MailFromDomainNotVerifiedException };
|
|
383
|
+
var MessageRejected = (function (_super) {
|
|
384
|
+
__extends(MessageRejected, _super);
|
|
385
|
+
function MessageRejected(opts) {
|
|
386
|
+
var _this = _super.call(this, __assign({ name: "MessageRejected", $fault: "client" }, opts)) || this;
|
|
387
|
+
_this.name = "MessageRejected";
|
|
388
|
+
_this.$fault = "client";
|
|
389
|
+
Object.setPrototypeOf(_this, MessageRejected.prototype);
|
|
390
|
+
return _this;
|
|
391
|
+
}
|
|
392
|
+
return MessageRejected;
|
|
393
|
+
}(__BaseException));
|
|
394
|
+
export { MessageRejected };
|
|
395
|
+
var SendingPausedException = (function (_super) {
|
|
396
|
+
__extends(SendingPausedException, _super);
|
|
397
|
+
function SendingPausedException(opts) {
|
|
398
|
+
var _this = _super.call(this, __assign({ name: "SendingPausedException", $fault: "client" }, opts)) || this;
|
|
399
|
+
_this.name = "SendingPausedException";
|
|
400
|
+
_this.$fault = "client";
|
|
401
|
+
Object.setPrototypeOf(_this, SendingPausedException.prototype);
|
|
402
|
+
return _this;
|
|
403
|
+
}
|
|
404
|
+
return SendingPausedException;
|
|
405
|
+
}(__BaseException));
|
|
406
|
+
export { SendingPausedException };
|
|
274
407
|
export var DkimSigningKeyLength;
|
|
275
408
|
(function (DkimSigningKeyLength) {
|
|
276
409
|
DkimSigningKeyLength["RSA_1024_BIT"] = "RSA_1024_BIT";
|
|
@@ -705,6 +838,18 @@ export var ImportJobSummary;
|
|
|
705
838
|
(function (ImportJobSummary) {
|
|
706
839
|
ImportJobSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
707
840
|
})(ImportJobSummary || (ImportJobSummary = {}));
|
|
841
|
+
var InvalidNextTokenException = (function (_super) {
|
|
842
|
+
__extends(InvalidNextTokenException, _super);
|
|
843
|
+
function InvalidNextTokenException(opts) {
|
|
844
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
845
|
+
_this.name = "InvalidNextTokenException";
|
|
846
|
+
_this.$fault = "client";
|
|
847
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
848
|
+
return _this;
|
|
849
|
+
}
|
|
850
|
+
return InvalidNextTokenException;
|
|
851
|
+
}(__BaseException));
|
|
852
|
+
export { InvalidNextTokenException };
|
|
708
853
|
export var ListConfigurationSetsRequest;
|
|
709
854
|
(function (ListConfigurationSetsRequest) {
|
|
710
855
|
ListConfigurationSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|