@aws-sdk/client-ses 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SESServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +477 -4
- package/dist-cjs/protocols/Aws_query.js +494 -1516
- package/dist-es/index.js +1 -0
- package/dist-es/models/SESServiceException.js +12 -0
- package/dist-es/models/models_0.js +439 -1
- package/dist-es/protocols/Aws_query.js +1037 -1502
- package/dist-types/SESClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SESServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +240 -137
- 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/SESClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SESServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +172 -137
- 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 +34 -34
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 SESServiceException = (function (_super) {
|
|
4
|
+
__extends(SESServiceException, _super);
|
|
5
|
+
function SESServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, SESServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return SESServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { SESServiceException };
|
|
@@ -1,8 +1,34 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { SESServiceException as __BaseException } from "./SESServiceException";
|
|
3
|
+
var AccountSendingPausedException = (function (_super) {
|
|
4
|
+
__extends(AccountSendingPausedException, _super);
|
|
5
|
+
function AccountSendingPausedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccountSendingPausedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccountSendingPausedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccountSendingPausedException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return AccountSendingPausedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccountSendingPausedException };
|
|
2
15
|
export var AddHeaderAction;
|
|
3
16
|
(function (AddHeaderAction) {
|
|
4
17
|
AddHeaderAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
18
|
})(AddHeaderAction || (AddHeaderAction = {}));
|
|
19
|
+
var AlreadyExistsException = (function (_super) {
|
|
20
|
+
__extends(AlreadyExistsException, _super);
|
|
21
|
+
function AlreadyExistsException(opts) {
|
|
22
|
+
var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
23
|
+
_this.name = "AlreadyExistsException";
|
|
24
|
+
_this.$fault = "client";
|
|
25
|
+
Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
|
|
26
|
+
_this.Name = opts.Name;
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
return AlreadyExistsException;
|
|
30
|
+
}(__BaseException));
|
|
31
|
+
export { AlreadyExistsException };
|
|
6
32
|
export var BehaviorOnMXFailure;
|
|
7
33
|
(function (BehaviorOnMXFailure) {
|
|
8
34
|
BehaviorOnMXFailure["RejectMessage"] = "RejectMessage";
|
|
@@ -82,6 +108,19 @@ export var BulkEmailDestinationStatus;
|
|
|
82
108
|
(function (BulkEmailDestinationStatus) {
|
|
83
109
|
BulkEmailDestinationStatus.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
84
110
|
})(BulkEmailDestinationStatus || (BulkEmailDestinationStatus = {}));
|
|
111
|
+
var CannotDeleteException = (function (_super) {
|
|
112
|
+
__extends(CannotDeleteException, _super);
|
|
113
|
+
function CannotDeleteException(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "CannotDeleteException", $fault: "client" }, opts)) || this;
|
|
115
|
+
_this.name = "CannotDeleteException";
|
|
116
|
+
_this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(_this, CannotDeleteException.prototype);
|
|
118
|
+
_this.Name = opts.Name;
|
|
119
|
+
return _this;
|
|
120
|
+
}
|
|
121
|
+
return CannotDeleteException;
|
|
122
|
+
}(__BaseException));
|
|
123
|
+
export { CannotDeleteException };
|
|
85
124
|
export var CloneReceiptRuleSetRequest;
|
|
86
125
|
(function (CloneReceiptRuleSetRequest) {
|
|
87
126
|
CloneReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -90,6 +129,31 @@ export var CloneReceiptRuleSetResponse;
|
|
|
90
129
|
(function (CloneReceiptRuleSetResponse) {
|
|
91
130
|
CloneReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
131
|
})(CloneReceiptRuleSetResponse || (CloneReceiptRuleSetResponse = {}));
|
|
132
|
+
var LimitExceededException = (function (_super) {
|
|
133
|
+
__extends(LimitExceededException, _super);
|
|
134
|
+
function LimitExceededException(opts) {
|
|
135
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
136
|
+
_this.name = "LimitExceededException";
|
|
137
|
+
_this.$fault = "client";
|
|
138
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
139
|
+
return _this;
|
|
140
|
+
}
|
|
141
|
+
return LimitExceededException;
|
|
142
|
+
}(__BaseException));
|
|
143
|
+
export { LimitExceededException };
|
|
144
|
+
var RuleSetDoesNotExistException = (function (_super) {
|
|
145
|
+
__extends(RuleSetDoesNotExistException, _super);
|
|
146
|
+
function RuleSetDoesNotExistException(opts) {
|
|
147
|
+
var _this = _super.call(this, __assign({ name: "RuleSetDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
148
|
+
_this.name = "RuleSetDoesNotExistException";
|
|
149
|
+
_this.$fault = "client";
|
|
150
|
+
Object.setPrototypeOf(_this, RuleSetDoesNotExistException.prototype);
|
|
151
|
+
_this.Name = opts.Name;
|
|
152
|
+
return _this;
|
|
153
|
+
}
|
|
154
|
+
return RuleSetDoesNotExistException;
|
|
155
|
+
}(__BaseException));
|
|
156
|
+
export { RuleSetDoesNotExistException };
|
|
93
157
|
export var DimensionValueSource;
|
|
94
158
|
(function (DimensionValueSource) {
|
|
95
159
|
DimensionValueSource["EMAIL_HEADER"] = "emailHeader";
|
|
@@ -108,6 +172,19 @@ export var ConfigurationSet;
|
|
|
108
172
|
(function (ConfigurationSet) {
|
|
109
173
|
ConfigurationSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
174
|
})(ConfigurationSet || (ConfigurationSet = {}));
|
|
175
|
+
var ConfigurationSetAlreadyExistsException = (function (_super) {
|
|
176
|
+
__extends(ConfigurationSetAlreadyExistsException, _super);
|
|
177
|
+
function ConfigurationSetAlreadyExistsException(opts) {
|
|
178
|
+
var _this = _super.call(this, __assign({ name: "ConfigurationSetAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
179
|
+
_this.name = "ConfigurationSetAlreadyExistsException";
|
|
180
|
+
_this.$fault = "client";
|
|
181
|
+
Object.setPrototypeOf(_this, ConfigurationSetAlreadyExistsException.prototype);
|
|
182
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
183
|
+
return _this;
|
|
184
|
+
}
|
|
185
|
+
return ConfigurationSetAlreadyExistsException;
|
|
186
|
+
}(__BaseException));
|
|
187
|
+
export { ConfigurationSetAlreadyExistsException };
|
|
111
188
|
export var ConfigurationSetAttribute;
|
|
112
189
|
(function (ConfigurationSetAttribute) {
|
|
113
190
|
ConfigurationSetAttribute["DELIVERY_OPTIONS"] = "deliveryOptions";
|
|
@@ -115,6 +192,32 @@ export var ConfigurationSetAttribute;
|
|
|
115
192
|
ConfigurationSetAttribute["REPUTATION_OPTIONS"] = "reputationOptions";
|
|
116
193
|
ConfigurationSetAttribute["TRACKING_OPTIONS"] = "trackingOptions";
|
|
117
194
|
})(ConfigurationSetAttribute || (ConfigurationSetAttribute = {}));
|
|
195
|
+
var ConfigurationSetDoesNotExistException = (function (_super) {
|
|
196
|
+
__extends(ConfigurationSetDoesNotExistException, _super);
|
|
197
|
+
function ConfigurationSetDoesNotExistException(opts) {
|
|
198
|
+
var _this = _super.call(this, __assign({ name: "ConfigurationSetDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
199
|
+
_this.name = "ConfigurationSetDoesNotExistException";
|
|
200
|
+
_this.$fault = "client";
|
|
201
|
+
Object.setPrototypeOf(_this, ConfigurationSetDoesNotExistException.prototype);
|
|
202
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
203
|
+
return _this;
|
|
204
|
+
}
|
|
205
|
+
return ConfigurationSetDoesNotExistException;
|
|
206
|
+
}(__BaseException));
|
|
207
|
+
export { ConfigurationSetDoesNotExistException };
|
|
208
|
+
var ConfigurationSetSendingPausedException = (function (_super) {
|
|
209
|
+
__extends(ConfigurationSetSendingPausedException, _super);
|
|
210
|
+
function ConfigurationSetSendingPausedException(opts) {
|
|
211
|
+
var _this = _super.call(this, __assign({ name: "ConfigurationSetSendingPausedException", $fault: "client" }, opts)) || this;
|
|
212
|
+
_this.name = "ConfigurationSetSendingPausedException";
|
|
213
|
+
_this.$fault = "client";
|
|
214
|
+
Object.setPrototypeOf(_this, ConfigurationSetSendingPausedException.prototype);
|
|
215
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
216
|
+
return _this;
|
|
217
|
+
}
|
|
218
|
+
return ConfigurationSetSendingPausedException;
|
|
219
|
+
}(__BaseException));
|
|
220
|
+
export { ConfigurationSetSendingPausedException };
|
|
118
221
|
export var CreateConfigurationSetRequest;
|
|
119
222
|
(function (CreateConfigurationSetRequest) {
|
|
120
223
|
CreateConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -123,6 +226,18 @@ export var CreateConfigurationSetResponse;
|
|
|
123
226
|
(function (CreateConfigurationSetResponse) {
|
|
124
227
|
CreateConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
228
|
})(CreateConfigurationSetResponse || (CreateConfigurationSetResponse = {}));
|
|
229
|
+
var InvalidConfigurationSetException = (function (_super) {
|
|
230
|
+
__extends(InvalidConfigurationSetException, _super);
|
|
231
|
+
function InvalidConfigurationSetException(opts) {
|
|
232
|
+
var _this = _super.call(this, __assign({ name: "InvalidConfigurationSetException", $fault: "client" }, opts)) || this;
|
|
233
|
+
_this.name = "InvalidConfigurationSetException";
|
|
234
|
+
_this.$fault = "client";
|
|
235
|
+
Object.setPrototypeOf(_this, InvalidConfigurationSetException.prototype);
|
|
236
|
+
return _this;
|
|
237
|
+
}
|
|
238
|
+
return InvalidConfigurationSetException;
|
|
239
|
+
}(__BaseException));
|
|
240
|
+
export { InvalidConfigurationSetException };
|
|
126
241
|
export var KinesisFirehoseDestination;
|
|
127
242
|
(function (KinesisFirehoseDestination) {
|
|
128
243
|
KinesisFirehoseDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -154,6 +269,62 @@ export var CreateConfigurationSetEventDestinationResponse;
|
|
|
154
269
|
(function (CreateConfigurationSetEventDestinationResponse) {
|
|
155
270
|
CreateConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
271
|
})(CreateConfigurationSetEventDestinationResponse || (CreateConfigurationSetEventDestinationResponse = {}));
|
|
272
|
+
var EventDestinationAlreadyExistsException = (function (_super) {
|
|
273
|
+
__extends(EventDestinationAlreadyExistsException, _super);
|
|
274
|
+
function EventDestinationAlreadyExistsException(opts) {
|
|
275
|
+
var _this = _super.call(this, __assign({ name: "EventDestinationAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
276
|
+
_this.name = "EventDestinationAlreadyExistsException";
|
|
277
|
+
_this.$fault = "client";
|
|
278
|
+
Object.setPrototypeOf(_this, EventDestinationAlreadyExistsException.prototype);
|
|
279
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
280
|
+
_this.EventDestinationName = opts.EventDestinationName;
|
|
281
|
+
return _this;
|
|
282
|
+
}
|
|
283
|
+
return EventDestinationAlreadyExistsException;
|
|
284
|
+
}(__BaseException));
|
|
285
|
+
export { EventDestinationAlreadyExistsException };
|
|
286
|
+
var InvalidCloudWatchDestinationException = (function (_super) {
|
|
287
|
+
__extends(InvalidCloudWatchDestinationException, _super);
|
|
288
|
+
function InvalidCloudWatchDestinationException(opts) {
|
|
289
|
+
var _this = _super.call(this, __assign({ name: "InvalidCloudWatchDestinationException", $fault: "client" }, opts)) || this;
|
|
290
|
+
_this.name = "InvalidCloudWatchDestinationException";
|
|
291
|
+
_this.$fault = "client";
|
|
292
|
+
Object.setPrototypeOf(_this, InvalidCloudWatchDestinationException.prototype);
|
|
293
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
294
|
+
_this.EventDestinationName = opts.EventDestinationName;
|
|
295
|
+
return _this;
|
|
296
|
+
}
|
|
297
|
+
return InvalidCloudWatchDestinationException;
|
|
298
|
+
}(__BaseException));
|
|
299
|
+
export { InvalidCloudWatchDestinationException };
|
|
300
|
+
var InvalidFirehoseDestinationException = (function (_super) {
|
|
301
|
+
__extends(InvalidFirehoseDestinationException, _super);
|
|
302
|
+
function InvalidFirehoseDestinationException(opts) {
|
|
303
|
+
var _this = _super.call(this, __assign({ name: "InvalidFirehoseDestinationException", $fault: "client" }, opts)) || this;
|
|
304
|
+
_this.name = "InvalidFirehoseDestinationException";
|
|
305
|
+
_this.$fault = "client";
|
|
306
|
+
Object.setPrototypeOf(_this, InvalidFirehoseDestinationException.prototype);
|
|
307
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
308
|
+
_this.EventDestinationName = opts.EventDestinationName;
|
|
309
|
+
return _this;
|
|
310
|
+
}
|
|
311
|
+
return InvalidFirehoseDestinationException;
|
|
312
|
+
}(__BaseException));
|
|
313
|
+
export { InvalidFirehoseDestinationException };
|
|
314
|
+
var InvalidSNSDestinationException = (function (_super) {
|
|
315
|
+
__extends(InvalidSNSDestinationException, _super);
|
|
316
|
+
function InvalidSNSDestinationException(opts) {
|
|
317
|
+
var _this = _super.call(this, __assign({ name: "InvalidSNSDestinationException", $fault: "client" }, opts)) || this;
|
|
318
|
+
_this.name = "InvalidSNSDestinationException";
|
|
319
|
+
_this.$fault = "client";
|
|
320
|
+
Object.setPrototypeOf(_this, InvalidSNSDestinationException.prototype);
|
|
321
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
322
|
+
_this.EventDestinationName = opts.EventDestinationName;
|
|
323
|
+
return _this;
|
|
324
|
+
}
|
|
325
|
+
return InvalidSNSDestinationException;
|
|
326
|
+
}(__BaseException));
|
|
327
|
+
export { InvalidSNSDestinationException };
|
|
157
328
|
export var TrackingOptions;
|
|
158
329
|
(function (TrackingOptions) {
|
|
159
330
|
TrackingOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -166,10 +337,73 @@ export var CreateConfigurationSetTrackingOptionsResponse;
|
|
|
166
337
|
(function (CreateConfigurationSetTrackingOptionsResponse) {
|
|
167
338
|
CreateConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
168
339
|
})(CreateConfigurationSetTrackingOptionsResponse || (CreateConfigurationSetTrackingOptionsResponse = {}));
|
|
340
|
+
var InvalidTrackingOptionsException = (function (_super) {
|
|
341
|
+
__extends(InvalidTrackingOptionsException, _super);
|
|
342
|
+
function InvalidTrackingOptionsException(opts) {
|
|
343
|
+
var _this = _super.call(this, __assign({ name: "InvalidTrackingOptionsException", $fault: "client" }, opts)) || this;
|
|
344
|
+
_this.name = "InvalidTrackingOptionsException";
|
|
345
|
+
_this.$fault = "client";
|
|
346
|
+
Object.setPrototypeOf(_this, InvalidTrackingOptionsException.prototype);
|
|
347
|
+
return _this;
|
|
348
|
+
}
|
|
349
|
+
return InvalidTrackingOptionsException;
|
|
350
|
+
}(__BaseException));
|
|
351
|
+
export { InvalidTrackingOptionsException };
|
|
352
|
+
var TrackingOptionsAlreadyExistsException = (function (_super) {
|
|
353
|
+
__extends(TrackingOptionsAlreadyExistsException, _super);
|
|
354
|
+
function TrackingOptionsAlreadyExistsException(opts) {
|
|
355
|
+
var _this = _super.call(this, __assign({ name: "TrackingOptionsAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
356
|
+
_this.name = "TrackingOptionsAlreadyExistsException";
|
|
357
|
+
_this.$fault = "client";
|
|
358
|
+
Object.setPrototypeOf(_this, TrackingOptionsAlreadyExistsException.prototype);
|
|
359
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
360
|
+
return _this;
|
|
361
|
+
}
|
|
362
|
+
return TrackingOptionsAlreadyExistsException;
|
|
363
|
+
}(__BaseException));
|
|
364
|
+
export { TrackingOptionsAlreadyExistsException };
|
|
169
365
|
export var CreateCustomVerificationEmailTemplateRequest;
|
|
170
366
|
(function (CreateCustomVerificationEmailTemplateRequest) {
|
|
171
367
|
CreateCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
368
|
})(CreateCustomVerificationEmailTemplateRequest || (CreateCustomVerificationEmailTemplateRequest = {}));
|
|
369
|
+
var CustomVerificationEmailInvalidContentException = (function (_super) {
|
|
370
|
+
__extends(CustomVerificationEmailInvalidContentException, _super);
|
|
371
|
+
function CustomVerificationEmailInvalidContentException(opts) {
|
|
372
|
+
var _this = _super.call(this, __assign({ name: "CustomVerificationEmailInvalidContentException", $fault: "client" }, opts)) || this;
|
|
373
|
+
_this.name = "CustomVerificationEmailInvalidContentException";
|
|
374
|
+
_this.$fault = "client";
|
|
375
|
+
Object.setPrototypeOf(_this, CustomVerificationEmailInvalidContentException.prototype);
|
|
376
|
+
return _this;
|
|
377
|
+
}
|
|
378
|
+
return CustomVerificationEmailInvalidContentException;
|
|
379
|
+
}(__BaseException));
|
|
380
|
+
export { CustomVerificationEmailInvalidContentException };
|
|
381
|
+
var CustomVerificationEmailTemplateAlreadyExistsException = (function (_super) {
|
|
382
|
+
__extends(CustomVerificationEmailTemplateAlreadyExistsException, _super);
|
|
383
|
+
function CustomVerificationEmailTemplateAlreadyExistsException(opts) {
|
|
384
|
+
var _this = _super.call(this, __assign({ name: "CustomVerificationEmailTemplateAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
385
|
+
_this.name = "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
386
|
+
_this.$fault = "client";
|
|
387
|
+
Object.setPrototypeOf(_this, CustomVerificationEmailTemplateAlreadyExistsException.prototype);
|
|
388
|
+
_this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
389
|
+
return _this;
|
|
390
|
+
}
|
|
391
|
+
return CustomVerificationEmailTemplateAlreadyExistsException;
|
|
392
|
+
}(__BaseException));
|
|
393
|
+
export { CustomVerificationEmailTemplateAlreadyExistsException };
|
|
394
|
+
var FromEmailAddressNotVerifiedException = (function (_super) {
|
|
395
|
+
__extends(FromEmailAddressNotVerifiedException, _super);
|
|
396
|
+
function FromEmailAddressNotVerifiedException(opts) {
|
|
397
|
+
var _this = _super.call(this, __assign({ name: "FromEmailAddressNotVerifiedException", $fault: "client" }, opts)) || this;
|
|
398
|
+
_this.name = "FromEmailAddressNotVerifiedException";
|
|
399
|
+
_this.$fault = "client";
|
|
400
|
+
Object.setPrototypeOf(_this, FromEmailAddressNotVerifiedException.prototype);
|
|
401
|
+
_this.FromEmailAddress = opts.FromEmailAddress;
|
|
402
|
+
return _this;
|
|
403
|
+
}
|
|
404
|
+
return FromEmailAddressNotVerifiedException;
|
|
405
|
+
}(__BaseException));
|
|
406
|
+
export { FromEmailAddressNotVerifiedException };
|
|
173
407
|
export var ReceiptFilterPolicy;
|
|
174
408
|
(function (ReceiptFilterPolicy) {
|
|
175
409
|
ReceiptFilterPolicy["Allow"] = "Allow";
|
|
@@ -241,6 +475,58 @@ export var CreateReceiptRuleResponse;
|
|
|
241
475
|
(function (CreateReceiptRuleResponse) {
|
|
242
476
|
CreateReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
477
|
})(CreateReceiptRuleResponse || (CreateReceiptRuleResponse = {}));
|
|
478
|
+
var InvalidLambdaFunctionException = (function (_super) {
|
|
479
|
+
__extends(InvalidLambdaFunctionException, _super);
|
|
480
|
+
function InvalidLambdaFunctionException(opts) {
|
|
481
|
+
var _this = _super.call(this, __assign({ name: "InvalidLambdaFunctionException", $fault: "client" }, opts)) || this;
|
|
482
|
+
_this.name = "InvalidLambdaFunctionException";
|
|
483
|
+
_this.$fault = "client";
|
|
484
|
+
Object.setPrototypeOf(_this, InvalidLambdaFunctionException.prototype);
|
|
485
|
+
_this.FunctionArn = opts.FunctionArn;
|
|
486
|
+
return _this;
|
|
487
|
+
}
|
|
488
|
+
return InvalidLambdaFunctionException;
|
|
489
|
+
}(__BaseException));
|
|
490
|
+
export { InvalidLambdaFunctionException };
|
|
491
|
+
var InvalidS3ConfigurationException = (function (_super) {
|
|
492
|
+
__extends(InvalidS3ConfigurationException, _super);
|
|
493
|
+
function InvalidS3ConfigurationException(opts) {
|
|
494
|
+
var _this = _super.call(this, __assign({ name: "InvalidS3ConfigurationException", $fault: "client" }, opts)) || this;
|
|
495
|
+
_this.name = "InvalidS3ConfigurationException";
|
|
496
|
+
_this.$fault = "client";
|
|
497
|
+
Object.setPrototypeOf(_this, InvalidS3ConfigurationException.prototype);
|
|
498
|
+
_this.Bucket = opts.Bucket;
|
|
499
|
+
return _this;
|
|
500
|
+
}
|
|
501
|
+
return InvalidS3ConfigurationException;
|
|
502
|
+
}(__BaseException));
|
|
503
|
+
export { InvalidS3ConfigurationException };
|
|
504
|
+
var InvalidSnsTopicException = (function (_super) {
|
|
505
|
+
__extends(InvalidSnsTopicException, _super);
|
|
506
|
+
function InvalidSnsTopicException(opts) {
|
|
507
|
+
var _this = _super.call(this, __assign({ name: "InvalidSnsTopicException", $fault: "client" }, opts)) || this;
|
|
508
|
+
_this.name = "InvalidSnsTopicException";
|
|
509
|
+
_this.$fault = "client";
|
|
510
|
+
Object.setPrototypeOf(_this, InvalidSnsTopicException.prototype);
|
|
511
|
+
_this.Topic = opts.Topic;
|
|
512
|
+
return _this;
|
|
513
|
+
}
|
|
514
|
+
return InvalidSnsTopicException;
|
|
515
|
+
}(__BaseException));
|
|
516
|
+
export { InvalidSnsTopicException };
|
|
517
|
+
var RuleDoesNotExistException = (function (_super) {
|
|
518
|
+
__extends(RuleDoesNotExistException, _super);
|
|
519
|
+
function RuleDoesNotExistException(opts) {
|
|
520
|
+
var _this = _super.call(this, __assign({ name: "RuleDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
521
|
+
_this.name = "RuleDoesNotExistException";
|
|
522
|
+
_this.$fault = "client";
|
|
523
|
+
Object.setPrototypeOf(_this, RuleDoesNotExistException.prototype);
|
|
524
|
+
_this.Name = opts.Name;
|
|
525
|
+
return _this;
|
|
526
|
+
}
|
|
527
|
+
return RuleDoesNotExistException;
|
|
528
|
+
}(__BaseException));
|
|
529
|
+
export { RuleDoesNotExistException };
|
|
244
530
|
export var CreateReceiptRuleSetRequest;
|
|
245
531
|
(function (CreateReceiptRuleSetRequest) {
|
|
246
532
|
CreateReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -261,6 +547,19 @@ export var CreateTemplateResponse;
|
|
|
261
547
|
(function (CreateTemplateResponse) {
|
|
262
548
|
CreateTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
549
|
})(CreateTemplateResponse || (CreateTemplateResponse = {}));
|
|
550
|
+
var InvalidTemplateException = (function (_super) {
|
|
551
|
+
__extends(InvalidTemplateException, _super);
|
|
552
|
+
function InvalidTemplateException(opts) {
|
|
553
|
+
var _this = _super.call(this, __assign({ name: "InvalidTemplateException", $fault: "client" }, opts)) || this;
|
|
554
|
+
_this.name = "InvalidTemplateException";
|
|
555
|
+
_this.$fault = "client";
|
|
556
|
+
Object.setPrototypeOf(_this, InvalidTemplateException.prototype);
|
|
557
|
+
_this.TemplateName = opts.TemplateName;
|
|
558
|
+
return _this;
|
|
559
|
+
}
|
|
560
|
+
return InvalidTemplateException;
|
|
561
|
+
}(__BaseException));
|
|
562
|
+
export { InvalidTemplateException };
|
|
264
563
|
export var CustomMailFromStatus;
|
|
265
564
|
(function (CustomMailFromStatus) {
|
|
266
565
|
CustomMailFromStatus["Failed"] = "Failed";
|
|
@@ -272,6 +571,19 @@ export var CustomVerificationEmailTemplate;
|
|
|
272
571
|
(function (CustomVerificationEmailTemplate) {
|
|
273
572
|
CustomVerificationEmailTemplate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
573
|
})(CustomVerificationEmailTemplate || (CustomVerificationEmailTemplate = {}));
|
|
574
|
+
var CustomVerificationEmailTemplateDoesNotExistException = (function (_super) {
|
|
575
|
+
__extends(CustomVerificationEmailTemplateDoesNotExistException, _super);
|
|
576
|
+
function CustomVerificationEmailTemplateDoesNotExistException(opts) {
|
|
577
|
+
var _this = _super.call(this, __assign({ name: "CustomVerificationEmailTemplateDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
578
|
+
_this.name = "CustomVerificationEmailTemplateDoesNotExistException";
|
|
579
|
+
_this.$fault = "client";
|
|
580
|
+
Object.setPrototypeOf(_this, CustomVerificationEmailTemplateDoesNotExistException.prototype);
|
|
581
|
+
_this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
582
|
+
return _this;
|
|
583
|
+
}
|
|
584
|
+
return CustomVerificationEmailTemplateDoesNotExistException;
|
|
585
|
+
}(__BaseException));
|
|
586
|
+
export { CustomVerificationEmailTemplateDoesNotExistException };
|
|
275
587
|
export var DeleteConfigurationSetRequest;
|
|
276
588
|
(function (DeleteConfigurationSetRequest) {
|
|
277
589
|
DeleteConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -288,6 +600,20 @@ export var DeleteConfigurationSetEventDestinationResponse;
|
|
|
288
600
|
(function (DeleteConfigurationSetEventDestinationResponse) {
|
|
289
601
|
DeleteConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
602
|
})(DeleteConfigurationSetEventDestinationResponse || (DeleteConfigurationSetEventDestinationResponse = {}));
|
|
603
|
+
var EventDestinationDoesNotExistException = (function (_super) {
|
|
604
|
+
__extends(EventDestinationDoesNotExistException, _super);
|
|
605
|
+
function EventDestinationDoesNotExistException(opts) {
|
|
606
|
+
var _this = _super.call(this, __assign({ name: "EventDestinationDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
607
|
+
_this.name = "EventDestinationDoesNotExistException";
|
|
608
|
+
_this.$fault = "client";
|
|
609
|
+
Object.setPrototypeOf(_this, EventDestinationDoesNotExistException.prototype);
|
|
610
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
611
|
+
_this.EventDestinationName = opts.EventDestinationName;
|
|
612
|
+
return _this;
|
|
613
|
+
}
|
|
614
|
+
return EventDestinationDoesNotExistException;
|
|
615
|
+
}(__BaseException));
|
|
616
|
+
export { EventDestinationDoesNotExistException };
|
|
291
617
|
export var DeleteConfigurationSetTrackingOptionsRequest;
|
|
292
618
|
(function (DeleteConfigurationSetTrackingOptionsRequest) {
|
|
293
619
|
DeleteConfigurationSetTrackingOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -296,6 +622,19 @@ export var DeleteConfigurationSetTrackingOptionsResponse;
|
|
|
296
622
|
(function (DeleteConfigurationSetTrackingOptionsResponse) {
|
|
297
623
|
DeleteConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
624
|
})(DeleteConfigurationSetTrackingOptionsResponse || (DeleteConfigurationSetTrackingOptionsResponse = {}));
|
|
625
|
+
var TrackingOptionsDoesNotExistException = (function (_super) {
|
|
626
|
+
__extends(TrackingOptionsDoesNotExistException, _super);
|
|
627
|
+
function TrackingOptionsDoesNotExistException(opts) {
|
|
628
|
+
var _this = _super.call(this, __assign({ name: "TrackingOptionsDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
629
|
+
_this.name = "TrackingOptionsDoesNotExistException";
|
|
630
|
+
_this.$fault = "client";
|
|
631
|
+
Object.setPrototypeOf(_this, TrackingOptionsDoesNotExistException.prototype);
|
|
632
|
+
_this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
633
|
+
return _this;
|
|
634
|
+
}
|
|
635
|
+
return TrackingOptionsDoesNotExistException;
|
|
636
|
+
}(__BaseException));
|
|
637
|
+
export { TrackingOptionsDoesNotExistException };
|
|
299
638
|
export var DeleteCustomVerificationEmailTemplateRequest;
|
|
300
639
|
(function (DeleteCustomVerificationEmailTemplateRequest) {
|
|
301
640
|
DeleteCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -484,6 +823,56 @@ export var GetTemplateResponse;
|
|
|
484
823
|
(function (GetTemplateResponse) {
|
|
485
824
|
GetTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
486
825
|
})(GetTemplateResponse || (GetTemplateResponse = {}));
|
|
826
|
+
var TemplateDoesNotExistException = (function (_super) {
|
|
827
|
+
__extends(TemplateDoesNotExistException, _super);
|
|
828
|
+
function TemplateDoesNotExistException(opts) {
|
|
829
|
+
var _this = _super.call(this, __assign({ name: "TemplateDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
830
|
+
_this.name = "TemplateDoesNotExistException";
|
|
831
|
+
_this.$fault = "client";
|
|
832
|
+
Object.setPrototypeOf(_this, TemplateDoesNotExistException.prototype);
|
|
833
|
+
_this.TemplateName = opts.TemplateName;
|
|
834
|
+
return _this;
|
|
835
|
+
}
|
|
836
|
+
return TemplateDoesNotExistException;
|
|
837
|
+
}(__BaseException));
|
|
838
|
+
export { TemplateDoesNotExistException };
|
|
839
|
+
var InvalidDeliveryOptionsException = (function (_super) {
|
|
840
|
+
__extends(InvalidDeliveryOptionsException, _super);
|
|
841
|
+
function InvalidDeliveryOptionsException(opts) {
|
|
842
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeliveryOptionsException", $fault: "client" }, opts)) || this;
|
|
843
|
+
_this.name = "InvalidDeliveryOptionsException";
|
|
844
|
+
_this.$fault = "client";
|
|
845
|
+
Object.setPrototypeOf(_this, InvalidDeliveryOptionsException.prototype);
|
|
846
|
+
return _this;
|
|
847
|
+
}
|
|
848
|
+
return InvalidDeliveryOptionsException;
|
|
849
|
+
}(__BaseException));
|
|
850
|
+
export { InvalidDeliveryOptionsException };
|
|
851
|
+
var InvalidPolicyException = (function (_super) {
|
|
852
|
+
__extends(InvalidPolicyException, _super);
|
|
853
|
+
function InvalidPolicyException(opts) {
|
|
854
|
+
var _this = _super.call(this, __assign({ name: "InvalidPolicyException", $fault: "client" }, opts)) || this;
|
|
855
|
+
_this.name = "InvalidPolicyException";
|
|
856
|
+
_this.$fault = "client";
|
|
857
|
+
Object.setPrototypeOf(_this, InvalidPolicyException.prototype);
|
|
858
|
+
return _this;
|
|
859
|
+
}
|
|
860
|
+
return InvalidPolicyException;
|
|
861
|
+
}(__BaseException));
|
|
862
|
+
export { InvalidPolicyException };
|
|
863
|
+
var InvalidRenderingParameterException = (function (_super) {
|
|
864
|
+
__extends(InvalidRenderingParameterException, _super);
|
|
865
|
+
function InvalidRenderingParameterException(opts) {
|
|
866
|
+
var _this = _super.call(this, __assign({ name: "InvalidRenderingParameterException", $fault: "client" }, opts)) || this;
|
|
867
|
+
_this.name = "InvalidRenderingParameterException";
|
|
868
|
+
_this.$fault = "client";
|
|
869
|
+
Object.setPrototypeOf(_this, InvalidRenderingParameterException.prototype);
|
|
870
|
+
_this.TemplateName = opts.TemplateName;
|
|
871
|
+
return _this;
|
|
872
|
+
}
|
|
873
|
+
return InvalidRenderingParameterException;
|
|
874
|
+
}(__BaseException));
|
|
875
|
+
export { InvalidRenderingParameterException };
|
|
487
876
|
export var ListConfigurationSetsRequest;
|
|
488
877
|
(function (ListConfigurationSetsRequest) {
|
|
489
878
|
ListConfigurationSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -548,6 +937,18 @@ export var ListVerifiedEmailAddressesResponse;
|
|
|
548
937
|
(function (ListVerifiedEmailAddressesResponse) {
|
|
549
938
|
ListVerifiedEmailAddressesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
550
939
|
})(ListVerifiedEmailAddressesResponse || (ListVerifiedEmailAddressesResponse = {}));
|
|
940
|
+
var MailFromDomainNotVerifiedException = (function (_super) {
|
|
941
|
+
__extends(MailFromDomainNotVerifiedException, _super);
|
|
942
|
+
function MailFromDomainNotVerifiedException(opts) {
|
|
943
|
+
var _this = _super.call(this, __assign({ name: "MailFromDomainNotVerifiedException", $fault: "client" }, opts)) || this;
|
|
944
|
+
_this.name = "MailFromDomainNotVerifiedException";
|
|
945
|
+
_this.$fault = "client";
|
|
946
|
+
Object.setPrototypeOf(_this, MailFromDomainNotVerifiedException.prototype);
|
|
947
|
+
return _this;
|
|
948
|
+
}
|
|
949
|
+
return MailFromDomainNotVerifiedException;
|
|
950
|
+
}(__BaseException));
|
|
951
|
+
export { MailFromDomainNotVerifiedException };
|
|
551
952
|
export var Message;
|
|
552
953
|
(function (Message) {
|
|
553
954
|
Message.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -556,6 +957,43 @@ export var MessageDsn;
|
|
|
556
957
|
(function (MessageDsn) {
|
|
557
958
|
MessageDsn.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
558
959
|
})(MessageDsn || (MessageDsn = {}));
|
|
960
|
+
var MessageRejected = (function (_super) {
|
|
961
|
+
__extends(MessageRejected, _super);
|
|
962
|
+
function MessageRejected(opts) {
|
|
963
|
+
var _this = _super.call(this, __assign({ name: "MessageRejected", $fault: "client" }, opts)) || this;
|
|
964
|
+
_this.name = "MessageRejected";
|
|
965
|
+
_this.$fault = "client";
|
|
966
|
+
Object.setPrototypeOf(_this, MessageRejected.prototype);
|
|
967
|
+
return _this;
|
|
968
|
+
}
|
|
969
|
+
return MessageRejected;
|
|
970
|
+
}(__BaseException));
|
|
971
|
+
export { MessageRejected };
|
|
972
|
+
var MissingRenderingAttributeException = (function (_super) {
|
|
973
|
+
__extends(MissingRenderingAttributeException, _super);
|
|
974
|
+
function MissingRenderingAttributeException(opts) {
|
|
975
|
+
var _this = _super.call(this, __assign({ name: "MissingRenderingAttributeException", $fault: "client" }, opts)) || this;
|
|
976
|
+
_this.name = "MissingRenderingAttributeException";
|
|
977
|
+
_this.$fault = "client";
|
|
978
|
+
Object.setPrototypeOf(_this, MissingRenderingAttributeException.prototype);
|
|
979
|
+
_this.TemplateName = opts.TemplateName;
|
|
980
|
+
return _this;
|
|
981
|
+
}
|
|
982
|
+
return MissingRenderingAttributeException;
|
|
983
|
+
}(__BaseException));
|
|
984
|
+
export { MissingRenderingAttributeException };
|
|
985
|
+
var ProductionAccessNotGrantedException = (function (_super) {
|
|
986
|
+
__extends(ProductionAccessNotGrantedException, _super);
|
|
987
|
+
function ProductionAccessNotGrantedException(opts) {
|
|
988
|
+
var _this = _super.call(this, __assign({ name: "ProductionAccessNotGrantedException", $fault: "client" }, opts)) || this;
|
|
989
|
+
_this.name = "ProductionAccessNotGrantedException";
|
|
990
|
+
_this.$fault = "client";
|
|
991
|
+
Object.setPrototypeOf(_this, ProductionAccessNotGrantedException.prototype);
|
|
992
|
+
return _this;
|
|
993
|
+
}
|
|
994
|
+
return ProductionAccessNotGrantedException;
|
|
995
|
+
}(__BaseException));
|
|
996
|
+
export { ProductionAccessNotGrantedException };
|
|
559
997
|
export var PutConfigurationSetDeliveryOptionsRequest;
|
|
560
998
|
(function (PutConfigurationSetDeliveryOptionsRequest) {
|
|
561
999
|
PutConfigurationSetDeliveryOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|