@aws-sdk/client-ses 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/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/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/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/package.json +26 -26
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SESServiceException as __BaseException } from "./SESServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccountSendingPausedException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class AccountSendingPausedException extends __BaseException {
|
|
5
|
+
readonly name: "AccountSendingPausedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccountSendingPausedException, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
|
|
9
11
|
export interface AddHeaderAction {
|
|
@@ -17,12 +19,13 @@ export declare namespace AddHeaderAction {
|
|
|
17
19
|
const filterSensitiveLog: (obj: AddHeaderAction) => any;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
|
-
export
|
|
21
|
-
name: "AlreadyExistsException";
|
|
22
|
-
$fault: "client";
|
|
22
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
23
|
+
readonly name: "AlreadyExistsException";
|
|
24
|
+
readonly $fault: "client";
|
|
23
25
|
|
|
24
26
|
Name?: string;
|
|
25
|
-
|
|
27
|
+
|
|
28
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
26
29
|
}
|
|
27
30
|
export declare enum BehaviorOnMXFailure {
|
|
28
31
|
RejectMessage = "RejectMessage",
|
|
@@ -196,12 +199,13 @@ export declare namespace BulkEmailDestinationStatus {
|
|
|
196
199
|
const filterSensitiveLog: (obj: BulkEmailDestinationStatus) => any;
|
|
197
200
|
}
|
|
198
201
|
|
|
199
|
-
export
|
|
200
|
-
name: "CannotDeleteException";
|
|
201
|
-
$fault: "client";
|
|
202
|
+
export declare class CannotDeleteException extends __BaseException {
|
|
203
|
+
readonly name: "CannotDeleteException";
|
|
204
|
+
readonly $fault: "client";
|
|
202
205
|
|
|
203
206
|
Name?: string;
|
|
204
|
-
|
|
207
|
+
|
|
208
|
+
constructor(opts: __ExceptionOptionType<CannotDeleteException, __BaseException>);
|
|
205
209
|
}
|
|
206
210
|
|
|
207
211
|
export interface CloneReceiptRuleSetRequest {
|
|
@@ -222,18 +226,20 @@ export declare namespace CloneReceiptRuleSetResponse {
|
|
|
222
226
|
const filterSensitiveLog: (obj: CloneReceiptRuleSetResponse) => any;
|
|
223
227
|
}
|
|
224
228
|
|
|
225
|
-
export
|
|
226
|
-
name: "LimitExceededException";
|
|
227
|
-
$fault: "client";
|
|
228
|
-
|
|
229
|
+
export declare class LimitExceededException extends __BaseException {
|
|
230
|
+
readonly name: "LimitExceededException";
|
|
231
|
+
readonly $fault: "client";
|
|
232
|
+
|
|
233
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
229
234
|
}
|
|
230
235
|
|
|
231
|
-
export
|
|
232
|
-
name: "RuleSetDoesNotExistException";
|
|
233
|
-
$fault: "client";
|
|
236
|
+
export declare class RuleSetDoesNotExistException extends __BaseException {
|
|
237
|
+
readonly name: "RuleSetDoesNotExistException";
|
|
238
|
+
readonly $fault: "client";
|
|
234
239
|
|
|
235
240
|
Name?: string;
|
|
236
|
-
|
|
241
|
+
|
|
242
|
+
constructor(opts: __ExceptionOptionType<RuleSetDoesNotExistException, __BaseException>);
|
|
237
243
|
}
|
|
238
244
|
export declare enum DimensionValueSource {
|
|
239
245
|
EMAIL_HEADER = "emailHeader",
|
|
@@ -272,12 +278,13 @@ export declare namespace ConfigurationSet {
|
|
|
272
278
|
const filterSensitiveLog: (obj: ConfigurationSet) => any;
|
|
273
279
|
}
|
|
274
280
|
|
|
275
|
-
export
|
|
276
|
-
name: "ConfigurationSetAlreadyExistsException";
|
|
277
|
-
$fault: "client";
|
|
281
|
+
export declare class ConfigurationSetAlreadyExistsException extends __BaseException {
|
|
282
|
+
readonly name: "ConfigurationSetAlreadyExistsException";
|
|
283
|
+
readonly $fault: "client";
|
|
278
284
|
|
|
279
285
|
ConfigurationSetName?: string;
|
|
280
|
-
|
|
286
|
+
|
|
287
|
+
constructor(opts: __ExceptionOptionType<ConfigurationSetAlreadyExistsException, __BaseException>);
|
|
281
288
|
}
|
|
282
289
|
export declare enum ConfigurationSetAttribute {
|
|
283
290
|
DELIVERY_OPTIONS = "deliveryOptions",
|
|
@@ -286,20 +293,22 @@ export declare enum ConfigurationSetAttribute {
|
|
|
286
293
|
TRACKING_OPTIONS = "trackingOptions"
|
|
287
294
|
}
|
|
288
295
|
|
|
289
|
-
export
|
|
290
|
-
name: "ConfigurationSetDoesNotExistException";
|
|
291
|
-
$fault: "client";
|
|
296
|
+
export declare class ConfigurationSetDoesNotExistException extends __BaseException {
|
|
297
|
+
readonly name: "ConfigurationSetDoesNotExistException";
|
|
298
|
+
readonly $fault: "client";
|
|
292
299
|
|
|
293
300
|
ConfigurationSetName?: string;
|
|
294
|
-
|
|
301
|
+
|
|
302
|
+
constructor(opts: __ExceptionOptionType<ConfigurationSetDoesNotExistException, __BaseException>);
|
|
295
303
|
}
|
|
296
304
|
|
|
297
|
-
export
|
|
298
|
-
name: "ConfigurationSetSendingPausedException";
|
|
299
|
-
$fault: "client";
|
|
305
|
+
export declare class ConfigurationSetSendingPausedException extends __BaseException {
|
|
306
|
+
readonly name: "ConfigurationSetSendingPausedException";
|
|
307
|
+
readonly $fault: "client";
|
|
300
308
|
|
|
301
309
|
ConfigurationSetName?: string;
|
|
302
|
-
|
|
310
|
+
|
|
311
|
+
constructor(opts: __ExceptionOptionType<ConfigurationSetSendingPausedException, __BaseException>);
|
|
303
312
|
}
|
|
304
313
|
|
|
305
314
|
export interface CreateConfigurationSetRequest {
|
|
@@ -318,10 +327,11 @@ export declare namespace CreateConfigurationSetResponse {
|
|
|
318
327
|
const filterSensitiveLog: (obj: CreateConfigurationSetResponse) => any;
|
|
319
328
|
}
|
|
320
329
|
|
|
321
|
-
export
|
|
322
|
-
name: "InvalidConfigurationSetException";
|
|
323
|
-
$fault: "client";
|
|
324
|
-
|
|
330
|
+
export declare class InvalidConfigurationSetException extends __BaseException {
|
|
331
|
+
readonly name: "InvalidConfigurationSetException";
|
|
332
|
+
readonly $fault: "client";
|
|
333
|
+
|
|
334
|
+
constructor(opts: __ExceptionOptionType<InvalidConfigurationSetException, __BaseException>);
|
|
325
335
|
}
|
|
326
336
|
|
|
327
337
|
export interface KinesisFirehoseDestination {
|
|
@@ -391,44 +401,48 @@ export declare namespace CreateConfigurationSetEventDestinationResponse {
|
|
|
391
401
|
const filterSensitiveLog: (obj: CreateConfigurationSetEventDestinationResponse) => any;
|
|
392
402
|
}
|
|
393
403
|
|
|
394
|
-
export
|
|
395
|
-
name: "EventDestinationAlreadyExistsException";
|
|
396
|
-
$fault: "client";
|
|
404
|
+
export declare class EventDestinationAlreadyExistsException extends __BaseException {
|
|
405
|
+
readonly name: "EventDestinationAlreadyExistsException";
|
|
406
|
+
readonly $fault: "client";
|
|
397
407
|
|
|
398
408
|
ConfigurationSetName?: string;
|
|
399
409
|
|
|
400
410
|
EventDestinationName?: string;
|
|
401
|
-
|
|
411
|
+
|
|
412
|
+
constructor(opts: __ExceptionOptionType<EventDestinationAlreadyExistsException, __BaseException>);
|
|
402
413
|
}
|
|
403
414
|
|
|
404
|
-
export
|
|
405
|
-
name: "InvalidCloudWatchDestinationException";
|
|
406
|
-
$fault: "client";
|
|
415
|
+
export declare class InvalidCloudWatchDestinationException extends __BaseException {
|
|
416
|
+
readonly name: "InvalidCloudWatchDestinationException";
|
|
417
|
+
readonly $fault: "client";
|
|
407
418
|
|
|
408
419
|
ConfigurationSetName?: string;
|
|
409
420
|
|
|
410
421
|
EventDestinationName?: string;
|
|
411
|
-
|
|
422
|
+
|
|
423
|
+
constructor(opts: __ExceptionOptionType<InvalidCloudWatchDestinationException, __BaseException>);
|
|
412
424
|
}
|
|
413
425
|
|
|
414
|
-
export
|
|
415
|
-
name: "InvalidFirehoseDestinationException";
|
|
416
|
-
$fault: "client";
|
|
426
|
+
export declare class InvalidFirehoseDestinationException extends __BaseException {
|
|
427
|
+
readonly name: "InvalidFirehoseDestinationException";
|
|
428
|
+
readonly $fault: "client";
|
|
417
429
|
|
|
418
430
|
ConfigurationSetName?: string;
|
|
419
431
|
|
|
420
432
|
EventDestinationName?: string;
|
|
421
|
-
|
|
433
|
+
|
|
434
|
+
constructor(opts: __ExceptionOptionType<InvalidFirehoseDestinationException, __BaseException>);
|
|
422
435
|
}
|
|
423
436
|
|
|
424
|
-
export
|
|
425
|
-
name: "InvalidSNSDestinationException";
|
|
426
|
-
$fault: "client";
|
|
437
|
+
export declare class InvalidSNSDestinationException extends __BaseException {
|
|
438
|
+
readonly name: "InvalidSNSDestinationException";
|
|
439
|
+
readonly $fault: "client";
|
|
427
440
|
|
|
428
441
|
ConfigurationSetName?: string;
|
|
429
442
|
|
|
430
443
|
EventDestinationName?: string;
|
|
431
|
-
|
|
444
|
+
|
|
445
|
+
constructor(opts: __ExceptionOptionType<InvalidSNSDestinationException, __BaseException>);
|
|
432
446
|
}
|
|
433
447
|
|
|
434
448
|
export interface TrackingOptions {
|
|
@@ -458,18 +472,20 @@ export declare namespace CreateConfigurationSetTrackingOptionsResponse {
|
|
|
458
472
|
const filterSensitiveLog: (obj: CreateConfigurationSetTrackingOptionsResponse) => any;
|
|
459
473
|
}
|
|
460
474
|
|
|
461
|
-
export
|
|
462
|
-
name: "InvalidTrackingOptionsException";
|
|
463
|
-
$fault: "client";
|
|
464
|
-
|
|
475
|
+
export declare class InvalidTrackingOptionsException extends __BaseException {
|
|
476
|
+
readonly name: "InvalidTrackingOptionsException";
|
|
477
|
+
readonly $fault: "client";
|
|
478
|
+
|
|
479
|
+
constructor(opts: __ExceptionOptionType<InvalidTrackingOptionsException, __BaseException>);
|
|
465
480
|
}
|
|
466
481
|
|
|
467
|
-
export
|
|
468
|
-
name: "TrackingOptionsAlreadyExistsException";
|
|
469
|
-
$fault: "client";
|
|
482
|
+
export declare class TrackingOptionsAlreadyExistsException extends __BaseException {
|
|
483
|
+
readonly name: "TrackingOptionsAlreadyExistsException";
|
|
484
|
+
readonly $fault: "client";
|
|
470
485
|
|
|
471
486
|
ConfigurationSetName?: string;
|
|
472
|
-
|
|
487
|
+
|
|
488
|
+
constructor(opts: __ExceptionOptionType<TrackingOptionsAlreadyExistsException, __BaseException>);
|
|
473
489
|
}
|
|
474
490
|
|
|
475
491
|
export interface CreateCustomVerificationEmailTemplateRequest {
|
|
@@ -491,26 +507,29 @@ export declare namespace CreateCustomVerificationEmailTemplateRequest {
|
|
|
491
507
|
const filterSensitiveLog: (obj: CreateCustomVerificationEmailTemplateRequest) => any;
|
|
492
508
|
}
|
|
493
509
|
|
|
494
|
-
export
|
|
495
|
-
name: "CustomVerificationEmailInvalidContentException";
|
|
496
|
-
$fault: "client";
|
|
497
|
-
|
|
510
|
+
export declare class CustomVerificationEmailInvalidContentException extends __BaseException {
|
|
511
|
+
readonly name: "CustomVerificationEmailInvalidContentException";
|
|
512
|
+
readonly $fault: "client";
|
|
513
|
+
|
|
514
|
+
constructor(opts: __ExceptionOptionType<CustomVerificationEmailInvalidContentException, __BaseException>);
|
|
498
515
|
}
|
|
499
516
|
|
|
500
|
-
export
|
|
501
|
-
name: "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
502
|
-
$fault: "client";
|
|
517
|
+
export declare class CustomVerificationEmailTemplateAlreadyExistsException extends __BaseException {
|
|
518
|
+
readonly name: "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
519
|
+
readonly $fault: "client";
|
|
503
520
|
|
|
504
521
|
CustomVerificationEmailTemplateName?: string;
|
|
505
|
-
|
|
522
|
+
|
|
523
|
+
constructor(opts: __ExceptionOptionType<CustomVerificationEmailTemplateAlreadyExistsException, __BaseException>);
|
|
506
524
|
}
|
|
507
525
|
|
|
508
|
-
export
|
|
509
|
-
name: "FromEmailAddressNotVerifiedException";
|
|
510
|
-
$fault: "client";
|
|
526
|
+
export declare class FromEmailAddressNotVerifiedException extends __BaseException {
|
|
527
|
+
readonly name: "FromEmailAddressNotVerifiedException";
|
|
528
|
+
readonly $fault: "client";
|
|
511
529
|
|
|
512
530
|
FromEmailAddress?: string;
|
|
513
|
-
|
|
531
|
+
|
|
532
|
+
constructor(opts: __ExceptionOptionType<FromEmailAddressNotVerifiedException, __BaseException>);
|
|
514
533
|
}
|
|
515
534
|
export declare enum ReceiptFilterPolicy {
|
|
516
535
|
Allow = "Allow",
|
|
@@ -688,36 +707,40 @@ export declare namespace CreateReceiptRuleResponse {
|
|
|
688
707
|
const filterSensitiveLog: (obj: CreateReceiptRuleResponse) => any;
|
|
689
708
|
}
|
|
690
709
|
|
|
691
|
-
export
|
|
692
|
-
name: "InvalidLambdaFunctionException";
|
|
693
|
-
$fault: "client";
|
|
710
|
+
export declare class InvalidLambdaFunctionException extends __BaseException {
|
|
711
|
+
readonly name: "InvalidLambdaFunctionException";
|
|
712
|
+
readonly $fault: "client";
|
|
694
713
|
|
|
695
714
|
FunctionArn?: string;
|
|
696
|
-
|
|
715
|
+
|
|
716
|
+
constructor(opts: __ExceptionOptionType<InvalidLambdaFunctionException, __BaseException>);
|
|
697
717
|
}
|
|
698
718
|
|
|
699
|
-
export
|
|
700
|
-
name: "InvalidS3ConfigurationException";
|
|
701
|
-
$fault: "client";
|
|
719
|
+
export declare class InvalidS3ConfigurationException extends __BaseException {
|
|
720
|
+
readonly name: "InvalidS3ConfigurationException";
|
|
721
|
+
readonly $fault: "client";
|
|
702
722
|
|
|
703
723
|
Bucket?: string;
|
|
704
|
-
|
|
724
|
+
|
|
725
|
+
constructor(opts: __ExceptionOptionType<InvalidS3ConfigurationException, __BaseException>);
|
|
705
726
|
}
|
|
706
727
|
|
|
707
|
-
export
|
|
708
|
-
name: "InvalidSnsTopicException";
|
|
709
|
-
$fault: "client";
|
|
728
|
+
export declare class InvalidSnsTopicException extends __BaseException {
|
|
729
|
+
readonly name: "InvalidSnsTopicException";
|
|
730
|
+
readonly $fault: "client";
|
|
710
731
|
|
|
711
732
|
Topic?: string;
|
|
712
|
-
|
|
733
|
+
|
|
734
|
+
constructor(opts: __ExceptionOptionType<InvalidSnsTopicException, __BaseException>);
|
|
713
735
|
}
|
|
714
736
|
|
|
715
|
-
export
|
|
716
|
-
name: "RuleDoesNotExistException";
|
|
717
|
-
$fault: "client";
|
|
737
|
+
export declare class RuleDoesNotExistException extends __BaseException {
|
|
738
|
+
readonly name: "RuleDoesNotExistException";
|
|
739
|
+
readonly $fault: "client";
|
|
718
740
|
|
|
719
741
|
Name?: string;
|
|
720
|
-
|
|
742
|
+
|
|
743
|
+
constructor(opts: __ExceptionOptionType<RuleDoesNotExistException, __BaseException>);
|
|
721
744
|
}
|
|
722
745
|
|
|
723
746
|
export interface CreateReceiptRuleSetRequest {
|
|
@@ -766,11 +789,12 @@ export declare namespace CreateTemplateResponse {
|
|
|
766
789
|
const filterSensitiveLog: (obj: CreateTemplateResponse) => any;
|
|
767
790
|
}
|
|
768
791
|
|
|
769
|
-
export
|
|
770
|
-
name: "InvalidTemplateException";
|
|
771
|
-
$fault: "client";
|
|
792
|
+
export declare class InvalidTemplateException extends __BaseException {
|
|
793
|
+
readonly name: "InvalidTemplateException";
|
|
794
|
+
readonly $fault: "client";
|
|
772
795
|
TemplateName?: string;
|
|
773
|
-
|
|
796
|
+
|
|
797
|
+
constructor(opts: __ExceptionOptionType<InvalidTemplateException, __BaseException>);
|
|
774
798
|
}
|
|
775
799
|
export declare enum CustomMailFromStatus {
|
|
776
800
|
Failed = "Failed",
|
|
@@ -796,12 +820,13 @@ export declare namespace CustomVerificationEmailTemplate {
|
|
|
796
820
|
const filterSensitiveLog: (obj: CustomVerificationEmailTemplate) => any;
|
|
797
821
|
}
|
|
798
822
|
|
|
799
|
-
export
|
|
800
|
-
name: "CustomVerificationEmailTemplateDoesNotExistException";
|
|
801
|
-
$fault: "client";
|
|
823
|
+
export declare class CustomVerificationEmailTemplateDoesNotExistException extends __BaseException {
|
|
824
|
+
readonly name: "CustomVerificationEmailTemplateDoesNotExistException";
|
|
825
|
+
readonly $fault: "client";
|
|
802
826
|
|
|
803
827
|
CustomVerificationEmailTemplateName?: string;
|
|
804
|
-
|
|
828
|
+
|
|
829
|
+
constructor(opts: __ExceptionOptionType<CustomVerificationEmailTemplateDoesNotExistException, __BaseException>);
|
|
805
830
|
}
|
|
806
831
|
|
|
807
832
|
export interface DeleteConfigurationSetRequest {
|
|
@@ -838,14 +863,15 @@ export declare namespace DeleteConfigurationSetEventDestinationResponse {
|
|
|
838
863
|
const filterSensitiveLog: (obj: DeleteConfigurationSetEventDestinationResponse) => any;
|
|
839
864
|
}
|
|
840
865
|
|
|
841
|
-
export
|
|
842
|
-
name: "EventDestinationDoesNotExistException";
|
|
843
|
-
$fault: "client";
|
|
866
|
+
export declare class EventDestinationDoesNotExistException extends __BaseException {
|
|
867
|
+
readonly name: "EventDestinationDoesNotExistException";
|
|
868
|
+
readonly $fault: "client";
|
|
844
869
|
|
|
845
870
|
ConfigurationSetName?: string;
|
|
846
871
|
|
|
847
872
|
EventDestinationName?: string;
|
|
848
|
-
|
|
873
|
+
|
|
874
|
+
constructor(opts: __ExceptionOptionType<EventDestinationDoesNotExistException, __BaseException>);
|
|
849
875
|
}
|
|
850
876
|
|
|
851
877
|
export interface DeleteConfigurationSetTrackingOptionsRequest {
|
|
@@ -864,12 +890,13 @@ export declare namespace DeleteConfigurationSetTrackingOptionsResponse {
|
|
|
864
890
|
const filterSensitiveLog: (obj: DeleteConfigurationSetTrackingOptionsResponse) => any;
|
|
865
891
|
}
|
|
866
892
|
|
|
867
|
-
export
|
|
868
|
-
name: "TrackingOptionsDoesNotExistException";
|
|
869
|
-
$fault: "client";
|
|
893
|
+
export declare class TrackingOptionsDoesNotExistException extends __BaseException {
|
|
894
|
+
readonly name: "TrackingOptionsDoesNotExistException";
|
|
895
|
+
readonly $fault: "client";
|
|
870
896
|
|
|
871
897
|
ConfigurationSetName?: string;
|
|
872
|
-
|
|
898
|
+
|
|
899
|
+
constructor(opts: __ExceptionOptionType<TrackingOptionsDoesNotExistException, __BaseException>);
|
|
873
900
|
}
|
|
874
901
|
|
|
875
902
|
export interface DeleteCustomVerificationEmailTemplateRequest {
|
|
@@ -1361,31 +1388,35 @@ export declare namespace GetTemplateResponse {
|
|
|
1361
1388
|
const filterSensitiveLog: (obj: GetTemplateResponse) => any;
|
|
1362
1389
|
}
|
|
1363
1390
|
|
|
1364
|
-
export
|
|
1365
|
-
name: "TemplateDoesNotExistException";
|
|
1366
|
-
$fault: "client";
|
|
1391
|
+
export declare class TemplateDoesNotExistException extends __BaseException {
|
|
1392
|
+
readonly name: "TemplateDoesNotExistException";
|
|
1393
|
+
readonly $fault: "client";
|
|
1367
1394
|
TemplateName?: string;
|
|
1368
|
-
|
|
1395
|
+
|
|
1396
|
+
constructor(opts: __ExceptionOptionType<TemplateDoesNotExistException, __BaseException>);
|
|
1369
1397
|
}
|
|
1370
1398
|
export declare type IdentityType = "Domain" | "EmailAddress";
|
|
1371
1399
|
|
|
1372
|
-
export
|
|
1373
|
-
name: "InvalidDeliveryOptionsException";
|
|
1374
|
-
$fault: "client";
|
|
1375
|
-
|
|
1400
|
+
export declare class InvalidDeliveryOptionsException extends __BaseException {
|
|
1401
|
+
readonly name: "InvalidDeliveryOptionsException";
|
|
1402
|
+
readonly $fault: "client";
|
|
1403
|
+
|
|
1404
|
+
constructor(opts: __ExceptionOptionType<InvalidDeliveryOptionsException, __BaseException>);
|
|
1376
1405
|
}
|
|
1377
1406
|
|
|
1378
|
-
export
|
|
1379
|
-
name: "InvalidPolicyException";
|
|
1380
|
-
$fault: "client";
|
|
1381
|
-
|
|
1407
|
+
export declare class InvalidPolicyException extends __BaseException {
|
|
1408
|
+
readonly name: "InvalidPolicyException";
|
|
1409
|
+
readonly $fault: "client";
|
|
1410
|
+
|
|
1411
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
|
|
1382
1412
|
}
|
|
1383
1413
|
|
|
1384
|
-
export
|
|
1385
|
-
name: "InvalidRenderingParameterException";
|
|
1386
|
-
$fault: "client";
|
|
1414
|
+
export declare class InvalidRenderingParameterException extends __BaseException {
|
|
1415
|
+
readonly name: "InvalidRenderingParameterException";
|
|
1416
|
+
readonly $fault: "client";
|
|
1387
1417
|
TemplateName?: string;
|
|
1388
|
-
|
|
1418
|
+
|
|
1419
|
+
constructor(opts: __ExceptionOptionType<InvalidRenderingParameterException, __BaseException>);
|
|
1389
1420
|
}
|
|
1390
1421
|
|
|
1391
1422
|
export interface ListConfigurationSetsRequest {
|
|
@@ -1550,10 +1581,11 @@ export declare namespace ListVerifiedEmailAddressesResponse {
|
|
|
1550
1581
|
const filterSensitiveLog: (obj: ListVerifiedEmailAddressesResponse) => any;
|
|
1551
1582
|
}
|
|
1552
1583
|
|
|
1553
|
-
export
|
|
1554
|
-
name: "MailFromDomainNotVerifiedException";
|
|
1555
|
-
$fault: "client";
|
|
1556
|
-
|
|
1584
|
+
export declare class MailFromDomainNotVerifiedException extends __BaseException {
|
|
1585
|
+
readonly name: "MailFromDomainNotVerifiedException";
|
|
1586
|
+
readonly $fault: "client";
|
|
1587
|
+
|
|
1588
|
+
constructor(opts: __ExceptionOptionType<MailFromDomainNotVerifiedException, __BaseException>);
|
|
1557
1589
|
}
|
|
1558
1590
|
|
|
1559
1591
|
export interface Message {
|
|
@@ -1580,24 +1612,27 @@ export declare namespace MessageDsn {
|
|
|
1580
1612
|
const filterSensitiveLog: (obj: MessageDsn) => any;
|
|
1581
1613
|
}
|
|
1582
1614
|
|
|
1583
|
-
export
|
|
1584
|
-
name: "MessageRejected";
|
|
1585
|
-
$fault: "client";
|
|
1586
|
-
|
|
1615
|
+
export declare class MessageRejected extends __BaseException {
|
|
1616
|
+
readonly name: "MessageRejected";
|
|
1617
|
+
readonly $fault: "client";
|
|
1618
|
+
|
|
1619
|
+
constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
|
|
1587
1620
|
}
|
|
1588
1621
|
|
|
1589
|
-
export
|
|
1590
|
-
name: "MissingRenderingAttributeException";
|
|
1591
|
-
$fault: "client";
|
|
1622
|
+
export declare class MissingRenderingAttributeException extends __BaseException {
|
|
1623
|
+
readonly name: "MissingRenderingAttributeException";
|
|
1624
|
+
readonly $fault: "client";
|
|
1592
1625
|
TemplateName?: string;
|
|
1593
|
-
|
|
1626
|
+
|
|
1627
|
+
constructor(opts: __ExceptionOptionType<MissingRenderingAttributeException, __BaseException>);
|
|
1594
1628
|
}
|
|
1595
1629
|
export declare type NotificationType = "Bounce" | "Complaint" | "Delivery";
|
|
1596
1630
|
|
|
1597
|
-
export
|
|
1598
|
-
name: "ProductionAccessNotGrantedException";
|
|
1599
|
-
$fault: "client";
|
|
1600
|
-
|
|
1631
|
+
export declare class ProductionAccessNotGrantedException extends __BaseException {
|
|
1632
|
+
readonly name: "ProductionAccessNotGrantedException";
|
|
1633
|
+
readonly $fault: "client";
|
|
1634
|
+
|
|
1635
|
+
constructor(opts: __ExceptionOptionType<ProductionAccessNotGrantedException, __BaseException>);
|
|
1601
1636
|
}
|
|
1602
1637
|
|
|
1603
1638
|
export interface PutConfigurationSetDeliveryOptionsRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ses",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ses Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,37 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
51
|
+
"@aws-sdk/util-waiter": "3.53.0",
|
|
52
52
|
"entities": "2.2.0",
|
|
53
53
|
"fast-xml-parser": "3.19.0",
|
|
54
54
|
"tslib": "^2.3.0"
|