@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.
@@ -0,0 +1,225 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const BehaviorOnMXFailure: {
6
+ readonly RejectMessage: "RejectMessage";
7
+ readonly UseDefaultValue: "UseDefaultValue";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type BehaviorOnMXFailure = (typeof BehaviorOnMXFailure)[keyof typeof BehaviorOnMXFailure];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const BounceType: {
18
+ readonly ContentRejected: "ContentRejected";
19
+ readonly DoesNotExist: "DoesNotExist";
20
+ readonly ExceededQuota: "ExceededQuota";
21
+ readonly MessageTooLarge: "MessageTooLarge";
22
+ readonly TemporaryFailure: "TemporaryFailure";
23
+ readonly Undefined: "Undefined";
24
+ };
25
+ /**
26
+ * @public
27
+ */
28
+ export type BounceType = (typeof BounceType)[keyof typeof BounceType];
29
+ /**
30
+ * @public
31
+ * @enum
32
+ */
33
+ export declare const DsnAction: {
34
+ readonly DELAYED: "delayed";
35
+ readonly DELIVERED: "delivered";
36
+ readonly EXPANDED: "expanded";
37
+ readonly FAILED: "failed";
38
+ readonly RELAYED: "relayed";
39
+ };
40
+ /**
41
+ * @public
42
+ */
43
+ export type DsnAction = (typeof DsnAction)[keyof typeof DsnAction];
44
+ /**
45
+ * @public
46
+ * @enum
47
+ */
48
+ export declare const BulkEmailStatus: {
49
+ readonly AccountDailyQuotaExceeded: "AccountDailyQuotaExceeded";
50
+ readonly AccountSendingPaused: "AccountSendingPaused";
51
+ readonly AccountSuspended: "AccountSuspended";
52
+ readonly AccountThrottled: "AccountThrottled";
53
+ readonly ConfigurationSetDoesNotExist: "ConfigurationSetDoesNotExist";
54
+ readonly ConfigurationSetSendingPaused: "ConfigurationSetSendingPaused";
55
+ readonly Failed: "Failed";
56
+ readonly InvalidParameterValue: "InvalidParameterValue";
57
+ readonly InvalidSendingPoolName: "InvalidSendingPoolName";
58
+ readonly MailFromDomainNotVerified: "MailFromDomainNotVerified";
59
+ readonly MessageRejected: "MessageRejected";
60
+ readonly Success: "Success";
61
+ readonly TemplateDoesNotExist: "TemplateDoesNotExist";
62
+ readonly TransientFailure: "TransientFailure";
63
+ };
64
+ /**
65
+ * @public
66
+ */
67
+ export type BulkEmailStatus = (typeof BulkEmailStatus)[keyof typeof BulkEmailStatus];
68
+ /**
69
+ * @public
70
+ * @enum
71
+ */
72
+ export declare const DimensionValueSource: {
73
+ readonly EMAIL_HEADER: "emailHeader";
74
+ readonly LINK_TAG: "linkTag";
75
+ readonly MESSAGE_TAG: "messageTag";
76
+ };
77
+ /**
78
+ * @public
79
+ */
80
+ export type DimensionValueSource = (typeof DimensionValueSource)[keyof typeof DimensionValueSource];
81
+ /**
82
+ * @public
83
+ * @enum
84
+ */
85
+ export declare const ConfigurationSetAttribute: {
86
+ readonly DELIVERY_OPTIONS: "deliveryOptions";
87
+ readonly EVENT_DESTINATIONS: "eventDestinations";
88
+ readonly REPUTATION_OPTIONS: "reputationOptions";
89
+ readonly TRACKING_OPTIONS: "trackingOptions";
90
+ };
91
+ /**
92
+ * @public
93
+ */
94
+ export type ConfigurationSetAttribute = (typeof ConfigurationSetAttribute)[keyof typeof ConfigurationSetAttribute];
95
+ /**
96
+ * @public
97
+ * @enum
98
+ */
99
+ export declare const EventType: {
100
+ readonly BOUNCE: "bounce";
101
+ readonly CLICK: "click";
102
+ readonly COMPLAINT: "complaint";
103
+ readonly DELIVERY: "delivery";
104
+ readonly OPEN: "open";
105
+ readonly REJECT: "reject";
106
+ readonly RENDERING_FAILURE: "renderingFailure";
107
+ readonly SEND: "send";
108
+ };
109
+ /**
110
+ * @public
111
+ */
112
+ export type EventType = (typeof EventType)[keyof typeof EventType];
113
+ /**
114
+ * @public
115
+ * @enum
116
+ */
117
+ export declare const ReceiptFilterPolicy: {
118
+ readonly Allow: "Allow";
119
+ readonly Block: "Block";
120
+ };
121
+ /**
122
+ * @public
123
+ */
124
+ export type ReceiptFilterPolicy = (typeof ReceiptFilterPolicy)[keyof typeof ReceiptFilterPolicy];
125
+ /**
126
+ * @public
127
+ * @enum
128
+ */
129
+ export declare const InvocationType: {
130
+ readonly Event: "Event";
131
+ readonly RequestResponse: "RequestResponse";
132
+ };
133
+ /**
134
+ * @public
135
+ */
136
+ export type InvocationType = (typeof InvocationType)[keyof typeof InvocationType];
137
+ /**
138
+ * @public
139
+ * @enum
140
+ */
141
+ export declare const SNSActionEncoding: {
142
+ readonly Base64: "Base64";
143
+ readonly UTF8: "UTF-8";
144
+ };
145
+ /**
146
+ * @public
147
+ */
148
+ export type SNSActionEncoding = (typeof SNSActionEncoding)[keyof typeof SNSActionEncoding];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const StopScope: {
154
+ readonly RULE_SET: "RuleSet";
155
+ };
156
+ /**
157
+ * @public
158
+ */
159
+ export type StopScope = (typeof StopScope)[keyof typeof StopScope];
160
+ /**
161
+ * @public
162
+ * @enum
163
+ */
164
+ export declare const TlsPolicy: {
165
+ readonly Optional: "Optional";
166
+ readonly Require: "Require";
167
+ };
168
+ /**
169
+ * @public
170
+ */
171
+ export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
172
+ /**
173
+ * @public
174
+ * @enum
175
+ */
176
+ export declare const CustomMailFromStatus: {
177
+ readonly Failed: "Failed";
178
+ readonly Pending: "Pending";
179
+ readonly Success: "Success";
180
+ readonly TemporaryFailure: "TemporaryFailure";
181
+ };
182
+ /**
183
+ * @public
184
+ */
185
+ export type CustomMailFromStatus = (typeof CustomMailFromStatus)[keyof typeof CustomMailFromStatus];
186
+ /**
187
+ * @public
188
+ * @enum
189
+ */
190
+ export declare const VerificationStatus: {
191
+ readonly Failed: "Failed";
192
+ readonly NotStarted: "NotStarted";
193
+ readonly Pending: "Pending";
194
+ readonly Success: "Success";
195
+ readonly TemporaryFailure: "TemporaryFailure";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const IdentityType: {
206
+ readonly Domain: "Domain";
207
+ readonly EmailAddress: "EmailAddress";
208
+ };
209
+ /**
210
+ * @public
211
+ */
212
+ export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
213
+ /**
214
+ * @public
215
+ * @enum
216
+ */
217
+ export declare const NotificationType: {
218
+ readonly Bounce: "Bounce";
219
+ readonly Complaint: "Complaint";
220
+ readonly Delivery: "Delivery";
221
+ };
222
+ /**
223
+ * @public
224
+ */
225
+ export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];