@aws-sdk/client-ses 3.721.0 → 3.723.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/dist-cjs/index.js +668 -441
- package/dist-es/SESClient.js +1 -0
- package/dist-es/models/models_0.js +97 -68
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-es/SESClient.js
CHANGED
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class SESClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,25 +1,26 @@
|
|
|
1
1
|
import { SESServiceException as __BaseException } from "./SESServiceException";
|
|
2
2
|
export class AccountSendingPausedException extends __BaseException {
|
|
3
|
+
name = "AccountSendingPausedException";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "AccountSendingPausedException",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "AccountSendingPausedException";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, AccountSendingPausedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export class AlreadyExistsException extends __BaseException {
|
|
15
|
+
name = "AlreadyExistsException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
Name;
|
|
15
18
|
constructor(opts) {
|
|
16
19
|
super({
|
|
17
20
|
name: "AlreadyExistsException",
|
|
18
21
|
$fault: "client",
|
|
19
22
|
...opts,
|
|
20
23
|
});
|
|
21
|
-
this.name = "AlreadyExistsException";
|
|
22
|
-
this.$fault = "client";
|
|
23
24
|
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
24
25
|
this.Name = opts.Name;
|
|
25
26
|
}
|
|
@@ -60,39 +61,41 @@ export const BulkEmailStatus = {
|
|
|
60
61
|
TransientFailure: "TransientFailure",
|
|
61
62
|
};
|
|
62
63
|
export class CannotDeleteException extends __BaseException {
|
|
64
|
+
name = "CannotDeleteException";
|
|
65
|
+
$fault = "client";
|
|
66
|
+
Name;
|
|
63
67
|
constructor(opts) {
|
|
64
68
|
super({
|
|
65
69
|
name: "CannotDeleteException",
|
|
66
70
|
$fault: "client",
|
|
67
71
|
...opts,
|
|
68
72
|
});
|
|
69
|
-
this.name = "CannotDeleteException";
|
|
70
|
-
this.$fault = "client";
|
|
71
73
|
Object.setPrototypeOf(this, CannotDeleteException.prototype);
|
|
72
74
|
this.Name = opts.Name;
|
|
73
75
|
}
|
|
74
76
|
}
|
|
75
77
|
export class LimitExceededException extends __BaseException {
|
|
78
|
+
name = "LimitExceededException";
|
|
79
|
+
$fault = "client";
|
|
76
80
|
constructor(opts) {
|
|
77
81
|
super({
|
|
78
82
|
name: "LimitExceededException",
|
|
79
83
|
$fault: "client",
|
|
80
84
|
...opts,
|
|
81
85
|
});
|
|
82
|
-
this.name = "LimitExceededException";
|
|
83
|
-
this.$fault = "client";
|
|
84
86
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
85
87
|
}
|
|
86
88
|
}
|
|
87
89
|
export class RuleSetDoesNotExistException extends __BaseException {
|
|
90
|
+
name = "RuleSetDoesNotExistException";
|
|
91
|
+
$fault = "client";
|
|
92
|
+
Name;
|
|
88
93
|
constructor(opts) {
|
|
89
94
|
super({
|
|
90
95
|
name: "RuleSetDoesNotExistException",
|
|
91
96
|
$fault: "client",
|
|
92
97
|
...opts,
|
|
93
98
|
});
|
|
94
|
-
this.name = "RuleSetDoesNotExistException";
|
|
95
|
-
this.$fault = "client";
|
|
96
99
|
Object.setPrototypeOf(this, RuleSetDoesNotExistException.prototype);
|
|
97
100
|
this.Name = opts.Name;
|
|
98
101
|
}
|
|
@@ -103,14 +106,15 @@ export const DimensionValueSource = {
|
|
|
103
106
|
MESSAGE_TAG: "messageTag",
|
|
104
107
|
};
|
|
105
108
|
export class ConfigurationSetAlreadyExistsException extends __BaseException {
|
|
109
|
+
name = "ConfigurationSetAlreadyExistsException";
|
|
110
|
+
$fault = "client";
|
|
111
|
+
ConfigurationSetName;
|
|
106
112
|
constructor(opts) {
|
|
107
113
|
super({
|
|
108
114
|
name: "ConfigurationSetAlreadyExistsException",
|
|
109
115
|
$fault: "client",
|
|
110
116
|
...opts,
|
|
111
117
|
});
|
|
112
|
-
this.name = "ConfigurationSetAlreadyExistsException";
|
|
113
|
-
this.$fault = "client";
|
|
114
118
|
Object.setPrototypeOf(this, ConfigurationSetAlreadyExistsException.prototype);
|
|
115
119
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
116
120
|
}
|
|
@@ -122,40 +126,42 @@ export const ConfigurationSetAttribute = {
|
|
|
122
126
|
TRACKING_OPTIONS: "trackingOptions",
|
|
123
127
|
};
|
|
124
128
|
export class ConfigurationSetDoesNotExistException extends __BaseException {
|
|
129
|
+
name = "ConfigurationSetDoesNotExistException";
|
|
130
|
+
$fault = "client";
|
|
131
|
+
ConfigurationSetName;
|
|
125
132
|
constructor(opts) {
|
|
126
133
|
super({
|
|
127
134
|
name: "ConfigurationSetDoesNotExistException",
|
|
128
135
|
$fault: "client",
|
|
129
136
|
...opts,
|
|
130
137
|
});
|
|
131
|
-
this.name = "ConfigurationSetDoesNotExistException";
|
|
132
|
-
this.$fault = "client";
|
|
133
138
|
Object.setPrototypeOf(this, ConfigurationSetDoesNotExistException.prototype);
|
|
134
139
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
135
140
|
}
|
|
136
141
|
}
|
|
137
142
|
export class ConfigurationSetSendingPausedException extends __BaseException {
|
|
143
|
+
name = "ConfigurationSetSendingPausedException";
|
|
144
|
+
$fault = "client";
|
|
145
|
+
ConfigurationSetName;
|
|
138
146
|
constructor(opts) {
|
|
139
147
|
super({
|
|
140
148
|
name: "ConfigurationSetSendingPausedException",
|
|
141
149
|
$fault: "client",
|
|
142
150
|
...opts,
|
|
143
151
|
});
|
|
144
|
-
this.name = "ConfigurationSetSendingPausedException";
|
|
145
|
-
this.$fault = "client";
|
|
146
152
|
Object.setPrototypeOf(this, ConfigurationSetSendingPausedException.prototype);
|
|
147
153
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
148
154
|
}
|
|
149
155
|
}
|
|
150
156
|
export class InvalidConfigurationSetException extends __BaseException {
|
|
157
|
+
name = "InvalidConfigurationSetException";
|
|
158
|
+
$fault = "client";
|
|
151
159
|
constructor(opts) {
|
|
152
160
|
super({
|
|
153
161
|
name: "InvalidConfigurationSetException",
|
|
154
162
|
$fault: "client",
|
|
155
163
|
...opts,
|
|
156
164
|
});
|
|
157
|
-
this.name = "InvalidConfigurationSetException";
|
|
158
|
-
this.$fault = "client";
|
|
159
165
|
Object.setPrototypeOf(this, InvalidConfigurationSetException.prototype);
|
|
160
166
|
}
|
|
161
167
|
}
|
|
@@ -170,120 +176,131 @@ export const EventType = {
|
|
|
170
176
|
SEND: "send",
|
|
171
177
|
};
|
|
172
178
|
export class EventDestinationAlreadyExistsException extends __BaseException {
|
|
179
|
+
name = "EventDestinationAlreadyExistsException";
|
|
180
|
+
$fault = "client";
|
|
181
|
+
ConfigurationSetName;
|
|
182
|
+
EventDestinationName;
|
|
173
183
|
constructor(opts) {
|
|
174
184
|
super({
|
|
175
185
|
name: "EventDestinationAlreadyExistsException",
|
|
176
186
|
$fault: "client",
|
|
177
187
|
...opts,
|
|
178
188
|
});
|
|
179
|
-
this.name = "EventDestinationAlreadyExistsException";
|
|
180
|
-
this.$fault = "client";
|
|
181
189
|
Object.setPrototypeOf(this, EventDestinationAlreadyExistsException.prototype);
|
|
182
190
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
183
191
|
this.EventDestinationName = opts.EventDestinationName;
|
|
184
192
|
}
|
|
185
193
|
}
|
|
186
194
|
export class InvalidCloudWatchDestinationException extends __BaseException {
|
|
195
|
+
name = "InvalidCloudWatchDestinationException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
ConfigurationSetName;
|
|
198
|
+
EventDestinationName;
|
|
187
199
|
constructor(opts) {
|
|
188
200
|
super({
|
|
189
201
|
name: "InvalidCloudWatchDestinationException",
|
|
190
202
|
$fault: "client",
|
|
191
203
|
...opts,
|
|
192
204
|
});
|
|
193
|
-
this.name = "InvalidCloudWatchDestinationException";
|
|
194
|
-
this.$fault = "client";
|
|
195
205
|
Object.setPrototypeOf(this, InvalidCloudWatchDestinationException.prototype);
|
|
196
206
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
197
207
|
this.EventDestinationName = opts.EventDestinationName;
|
|
198
208
|
}
|
|
199
209
|
}
|
|
200
210
|
export class InvalidFirehoseDestinationException extends __BaseException {
|
|
211
|
+
name = "InvalidFirehoseDestinationException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
ConfigurationSetName;
|
|
214
|
+
EventDestinationName;
|
|
201
215
|
constructor(opts) {
|
|
202
216
|
super({
|
|
203
217
|
name: "InvalidFirehoseDestinationException",
|
|
204
218
|
$fault: "client",
|
|
205
219
|
...opts,
|
|
206
220
|
});
|
|
207
|
-
this.name = "InvalidFirehoseDestinationException";
|
|
208
|
-
this.$fault = "client";
|
|
209
221
|
Object.setPrototypeOf(this, InvalidFirehoseDestinationException.prototype);
|
|
210
222
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
211
223
|
this.EventDestinationName = opts.EventDestinationName;
|
|
212
224
|
}
|
|
213
225
|
}
|
|
214
226
|
export class InvalidSNSDestinationException extends __BaseException {
|
|
227
|
+
name = "InvalidSNSDestinationException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
ConfigurationSetName;
|
|
230
|
+
EventDestinationName;
|
|
215
231
|
constructor(opts) {
|
|
216
232
|
super({
|
|
217
233
|
name: "InvalidSNSDestinationException",
|
|
218
234
|
$fault: "client",
|
|
219
235
|
...opts,
|
|
220
236
|
});
|
|
221
|
-
this.name = "InvalidSNSDestinationException";
|
|
222
|
-
this.$fault = "client";
|
|
223
237
|
Object.setPrototypeOf(this, InvalidSNSDestinationException.prototype);
|
|
224
238
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
225
239
|
this.EventDestinationName = opts.EventDestinationName;
|
|
226
240
|
}
|
|
227
241
|
}
|
|
228
242
|
export class InvalidTrackingOptionsException extends __BaseException {
|
|
243
|
+
name = "InvalidTrackingOptionsException";
|
|
244
|
+
$fault = "client";
|
|
229
245
|
constructor(opts) {
|
|
230
246
|
super({
|
|
231
247
|
name: "InvalidTrackingOptionsException",
|
|
232
248
|
$fault: "client",
|
|
233
249
|
...opts,
|
|
234
250
|
});
|
|
235
|
-
this.name = "InvalidTrackingOptionsException";
|
|
236
|
-
this.$fault = "client";
|
|
237
251
|
Object.setPrototypeOf(this, InvalidTrackingOptionsException.prototype);
|
|
238
252
|
}
|
|
239
253
|
}
|
|
240
254
|
export class TrackingOptionsAlreadyExistsException extends __BaseException {
|
|
255
|
+
name = "TrackingOptionsAlreadyExistsException";
|
|
256
|
+
$fault = "client";
|
|
257
|
+
ConfigurationSetName;
|
|
241
258
|
constructor(opts) {
|
|
242
259
|
super({
|
|
243
260
|
name: "TrackingOptionsAlreadyExistsException",
|
|
244
261
|
$fault: "client",
|
|
245
262
|
...opts,
|
|
246
263
|
});
|
|
247
|
-
this.name = "TrackingOptionsAlreadyExistsException";
|
|
248
|
-
this.$fault = "client";
|
|
249
264
|
Object.setPrototypeOf(this, TrackingOptionsAlreadyExistsException.prototype);
|
|
250
265
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
251
266
|
}
|
|
252
267
|
}
|
|
253
268
|
export class CustomVerificationEmailInvalidContentException extends __BaseException {
|
|
269
|
+
name = "CustomVerificationEmailInvalidContentException";
|
|
270
|
+
$fault = "client";
|
|
254
271
|
constructor(opts) {
|
|
255
272
|
super({
|
|
256
273
|
name: "CustomVerificationEmailInvalidContentException",
|
|
257
274
|
$fault: "client",
|
|
258
275
|
...opts,
|
|
259
276
|
});
|
|
260
|
-
this.name = "CustomVerificationEmailInvalidContentException";
|
|
261
|
-
this.$fault = "client";
|
|
262
277
|
Object.setPrototypeOf(this, CustomVerificationEmailInvalidContentException.prototype);
|
|
263
278
|
}
|
|
264
279
|
}
|
|
265
280
|
export class CustomVerificationEmailTemplateAlreadyExistsException extends __BaseException {
|
|
281
|
+
name = "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
282
|
+
$fault = "client";
|
|
283
|
+
CustomVerificationEmailTemplateName;
|
|
266
284
|
constructor(opts) {
|
|
267
285
|
super({
|
|
268
286
|
name: "CustomVerificationEmailTemplateAlreadyExistsException",
|
|
269
287
|
$fault: "client",
|
|
270
288
|
...opts,
|
|
271
289
|
});
|
|
272
|
-
this.name = "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
273
|
-
this.$fault = "client";
|
|
274
290
|
Object.setPrototypeOf(this, CustomVerificationEmailTemplateAlreadyExistsException.prototype);
|
|
275
291
|
this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
276
292
|
}
|
|
277
293
|
}
|
|
278
294
|
export class FromEmailAddressNotVerifiedException extends __BaseException {
|
|
295
|
+
name = "FromEmailAddressNotVerifiedException";
|
|
296
|
+
$fault = "client";
|
|
297
|
+
FromEmailAddress;
|
|
279
298
|
constructor(opts) {
|
|
280
299
|
super({
|
|
281
300
|
name: "FromEmailAddressNotVerifiedException",
|
|
282
301
|
$fault: "client",
|
|
283
302
|
...opts,
|
|
284
303
|
});
|
|
285
|
-
this.name = "FromEmailAddressNotVerifiedException";
|
|
286
|
-
this.$fault = "client";
|
|
287
304
|
Object.setPrototypeOf(this, FromEmailAddressNotVerifiedException.prototype);
|
|
288
305
|
this.FromEmailAddress = opts.FromEmailAddress;
|
|
289
306
|
}
|
|
@@ -308,66 +325,71 @@ export const TlsPolicy = {
|
|
|
308
325
|
Require: "Require",
|
|
309
326
|
};
|
|
310
327
|
export class InvalidLambdaFunctionException extends __BaseException {
|
|
328
|
+
name = "InvalidLambdaFunctionException";
|
|
329
|
+
$fault = "client";
|
|
330
|
+
FunctionArn;
|
|
311
331
|
constructor(opts) {
|
|
312
332
|
super({
|
|
313
333
|
name: "InvalidLambdaFunctionException",
|
|
314
334
|
$fault: "client",
|
|
315
335
|
...opts,
|
|
316
336
|
});
|
|
317
|
-
this.name = "InvalidLambdaFunctionException";
|
|
318
|
-
this.$fault = "client";
|
|
319
337
|
Object.setPrototypeOf(this, InvalidLambdaFunctionException.prototype);
|
|
320
338
|
this.FunctionArn = opts.FunctionArn;
|
|
321
339
|
}
|
|
322
340
|
}
|
|
323
341
|
export class InvalidS3ConfigurationException extends __BaseException {
|
|
342
|
+
name = "InvalidS3ConfigurationException";
|
|
343
|
+
$fault = "client";
|
|
344
|
+
Bucket;
|
|
324
345
|
constructor(opts) {
|
|
325
346
|
super({
|
|
326
347
|
name: "InvalidS3ConfigurationException",
|
|
327
348
|
$fault: "client",
|
|
328
349
|
...opts,
|
|
329
350
|
});
|
|
330
|
-
this.name = "InvalidS3ConfigurationException";
|
|
331
|
-
this.$fault = "client";
|
|
332
351
|
Object.setPrototypeOf(this, InvalidS3ConfigurationException.prototype);
|
|
333
352
|
this.Bucket = opts.Bucket;
|
|
334
353
|
}
|
|
335
354
|
}
|
|
336
355
|
export class InvalidSnsTopicException extends __BaseException {
|
|
356
|
+
name = "InvalidSnsTopicException";
|
|
357
|
+
$fault = "client";
|
|
358
|
+
Topic;
|
|
337
359
|
constructor(opts) {
|
|
338
360
|
super({
|
|
339
361
|
name: "InvalidSnsTopicException",
|
|
340
362
|
$fault: "client",
|
|
341
363
|
...opts,
|
|
342
364
|
});
|
|
343
|
-
this.name = "InvalidSnsTopicException";
|
|
344
|
-
this.$fault = "client";
|
|
345
365
|
Object.setPrototypeOf(this, InvalidSnsTopicException.prototype);
|
|
346
366
|
this.Topic = opts.Topic;
|
|
347
367
|
}
|
|
348
368
|
}
|
|
349
369
|
export class RuleDoesNotExistException extends __BaseException {
|
|
370
|
+
name = "RuleDoesNotExistException";
|
|
371
|
+
$fault = "client";
|
|
372
|
+
Name;
|
|
350
373
|
constructor(opts) {
|
|
351
374
|
super({
|
|
352
375
|
name: "RuleDoesNotExistException",
|
|
353
376
|
$fault: "client",
|
|
354
377
|
...opts,
|
|
355
378
|
});
|
|
356
|
-
this.name = "RuleDoesNotExistException";
|
|
357
|
-
this.$fault = "client";
|
|
358
379
|
Object.setPrototypeOf(this, RuleDoesNotExistException.prototype);
|
|
359
380
|
this.Name = opts.Name;
|
|
360
381
|
}
|
|
361
382
|
}
|
|
362
383
|
export class InvalidTemplateException extends __BaseException {
|
|
384
|
+
name = "InvalidTemplateException";
|
|
385
|
+
$fault = "client";
|
|
386
|
+
TemplateName;
|
|
363
387
|
constructor(opts) {
|
|
364
388
|
super({
|
|
365
389
|
name: "InvalidTemplateException",
|
|
366
390
|
$fault: "client",
|
|
367
391
|
...opts,
|
|
368
392
|
});
|
|
369
|
-
this.name = "InvalidTemplateException";
|
|
370
|
-
this.$fault = "client";
|
|
371
393
|
Object.setPrototypeOf(this, InvalidTemplateException.prototype);
|
|
372
394
|
this.TemplateName = opts.TemplateName;
|
|
373
395
|
}
|
|
@@ -379,41 +401,45 @@ export const CustomMailFromStatus = {
|
|
|
379
401
|
TemporaryFailure: "TemporaryFailure",
|
|
380
402
|
};
|
|
381
403
|
export class CustomVerificationEmailTemplateDoesNotExistException extends __BaseException {
|
|
404
|
+
name = "CustomVerificationEmailTemplateDoesNotExistException";
|
|
405
|
+
$fault = "client";
|
|
406
|
+
CustomVerificationEmailTemplateName;
|
|
382
407
|
constructor(opts) {
|
|
383
408
|
super({
|
|
384
409
|
name: "CustomVerificationEmailTemplateDoesNotExistException",
|
|
385
410
|
$fault: "client",
|
|
386
411
|
...opts,
|
|
387
412
|
});
|
|
388
|
-
this.name = "CustomVerificationEmailTemplateDoesNotExistException";
|
|
389
|
-
this.$fault = "client";
|
|
390
413
|
Object.setPrototypeOf(this, CustomVerificationEmailTemplateDoesNotExistException.prototype);
|
|
391
414
|
this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
392
415
|
}
|
|
393
416
|
}
|
|
394
417
|
export class EventDestinationDoesNotExistException extends __BaseException {
|
|
418
|
+
name = "EventDestinationDoesNotExistException";
|
|
419
|
+
$fault = "client";
|
|
420
|
+
ConfigurationSetName;
|
|
421
|
+
EventDestinationName;
|
|
395
422
|
constructor(opts) {
|
|
396
423
|
super({
|
|
397
424
|
name: "EventDestinationDoesNotExistException",
|
|
398
425
|
$fault: "client",
|
|
399
426
|
...opts,
|
|
400
427
|
});
|
|
401
|
-
this.name = "EventDestinationDoesNotExistException";
|
|
402
|
-
this.$fault = "client";
|
|
403
428
|
Object.setPrototypeOf(this, EventDestinationDoesNotExistException.prototype);
|
|
404
429
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
405
430
|
this.EventDestinationName = opts.EventDestinationName;
|
|
406
431
|
}
|
|
407
432
|
}
|
|
408
433
|
export class TrackingOptionsDoesNotExistException extends __BaseException {
|
|
434
|
+
name = "TrackingOptionsDoesNotExistException";
|
|
435
|
+
$fault = "client";
|
|
436
|
+
ConfigurationSetName;
|
|
409
437
|
constructor(opts) {
|
|
410
438
|
super({
|
|
411
439
|
name: "TrackingOptionsDoesNotExistException",
|
|
412
440
|
$fault: "client",
|
|
413
441
|
...opts,
|
|
414
442
|
});
|
|
415
|
-
this.name = "TrackingOptionsDoesNotExistException";
|
|
416
|
-
this.$fault = "client";
|
|
417
443
|
Object.setPrototypeOf(this, TrackingOptionsDoesNotExistException.prototype);
|
|
418
444
|
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
419
445
|
}
|
|
@@ -426,14 +452,15 @@ export const VerificationStatus = {
|
|
|
426
452
|
TemporaryFailure: "TemporaryFailure",
|
|
427
453
|
};
|
|
428
454
|
export class TemplateDoesNotExistException extends __BaseException {
|
|
455
|
+
name = "TemplateDoesNotExistException";
|
|
456
|
+
$fault = "client";
|
|
457
|
+
TemplateName;
|
|
429
458
|
constructor(opts) {
|
|
430
459
|
super({
|
|
431
460
|
name: "TemplateDoesNotExistException",
|
|
432
461
|
$fault: "client",
|
|
433
462
|
...opts,
|
|
434
463
|
});
|
|
435
|
-
this.name = "TemplateDoesNotExistException";
|
|
436
|
-
this.$fault = "client";
|
|
437
464
|
Object.setPrototypeOf(this, TemplateDoesNotExistException.prototype);
|
|
438
465
|
this.TemplateName = opts.TemplateName;
|
|
439
466
|
}
|
|
@@ -443,75 +470,77 @@ export const IdentityType = {
|
|
|
443
470
|
EmailAddress: "EmailAddress",
|
|
444
471
|
};
|
|
445
472
|
export class InvalidDeliveryOptionsException extends __BaseException {
|
|
473
|
+
name = "InvalidDeliveryOptionsException";
|
|
474
|
+
$fault = "client";
|
|
446
475
|
constructor(opts) {
|
|
447
476
|
super({
|
|
448
477
|
name: "InvalidDeliveryOptionsException",
|
|
449
478
|
$fault: "client",
|
|
450
479
|
...opts,
|
|
451
480
|
});
|
|
452
|
-
this.name = "InvalidDeliveryOptionsException";
|
|
453
|
-
this.$fault = "client";
|
|
454
481
|
Object.setPrototypeOf(this, InvalidDeliveryOptionsException.prototype);
|
|
455
482
|
}
|
|
456
483
|
}
|
|
457
484
|
export class InvalidPolicyException extends __BaseException {
|
|
485
|
+
name = "InvalidPolicyException";
|
|
486
|
+
$fault = "client";
|
|
458
487
|
constructor(opts) {
|
|
459
488
|
super({
|
|
460
489
|
name: "InvalidPolicyException",
|
|
461
490
|
$fault: "client",
|
|
462
491
|
...opts,
|
|
463
492
|
});
|
|
464
|
-
this.name = "InvalidPolicyException";
|
|
465
|
-
this.$fault = "client";
|
|
466
493
|
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
467
494
|
}
|
|
468
495
|
}
|
|
469
496
|
export class InvalidRenderingParameterException extends __BaseException {
|
|
497
|
+
name = "InvalidRenderingParameterException";
|
|
498
|
+
$fault = "client";
|
|
499
|
+
TemplateName;
|
|
470
500
|
constructor(opts) {
|
|
471
501
|
super({
|
|
472
502
|
name: "InvalidRenderingParameterException",
|
|
473
503
|
$fault: "client",
|
|
474
504
|
...opts,
|
|
475
505
|
});
|
|
476
|
-
this.name = "InvalidRenderingParameterException";
|
|
477
|
-
this.$fault = "client";
|
|
478
506
|
Object.setPrototypeOf(this, InvalidRenderingParameterException.prototype);
|
|
479
507
|
this.TemplateName = opts.TemplateName;
|
|
480
508
|
}
|
|
481
509
|
}
|
|
482
510
|
export class MailFromDomainNotVerifiedException extends __BaseException {
|
|
511
|
+
name = "MailFromDomainNotVerifiedException";
|
|
512
|
+
$fault = "client";
|
|
483
513
|
constructor(opts) {
|
|
484
514
|
super({
|
|
485
515
|
name: "MailFromDomainNotVerifiedException",
|
|
486
516
|
$fault: "client",
|
|
487
517
|
...opts,
|
|
488
518
|
});
|
|
489
|
-
this.name = "MailFromDomainNotVerifiedException";
|
|
490
|
-
this.$fault = "client";
|
|
491
519
|
Object.setPrototypeOf(this, MailFromDomainNotVerifiedException.prototype);
|
|
492
520
|
}
|
|
493
521
|
}
|
|
494
522
|
export class MessageRejected extends __BaseException {
|
|
523
|
+
name = "MessageRejected";
|
|
524
|
+
$fault = "client";
|
|
495
525
|
constructor(opts) {
|
|
496
526
|
super({
|
|
497
527
|
name: "MessageRejected",
|
|
498
528
|
$fault: "client",
|
|
499
529
|
...opts,
|
|
500
530
|
});
|
|
501
|
-
this.name = "MessageRejected";
|
|
502
|
-
this.$fault = "client";
|
|
503
531
|
Object.setPrototypeOf(this, MessageRejected.prototype);
|
|
504
532
|
}
|
|
505
533
|
}
|
|
506
534
|
export class MissingRenderingAttributeException extends __BaseException {
|
|
535
|
+
name = "MissingRenderingAttributeException";
|
|
536
|
+
$fault = "client";
|
|
537
|
+
TemplateName;
|
|
507
538
|
constructor(opts) {
|
|
508
539
|
super({
|
|
509
540
|
name: "MissingRenderingAttributeException",
|
|
510
541
|
$fault: "client",
|
|
511
542
|
...opts,
|
|
512
543
|
});
|
|
513
|
-
this.name = "MissingRenderingAttributeException";
|
|
514
|
-
this.$fault = "client";
|
|
515
544
|
Object.setPrototypeOf(this, MissingRenderingAttributeException.prototype);
|
|
516
545
|
this.TemplateName = opts.TemplateName;
|
|
517
546
|
}
|
|
@@ -522,14 +551,14 @@ export const NotificationType = {
|
|
|
522
551
|
Delivery: "Delivery",
|
|
523
552
|
};
|
|
524
553
|
export class ProductionAccessNotGrantedException extends __BaseException {
|
|
554
|
+
name = "ProductionAccessNotGrantedException";
|
|
555
|
+
$fault = "client";
|
|
525
556
|
constructor(opts) {
|
|
526
557
|
super({
|
|
527
558
|
name: "ProductionAccessNotGrantedException",
|
|
528
559
|
$fault: "client",
|
|
529
560
|
...opts,
|
|
530
561
|
});
|
|
531
|
-
this.name = "ProductionAccessNotGrantedException";
|
|
532
|
-
this.$fault = "client";
|
|
533
562
|
Object.setPrototypeOf(this, ProductionAccessNotGrantedException.prototype);
|
|
534
563
|
}
|
|
535
564
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SESClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SESClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: SESClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: SESClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: SESClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: SESClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|