@aws-sdk/client-sesv2 3.395.0 → 3.402.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.
Files changed (96) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/SESv2.js +10 -0
  3. package/dist-cjs/commands/CancelExportJobCommand.js +46 -0
  4. package/dist-cjs/commands/CreateExportJobCommand.js +47 -0
  5. package/dist-cjs/commands/GetExportJobCommand.js +47 -0
  6. package/dist-cjs/commands/GetMessageInsightsCommand.js +47 -0
  7. package/dist-cjs/commands/ListExportJobsCommand.js +46 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/endpoint/ruleset.js +1 -1
  10. package/dist-cjs/models/index.js +1 -0
  11. package/dist-cjs/models/models_0.js +76 -8
  12. package/dist-cjs/models/models_1.js +2 -0
  13. package/dist-cjs/pagination/ListExportJobsPaginator.js +29 -0
  14. package/dist-cjs/pagination/index.js +1 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +405 -4
  16. package/dist-cjs/runtimeExtensions.js +5 -5
  17. package/dist-es/SESv2.js +10 -0
  18. package/dist-es/commands/CancelExportJobCommand.js +42 -0
  19. package/dist-es/commands/CreateExportJobCommand.js +43 -0
  20. package/dist-es/commands/GetExportJobCommand.js +43 -0
  21. package/dist-es/commands/GetMessageInsightsCommand.js +43 -0
  22. package/dist-es/commands/ListExportJobsCommand.js +42 -0
  23. package/dist-es/commands/index.js +5 -0
  24. package/dist-es/endpoint/ruleset.js +1 -1
  25. package/dist-es/models/index.js +1 -0
  26. package/dist-es/models/models_0.js +67 -6
  27. package/dist-es/models/models_1.js +1 -0
  28. package/dist-es/pagination/ListExportJobsPaginator.js +25 -0
  29. package/dist-es/pagination/index.js +1 -0
  30. package/dist-es/protocols/Aws_restJson1.js +391 -0
  31. package/dist-es/runtimeExtensions.js +5 -5
  32. package/dist-types/SESv2.d.ts +35 -0
  33. package/dist-types/SESv2Client.d.ts +7 -2
  34. package/dist-types/commands/CancelExportJobCommand.d.ts +80 -0
  35. package/dist-types/commands/CreateExportJobCommand.d.ts +152 -0
  36. package/dist-types/commands/GetExportJobCommand.d.ts +161 -0
  37. package/dist-types/commands/GetImportJobCommand.d.ts +1 -1
  38. package/dist-types/commands/GetMessageInsightsCommand.d.ts +115 -0
  39. package/dist-types/commands/ListExportJobsCommand.d.ts +91 -0
  40. package/dist-types/commands/ListImportJobsCommand.d.ts +1 -1
  41. package/dist-types/commands/PutSuppressedDestinationCommand.d.ts +2 -1
  42. package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -1
  43. package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
  44. package/dist-types/commands/SendEmailCommand.d.ts +1 -1
  45. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  46. package/dist-types/commands/TestRenderEmailTemplateCommand.d.ts +1 -1
  47. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  48. package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +1 -1
  49. package/dist-types/commands/UpdateContactCommand.d.ts +1 -1
  50. package/dist-types/commands/UpdateContactListCommand.d.ts +1 -1
  51. package/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +1 -1
  52. package/dist-types/commands/UpdateEmailIdentityPolicyCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateEmailTemplateCommand.d.ts +1 -1
  54. package/dist-types/commands/index.d.ts +5 -0
  55. package/dist-types/extensionConfiguration.d.ts +6 -0
  56. package/dist-types/models/index.d.ts +1 -0
  57. package/dist-types/models/models_0.d.ts +811 -558
  58. package/dist-types/models/models_1.d.ts +523 -0
  59. package/dist-types/pagination/ListExportJobsPaginator.d.ts +7 -0
  60. package/dist-types/pagination/index.d.ts +1 -0
  61. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  62. package/dist-types/runtimeExtensions.d.ts +2 -2
  63. package/dist-types/ts3.4/SESv2.d.ts +85 -0
  64. package/dist-types/ts3.4/SESv2Client.d.ts +30 -0
  65. package/dist-types/ts3.4/commands/CancelExportJobCommand.d.ts +38 -0
  66. package/dist-types/ts3.4/commands/CreateExportJobCommand.d.ts +38 -0
  67. package/dist-types/ts3.4/commands/GetExportJobCommand.d.ts +35 -0
  68. package/dist-types/ts3.4/commands/GetMessageInsightsCommand.d.ts +39 -0
  69. package/dist-types/ts3.4/commands/ListExportJobsCommand.d.ts +38 -0
  70. package/dist-types/ts3.4/commands/PutSuppressedDestinationCommand.d.ts +2 -4
  71. package/dist-types/ts3.4/commands/SendBulkEmailCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
  73. package/dist-types/ts3.4/commands/SendEmailCommand.d.ts +1 -1
  74. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  75. package/dist-types/ts3.4/commands/TestRenderEmailTemplateCommand.d.ts +1 -1
  76. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +1 -1
  78. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +1 -1
  79. package/dist-types/ts3.4/commands/UpdateContactListCommand.d.ts +1 -1
  80. package/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/UpdateEmailIdentityPolicyCommand.d.ts +1 -1
  82. package/dist-types/ts3.4/commands/UpdateEmailTemplateCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  84. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
  85. package/dist-types/ts3.4/models/index.d.ts +1 -0
  86. package/dist-types/ts3.4/models/models_0.d.ts +176 -102
  87. package/dist-types/ts3.4/models/models_1.d.ts +109 -0
  88. package/dist-types/ts3.4/pagination/ListExportJobsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  90. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  91. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -2
  92. package/package.json +29 -29
  93. package/dist-types/clientConfiguration.d.ts +0 -6
  94. package/dist-types/ts3.4/clientConfiguration.d.ts +0 -2
  95. /package/dist-cjs/{clientConfiguration.js → extensionConfiguration.js} +0 -0
  96. /package/dist-es/{clientConfiguration.js → extensionConfiguration.js} +0 -0
