@aws-sdk/client-ses 3.934.0 → 3.936.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 +98 -97
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +97 -0
- package/dist-es/models/errors.js +467 -0
- package/dist-es/models/models_0.js +1 -564
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +225 -0
- package/dist-types/models/errors.d.ts +588 -0
- package/dist-types/models/models_0.d.ts +1 -813
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +123 -0
- package/dist-types/ts3.4/models/errors.d.ts +330 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -453
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,18 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SESServiceException as __BaseException } from "./SESServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>Indicates that email sending is disabled for your entire Amazon SES account.</p>
|
|
5
|
-
* <p>You can enable or disable email sending for your Amazon SES account using <a>UpdateAccountSendingEnabled</a>.</p>
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export declare class AccountSendingPausedException extends __BaseException {
|
|
9
|
-
readonly name: "AccountSendingPausedException";
|
|
10
|
-
readonly $fault: "client";
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccountSendingPausedException, __BaseException>);
|
|
15
|
-
}
|
|
1
|
+
import { BehaviorOnMXFailure, BounceType, BulkEmailStatus, ConfigurationSetAttribute, CustomMailFromStatus, DimensionValueSource, DsnAction, EventType, IdentityType, InvocationType, NotificationType, ReceiptFilterPolicy, SNSActionEncoding, StopScope, TlsPolicy, VerificationStatus } from "./enums";
|
|
16
2
|
/**
|
|
17
3
|
* <p>When included in a receipt rule, this action adds a header to the received
|
|
18
4
|
* email.</p>
|
|
@@ -35,36 +21,6 @@ export interface AddHeaderAction {
|
|
|
35
21
|
*/
|
|
36
22
|
HeaderValue: string | undefined;
|
|
37
23
|
}
|
|
38
|
-
/**
|
|
39
|
-
* <p>Indicates that a resource could not be created because of a naming conflict.</p>
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
export declare class AlreadyExistsException extends __BaseException {
|
|
43
|
-
readonly name: "AlreadyExistsException";
|
|
44
|
-
readonly $fault: "client";
|
|
45
|
-
/**
|
|
46
|
-
* <p>Indicates that a resource could not be created because the resource name already
|
|
47
|
-
* exists.</p>
|
|
48
|
-
* @public
|
|
49
|
-
*/
|
|
50
|
-
Name?: string | undefined;
|
|
51
|
-
/**
|
|
52
|
-
* @internal
|
|
53
|
-
*/
|
|
54
|
-
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* @public
|
|
58
|
-
* @enum
|
|
59
|
-
*/
|
|
60
|
-
export declare const BehaviorOnMXFailure: {
|
|
61
|
-
readonly RejectMessage: "RejectMessage";
|
|
62
|
-
readonly UseDefaultValue: "UseDefaultValue";
|
|
63
|
-
};
|
|
64
|
-
/**
|
|
65
|
-
* @public
|
|
66
|
-
*/
|
|
67
|
-
export type BehaviorOnMXFailure = (typeof BehaviorOnMXFailure)[keyof typeof BehaviorOnMXFailure];
|
|
68
24
|
/**
|
|
69
25
|
* <p>Represents textual data, plus an optional character set specification.</p>
|
|
70
26
|
* <p>By default, the text must be 7-bit ASCII, due to the constraints of the SMTP protocol.
|
|
@@ -144,37 +100,6 @@ export interface BounceAction {
|
|
|
144
100
|
*/
|
|
145
101
|
Sender: string | undefined;
|
|
146
102
|
}
|
|
147
|
-
/**
|
|
148
|
-
* @public
|
|
149
|
-
* @enum
|
|
150
|
-
*/
|
|
151
|
-
export declare const BounceType: {
|
|
152
|
-
readonly ContentRejected: "ContentRejected";
|
|
153
|
-
readonly DoesNotExist: "DoesNotExist";
|
|
154
|
-
readonly ExceededQuota: "ExceededQuota";
|
|
155
|
-
readonly MessageTooLarge: "MessageTooLarge";
|
|
156
|
-
readonly TemporaryFailure: "TemporaryFailure";
|
|
157
|
-
readonly Undefined: "Undefined";
|
|
158
|
-
};
|
|
159
|
-
/**
|
|
160
|
-
* @public
|
|
161
|
-
*/
|
|
162
|
-
export type BounceType = (typeof BounceType)[keyof typeof BounceType];
|
|
163
|
-
/**
|
|
164
|
-
* @public
|
|
165
|
-
* @enum
|
|
166
|
-
*/
|
|
167
|
-
export declare const DsnAction: {
|
|
168
|
-
readonly DELAYED: "delayed";
|
|
169
|
-
readonly DELIVERED: "delivered";
|
|
170
|
-
readonly EXPANDED: "expanded";
|
|
171
|
-
readonly FAILED: "failed";
|
|
172
|
-
readonly RELAYED: "relayed";
|
|
173
|
-
};
|
|
174
|
-
/**
|
|
175
|
-
* @public
|
|
176
|
-
*/
|
|
177
|
-
export type DsnAction = (typeof DsnAction)[keyof typeof DsnAction];
|
|
178
103
|
/**
|
|
179
104
|
* <p>Additional X-headers to include in the Delivery Status Notification (DSN) when an
|
|
180
105
|
* email that Amazon SES receives on your behalf bounces.</p>
|
|
@@ -397,30 +322,6 @@ export interface BulkEmailDestination {
|
|
|
397
322
|
*/
|
|
398
323
|
ReplacementTemplateData?: string | undefined;
|
|
399
324
|
}
|
|
400
|
-
/**
|
|
401
|
-
* @public
|
|
402
|
-
* @enum
|
|
403
|
-
*/
|
|
404
|
-
export declare const BulkEmailStatus: {
|
|
405
|
-
readonly AccountDailyQuotaExceeded: "AccountDailyQuotaExceeded";
|
|
406
|
-
readonly AccountSendingPaused: "AccountSendingPaused";
|
|
407
|
-
readonly AccountSuspended: "AccountSuspended";
|
|
408
|
-
readonly AccountThrottled: "AccountThrottled";
|
|
409
|
-
readonly ConfigurationSetDoesNotExist: "ConfigurationSetDoesNotExist";
|
|
410
|
-
readonly ConfigurationSetSendingPaused: "ConfigurationSetSendingPaused";
|
|
411
|
-
readonly Failed: "Failed";
|
|
412
|
-
readonly InvalidParameterValue: "InvalidParameterValue";
|
|
413
|
-
readonly InvalidSendingPoolName: "InvalidSendingPoolName";
|
|
414
|
-
readonly MailFromDomainNotVerified: "MailFromDomainNotVerified";
|
|
415
|
-
readonly MessageRejected: "MessageRejected";
|
|
416
|
-
readonly Success: "Success";
|
|
417
|
-
readonly TemplateDoesNotExist: "TemplateDoesNotExist";
|
|
418
|
-
readonly TransientFailure: "TransientFailure";
|
|
419
|
-
};
|
|
420
|
-
/**
|
|
421
|
-
* @public
|
|
422
|
-
*/
|
|
423
|
-
export type BulkEmailStatus = (typeof BulkEmailStatus)[keyof typeof BulkEmailStatus];
|
|
424
325
|
/**
|
|
425
326
|
* <p>An object that contains the response from the <code>SendBulkTemplatedEmail</code>
|
|
426
327
|
* operation.</p>
|
|
@@ -522,24 +423,6 @@ export interface BulkEmailDestinationStatus {
|
|
|
522
423
|
*/
|
|
523
424
|
MessageId?: string | undefined;
|
|
524
425
|
}
|
|
525
|
-
/**
|
|
526
|
-
* <p>Indicates that the delete operation could not be completed.</p>
|
|
527
|
-
* @public
|
|
528
|
-
*/
|
|
529
|
-
export declare class CannotDeleteException extends __BaseException {
|
|
530
|
-
readonly name: "CannotDeleteException";
|
|
531
|
-
readonly $fault: "client";
|
|
532
|
-
/**
|
|
533
|
-
* <p>Indicates that a resource could not be deleted because no resource with the specified
|
|
534
|
-
* name exists.</p>
|
|
535
|
-
* @public
|
|
536
|
-
*/
|
|
537
|
-
Name?: string | undefined;
|
|
538
|
-
/**
|
|
539
|
-
* @internal
|
|
540
|
-
*/
|
|
541
|
-
constructor(opts: __ExceptionOptionType<CannotDeleteException, __BaseException>);
|
|
542
|
-
}
|
|
543
426
|
/**
|
|
544
427
|
* <p>Represents a request to create a receipt rule set by cloning an existing one. You use
|
|
545
428
|
* receipt rule sets to receive email with Amazon SES. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html">Amazon SES
|
|
@@ -577,50 +460,6 @@ export interface CloneReceiptRuleSetRequest {
|
|
|
577
460
|
*/
|
|
578
461
|
export interface CloneReceiptRuleSetResponse {
|
|
579
462
|
}
|
|
580
|
-
/**
|
|
581
|
-
* <p>Indicates that a resource could not be created because of service limits. For a list
|
|
582
|
-
* of Amazon SES limits, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html">Amazon SES Developer
|
|
583
|
-
* Guide</a>.</p>
|
|
584
|
-
* @public
|
|
585
|
-
*/
|
|
586
|
-
export declare class LimitExceededException extends __BaseException {
|
|
587
|
-
readonly name: "LimitExceededException";
|
|
588
|
-
readonly $fault: "client";
|
|
589
|
-
/**
|
|
590
|
-
* @internal
|
|
591
|
-
*/
|
|
592
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
593
|
-
}
|
|
594
|
-
/**
|
|
595
|
-
* <p>Indicates that the provided receipt rule set does not exist.</p>
|
|
596
|
-
* @public
|
|
597
|
-
*/
|
|
598
|
-
export declare class RuleSetDoesNotExistException extends __BaseException {
|
|
599
|
-
readonly name: "RuleSetDoesNotExistException";
|
|
600
|
-
readonly $fault: "client";
|
|
601
|
-
/**
|
|
602
|
-
* <p>Indicates that the named receipt rule set does not exist.</p>
|
|
603
|
-
* @public
|
|
604
|
-
*/
|
|
605
|
-
Name?: string | undefined;
|
|
606
|
-
/**
|
|
607
|
-
* @internal
|
|
608
|
-
*/
|
|
609
|
-
constructor(opts: __ExceptionOptionType<RuleSetDoesNotExistException, __BaseException>);
|
|
610
|
-
}
|
|
611
|
-
/**
|
|
612
|
-
* @public
|
|
613
|
-
* @enum
|
|
614
|
-
*/
|
|
615
|
-
export declare const DimensionValueSource: {
|
|
616
|
-
readonly EMAIL_HEADER: "emailHeader";
|
|
617
|
-
readonly LINK_TAG: "linkTag";
|
|
618
|
-
readonly MESSAGE_TAG: "messageTag";
|
|
619
|
-
};
|
|
620
|
-
/**
|
|
621
|
-
* @public
|
|
622
|
-
*/
|
|
623
|
-
export type DimensionValueSource = (typeof DimensionValueSource)[keyof typeof DimensionValueSource];
|
|
624
463
|
/**
|
|
625
464
|
* <p>Contains the dimension configuration to use when you publish email sending events to
|
|
626
465
|
* Amazon CloudWatch.</p>
|
|
@@ -712,73 +551,6 @@ export interface ConfigurationSet {
|
|
|
712
551
|
*/
|
|
713
552
|
Name: string | undefined;
|
|
714
553
|
}
|
|
715
|
-
/**
|
|
716
|
-
* <p>Indicates that the configuration set could not be created because of a naming
|
|
717
|
-
* conflict.</p>
|
|
718
|
-
* @public
|
|
719
|
-
*/
|
|
720
|
-
export declare class ConfigurationSetAlreadyExistsException extends __BaseException {
|
|
721
|
-
readonly name: "ConfigurationSetAlreadyExistsException";
|
|
722
|
-
readonly $fault: "client";
|
|
723
|
-
/**
|
|
724
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
725
|
-
* @public
|
|
726
|
-
*/
|
|
727
|
-
ConfigurationSetName?: string | undefined;
|
|
728
|
-
/**
|
|
729
|
-
* @internal
|
|
730
|
-
*/
|
|
731
|
-
constructor(opts: __ExceptionOptionType<ConfigurationSetAlreadyExistsException, __BaseException>);
|
|
732
|
-
}
|
|
733
|
-
/**
|
|
734
|
-
* @public
|
|
735
|
-
* @enum
|
|
736
|
-
*/
|
|
737
|
-
export declare const ConfigurationSetAttribute: {
|
|
738
|
-
readonly DELIVERY_OPTIONS: "deliveryOptions";
|
|
739
|
-
readonly EVENT_DESTINATIONS: "eventDestinations";
|
|
740
|
-
readonly REPUTATION_OPTIONS: "reputationOptions";
|
|
741
|
-
readonly TRACKING_OPTIONS: "trackingOptions";
|
|
742
|
-
};
|
|
743
|
-
/**
|
|
744
|
-
* @public
|
|
745
|
-
*/
|
|
746
|
-
export type ConfigurationSetAttribute = (typeof ConfigurationSetAttribute)[keyof typeof ConfigurationSetAttribute];
|
|
747
|
-
/**
|
|
748
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
749
|
-
* @public
|
|
750
|
-
*/
|
|
751
|
-
export declare class ConfigurationSetDoesNotExistException extends __BaseException {
|
|
752
|
-
readonly name: "ConfigurationSetDoesNotExistException";
|
|
753
|
-
readonly $fault: "client";
|
|
754
|
-
/**
|
|
755
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
756
|
-
* @public
|
|
757
|
-
*/
|
|
758
|
-
ConfigurationSetName?: string | undefined;
|
|
759
|
-
/**
|
|
760
|
-
* @internal
|
|
761
|
-
*/
|
|
762
|
-
constructor(opts: __ExceptionOptionType<ConfigurationSetDoesNotExistException, __BaseException>);
|
|
763
|
-
}
|
|
764
|
-
/**
|
|
765
|
-
* <p>Indicates that email sending is disabled for the configuration set.</p>
|
|
766
|
-
* <p>You can enable or disable email sending for a configuration set using <a>UpdateConfigurationSetSendingEnabled</a>.</p>
|
|
767
|
-
* @public
|
|
768
|
-
*/
|
|
769
|
-
export declare class ConfigurationSetSendingPausedException extends __BaseException {
|
|
770
|
-
readonly name: "ConfigurationSetSendingPausedException";
|
|
771
|
-
readonly $fault: "client";
|
|
772
|
-
/**
|
|
773
|
-
* <p>The name of the configuration set for which email sending is disabled.</p>
|
|
774
|
-
* @public
|
|
775
|
-
*/
|
|
776
|
-
ConfigurationSetName?: string | undefined;
|
|
777
|
-
/**
|
|
778
|
-
* @internal
|
|
779
|
-
*/
|
|
780
|
-
constructor(opts: __ExceptionOptionType<ConfigurationSetSendingPausedException, __BaseException>);
|
|
781
|
-
}
|
|
782
554
|
/**
|
|
783
555
|
* <p>When included in a receipt rule, this action parses the received message and
|
|
784
556
|
* starts an email contact in Amazon Connect on your behalf.</p>
|
|
@@ -827,19 +599,6 @@ export interface CreateConfigurationSetRequest {
|
|
|
827
599
|
*/
|
|
828
600
|
export interface CreateConfigurationSetResponse {
|
|
829
601
|
}
|
|
830
|
-
/**
|
|
831
|
-
* <p>Indicates that the configuration set is invalid. See the error message for
|
|
832
|
-
* details.</p>
|
|
833
|
-
* @public
|
|
834
|
-
*/
|
|
835
|
-
export declare class InvalidConfigurationSetException extends __BaseException {
|
|
836
|
-
readonly name: "InvalidConfigurationSetException";
|
|
837
|
-
readonly $fault: "client";
|
|
838
|
-
/**
|
|
839
|
-
* @internal
|
|
840
|
-
*/
|
|
841
|
-
constructor(opts: __ExceptionOptionType<InvalidConfigurationSetException, __BaseException>);
|
|
842
|
-
}
|
|
843
602
|
/**
|
|
844
603
|
* <p>Contains the delivery stream ARN and the IAM role ARN associated with an Amazon Kinesis Firehose event
|
|
845
604
|
* destination.</p>
|
|
@@ -862,24 +621,6 @@ export interface KinesisFirehoseDestination {
|
|
|
862
621
|
*/
|
|
863
622
|
DeliveryStreamARN: string | undefined;
|
|
864
623
|
}
|
|
865
|
-
/**
|
|
866
|
-
* @public
|
|
867
|
-
* @enum
|
|
868
|
-
*/
|
|
869
|
-
export declare const EventType: {
|
|
870
|
-
readonly BOUNCE: "bounce";
|
|
871
|
-
readonly CLICK: "click";
|
|
872
|
-
readonly COMPLAINT: "complaint";
|
|
873
|
-
readonly DELIVERY: "delivery";
|
|
874
|
-
readonly OPEN: "open";
|
|
875
|
-
readonly REJECT: "reject";
|
|
876
|
-
readonly RENDERING_FAILURE: "renderingFailure";
|
|
877
|
-
readonly SEND: "send";
|
|
878
|
-
};
|
|
879
|
-
/**
|
|
880
|
-
* @public
|
|
881
|
-
*/
|
|
882
|
-
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
883
624
|
/**
|
|
884
625
|
* <p>Contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event destination.</p>
|
|
885
626
|
* <p>Event destinations, such as Amazon SNS, are associated with configuration sets, which
|
|
@@ -1026,98 +767,6 @@ export interface CreateConfigurationSetEventDestinationRequest {
|
|
|
1026
767
|
*/
|
|
1027
768
|
export interface CreateConfigurationSetEventDestinationResponse {
|
|
1028
769
|
}
|
|
1029
|
-
/**
|
|
1030
|
-
* <p>Indicates that the event destination could not be created because of a naming
|
|
1031
|
-
* conflict.</p>
|
|
1032
|
-
* @public
|
|
1033
|
-
*/
|
|
1034
|
-
export declare class EventDestinationAlreadyExistsException extends __BaseException {
|
|
1035
|
-
readonly name: "EventDestinationAlreadyExistsException";
|
|
1036
|
-
readonly $fault: "client";
|
|
1037
|
-
/**
|
|
1038
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
1039
|
-
* @public
|
|
1040
|
-
*/
|
|
1041
|
-
ConfigurationSetName?: string | undefined;
|
|
1042
|
-
/**
|
|
1043
|
-
* <p>Indicates that the event destination does not exist.</p>
|
|
1044
|
-
* @public
|
|
1045
|
-
*/
|
|
1046
|
-
EventDestinationName?: string | undefined;
|
|
1047
|
-
/**
|
|
1048
|
-
* @internal
|
|
1049
|
-
*/
|
|
1050
|
-
constructor(opts: __ExceptionOptionType<EventDestinationAlreadyExistsException, __BaseException>);
|
|
1051
|
-
}
|
|
1052
|
-
/**
|
|
1053
|
-
* <p>Indicates that the Amazon CloudWatch destination is invalid. See the error message for
|
|
1054
|
-
* details.</p>
|
|
1055
|
-
* @public
|
|
1056
|
-
*/
|
|
1057
|
-
export declare class InvalidCloudWatchDestinationException extends __BaseException {
|
|
1058
|
-
readonly name: "InvalidCloudWatchDestinationException";
|
|
1059
|
-
readonly $fault: "client";
|
|
1060
|
-
/**
|
|
1061
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
1062
|
-
* @public
|
|
1063
|
-
*/
|
|
1064
|
-
ConfigurationSetName?: string | undefined;
|
|
1065
|
-
/**
|
|
1066
|
-
* <p>Indicates that the event destination does not exist.</p>
|
|
1067
|
-
* @public
|
|
1068
|
-
*/
|
|
1069
|
-
EventDestinationName?: string | undefined;
|
|
1070
|
-
/**
|
|
1071
|
-
* @internal
|
|
1072
|
-
*/
|
|
1073
|
-
constructor(opts: __ExceptionOptionType<InvalidCloudWatchDestinationException, __BaseException>);
|
|
1074
|
-
}
|
|
1075
|
-
/**
|
|
1076
|
-
* <p>Indicates that the Amazon Kinesis Firehose destination is invalid. See the error
|
|
1077
|
-
* message for details.</p>
|
|
1078
|
-
* @public
|
|
1079
|
-
*/
|
|
1080
|
-
export declare class InvalidFirehoseDestinationException extends __BaseException {
|
|
1081
|
-
readonly name: "InvalidFirehoseDestinationException";
|
|
1082
|
-
readonly $fault: "client";
|
|
1083
|
-
/**
|
|
1084
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
1085
|
-
* @public
|
|
1086
|
-
*/
|
|
1087
|
-
ConfigurationSetName?: string | undefined;
|
|
1088
|
-
/**
|
|
1089
|
-
* <p>Indicates that the event destination does not exist.</p>
|
|
1090
|
-
* @public
|
|
1091
|
-
*/
|
|
1092
|
-
EventDestinationName?: string | undefined;
|
|
1093
|
-
/**
|
|
1094
|
-
* @internal
|
|
1095
|
-
*/
|
|
1096
|
-
constructor(opts: __ExceptionOptionType<InvalidFirehoseDestinationException, __BaseException>);
|
|
1097
|
-
}
|
|
1098
|
-
/**
|
|
1099
|
-
* <p>Indicates that the Amazon Simple Notification Service (Amazon SNS) destination is
|
|
1100
|
-
* invalid. See the error message for details.</p>
|
|
1101
|
-
* @public
|
|
1102
|
-
*/
|
|
1103
|
-
export declare class InvalidSNSDestinationException extends __BaseException {
|
|
1104
|
-
readonly name: "InvalidSNSDestinationException";
|
|
1105
|
-
readonly $fault: "client";
|
|
1106
|
-
/**
|
|
1107
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
1108
|
-
* @public
|
|
1109
|
-
*/
|
|
1110
|
-
ConfigurationSetName?: string | undefined;
|
|
1111
|
-
/**
|
|
1112
|
-
* <p>Indicates that the event destination does not exist.</p>
|
|
1113
|
-
* @public
|
|
1114
|
-
*/
|
|
1115
|
-
EventDestinationName?: string | undefined;
|
|
1116
|
-
/**
|
|
1117
|
-
* @internal
|
|
1118
|
-
*/
|
|
1119
|
-
constructor(opts: __ExceptionOptionType<InvalidSNSDestinationException, __BaseException>);
|
|
1120
|
-
}
|
|
1121
770
|
/**
|
|
1122
771
|
* <p>A domain that is used to redirect email recipients to an Amazon SES-operated domain. This
|
|
1123
772
|
* domain captures open and click events generated by Amazon SES emails.</p>
|
|
@@ -1162,47 +811,6 @@ export interface CreateConfigurationSetTrackingOptionsRequest {
|
|
|
1162
811
|
*/
|
|
1163
812
|
export interface CreateConfigurationSetTrackingOptionsResponse {
|
|
1164
813
|
}
|
|
1165
|
-
/**
|
|
1166
|
-
* <p>Indicates that the custom domain to be used for open and click tracking redirects is
|
|
1167
|
-
* invalid. This error appears most often in the following situations:</p>
|
|
1168
|
-
* <ul>
|
|
1169
|
-
* <li>
|
|
1170
|
-
* <p>When the tracking domain you specified is not verified in Amazon SES.</p>
|
|
1171
|
-
* </li>
|
|
1172
|
-
* <li>
|
|
1173
|
-
* <p>When the tracking domain you specified is not a valid domain or
|
|
1174
|
-
* subdomain.</p>
|
|
1175
|
-
* </li>
|
|
1176
|
-
* </ul>
|
|
1177
|
-
* @public
|
|
1178
|
-
*/
|
|
1179
|
-
export declare class InvalidTrackingOptionsException extends __BaseException {
|
|
1180
|
-
readonly name: "InvalidTrackingOptionsException";
|
|
1181
|
-
readonly $fault: "client";
|
|
1182
|
-
/**
|
|
1183
|
-
* @internal
|
|
1184
|
-
*/
|
|
1185
|
-
constructor(opts: __ExceptionOptionType<InvalidTrackingOptionsException, __BaseException>);
|
|
1186
|
-
}
|
|
1187
|
-
/**
|
|
1188
|
-
* <p>Indicates that the configuration set you specified already contains a TrackingOptions
|
|
1189
|
-
* object.</p>
|
|
1190
|
-
* @public
|
|
1191
|
-
*/
|
|
1192
|
-
export declare class TrackingOptionsAlreadyExistsException extends __BaseException {
|
|
1193
|
-
readonly name: "TrackingOptionsAlreadyExistsException";
|
|
1194
|
-
readonly $fault: "client";
|
|
1195
|
-
/**
|
|
1196
|
-
* <p>Indicates that a TrackingOptions object already exists in the specified configuration
|
|
1197
|
-
* set.</p>
|
|
1198
|
-
* @public
|
|
1199
|
-
*/
|
|
1200
|
-
ConfigurationSetName?: string | undefined;
|
|
1201
|
-
/**
|
|
1202
|
-
* @internal
|
|
1203
|
-
*/
|
|
1204
|
-
constructor(opts: __ExceptionOptionType<TrackingOptionsAlreadyExistsException, __BaseException>);
|
|
1205
|
-
}
|
|
1206
814
|
/**
|
|
1207
815
|
* <p>Represents a request to create a custom verification email template.</p>
|
|
1208
816
|
* @public
|
|
@@ -1245,68 +853,6 @@ export interface CreateCustomVerificationEmailTemplateRequest {
|
|
|
1245
853
|
*/
|
|
1246
854
|
FailureRedirectionURL: string | undefined;
|
|
1247
855
|
}
|
|
1248
|
-
/**
|
|
1249
|
-
* <p>Indicates that custom verification email template provided content is invalid.</p>
|
|
1250
|
-
* @public
|
|
1251
|
-
*/
|
|
1252
|
-
export declare class CustomVerificationEmailInvalidContentException extends __BaseException {
|
|
1253
|
-
readonly name: "CustomVerificationEmailInvalidContentException";
|
|
1254
|
-
readonly $fault: "client";
|
|
1255
|
-
/**
|
|
1256
|
-
* @internal
|
|
1257
|
-
*/
|
|
1258
|
-
constructor(opts: __ExceptionOptionType<CustomVerificationEmailInvalidContentException, __BaseException>);
|
|
1259
|
-
}
|
|
1260
|
-
/**
|
|
1261
|
-
* <p>Indicates that a custom verification email template with the name you specified
|
|
1262
|
-
* already exists.</p>
|
|
1263
|
-
* @public
|
|
1264
|
-
*/
|
|
1265
|
-
export declare class CustomVerificationEmailTemplateAlreadyExistsException extends __BaseException {
|
|
1266
|
-
readonly name: "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
1267
|
-
readonly $fault: "client";
|
|
1268
|
-
/**
|
|
1269
|
-
* <p>Indicates that the provided custom verification email template with the specified
|
|
1270
|
-
* template name already exists.</p>
|
|
1271
|
-
* @public
|
|
1272
|
-
*/
|
|
1273
|
-
CustomVerificationEmailTemplateName?: string | undefined;
|
|
1274
|
-
/**
|
|
1275
|
-
* @internal
|
|
1276
|
-
*/
|
|
1277
|
-
constructor(opts: __ExceptionOptionType<CustomVerificationEmailTemplateAlreadyExistsException, __BaseException>);
|
|
1278
|
-
}
|
|
1279
|
-
/**
|
|
1280
|
-
* <p>Indicates that the sender address specified for a custom verification email is not
|
|
1281
|
-
* verified, and is therefore not eligible to send the custom verification email. </p>
|
|
1282
|
-
* @public
|
|
1283
|
-
*/
|
|
1284
|
-
export declare class FromEmailAddressNotVerifiedException extends __BaseException {
|
|
1285
|
-
readonly name: "FromEmailAddressNotVerifiedException";
|
|
1286
|
-
readonly $fault: "client";
|
|
1287
|
-
/**
|
|
1288
|
-
* <p>Indicates that the from email address associated with the custom verification email
|
|
1289
|
-
* template is not verified.</p>
|
|
1290
|
-
* @public
|
|
1291
|
-
*/
|
|
1292
|
-
FromEmailAddress?: string | undefined;
|
|
1293
|
-
/**
|
|
1294
|
-
* @internal
|
|
1295
|
-
*/
|
|
1296
|
-
constructor(opts: __ExceptionOptionType<FromEmailAddressNotVerifiedException, __BaseException>);
|
|
1297
|
-
}
|
|
1298
|
-
/**
|
|
1299
|
-
* @public
|
|
1300
|
-
* @enum
|
|
1301
|
-
*/
|
|
1302
|
-
export declare const ReceiptFilterPolicy: {
|
|
1303
|
-
readonly Allow: "Allow";
|
|
1304
|
-
readonly Block: "Block";
|
|
1305
|
-
};
|
|
1306
|
-
/**
|
|
1307
|
-
* @public
|
|
1308
|
-
*/
|
|
1309
|
-
export type ReceiptFilterPolicy = (typeof ReceiptFilterPolicy)[keyof typeof ReceiptFilterPolicy];
|
|
1310
856
|
/**
|
|
1311
857
|
* <p>A receipt IP address filter enables you to specify whether to accept or reject mail
|
|
1312
858
|
* originating from an IP address or range of IP addresses.</p>
|
|
@@ -1384,18 +930,6 @@ export interface CreateReceiptFilterRequest {
|
|
|
1384
930
|
*/
|
|
1385
931
|
export interface CreateReceiptFilterResponse {
|
|
1386
932
|
}
|
|
1387
|
-
/**
|
|
1388
|
-
* @public
|
|
1389
|
-
* @enum
|
|
1390
|
-
*/
|
|
1391
|
-
export declare const InvocationType: {
|
|
1392
|
-
readonly Event: "Event";
|
|
1393
|
-
readonly RequestResponse: "RequestResponse";
|
|
1394
|
-
};
|
|
1395
|
-
/**
|
|
1396
|
-
* @public
|
|
1397
|
-
*/
|
|
1398
|
-
export type InvocationType = (typeof InvocationType)[keyof typeof InvocationType];
|
|
1399
933
|
/**
|
|
1400
934
|
* <p>When included in a receipt rule, this action calls an Amazon Web Services Lambda function and,
|
|
1401
935
|
* optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).</p>
|
|
@@ -1541,18 +1075,6 @@ export interface S3Action {
|
|
|
1541
1075
|
*/
|
|
1542
1076
|
IamRoleArn?: string | undefined;
|
|
1543
1077
|
}
|
|
1544
|
-
/**
|
|
1545
|
-
* @public
|
|
1546
|
-
* @enum
|
|
1547
|
-
*/
|
|
1548
|
-
export declare const SNSActionEncoding: {
|
|
1549
|
-
readonly Base64: "Base64";
|
|
1550
|
-
readonly UTF8: "UTF-8";
|
|
1551
|
-
};
|
|
1552
|
-
/**
|
|
1553
|
-
* @public
|
|
1554
|
-
*/
|
|
1555
|
-
export type SNSActionEncoding = (typeof SNSActionEncoding)[keyof typeof SNSActionEncoding];
|
|
1556
1078
|
/**
|
|
1557
1079
|
* <p>When included in a receipt rule, this action publishes a notification to Amazon Simple Notification Service
|
|
1558
1080
|
* (Amazon SNS). This action includes a complete copy of the email content in the Amazon SNS
|
|
@@ -1589,17 +1111,6 @@ export interface SNSAction {
|
|
|
1589
1111
|
*/
|
|
1590
1112
|
Encoding?: SNSActionEncoding | undefined;
|
|
1591
1113
|
}
|
|
1592
|
-
/**
|
|
1593
|
-
* @public
|
|
1594
|
-
* @enum
|
|
1595
|
-
*/
|
|
1596
|
-
export declare const StopScope: {
|
|
1597
|
-
readonly RULE_SET: "RuleSet";
|
|
1598
|
-
};
|
|
1599
|
-
/**
|
|
1600
|
-
* @public
|
|
1601
|
-
*/
|
|
1602
|
-
export type StopScope = (typeof StopScope)[keyof typeof StopScope];
|
|
1603
1114
|
/**
|
|
1604
1115
|
* <p>When included in a receipt rule, this action terminates the evaluation of the receipt
|
|
1605
1116
|
* rule set and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).</p>
|
|
@@ -1707,18 +1218,6 @@ export interface ReceiptAction {
|
|
|
1707
1218
|
*/
|
|
1708
1219
|
ConnectAction?: ConnectAction | undefined;
|
|
1709
1220
|
}
|
|
1710
|
-
/**
|
|
1711
|
-
* @public
|
|
1712
|
-
* @enum
|
|
1713
|
-
*/
|
|
1714
|
-
export declare const TlsPolicy: {
|
|
1715
|
-
readonly Optional: "Optional";
|
|
1716
|
-
readonly Require: "Require";
|
|
1717
|
-
};
|
|
1718
|
-
/**
|
|
1719
|
-
* @public
|
|
1720
|
-
*/
|
|
1721
|
-
export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
|
|
1722
1221
|
/**
|
|
1723
1222
|
* <p>Receipt rules enable you to specify which actions Amazon SES should take when it receives
|
|
1724
1223
|
* mail on behalf of one or more email addresses or domains that you own.</p>
|
|
@@ -1811,83 +1310,6 @@ export interface CreateReceiptRuleRequest {
|
|
|
1811
1310
|
*/
|
|
1812
1311
|
export interface CreateReceiptRuleResponse {
|
|
1813
1312
|
}
|
|
1814
|
-
/**
|
|
1815
|
-
* <p>Indicates that the provided Amazon Web Services Lambda function is invalid, or that Amazon SES could
|
|
1816
|
-
* not execute the provided function, possibly due to permissions issues. For information
|
|
1817
|
-
* about giving permissions, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html">Amazon SES
|
|
1818
|
-
* Developer Guide</a>.</p>
|
|
1819
|
-
* @public
|
|
1820
|
-
*/
|
|
1821
|
-
export declare class InvalidLambdaFunctionException extends __BaseException {
|
|
1822
|
-
readonly name: "InvalidLambdaFunctionException";
|
|
1823
|
-
readonly $fault: "client";
|
|
1824
|
-
/**
|
|
1825
|
-
* <p>Indicates that the ARN of the function was not found.</p>
|
|
1826
|
-
* @public
|
|
1827
|
-
*/
|
|
1828
|
-
FunctionArn?: string | undefined;
|
|
1829
|
-
/**
|
|
1830
|
-
* @internal
|
|
1831
|
-
*/
|
|
1832
|
-
constructor(opts: __ExceptionOptionType<InvalidLambdaFunctionException, __BaseException>);
|
|
1833
|
-
}
|
|
1834
|
-
/**
|
|
1835
|
-
* <p>Indicates that the provided Amazon S3 bucket or Amazon Web Services KMS encryption key is invalid,
|
|
1836
|
-
* or that Amazon SES could not publish to the bucket, possibly due to permissions issues.
|
|
1837
|
-
* For information about giving permissions, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html">Amazon SES
|
|
1838
|
-
* Developer Guide</a>.</p>
|
|
1839
|
-
* @public
|
|
1840
|
-
*/
|
|
1841
|
-
export declare class InvalidS3ConfigurationException extends __BaseException {
|
|
1842
|
-
readonly name: "InvalidS3ConfigurationException";
|
|
1843
|
-
readonly $fault: "client";
|
|
1844
|
-
/**
|
|
1845
|
-
* <p>Indicated that the S3 Bucket was not found.</p>
|
|
1846
|
-
* @public
|
|
1847
|
-
*/
|
|
1848
|
-
Bucket?: string | undefined;
|
|
1849
|
-
/**
|
|
1850
|
-
* @internal
|
|
1851
|
-
*/
|
|
1852
|
-
constructor(opts: __ExceptionOptionType<InvalidS3ConfigurationException, __BaseException>);
|
|
1853
|
-
}
|
|
1854
|
-
/**
|
|
1855
|
-
* <p>Indicates that the provided Amazon SNS topic is invalid, or that Amazon SES could not
|
|
1856
|
-
* publish to the topic, possibly due to permissions issues. For information about giving
|
|
1857
|
-
* permissions, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html">Amazon SES
|
|
1858
|
-
* Developer Guide</a>.</p>
|
|
1859
|
-
* @public
|
|
1860
|
-
*/
|
|
1861
|
-
export declare class InvalidSnsTopicException extends __BaseException {
|
|
1862
|
-
readonly name: "InvalidSnsTopicException";
|
|
1863
|
-
readonly $fault: "client";
|
|
1864
|
-
/**
|
|
1865
|
-
* <p>Indicates that the topic does not exist.</p>
|
|
1866
|
-
* @public
|
|
1867
|
-
*/
|
|
1868
|
-
Topic?: string | undefined;
|
|
1869
|
-
/**
|
|
1870
|
-
* @internal
|
|
1871
|
-
*/
|
|
1872
|
-
constructor(opts: __ExceptionOptionType<InvalidSnsTopicException, __BaseException>);
|
|
1873
|
-
}
|
|
1874
|
-
/**
|
|
1875
|
-
* <p>Indicates that the provided receipt rule does not exist.</p>
|
|
1876
|
-
* @public
|
|
1877
|
-
*/
|
|
1878
|
-
export declare class RuleDoesNotExistException extends __BaseException {
|
|
1879
|
-
readonly name: "RuleDoesNotExistException";
|
|
1880
|
-
readonly $fault: "client";
|
|
1881
|
-
/**
|
|
1882
|
-
* <p>Indicates that the named receipt rule does not exist.</p>
|
|
1883
|
-
* @public
|
|
1884
|
-
*/
|
|
1885
|
-
Name?: string | undefined;
|
|
1886
|
-
/**
|
|
1887
|
-
* @internal
|
|
1888
|
-
*/
|
|
1889
|
-
constructor(opts: __ExceptionOptionType<RuleDoesNotExistException, __BaseException>);
|
|
1890
|
-
}
|
|
1891
1313
|
/**
|
|
1892
1314
|
* <p>Represents a request to create an empty receipt rule set. You use receipt rule sets to
|
|
1893
1315
|
* receive email with Amazon SES. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html">Amazon SES Developer
|
|
@@ -1968,34 +1390,6 @@ export interface CreateTemplateRequest {
|
|
|
1968
1390
|
*/
|
|
1969
1391
|
export interface CreateTemplateResponse {
|
|
1970
1392
|
}
|
|
1971
|
-
/**
|
|
1972
|
-
* <p>Indicates that the template that you specified could not be rendered. This issue may
|
|
1973
|
-
* occur when a template refers to a partial that does not exist.</p>
|
|
1974
|
-
* @public
|
|
1975
|
-
*/
|
|
1976
|
-
export declare class InvalidTemplateException extends __BaseException {
|
|
1977
|
-
readonly name: "InvalidTemplateException";
|
|
1978
|
-
readonly $fault: "client";
|
|
1979
|
-
TemplateName?: string | undefined;
|
|
1980
|
-
/**
|
|
1981
|
-
* @internal
|
|
1982
|
-
*/
|
|
1983
|
-
constructor(opts: __ExceptionOptionType<InvalidTemplateException, __BaseException>);
|
|
1984
|
-
}
|
|
1985
|
-
/**
|
|
1986
|
-
* @public
|
|
1987
|
-
* @enum
|
|
1988
|
-
*/
|
|
1989
|
-
export declare const CustomMailFromStatus: {
|
|
1990
|
-
readonly Failed: "Failed";
|
|
1991
|
-
readonly Pending: "Pending";
|
|
1992
|
-
readonly Success: "Success";
|
|
1993
|
-
readonly TemporaryFailure: "TemporaryFailure";
|
|
1994
|
-
};
|
|
1995
|
-
/**
|
|
1996
|
-
* @public
|
|
1997
|
-
*/
|
|
1998
|
-
export type CustomMailFromStatus = (typeof CustomMailFromStatus)[keyof typeof CustomMailFromStatus];
|
|
1999
1393
|
/**
|
|
2000
1394
|
* <p>Contains information about a custom verification email template.</p>
|
|
2001
1395
|
* @public
|
|
@@ -2029,24 +1423,6 @@ export interface CustomVerificationEmailTemplate {
|
|
|
2029
1423
|
*/
|
|
2030
1424
|
FailureRedirectionURL?: string | undefined;
|
|
2031
1425
|
}
|
|
2032
|
-
/**
|
|
2033
|
-
* <p>Indicates that a custom verification email template with the name you specified does
|
|
2034
|
-
* not exist.</p>
|
|
2035
|
-
* @public
|
|
2036
|
-
*/
|
|
2037
|
-
export declare class CustomVerificationEmailTemplateDoesNotExistException extends __BaseException {
|
|
2038
|
-
readonly name: "CustomVerificationEmailTemplateDoesNotExistException";
|
|
2039
|
-
readonly $fault: "client";
|
|
2040
|
-
/**
|
|
2041
|
-
* <p>Indicates that the provided custom verification email template does not exist.</p>
|
|
2042
|
-
* @public
|
|
2043
|
-
*/
|
|
2044
|
-
CustomVerificationEmailTemplateName?: string | undefined;
|
|
2045
|
-
/**
|
|
2046
|
-
* @internal
|
|
2047
|
-
*/
|
|
2048
|
-
constructor(opts: __ExceptionOptionType<CustomVerificationEmailTemplateDoesNotExistException, __BaseException>);
|
|
2049
|
-
}
|
|
2050
1426
|
/**
|
|
2051
1427
|
* <p>Represents a request to delete a configuration set. Configuration sets enable you to
|
|
2052
1428
|
* publish email sending events. For information about using configuration sets, see the
|
|
@@ -2093,28 +1469,6 @@ export interface DeleteConfigurationSetEventDestinationRequest {
|
|
|
2093
1469
|
*/
|
|
2094
1470
|
export interface DeleteConfigurationSetEventDestinationResponse {
|
|
2095
1471
|
}
|
|
2096
|
-
/**
|
|
2097
|
-
* <p>Indicates that the event destination does not exist.</p>
|
|
2098
|
-
* @public
|
|
2099
|
-
*/
|
|
2100
|
-
export declare class EventDestinationDoesNotExistException extends __BaseException {
|
|
2101
|
-
readonly name: "EventDestinationDoesNotExistException";
|
|
2102
|
-
readonly $fault: "client";
|
|
2103
|
-
/**
|
|
2104
|
-
* <p>Indicates that the configuration set does not exist.</p>
|
|
2105
|
-
* @public
|
|
2106
|
-
*/
|
|
2107
|
-
ConfigurationSetName?: string | undefined;
|
|
2108
|
-
/**
|
|
2109
|
-
* <p>Indicates that the event destination does not exist.</p>
|
|
2110
|
-
* @public
|
|
2111
|
-
*/
|
|
2112
|
-
EventDestinationName?: string | undefined;
|
|
2113
|
-
/**
|
|
2114
|
-
* @internal
|
|
2115
|
-
*/
|
|
2116
|
-
constructor(opts: __ExceptionOptionType<EventDestinationDoesNotExistException, __BaseException>);
|
|
2117
|
-
}
|
|
2118
1472
|
/**
|
|
2119
1473
|
* <p>Represents a request to delete open and click tracking options in a configuration set.
|
|
2120
1474
|
* </p>
|
|
@@ -2133,24 +1487,6 @@ export interface DeleteConfigurationSetTrackingOptionsRequest {
|
|
|
2133
1487
|
*/
|
|
2134
1488
|
export interface DeleteConfigurationSetTrackingOptionsResponse {
|
|
2135
1489
|
}
|
|
2136
|
-
/**
|
|
2137
|
-
* <p>Indicates that the TrackingOptions object you specified does not exist.</p>
|
|
2138
|
-
* @public
|
|
2139
|
-
*/
|
|
2140
|
-
export declare class TrackingOptionsDoesNotExistException extends __BaseException {
|
|
2141
|
-
readonly name: "TrackingOptionsDoesNotExistException";
|
|
2142
|
-
readonly $fault: "client";
|
|
2143
|
-
/**
|
|
2144
|
-
* <p>Indicates that a TrackingOptions object does not exist in the specified configuration
|
|
2145
|
-
* set.</p>
|
|
2146
|
-
* @public
|
|
2147
|
-
*/
|
|
2148
|
-
ConfigurationSetName?: string | undefined;
|
|
2149
|
-
/**
|
|
2150
|
-
* @internal
|
|
2151
|
-
*/
|
|
2152
|
-
constructor(opts: __ExceptionOptionType<TrackingOptionsDoesNotExistException, __BaseException>);
|
|
2153
|
-
}
|
|
2154
1490
|
/**
|
|
2155
1491
|
* <p>Represents a request to delete an existing custom verification email template.</p>
|
|
2156
1492
|
* @public
|
|
@@ -2523,21 +1859,6 @@ export interface DescribeReceiptRuleSetResponse {
|
|
|
2523
1859
|
*/
|
|
2524
1860
|
Rules?: ReceiptRule[] | undefined;
|
|
2525
1861
|
}
|
|
2526
|
-
/**
|
|
2527
|
-
* @public
|
|
2528
|
-
* @enum
|
|
2529
|
-
*/
|
|
2530
|
-
export declare const VerificationStatus: {
|
|
2531
|
-
readonly Failed: "Failed";
|
|
2532
|
-
readonly NotStarted: "NotStarted";
|
|
2533
|
-
readonly Pending: "Pending";
|
|
2534
|
-
readonly Success: "Success";
|
|
2535
|
-
readonly TemporaryFailure: "TemporaryFailure";
|
|
2536
|
-
};
|
|
2537
|
-
/**
|
|
2538
|
-
* @public
|
|
2539
|
-
*/
|
|
2540
|
-
export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
2541
1862
|
/**
|
|
2542
1863
|
* <p>Represents the DKIM attributes of a verified email address or a domain.</p>
|
|
2543
1864
|
* @public
|
|
@@ -2974,71 +2295,6 @@ export interface GetTemplateResponse {
|
|
|
2974
2295
|
*/
|
|
2975
2296
|
Template?: Template | undefined;
|
|
2976
2297
|
}
|
|
2977
|
-
/**
|
|
2978
|
-
* <p>Indicates that the Template object you specified does not exist in your Amazon SES
|
|
2979
|
-
* account.</p>
|
|
2980
|
-
* @public
|
|
2981
|
-
*/
|
|
2982
|
-
export declare class TemplateDoesNotExistException extends __BaseException {
|
|
2983
|
-
readonly name: "TemplateDoesNotExistException";
|
|
2984
|
-
readonly $fault: "client";
|
|
2985
|
-
TemplateName?: string | undefined;
|
|
2986
|
-
/**
|
|
2987
|
-
* @internal
|
|
2988
|
-
*/
|
|
2989
|
-
constructor(opts: __ExceptionOptionType<TemplateDoesNotExistException, __BaseException>);
|
|
2990
|
-
}
|
|
2991
|
-
/**
|
|
2992
|
-
* @public
|
|
2993
|
-
* @enum
|
|
2994
|
-
*/
|
|
2995
|
-
export declare const IdentityType: {
|
|
2996
|
-
readonly Domain: "Domain";
|
|
2997
|
-
readonly EmailAddress: "EmailAddress";
|
|
2998
|
-
};
|
|
2999
|
-
/**
|
|
3000
|
-
* @public
|
|
3001
|
-
*/
|
|
3002
|
-
export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
|
|
3003
|
-
/**
|
|
3004
|
-
* <p>Indicates that provided delivery option is invalid.</p>
|
|
3005
|
-
* @public
|
|
3006
|
-
*/
|
|
3007
|
-
export declare class InvalidDeliveryOptionsException extends __BaseException {
|
|
3008
|
-
readonly name: "InvalidDeliveryOptionsException";
|
|
3009
|
-
readonly $fault: "client";
|
|
3010
|
-
/**
|
|
3011
|
-
* @internal
|
|
3012
|
-
*/
|
|
3013
|
-
constructor(opts: __ExceptionOptionType<InvalidDeliveryOptionsException, __BaseException>);
|
|
3014
|
-
}
|
|
3015
|
-
/**
|
|
3016
|
-
* <p>Indicates that the provided policy is invalid. Check the error stack for more
|
|
3017
|
-
* information about what caused the error.</p>
|
|
3018
|
-
* @public
|
|
3019
|
-
*/
|
|
3020
|
-
export declare class InvalidPolicyException extends __BaseException {
|
|
3021
|
-
readonly name: "InvalidPolicyException";
|
|
3022
|
-
readonly $fault: "client";
|
|
3023
|
-
/**
|
|
3024
|
-
* @internal
|
|
3025
|
-
*/
|
|
3026
|
-
constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
|
|
3027
|
-
}
|
|
3028
|
-
/**
|
|
3029
|
-
* <p>Indicates that one or more of the replacement values you provided is invalid. This
|
|
3030
|
-
* error may occur when the TemplateData object contains invalid JSON.</p>
|
|
3031
|
-
* @public
|
|
3032
|
-
*/
|
|
3033
|
-
export declare class InvalidRenderingParameterException extends __BaseException {
|
|
3034
|
-
readonly name: "InvalidRenderingParameterException";
|
|
3035
|
-
readonly $fault: "client";
|
|
3036
|
-
TemplateName?: string | undefined;
|
|
3037
|
-
/**
|
|
3038
|
-
* @internal
|
|
3039
|
-
*/
|
|
3040
|
-
constructor(opts: __ExceptionOptionType<InvalidRenderingParameterException, __BaseException>);
|
|
3041
|
-
}
|
|
3042
2298
|
/**
|
|
3043
2299
|
* <p>Represents a request to list the configuration sets associated with your
|
|
3044
2300
|
* Amazon Web Services account. Configuration sets enable you to publish email sending events. For
|
|
@@ -3313,21 +2569,6 @@ export interface ListVerifiedEmailAddressesResponse {
|
|
|
3313
2569
|
*/
|
|
3314
2570
|
VerifiedEmailAddresses?: string[] | undefined;
|
|
3315
2571
|
}
|
|
3316
|
-
/**
|
|
3317
|
-
* <p> Indicates that the message could not be sent because Amazon SES could not read the MX
|
|
3318
|
-
* record required to use the specified MAIL FROM domain. For information about editing the
|
|
3319
|
-
* custom MAIL FROM domain settings for an identity, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-edit.html">Amazon SES Developer
|
|
3320
|
-
* Guide</a>.</p>
|
|
3321
|
-
* @public
|
|
3322
|
-
*/
|
|
3323
|
-
export declare class MailFromDomainNotVerifiedException extends __BaseException {
|
|
3324
|
-
readonly name: "MailFromDomainNotVerifiedException";
|
|
3325
|
-
readonly $fault: "client";
|
|
3326
|
-
/**
|
|
3327
|
-
* @internal
|
|
3328
|
-
*/
|
|
3329
|
-
constructor(opts: __ExceptionOptionType<MailFromDomainNotVerifiedException, __BaseException>);
|
|
3330
|
-
}
|
|
3331
2572
|
/**
|
|
3332
2573
|
* <p>Represents the message to be sent, composed of a subject and a body.</p>
|
|
3333
2574
|
* @public
|
|
@@ -3372,59 +2613,6 @@ export interface MessageDsn {
|
|
|
3372
2613
|
*/
|
|
3373
2614
|
ExtensionFields?: ExtensionField[] | undefined;
|
|
3374
2615
|
}
|
|
3375
|
-
/**
|
|
3376
|
-
* <p>Indicates that the action failed, and the message could not be sent. Check the error
|
|
3377
|
-
* stack for more information about what caused the error.</p>
|
|
3378
|
-
* @public
|
|
3379
|
-
*/
|
|
3380
|
-
export declare class MessageRejected extends __BaseException {
|
|
3381
|
-
readonly name: "MessageRejected";
|
|
3382
|
-
readonly $fault: "client";
|
|
3383
|
-
/**
|
|
3384
|
-
* @internal
|
|
3385
|
-
*/
|
|
3386
|
-
constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
|
|
3387
|
-
}
|
|
3388
|
-
/**
|
|
3389
|
-
* <p>Indicates that one or more of the replacement values for the specified template was
|
|
3390
|
-
* not specified. Ensure that the TemplateData object contains references to all of the
|
|
3391
|
-
* replacement tags in the specified template.</p>
|
|
3392
|
-
* @public
|
|
3393
|
-
*/
|
|
3394
|
-
export declare class MissingRenderingAttributeException extends __BaseException {
|
|
3395
|
-
readonly name: "MissingRenderingAttributeException";
|
|
3396
|
-
readonly $fault: "client";
|
|
3397
|
-
TemplateName?: string | undefined;
|
|
3398
|
-
/**
|
|
3399
|
-
* @internal
|
|
3400
|
-
*/
|
|
3401
|
-
constructor(opts: __ExceptionOptionType<MissingRenderingAttributeException, __BaseException>);
|
|
3402
|
-
}
|
|
3403
|
-
/**
|
|
3404
|
-
* @public
|
|
3405
|
-
* @enum
|
|
3406
|
-
*/
|
|
3407
|
-
export declare const NotificationType: {
|
|
3408
|
-
readonly Bounce: "Bounce";
|
|
3409
|
-
readonly Complaint: "Complaint";
|
|
3410
|
-
readonly Delivery: "Delivery";
|
|
3411
|
-
};
|
|
3412
|
-
/**
|
|
3413
|
-
* @public
|
|
3414
|
-
*/
|
|
3415
|
-
export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
|
|
3416
|
-
/**
|
|
3417
|
-
* <p>Indicates that the account has not been granted production access.</p>
|
|
3418
|
-
* @public
|
|
3419
|
-
*/
|
|
3420
|
-
export declare class ProductionAccessNotGrantedException extends __BaseException {
|
|
3421
|
-
readonly name: "ProductionAccessNotGrantedException";
|
|
3422
|
-
readonly $fault: "client";
|
|
3423
|
-
/**
|
|
3424
|
-
* @internal
|
|
3425
|
-
*/
|
|
3426
|
-
constructor(opts: __ExceptionOptionType<ProductionAccessNotGrantedException, __BaseException>);
|
|
3427
|
-
}
|
|
3428
2616
|
/**
|
|
3429
2617
|
* <p>A request to modify the delivery options for a configuration set.</p>
|
|
3430
2618
|
* @public
|