@@ -0,0 +1,523 @@
1
+ import { BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, Destination, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, Tag, Topic, TopicPreference } from "./models_0";
2
+ /**
3
+ * @public
4
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
5
+ * fails.</p>
6
+ */
7
+ export interface PutSuppressedDestinationResponse {
8
+ }
9
+ /**
10
+ * @public
11
+ * <p>Represents a request to send email messages to multiple destinations using Amazon SES. For
12
+ * more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
13
+ * Guide</a>.</p>
14
+ */
15
+ export interface SendBulkEmailRequest {
16
+ /**
17
+ * @public
18
+ * <p>The email address to use as the "From" address for the email. The
19
+ * address that you specify has to be verified.</p>
20
+ */
21
+ FromEmailAddress?: string;
22
+ /**
23
+ * @public
24
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
25
+ * that is associated with the sending authorization policy that permits you to use the
26
+ * email address specified in the <code>FromEmailAddress</code> parameter.</p>
27
+ * <p>For example, if the owner of example.com (which has ARN
28
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
29
+ * authorizes you to use sender@example.com, then you would specify the
30
+ * <code>FromEmailAddressIdentityArn</code> to be
31
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
32
+ * <code>FromEmailAddress</code> to be sender@example.com.</p>
33
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
34
+ * Guide</a>.</p>
35
+ */
36
+ FromEmailAddressIdentityArn?: string;
37
+ /**
38
+ * @public
39
+ * <p>The "Reply-to" email addresses for the message. When the recipient replies to the
40
+ * message, each Reply-to address receives the reply.</p>
41
+ */
42
+ ReplyToAddresses?: string[];
43
+ /**
44
+ * @public
45
+ * <p>The address that you want bounce and complaint notifications to be sent to.</p>
46
+ */
47
+ FeedbackForwardingEmailAddress?: string;
48
+ /**
49
+ * @public
50
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
51
+ * that is associated with the sending authorization policy that permits you to use the
52
+ * email address specified in the <code>FeedbackForwardingEmailAddress</code>
53
+ * parameter.</p>
54
+ * <p>For example, if the owner of example.com (which has ARN
55
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
56
+ * authorizes you to use feedback@example.com, then you would specify the
57
+ * <code>FeedbackForwardingEmailAddressIdentityArn</code> to be
58
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
59
+ * <code>FeedbackForwardingEmailAddress</code> to be feedback@example.com.</p>
60
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
61
+ * Guide</a>.</p>
62
+ */
63
+ FeedbackForwardingEmailAddressIdentityArn?: string;
64
+ /**
65
+ * @public
66
+ * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send
67
+ * using the <code>SendEmail</code> operation. Tags correspond to characteristics of the
68
+ * email that you define, so that you can publish email sending events.</p>
69
+ */
70
+ DefaultEmailTags?: MessageTag[];
71
+ /**
72
+ * @public
73
+ * <p>An object that contains the body of the message. You can specify a template
74
+ * message.</p>
75
+ */
76
+ DefaultContent: BulkEmailContent | undefined;
77
+ /**
78
+ * @public
79
+ * <p>The list of bulk email entry objects.</p>
80
+ */
81
+ BulkEmailEntries: BulkEmailEntry[] | undefined;
82
+ /**
83
+ * @public
84
+ * <p>The name of the configuration set to use when sending the email.</p>
85
+ */
86
+ ConfigurationSetName?: string;
87
+ }
88
+ /**
89
+ * @public
90
+ * <p>The following data is returned in JSON format by the service.</p>
91
+ */
92
+ export interface SendBulkEmailResponse {
93
+ /**
94
+ * @public
95
+ * <p>One object per intended recipient. Check each response object and retry any messages
96
+ * with a failure status.</p>
97
+ */
98
+ BulkEmailEntryResults: BulkEmailEntryResult[] | undefined;
99
+ }
100
+ /**
101
+ * @public
102
+ * <p>Represents a request to send a custom verification email to a specified
103
+ * recipient.</p>
104
+ */
105
+ export interface SendCustomVerificationEmailRequest {
106
+ /**
107
+ * @public
108
+ * <p>The email address to verify.</p>
109
+ */
110
+ EmailAddress: string | undefined;
111
+ /**
112
+ * @public
113
+ * <p>The name of the custom verification email template to use when sending the
114
+ * verification email.</p>
115
+ */
116
+ TemplateName: string | undefined;
117
+ /**
118
+ * @public
119
+ * <p>Name of a configuration set to use when sending the verification email.</p>
120
+ */
121
+ ConfigurationSetName?: string;
122
+ }
123
+ /**
124
+ * @public
125
+ * <p>The following element is returned by the service.</p>
126
+ */
127
+ export interface SendCustomVerificationEmailResponse {
128
+ /**
129
+ * @public
130
+ * <p>The unique message identifier returned from the
131
+ * <code>SendCustomVerificationEmail</code> operation.</p>
132
+ */
133
+ MessageId?: string;
134
+ }
135
+ /**
136
+ * @public
137
+ * <p>Represents a request to send a single formatted email using Amazon SES. For more
138
+ * information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-formatted.html">Amazon SES Developer
139
+ * Guide</a>.</p>
140
+ */
141
+ export interface SendEmailRequest {
142
+ /**
143
+ * @public
144
+ * <p>The email address to use as the "From" address for the email. The
145
+ * address that you specify has to be verified.
146
+ * </p>
147
+ */
148
+ FromEmailAddress?: string;
149
+ /**
150
+ * @public
151
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
152
+ * that is associated with the sending authorization policy that permits you to use the
153
+ * email address specified in the <code>FromEmailAddress</code> parameter.</p>
154
+ * <p>For example, if the owner of example.com (which has ARN
155
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
156
+ * authorizes you to use sender@example.com, then you would specify the
157
+ * <code>FromEmailAddressIdentityArn</code> to be
158
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
159
+ * <code>FromEmailAddress</code> to be sender@example.com.</p>
160
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
161
+ * Guide</a>.</p>
162
+ * <p>For Raw emails, the <code>FromEmailAddressIdentityArn</code> value overrides the
163
+ * X-SES-SOURCE-ARN and X-SES-FROM-ARN headers specified in raw email message
164
+ * content.</p>
165
+ */
166
+ FromEmailAddressIdentityArn?: string;
167
+ /**
168
+ * @public
169
+ * <p>An object that contains the recipients of the email message.</p>
170
+ */
171
+ Destination?: Destination;
172
+ /**
173
+ * @public
174
+ * <p>The "Reply-to" email addresses for the message. When the recipient replies to the
175
+ * message, each Reply-to address receives the reply.</p>
176
+ */
177
+ ReplyToAddresses?: string[];
178
+ /**
179
+ * @public
180
+ * <p>The address that you want bounce and complaint notifications to be sent to.</p>
181
+ */
182
+ FeedbackForwardingEmailAddress?: string;
183
+ /**
184
+ * @public
185
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
186
+ * that is associated with the sending authorization policy that permits you to use the
187
+ * email address specified in the <code>FeedbackForwardingEmailAddress</code>
188
+ * parameter.</p>
189
+ * <p>For example, if the owner of example.com (which has ARN
190
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
191
+ * authorizes you to use feedback@example.com, then you would specify the
192
+ * <code>FeedbackForwardingEmailAddressIdentityArn</code> to be
193
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
194
+ * <code>FeedbackForwardingEmailAddress</code> to be feedback@example.com.</p>
195
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
196
+ * Guide</a>.</p>
197
+ */
198
+ FeedbackForwardingEmailAddressIdentityArn?: string;
199
+ /**
200
+ * @public
201
+ * <p>An object that contains the body of the message. You can send either a Simple message
202
+ * Raw message or a template Message.</p>
203
+ */
204
+ Content: EmailContent | undefined;
205
+ /**
206
+ * @public
207
+ * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send
208
+ * using the <code>SendEmail</code> operation. Tags correspond to characteristics of the
209
+ * email that you define, so that you can publish email sending events. </p>
210
+ */
211
+ EmailTags?: MessageTag[];
212
+ /**
213
+ * @public
214
+ * <p>The name of the configuration set to use when sending the email.</p>
215
+ */
216
+ ConfigurationSetName?: string;
217
+ /**
218
+ * @public
219
+ * <p>An object used to specify a list or topic to which an email belongs, which will be
220
+ * used when a contact chooses to unsubscribe.</p>
221
+ */
222
+ ListManagementOptions?: ListManagementOptions;
223
+ }
224
+ /**
225
+ * @public
226
+ * <p>A unique message ID that you receive when an email is accepted for sending.</p>
227
+ */
228
+ export interface SendEmailResponse {
229
+ /**
230
+ * @public
231
+ * <p>A unique identifier for the message that is generated when the message is
232
+ * accepted.</p>
233
+ * <note>
234
+ * <p>It's possible for Amazon SES to accept a message without sending it. This can happen
235
+ * when the message that you're trying to send has an attachment contains a virus, or
236
+ * when you send a templated email that contains invalid personalization content, for
237
+ * example.</p>
238
+ * </note>
239
+ */
240
+ MessageId?: string;
241
+ }
242
+ /**
243
+ * @public
244
+ */
245
+ export interface TagResourceRequest {
246
+ /**
247
+ * @public
248
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to add one or more tags
249
+ * to.</p>
250
+ */
251
+ ResourceArn: string | undefined;
252
+ /**
253
+ * @public
254
+ * <p>A list of the tags that you want to add to the resource. A tag consists of a required
255
+ * tag key (<code>Key</code>) and an associated tag value (<code>Value</code>). The maximum
256
+ * length of a tag key is 128 characters. The maximum length of a tag value is 256
257
+ * characters.</p>
258
+ */
259
+ Tags: Tag[] | undefined;
260
+ }
261
+ /**
262
+ * @public
263
+ */
264
+ export interface TagResourceResponse {
265
+ }
266
+ /**
267
+ * @public
268
+ * <p>>Represents a request to create a preview of the MIME content of an email when
269
+ * provided with a template and a set of replacement data.</p>
270
+ */
271
+ export interface TestRenderEmailTemplateRequest {
272
+ /**
273
+ * @public
274
+ * <p>The name of the template.</p>
275
+ */
276
+ TemplateName: string | undefined;
277
+ /**
278
+ * @public
279
+ * <p>A list of replacement values to apply to the template. This parameter is a JSON
280
+ * object, typically consisting of key-value pairs in which the keys correspond to
281
+ * replacement tags in the email template.</p>
282
+ */
283
+ TemplateData: string | undefined;
284
+ }
285
+ /**
286
+ * @public
287
+ * <p>The following element is returned by the service.</p>
288
+ */
289
+ export interface TestRenderEmailTemplateResponse {
290
+ /**
291
+ * @public
292
+ * <p>The complete MIME message rendered by applying the data in the
293
+ * <code>TemplateData</code> parameter to the template specified in the TemplateName
294
+ * parameter.</p>
295
+ */
296
+ RenderedTemplate: string | undefined;
297
+ }
298
+ /**
299
+ * @public
300
+ */
301
+ export interface UntagResourceRequest {
302
+ /**
303
+ * @public
304
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to remove one or more
305
+ * tags from.</p>
306
+ */
307
+ ResourceArn: string | undefined;
308
+ /**
309
+ * @public
310
+ * <p>The tags (tag keys) that you want to remove from the resource. When you specify a tag
311
+ * key, the action removes both that key and its associated tag value.</p>
312
+ * <p>To remove more than one tag from the resource, append the <code>TagKeys</code>
313
+ * parameter and argument for each additional tag to remove, separated by an ampersand. For
314
+ * example:
315
+ * <code>/v2/email/tags?ResourceArn=ResourceArn&TagKeys=Key1&TagKeys=Key2</code>
316
+ * </p>
317
+ */
318
+ TagKeys: string[] | undefined;
319
+ }
320
+ /**
321
+ * @public
322
+ */
323
+ export interface UntagResourceResponse {
324
+ }
325
+ /**
326
+ * @public
327
+ * <p>A request to change the settings for an event destination for a configuration
328
+ * set.</p>
329
+ */
330
+ export interface UpdateConfigurationSetEventDestinationRequest {
331
+ /**
332
+ * @public
333
+ * <p>The name of the configuration set that contains the event destination to
334
+ * modify.</p>
335
+ */
336
+ ConfigurationSetName: string | undefined;
337
+ /**
338
+ * @public
339
+ * <p>The name of the event destination.</p>
340
+ */
341
+ EventDestinationName: string | undefined;
342
+ /**
343
+ * @public
344
+ * <p>An object that defines the event destination.</p>
345
+ */
346
+ EventDestination: EventDestinationDefinition | undefined;
347
+ }
348
+ /**
349
+ * @public
350
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
351
+ * fails.</p>
352
+ */
353
+ export interface UpdateConfigurationSetEventDestinationResponse {
354
+ }
355
+ /**
356
+ * @public
357
+ */
358
+ export interface UpdateContactRequest {
359
+ /**
360
+ * @public
361
+ * <p>The name of the contact list.</p>
362
+ */
363
+ ContactListName: string | undefined;
364
+ /**
365
+ * @public
366
+ * <p>The contact's email address.</p>
367
+ */
368
+ EmailAddress: string | undefined;
369
+ /**
370
+ * @public
371
+ * <p>The contact's preference for being opted-in to or opted-out of a topic.</p>
372
+ */
373
+ TopicPreferences?: TopicPreference[];
374
+ /**
375
+ * @public
376
+ * <p>A boolean value status noting if the contact is unsubscribed from all contact list
377
+ * topics.</p>
378
+ */
379
+ UnsubscribeAll?: boolean;
380
+ /**
381
+ * @public
382
+ * <p>The attribute data attached to a contact.</p>
383
+ */
384
+ AttributesData?: string;
385
+ }
386
+ /**
387
+ * @public
388
+ */
389
+ export interface UpdateContactResponse {
390
+ }
391
+ /**
392
+ * @public
393
+ */
394
+ export interface UpdateContactListRequest {
395
+ /**
396
+ * @public
397
+ * <p>The name of the contact list.</p>
398
+ */
399
+ ContactListName: string | undefined;
400
+ /**
401
+ * @public
402
+ * <p>An interest group, theme, or label within a list. A contact list can have multiple
403
+ * topics.</p>
404
+ */
405
+ Topics?: Topic[];
406
+ /**
407
+ * @public
408
+ * <p>A description of what the contact list is about.</p>
409
+ */
410
+ Description?: string;
411
+ }
412
+ /**
413
+ * @public
414
+ */
415
+ export interface UpdateContactListResponse {
416
+ }
417
+ /**
418
+ * @public
419
+ * <p>Represents a request to update an existing custom verification email template.</p>
420
+ */
421
+ export interface UpdateCustomVerificationEmailTemplateRequest {
422
+ /**
423
+ * @public
424
+ * <p>The name of the custom verification email template that you want to update.</p>
425
+ */
426
+ TemplateName: string | undefined;
427
+ /**
428
+ * @public
429
+ * <p>The email address that the custom verification email is sent from.</p>
430
+ */
431
+ FromEmailAddress: string | undefined;
432
+ /**
433
+ * @public
434
+ * <p>The subject line of the custom verification email.</p>
435
+ */
436
+ TemplateSubject: string | undefined;
437
+ /**
438
+ * @public
439
+ * <p>The content of the custom verification email. The total size of the email must be less
440
+ * than 10 MB. The message body may contain HTML, with some limitations. For more
441
+ * information, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq">Custom verification email frequently asked questions</a> in the <i>Amazon SES
442
+ * Developer Guide</i>.</p>
443
+ */
444
+ TemplateContent: string | undefined;
445
+ /**
446
+ * @public
447
+ * <p>The URL that the recipient of the verification email is sent to if his or her address
448
+ * is successfully verified.</p>
449
+ */
450
+ SuccessRedirectionURL: string | undefined;
451
+ /**
452
+ * @public
453
+ * <p>The URL that the recipient of the verification email is sent to if his or her address
454
+ * is not successfully verified.</p>
455
+ */
456
+ FailureRedirectionURL: string | undefined;
457
+ }
458
+ /**
459
+ * @public
460
+ * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
461
+ * HTTP body.</p>
462
+ */
463
+ export interface UpdateCustomVerificationEmailTemplateResponse {
464
+ }
465
+ /**
466
+ * @public
467
+ * <p>Represents a request to update a sending authorization policy for an identity. Sending
468
+ * authorization is an Amazon SES feature that enables you to authorize other senders to use
469
+ * your identities. For information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-identity-owner-tasks-management.html">Amazon SES Developer Guide</a>.</p>
470
+ */
471
+ export interface UpdateEmailIdentityPolicyRequest {
472
+ /**
473
+ * @public
474
+ * <p>The email identity.</p>
475
+ */
476
+ EmailIdentity: string | undefined;
477
+ /**
478
+ * @public
479
+ * <p>The name of the policy.</p>
480
+ * <p>The policy name cannot exceed 64 characters and can only include alphanumeric
481
+ * characters, dashes, and underscores.</p>
482
+ */
483
+ PolicyName: string | undefined;
484
+ /**
485
+ * @public
486
+ * <p>The text of the policy in JSON format. The policy cannot exceed 4 KB.</p>
487
+ * <p> For information about the syntax of sending authorization policies, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html">Amazon SES Developer
488
+ * Guide</a>.</p>
489
+ */
490
+ Policy: string | undefined;
491
+ }
492
+ /**
493
+ * @public
494
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
495
+ * fails.</p>
496
+ */
497
+ export interface UpdateEmailIdentityPolicyResponse {
498
+ }
499
+ /**
500
+ * @public
501
+ * <p>Represents a request to update an email template. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES
502
+ * Developer Guide</a>.</p>
503
+ */
504
+ export interface UpdateEmailTemplateRequest {
505
+ /**
506
+ * @public
507
+ * <p>The name of the template.</p>
508
+ */
509
+ TemplateName: string | undefined;
510
+ /**
511
+ * @public
512
+ * <p>The content of the email template, composed of a subject line, an HTML part, and a
513
+ * text-only part.</p>
514
+ */
515
+ TemplateContent: EmailTemplateContent | undefined;
516
+ }
517
+ /**
518
+ * @public
519
+ * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
520
+ * HTTP body.</p>
521
+ */
522
+ export interface UpdateEmailTemplateResponse {
523
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListExportJobsCommandInput, ListExportJobsCommandOutput } from "../commands/ListExportJobsCommand";
3
+ import { SESv2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListExportJobs(config: SESv2PaginationConfiguration, input: ListExportJobsCommandInput, ...additionalArguments: any): Paginator<ListExportJobsCommandOutput>;
@@ -9,6 +9,7 @@ export * from "./ListDeliverabilityTestReportsPaginator";
9
9
  export * from "./ListDomainDeliverabilityCampaignsPaginator";
10
10
  export * from "./ListEmailIdentitiesPaginator";
11
11
  export * from "./ListEmailTemplatesPaginator";
12
+ export * from "./ListExportJobsPaginator";
12
13
  export * from "./ListImportJobsPaginator";
13
14
  export * from "./ListRecommendationsPaginator";
14
15
  export * from "./ListSuppressedDestinationsPaginator";
@@ -1,6 +1,7 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { BatchGetMetricDataCommandInput, BatchGetMetricDataCommandOutput } from "../commands/BatchGetMetricDataCommand";
4
+ import { CancelExportJobCommandInput, CancelExportJobCommandOutput } from "../commands/CancelExportJobCommand";
4
5
  import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "../commands/CreateConfigurationSetCommand";
5
6
  import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "../commands/CreateConfigurationSetEventDestinationCommand";
6
7
  import { CreateContactCommandInput, CreateContactCommandOutput } from "../commands/CreateContactCommand";
@@ -11,6 +12,7 @@ import { CreateDeliverabilityTestReportCommandInput, CreateDeliverabilityTestRep
11
12
  import { CreateEmailIdentityCommandInput, CreateEmailIdentityCommandOutput } from "../commands/CreateEmailIdentityCommand";
12
13
  import { CreateEmailIdentityPolicyCommandInput, CreateEmailIdentityPolicyCommandOutput } from "../commands/CreateEmailIdentityPolicyCommand";
13
14
  import { CreateEmailTemplateCommandInput, CreateEmailTemplateCommandOutput } from "../commands/CreateEmailTemplateCommand";
15
+ import { CreateExportJobCommandInput, CreateExportJobCommandOutput } from "../commands/CreateExportJobCommand";
14
16
  import { CreateImportJobCommandInput, CreateImportJobCommandOutput } from "../commands/CreateImportJobCommand";
15
17
  import { DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput } from "../commands/DeleteConfigurationSetCommand";
16
18
  import { DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput } from "../commands/DeleteConfigurationSetEventDestinationCommand";
@@ -39,7 +41,9 @@ import { GetDomainStatisticsReportCommandInput, GetDomainStatisticsReportCommand
39
41
  import { GetEmailIdentityCommandInput, GetEmailIdentityCommandOutput } from "../commands/GetEmailIdentityCommand";
40
42
  import { GetEmailIdentityPoliciesCommandInput, GetEmailIdentityPoliciesCommandOutput } from "../commands/GetEmailIdentityPoliciesCommand";
41
43
  import { GetEmailTemplateCommandInput, GetEmailTemplateCommandOutput } from "../commands/GetEmailTemplateCommand";
44
+ import { GetExportJobCommandInput, GetExportJobCommandOutput } from "../commands/GetExportJobCommand";
42
45
  import { GetImportJobCommandInput, GetImportJobCommandOutput } from "../commands/GetImportJobCommand";
46
+ import { GetMessageInsightsCommandInput, GetMessageInsightsCommandOutput } from "../commands/GetMessageInsightsCommand";
43
47
  import { GetSuppressedDestinationCommandInput, GetSuppressedDestinationCommandOutput } from "../commands/GetSuppressedDestinationCommand";
44
48
  import { ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput } from "../commands/ListConfigurationSetsCommand";
45
49
  import { ListContactListsCommandInput, ListContactListsCommandOutput } from "../commands/ListContactListsCommand";
@@ -50,6 +54,7 @@ import { ListDeliverabilityTestReportsCommandInput, ListDeliverabilityTestReport
50
54
  import { ListDomainDeliverabilityCampaignsCommandInput, ListDomainDeliverabilityCampaignsCommandOutput } from "../commands/ListDomainDeliverabilityCampaignsCommand";
51
55
  import { ListEmailIdentitiesCommandInput, ListEmailIdentitiesCommandOutput } from "../commands/ListEmailIdentitiesCommand";
52
56
  import { ListEmailTemplatesCommandInput, ListEmailTemplatesCommandOutput } from "../commands/ListEmailTemplatesCommand";
57
+ import { ListExportJobsCommandInput, ListExportJobsCommandOutput } from "../commands/ListExportJobsCommand";
53
58
  import { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "../commands/ListImportJobsCommand";
54
59
  import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "../commands/ListRecommendationsCommand";
55
60
  import { ListSuppressedDestinationsCommandInput, ListSuppressedDestinationsCommandOutput } from "../commands/ListSuppressedDestinationsCommand";
@@ -91,6 +96,10 @@ import { UpdateEmailTemplateCommandInput, UpdateEmailTemplateCommandOutput } fro
91
96
  * serializeAws_restJson1BatchGetMetricDataCommand
92
97
  */
93
98
  export declare const se_BatchGetMetricDataCommand: (input: BatchGetMetricDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
+ /**
100
+ * serializeAws_restJson1CancelExportJobCommand
101
+ */
102
+ export declare const se_CancelExportJobCommand: (input: CancelExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
103
  /**
95
104
  * serializeAws_restJson1CreateConfigurationSetCommand
96
105
  */
@@ -131,6 +140,10 @@ export declare const se_CreateEmailIdentityPolicyCommand: (input: CreateEmailIde
131
140
  * serializeAws_restJson1CreateEmailTemplateCommand
132
141
  */
133
142
  export declare const se_CreateEmailTemplateCommand: (input: CreateEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
143
+ /**
144
+ * serializeAws_restJson1CreateExportJobCommand
145
+ */
146
+ export declare const se_CreateExportJobCommand: (input: CreateExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
147
  /**
135
148
  * serializeAws_restJson1CreateImportJobCommand
136
149
  */
@@ -243,10 +256,18 @@ export declare const se_GetEmailIdentityPoliciesCommand: (input: GetEmailIdentit
243
256
  * serializeAws_restJson1GetEmailTemplateCommand
244
257
  */
245
258
  export declare const se_GetEmailTemplateCommand: (input: GetEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
259
+ /**
260
+ * serializeAws_restJson1GetExportJobCommand
261
+ */
262
+ export declare const se_GetExportJobCommand: (input: GetExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
246
263
  /**
247
264
  * serializeAws_restJson1GetImportJobCommand
248
265
  */
249
266
  export declare const se_GetImportJobCommand: (input: GetImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
267
+ /**
268
+ * serializeAws_restJson1GetMessageInsightsCommand
269
+ */
270
+ export declare const se_GetMessageInsightsCommand: (input: GetMessageInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
250
271
  /**
251
272
  * serializeAws_restJson1GetSuppressedDestinationCommand
252
273
  */
@@ -287,6 +308,10 @@ export declare const se_ListEmailIdentitiesCommand: (input: ListEmailIdentitiesC
287
308
  * serializeAws_restJson1ListEmailTemplatesCommand
288
309
  */
289
310
  export declare const se_ListEmailTemplatesCommand: (input: ListEmailTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
311
+ /**
312
+ * serializeAws_restJson1ListExportJobsCommand
313
+ */
314
+ export declare const se_ListExportJobsCommand: (input: ListExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
290
315
  /**
291
316
  * serializeAws_restJson1ListImportJobsCommand
292
317
  */
@@ -439,6 +464,10 @@ export declare const se_UpdateEmailTemplateCommand: (input: UpdateEmailTemplateC
439
464
  * deserializeAws_restJson1BatchGetMetricDataCommand
440
465
  */
441
466
  export declare const de_BatchGetMetricDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetMetricDataCommandOutput>;
467
+ /**
468
+ * deserializeAws_restJson1CancelExportJobCommand
469
+ */
470
+ export declare const de_CancelExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelExportJobCommandOutput>;
442
471
  /**
443
472
  * deserializeAws_restJson1CreateConfigurationSetCommand
444
473
  */
@@ -479,6 +508,10 @@ export declare const de_CreateEmailIdentityPolicyCommand: (output: __HttpRespons
479
508
  * deserializeAws_restJson1CreateEmailTemplateCommand
480
509
  */
481
510
  export declare const de_CreateEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEmailTemplateCommandOutput>;
511
+ /**
512
+ * deserializeAws_restJson1CreateExportJobCommand
513
+ */
514
+ export declare const de_CreateExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExportJobCommandOutput>;
482
515
  /**
483
516
  * deserializeAws_restJson1CreateImportJobCommand
484
517
  */
@@ -591,10 +624,18 @@ export declare const de_GetEmailIdentityPoliciesCommand: (output: __HttpResponse
591
624
  * deserializeAws_restJson1GetEmailTemplateCommand
592
625
  */
593
626
  export declare const de_GetEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEmailTemplateCommandOutput>;
627
+ /**
628
+ * deserializeAws_restJson1GetExportJobCommand
629
+ */
630
+ export declare const de_GetExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExportJobCommandOutput>;
594
631
  /**
595
632
  * deserializeAws_restJson1GetImportJobCommand
596
633
  */
597
634
  export declare const de_GetImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetImportJobCommandOutput>;
635
+ /**
636
+ * deserializeAws_restJson1GetMessageInsightsCommand
637
+ */
638
+ export declare const de_GetMessageInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMessageInsightsCommandOutput>;
598
639
  /**
599
640
  * deserializeAws_restJson1GetSuppressedDestinationCommand
600
641
  */
@@ -635,6 +676,10 @@ export declare const de_ListEmailIdentitiesCommand: (output: __HttpResponse, con
635
676
  * deserializeAws_restJson1ListEmailTemplatesCommand
636
677
  */
637
678
  export declare const de_ListEmailTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEmailTemplatesCommandOutput>;
679
+ /**
680
+ * deserializeAws_restJson1ListExportJobsCommand
681
+ */
682
+ export declare const de_ListExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExportJobsCommandOutput>;
638
683
  /**
639
684
  * deserializeAws_restJson1ListImportJobsCommand
640
685
  */