@aws-sdk/client-sesv2 3.312.0 → 3.316.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/SESv2.js +90 -1204
- package/dist-cjs/protocols/Aws_restJson1.js +861 -2001
- package/dist-es/SESv2.js +90 -1204
- package/dist-es/protocols/Aws_restJson1.js +747 -1887
- package/dist-types/SESv2.d.ts +99 -470
- package/dist-types/ts3.4/SESv2.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/SESv2.d.ts
CHANGED
|
@@ -86,904 +86,533 @@ import { UpdateCustomVerificationEmailTemplateCommandInput, UpdateCustomVerifica
|
|
|
86
86
|
import { UpdateEmailIdentityPolicyCommandInput, UpdateEmailIdentityPolicyCommandOutput } from "./commands/UpdateEmailIdentityPolicyCommand";
|
|
87
87
|
import { UpdateEmailTemplateCommandInput, UpdateEmailTemplateCommandOutput } from "./commands/UpdateEmailTemplateCommand";
|
|
88
88
|
import { SESv2Client } from "./SESv2Client";
|
|
89
|
-
|
|
90
|
-
* @public
|
|
91
|
-
* <fullname>Amazon SES API v2</fullname>
|
|
92
|
-
* <p>
|
|
93
|
-
* <a href="http://aws.amazon.com/ses">Amazon SES</a> is an Amazon Web Services service that
|
|
94
|
-
* you can use to send email messages to your customers.</p>
|
|
95
|
-
* <p>If you're new to Amazon SES API v2, you might find it helpful to review the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/">Amazon Simple Email Service Developer
|
|
96
|
-
* Guide</a>. The <i>Amazon SES Developer Guide</i> provides information
|
|
97
|
-
* and code samples that demonstrate how to use Amazon SES API v2 features programmatically.</p>
|
|
98
|
-
*/
|
|
99
|
-
export declare class SESv2 extends SESv2Client {
|
|
89
|
+
export interface SESv2 {
|
|
100
90
|
/**
|
|
101
|
-
* @
|
|
102
|
-
* <p>Retrieves batches of metric data collected based on your sending activity.</p>
|
|
103
|
-
* <p>You can execute this operation no more than 16 times per second,
|
|
104
|
-
* and with at most 160 queries from the batches per second (cumulative).</p>
|
|
91
|
+
* @see {@link BatchGetMetricDataCommand}
|
|
105
92
|
*/
|
|
106
93
|
batchGetMetricData(args: BatchGetMetricDataCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetMetricDataCommandOutput>;
|
|
107
94
|
batchGetMetricData(args: BatchGetMetricDataCommandInput, cb: (err: any, data?: BatchGetMetricDataCommandOutput) => void): void;
|
|
108
95
|
batchGetMetricData(args: BatchGetMetricDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetMetricDataCommandOutput) => void): void;
|
|
109
96
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Create a configuration set. <i>Configuration sets</i> are groups of
|
|
112
|
-
* rules that you can apply to the emails that you send. You apply a configuration set to
|
|
113
|
-
* an email by specifying the name of the configuration set when you call the Amazon SES API v2. When
|
|
114
|
-
* you apply a configuration set to an email, all of the rules in that configuration set
|
|
115
|
-
* are applied to the email. </p>
|
|
97
|
+
* @see {@link CreateConfigurationSetCommand}
|
|
116
98
|
*/
|
|
117
99
|
createConfigurationSet(args: CreateConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetCommandOutput>;
|
|
118
100
|
createConfigurationSet(args: CreateConfigurationSetCommandInput, cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void): void;
|
|
119
101
|
createConfigurationSet(args: CreateConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void): void;
|
|
120
102
|
/**
|
|
121
|
-
* @
|
|
122
|
-
* <p>Create an event destination. <i>Events</i> include message sends,
|
|
123
|
-
* deliveries, opens, clicks, bounces, and complaints. <i>Event
|
|
124
|
-
* destinations</i> are places that you can send information about these events
|
|
125
|
-
* to. For example, you can send event data to Amazon SNS to receive notifications when you
|
|
126
|
-
* receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term
|
|
127
|
-
* storage.</p>
|
|
128
|
-
* <p>A single configuration set can include more than one event destination.</p>
|
|
103
|
+
* @see {@link CreateConfigurationSetEventDestinationCommand}
|
|
129
104
|
*/
|
|
130
105
|
createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetEventDestinationCommandOutput>;
|
|
131
106
|
createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
132
107
|
createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
133
108
|
/**
|
|
134
|
-
* @
|
|
135
|
-
* <p>Creates a contact, which is an end-user who is receiving the email, and adds them to a
|
|
136
|
-
* contact list.</p>
|
|
109
|
+
* @see {@link CreateContactCommand}
|
|
137
110
|
*/
|
|
138
111
|
createContact(args: CreateContactCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactCommandOutput>;
|
|
139
112
|
createContact(args: CreateContactCommandInput, cb: (err: any, data?: CreateContactCommandOutput) => void): void;
|
|
140
113
|
createContact(args: CreateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactCommandOutput) => void): void;
|
|
141
114
|
/**
|
|
142
|
-
* @
|
|
143
|
-
* <p>Creates a contact list.</p>
|
|
115
|
+
* @see {@link CreateContactListCommand}
|
|
144
116
|
*/
|
|
145
117
|
createContactList(args: CreateContactListCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactListCommandOutput>;
|
|
146
118
|
createContactList(args: CreateContactListCommandInput, cb: (err: any, data?: CreateContactListCommandOutput) => void): void;
|
|
147
119
|
createContactList(args: CreateContactListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactListCommandOutput) => void): void;
|
|
148
120
|
/**
|
|
149
|
-
* @
|
|
150
|
-
* <p>Creates a new custom verification email template.</p>
|
|
151
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
152
|
-
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
153
|
-
* Guide</i>.</p>
|
|
154
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
121
|
+
* @see {@link CreateCustomVerificationEmailTemplateCommand}
|
|
155
122
|
*/
|
|
156
123
|
createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomVerificationEmailTemplateCommandOutput>;
|
|
157
124
|
createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
158
125
|
createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
159
126
|
/**
|
|
160
|
-
* @
|
|
161
|
-
* <p>Create a new pool of dedicated IP addresses. A pool can include one or more dedicated
|
|
162
|
-
* IP addresses that are associated with your Amazon Web Services account. You can associate a pool with
|
|
163
|
-
* a configuration set. When you send an email that uses that configuration set, the
|
|
164
|
-
* message is sent from one of the addresses in the associated pool.</p>
|
|
127
|
+
* @see {@link CreateDedicatedIpPoolCommand}
|
|
165
128
|
*/
|
|
166
129
|
createDedicatedIpPool(args: CreateDedicatedIpPoolCommandInput, options?: __HttpHandlerOptions): Promise<CreateDedicatedIpPoolCommandOutput>;
|
|
167
130
|
createDedicatedIpPool(args: CreateDedicatedIpPoolCommandInput, cb: (err: any, data?: CreateDedicatedIpPoolCommandOutput) => void): void;
|
|
168
131
|
createDedicatedIpPool(args: CreateDedicatedIpPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDedicatedIpPoolCommandOutput) => void): void;
|
|
169
132
|
/**
|
|
170
|
-
* @
|
|
171
|
-
* <p>Create a new predictive inbox placement test. Predictive inbox placement tests can help you predict how your messages will be handled
|
|
172
|
-
* by various email providers around the world. When you perform a predictive inbox placement test, you provide a
|
|
173
|
-
* sample message that contains the content that you plan to send to your customers. Amazon SES
|
|
174
|
-
* then sends that message to special email addresses spread across several major email
|
|
175
|
-
* providers. After about 24 hours, the test is complete, and you can use the
|
|
176
|
-
* <code>GetDeliverabilityTestReport</code> operation to view the results of the
|
|
177
|
-
* test.</p>
|
|
133
|
+
* @see {@link CreateDeliverabilityTestReportCommand}
|
|
178
134
|
*/
|
|
179
135
|
createDeliverabilityTestReport(args: CreateDeliverabilityTestReportCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeliverabilityTestReportCommandOutput>;
|
|
180
136
|
createDeliverabilityTestReport(args: CreateDeliverabilityTestReportCommandInput, cb: (err: any, data?: CreateDeliverabilityTestReportCommandOutput) => void): void;
|
|
181
137
|
createDeliverabilityTestReport(args: CreateDeliverabilityTestReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeliverabilityTestReportCommandOutput) => void): void;
|
|
182
138
|
/**
|
|
183
|
-
* @
|
|
184
|
-
* <p>Starts the process of verifying an email identity. An <i>identity</i> is
|
|
185
|
-
* an email address or domain that you use when you send email. Before you can use an
|
|
186
|
-
* identity to send email, you first have to verify it. By verifying an identity, you
|
|
187
|
-
* demonstrate that you're the owner of the identity, and that you've given Amazon SES API v2
|
|
188
|
-
* permission to send email from the identity.</p>
|
|
189
|
-
* <p>When you verify an email address, Amazon SES sends an email to the address. Your email
|
|
190
|
-
* address is verified as soon as you follow the link in the verification email.
|
|
191
|
-
*
|
|
192
|
-
* </p>
|
|
193
|
-
* <p>When you verify a domain without specifying the <code>DkimSigningAttributes</code>
|
|
194
|
-
* object, this operation provides a set of DKIM tokens. You can convert these tokens into
|
|
195
|
-
* CNAME records, which you then add to the DNS configuration for your domain. Your domain
|
|
196
|
-
* is verified when Amazon SES detects these records in the DNS configuration for your domain.
|
|
197
|
-
* This verification method is known as <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
|
|
198
|
-
* <p>Alternatively, you can perform the verification process by providing your own
|
|
199
|
-
* public-private key pair. This verification method is known as Bring Your Own DKIM
|
|
200
|
-
* (BYODKIM). To use BYODKIM, your call to the <code>CreateEmailIdentity</code> operation
|
|
201
|
-
* has to include the <code>DkimSigningAttributes</code> object. When you specify this
|
|
202
|
-
* object, you provide a selector (a component of the DNS record name that identifies the
|
|
203
|
-
* public key to use for DKIM authentication) and a private key.</p>
|
|
204
|
-
* <p>When you verify a domain, this operation provides a set of DKIM tokens, which you can
|
|
205
|
-
* convert into CNAME tokens. You add these CNAME tokens to the DNS configuration for your
|
|
206
|
-
* domain. Your domain is verified when Amazon SES detects these records in the DNS
|
|
207
|
-
* configuration for your domain. For some DNS providers, it can take 72 hours or more to
|
|
208
|
-
* complete the domain verification process.</p>
|
|
209
|
-
* <p>Additionally, you can associate an existing configuration set with the email identity that you're verifying.</p>
|
|
139
|
+
* @see {@link CreateEmailIdentityCommand}
|
|
210
140
|
*/
|
|
211
141
|
createEmailIdentity(args: CreateEmailIdentityCommandInput, options?: __HttpHandlerOptions): Promise<CreateEmailIdentityCommandOutput>;
|
|
212
142
|
createEmailIdentity(args: CreateEmailIdentityCommandInput, cb: (err: any, data?: CreateEmailIdentityCommandOutput) => void): void;
|
|
213
143
|
createEmailIdentity(args: CreateEmailIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEmailIdentityCommandOutput) => void): void;
|
|
214
144
|
/**
|
|
215
|
-
* @
|
|
216
|
-
* <p>Creates the specified sending authorization policy for the given identity (an email
|
|
217
|
-
* address or a domain).</p>
|
|
218
|
-
* <note>
|
|
219
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
220
|
-
* this API will return an error.</p>
|
|
221
|
-
* </note>
|
|
222
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
223
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
224
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
225
|
-
* Guide</a>.</p>
|
|
226
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
145
|
+
* @see {@link CreateEmailIdentityPolicyCommand}
|
|
227
146
|
*/
|
|
228
147
|
createEmailIdentityPolicy(args: CreateEmailIdentityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateEmailIdentityPolicyCommandOutput>;
|
|
229
148
|
createEmailIdentityPolicy(args: CreateEmailIdentityPolicyCommandInput, cb: (err: any, data?: CreateEmailIdentityPolicyCommandOutput) => void): void;
|
|
230
149
|
createEmailIdentityPolicy(args: CreateEmailIdentityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEmailIdentityPolicyCommandOutput) => void): void;
|
|
231
150
|
/**
|
|
232
|
-
* @
|
|
233
|
-
* <p>Creates an email template. Email templates enable you to send personalized email to
|
|
234
|
-
* one or more destinations in a single API operation. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
|
|
235
|
-
* Guide</a>.</p>
|
|
236
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
151
|
+
* @see {@link CreateEmailTemplateCommand}
|
|
237
152
|
*/
|
|
238
153
|
createEmailTemplate(args: CreateEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateEmailTemplateCommandOutput>;
|
|
239
154
|
createEmailTemplate(args: CreateEmailTemplateCommandInput, cb: (err: any, data?: CreateEmailTemplateCommandOutput) => void): void;
|
|
240
155
|
createEmailTemplate(args: CreateEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEmailTemplateCommandOutput) => void): void;
|
|
241
156
|
/**
|
|
242
|
-
* @
|
|
243
|
-
* <p>Creates an import job for a data destination.</p>
|
|
157
|
+
* @see {@link CreateImportJobCommand}
|
|
244
158
|
*/
|
|
245
159
|
createImportJob(args: CreateImportJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateImportJobCommandOutput>;
|
|
246
160
|
createImportJob(args: CreateImportJobCommandInput, cb: (err: any, data?: CreateImportJobCommandOutput) => void): void;
|
|
247
161
|
createImportJob(args: CreateImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateImportJobCommandOutput) => void): void;
|
|
248
162
|
/**
|
|
249
|
-
* @
|
|
250
|
-
* <p>Delete an existing configuration set.</p>
|
|
251
|
-
* <p>
|
|
252
|
-
* <i>Configuration sets</i> are groups of rules that you can apply to the
|
|
253
|
-
* emails you send. You apply a configuration set to an email by including a reference to
|
|
254
|
-
* the configuration set in the headers of the email. When you apply a configuration set to
|
|
255
|
-
* an email, all of the rules in that configuration set are applied to the email.</p>
|
|
163
|
+
* @see {@link DeleteConfigurationSetCommand}
|
|
256
164
|
*/
|
|
257
165
|
deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetCommandOutput>;
|
|
258
166
|
deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void): void;
|
|
259
167
|
deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void): void;
|
|
260
168
|
/**
|
|
261
|
-
* @
|
|
262
|
-
* <p>Delete an event destination.</p>
|
|
263
|
-
* <p>
|
|
264
|
-
* <i>Events</i> include message sends, deliveries, opens, clicks, bounces,
|
|
265
|
-
* and complaints. <i>Event destinations</i> are places that you can send
|
|
266
|
-
* information about these events to. For example, you can send event data to Amazon SNS to
|
|
267
|
-
* receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to
|
|
268
|
-
* stream data to Amazon S3 for long-term storage.</p>
|
|
169
|
+
* @see {@link DeleteConfigurationSetEventDestinationCommand}
|
|
269
170
|
*/
|
|
270
171
|
deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetEventDestinationCommandOutput>;
|
|
271
172
|
deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
272
173
|
deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
273
174
|
/**
|
|
274
|
-
* @
|
|
275
|
-
* <p>Removes a contact from a contact list.</p>
|
|
175
|
+
* @see {@link DeleteContactCommand}
|
|
276
176
|
*/
|
|
277
177
|
deleteContact(args: DeleteContactCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactCommandOutput>;
|
|
278
178
|
deleteContact(args: DeleteContactCommandInput, cb: (err: any, data?: DeleteContactCommandOutput) => void): void;
|
|
279
179
|
deleteContact(args: DeleteContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactCommandOutput) => void): void;
|
|
280
180
|
/**
|
|
281
|
-
* @
|
|
282
|
-
* <p>Deletes a contact list and all of the contacts on that list.</p>
|
|
181
|
+
* @see {@link DeleteContactListCommand}
|
|
283
182
|
*/
|
|
284
183
|
deleteContactList(args: DeleteContactListCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactListCommandOutput>;
|
|
285
184
|
deleteContactList(args: DeleteContactListCommandInput, cb: (err: any, data?: DeleteContactListCommandOutput) => void): void;
|
|
286
185
|
deleteContactList(args: DeleteContactListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactListCommandOutput) => void): void;
|
|
287
186
|
/**
|
|
288
|
-
* @
|
|
289
|
-
* <p>Deletes an existing custom verification email template.</p>
|
|
290
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
291
|
-
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
292
|
-
* Guide</i>.</p>
|
|
293
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
187
|
+
* @see {@link DeleteCustomVerificationEmailTemplateCommand}
|
|
294
188
|
*/
|
|
295
189
|
deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomVerificationEmailTemplateCommandOutput>;
|
|
296
190
|
deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
297
191
|
deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
298
192
|
/**
|
|
299
|
-
* @
|
|
300
|
-
* <p>Delete a dedicated IP pool.</p>
|
|
193
|
+
* @see {@link DeleteDedicatedIpPoolCommand}
|
|
301
194
|
*/
|
|
302
195
|
deleteDedicatedIpPool(args: DeleteDedicatedIpPoolCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDedicatedIpPoolCommandOutput>;
|
|
303
196
|
deleteDedicatedIpPool(args: DeleteDedicatedIpPoolCommandInput, cb: (err: any, data?: DeleteDedicatedIpPoolCommandOutput) => void): void;
|
|
304
197
|
deleteDedicatedIpPool(args: DeleteDedicatedIpPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDedicatedIpPoolCommandOutput) => void): void;
|
|
305
198
|
/**
|
|
306
|
-
* @
|
|
307
|
-
* <p>Deletes an email identity. An identity can be either an email address or a domain
|
|
308
|
-
* name.</p>
|
|
199
|
+
* @see {@link DeleteEmailIdentityCommand}
|
|
309
200
|
*/
|
|
310
201
|
deleteEmailIdentity(args: DeleteEmailIdentityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEmailIdentityCommandOutput>;
|
|
311
202
|
deleteEmailIdentity(args: DeleteEmailIdentityCommandInput, cb: (err: any, data?: DeleteEmailIdentityCommandOutput) => void): void;
|
|
312
203
|
deleteEmailIdentity(args: DeleteEmailIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEmailIdentityCommandOutput) => void): void;
|
|
313
204
|
/**
|
|
314
|
-
* @
|
|
315
|
-
* <p>Deletes the specified sending authorization policy for the given identity (an email
|
|
316
|
-
* address or a domain). This API returns successfully even if a policy with the specified
|
|
317
|
-
* name does not exist.</p>
|
|
318
|
-
* <note>
|
|
319
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
320
|
-
* this API will return an error.</p>
|
|
321
|
-
* </note>
|
|
322
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
323
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
324
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
325
|
-
* Guide</a>.</p>
|
|
326
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
205
|
+
* @see {@link DeleteEmailIdentityPolicyCommand}
|
|
327
206
|
*/
|
|
328
207
|
deleteEmailIdentityPolicy(args: DeleteEmailIdentityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEmailIdentityPolicyCommandOutput>;
|
|
329
208
|
deleteEmailIdentityPolicy(args: DeleteEmailIdentityPolicyCommandInput, cb: (err: any, data?: DeleteEmailIdentityPolicyCommandOutput) => void): void;
|
|
330
209
|
deleteEmailIdentityPolicy(args: DeleteEmailIdentityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEmailIdentityPolicyCommandOutput) => void): void;
|
|
331
210
|
/**
|
|
332
|
-
* @
|
|
333
|
-
* <p>Deletes an email template.</p>
|
|
334
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
211
|
+
* @see {@link DeleteEmailTemplateCommand}
|
|
335
212
|
*/
|
|
336
213
|
deleteEmailTemplate(args: DeleteEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEmailTemplateCommandOutput>;
|
|
337
214
|
deleteEmailTemplate(args: DeleteEmailTemplateCommandInput, cb: (err: any, data?: DeleteEmailTemplateCommandOutput) => void): void;
|
|
338
215
|
deleteEmailTemplate(args: DeleteEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEmailTemplateCommandOutput) => void): void;
|
|
339
216
|
/**
|
|
340
|
-
* @
|
|
341
|
-
* <p>Removes an email address from the suppression list for your account.</p>
|
|
217
|
+
* @see {@link DeleteSuppressedDestinationCommand}
|
|
342
218
|
*/
|
|
343
219
|
deleteSuppressedDestination(args: DeleteSuppressedDestinationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSuppressedDestinationCommandOutput>;
|
|
344
220
|
deleteSuppressedDestination(args: DeleteSuppressedDestinationCommandInput, cb: (err: any, data?: DeleteSuppressedDestinationCommandOutput) => void): void;
|
|
345
221
|
deleteSuppressedDestination(args: DeleteSuppressedDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSuppressedDestinationCommandOutput) => void): void;
|
|
346
222
|
/**
|
|
347
|
-
* @
|
|
348
|
-
* <p>Obtain information about the email-sending status and capabilities of your Amazon SES
|
|
349
|
-
* account in the current Amazon Web Services Region.</p>
|
|
223
|
+
* @see {@link GetAccountCommand}
|
|
350
224
|
*/
|
|
351
225
|
getAccount(args: GetAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountCommandOutput>;
|
|
352
226
|
getAccount(args: GetAccountCommandInput, cb: (err: any, data?: GetAccountCommandOutput) => void): void;
|
|
353
227
|
getAccount(args: GetAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountCommandOutput) => void): void;
|
|
354
228
|
/**
|
|
355
|
-
* @
|
|
356
|
-
* <p>Retrieve a list of the blacklists that your dedicated IP addresses appear on.</p>
|
|
229
|
+
* @see {@link GetBlacklistReportsCommand}
|
|
357
230
|
*/
|
|
358
231
|
getBlacklistReports(args: GetBlacklistReportsCommandInput, options?: __HttpHandlerOptions): Promise<GetBlacklistReportsCommandOutput>;
|
|
359
232
|
getBlacklistReports(args: GetBlacklistReportsCommandInput, cb: (err: any, data?: GetBlacklistReportsCommandOutput) => void): void;
|
|
360
233
|
getBlacklistReports(args: GetBlacklistReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBlacklistReportsCommandOutput) => void): void;
|
|
361
234
|
/**
|
|
362
|
-
* @
|
|
363
|
-
* <p>Get information about an existing configuration set, including the dedicated IP pool
|
|
364
|
-
* that it's associated with, whether or not it's enabled for sending email, and
|
|
365
|
-
* more.</p>
|
|
366
|
-
* <p>
|
|
367
|
-
* <i>Configuration sets</i> are groups of rules that you can apply to the
|
|
368
|
-
* emails you send. You apply a configuration set to an email by including a reference to
|
|
369
|
-
* the configuration set in the headers of the email. When you apply a configuration set to
|
|
370
|
-
* an email, all of the rules in that configuration set are applied to the email.</p>
|
|
235
|
+
* @see {@link GetConfigurationSetCommand}
|
|
371
236
|
*/
|
|
372
237
|
getConfigurationSet(args: GetConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationSetCommandOutput>;
|
|
373
238
|
getConfigurationSet(args: GetConfigurationSetCommandInput, cb: (err: any, data?: GetConfigurationSetCommandOutput) => void): void;
|
|
374
239
|
getConfigurationSet(args: GetConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationSetCommandOutput) => void): void;
|
|
375
240
|
/**
|
|
376
|
-
* @
|
|
377
|
-
* <p>Retrieve a list of event destinations that are associated with a configuration
|
|
378
|
-
* set.</p>
|
|
379
|
-
* <p>
|
|
380
|
-
* <i>Events</i> include message sends, deliveries, opens, clicks, bounces,
|
|
381
|
-
* and complaints. <i>Event destinations</i> are places that you can send
|
|
382
|
-
* information about these events to. For example, you can send event data to Amazon SNS to
|
|
383
|
-
* receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to
|
|
384
|
-
* stream data to Amazon S3 for long-term storage.</p>
|
|
241
|
+
* @see {@link GetConfigurationSetEventDestinationsCommand}
|
|
385
242
|
*/
|
|
386
243
|
getConfigurationSetEventDestinations(args: GetConfigurationSetEventDestinationsCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationSetEventDestinationsCommandOutput>;
|
|
387
244
|
getConfigurationSetEventDestinations(args: GetConfigurationSetEventDestinationsCommandInput, cb: (err: any, data?: GetConfigurationSetEventDestinationsCommandOutput) => void): void;
|
|
388
245
|
getConfigurationSetEventDestinations(args: GetConfigurationSetEventDestinationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationSetEventDestinationsCommandOutput) => void): void;
|
|
389
246
|
/**
|
|
390
|
-
* @
|
|
391
|
-
* <p>Returns a contact from a contact list.</p>
|
|
247
|
+
* @see {@link GetContactCommand}
|
|
392
248
|
*/
|
|
393
249
|
getContact(args: GetContactCommandInput, options?: __HttpHandlerOptions): Promise<GetContactCommandOutput>;
|
|
394
250
|
getContact(args: GetContactCommandInput, cb: (err: any, data?: GetContactCommandOutput) => void): void;
|
|
395
251
|
getContact(args: GetContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactCommandOutput) => void): void;
|
|
396
252
|
/**
|
|
397
|
-
* @
|
|
398
|
-
* <p>Returns contact list metadata. It does not return any information about the contacts
|
|
399
|
-
* present in the list.</p>
|
|
253
|
+
* @see {@link GetContactListCommand}
|
|
400
254
|
*/
|
|
401
255
|
getContactList(args: GetContactListCommandInput, options?: __HttpHandlerOptions): Promise<GetContactListCommandOutput>;
|
|
402
256
|
getContactList(args: GetContactListCommandInput, cb: (err: any, data?: GetContactListCommandOutput) => void): void;
|
|
403
257
|
getContactList(args: GetContactListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactListCommandOutput) => void): void;
|
|
404
258
|
/**
|
|
405
|
-
* @
|
|
406
|
-
* <p>Returns the custom email verification template for the template name you
|
|
407
|
-
* specify.</p>
|
|
408
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
409
|
-
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
410
|
-
* Guide</i>.</p>
|
|
411
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
259
|
+
* @see {@link GetCustomVerificationEmailTemplateCommand}
|
|
412
260
|
*/
|
|
413
261
|
getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetCustomVerificationEmailTemplateCommandOutput>;
|
|
414
262
|
getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
415
263
|
getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
416
264
|
/**
|
|
417
|
-
* @
|
|
418
|
-
* <p>Get information about a dedicated IP address, including the name of the dedicated IP
|
|
419
|
-
* pool that it's associated with, as well information about the automatic warm-up process
|
|
420
|
-
* for the address.</p>
|
|
265
|
+
* @see {@link GetDedicatedIpCommand}
|
|
421
266
|
*/
|
|
422
267
|
getDedicatedIp(args: GetDedicatedIpCommandInput, options?: __HttpHandlerOptions): Promise<GetDedicatedIpCommandOutput>;
|
|
423
268
|
getDedicatedIp(args: GetDedicatedIpCommandInput, cb: (err: any, data?: GetDedicatedIpCommandOutput) => void): void;
|
|
424
269
|
getDedicatedIp(args: GetDedicatedIpCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDedicatedIpCommandOutput) => void): void;
|
|
425
270
|
/**
|
|
426
|
-
* @
|
|
427
|
-
* <p>Retrieve information about the dedicated pool.</p>
|
|
271
|
+
* @see {@link GetDedicatedIpPoolCommand}
|
|
428
272
|
*/
|
|
429
273
|
getDedicatedIpPool(args: GetDedicatedIpPoolCommandInput, options?: __HttpHandlerOptions): Promise<GetDedicatedIpPoolCommandOutput>;
|
|
430
274
|
getDedicatedIpPool(args: GetDedicatedIpPoolCommandInput, cb: (err: any, data?: GetDedicatedIpPoolCommandOutput) => void): void;
|
|
431
275
|
getDedicatedIpPool(args: GetDedicatedIpPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDedicatedIpPoolCommandOutput) => void): void;
|
|
432
276
|
/**
|
|
433
|
-
* @
|
|
434
|
-
* <p>List the dedicated IP addresses that are associated with your Amazon Web Services
|
|
435
|
-
* account.</p>
|
|
277
|
+
* @see {@link GetDedicatedIpsCommand}
|
|
436
278
|
*/
|
|
437
279
|
getDedicatedIps(args: GetDedicatedIpsCommandInput, options?: __HttpHandlerOptions): Promise<GetDedicatedIpsCommandOutput>;
|
|
438
280
|
getDedicatedIps(args: GetDedicatedIpsCommandInput, cb: (err: any, data?: GetDedicatedIpsCommandOutput) => void): void;
|
|
439
281
|
getDedicatedIps(args: GetDedicatedIpsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDedicatedIpsCommandOutput) => void): void;
|
|
440
282
|
/**
|
|
441
|
-
* @
|
|
442
|
-
* <p>Retrieve information about the status of the Deliverability dashboard for your account. When
|
|
443
|
-
* the Deliverability dashboard is enabled, you gain access to reputation, deliverability, and other
|
|
444
|
-
* metrics for the domains that you use to send email. You also gain the ability to perform
|
|
445
|
-
* predictive inbox placement tests.</p>
|
|
446
|
-
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
447
|
-
* to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
|
|
448
|
-
* information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/ses/pricing/">Amazon SES Pricing</a>.</p>
|
|
283
|
+
* @see {@link GetDeliverabilityDashboardOptionsCommand}
|
|
449
284
|
*/
|
|
450
285
|
getDeliverabilityDashboardOptions(args: GetDeliverabilityDashboardOptionsCommandInput, options?: __HttpHandlerOptions): Promise<GetDeliverabilityDashboardOptionsCommandOutput>;
|
|
451
286
|
getDeliverabilityDashboardOptions(args: GetDeliverabilityDashboardOptionsCommandInput, cb: (err: any, data?: GetDeliverabilityDashboardOptionsCommandOutput) => void): void;
|
|
452
287
|
getDeliverabilityDashboardOptions(args: GetDeliverabilityDashboardOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeliverabilityDashboardOptionsCommandOutput) => void): void;
|
|
453
288
|
/**
|
|
454
|
-
* @
|
|
455
|
-
* <p>Retrieve the results of a predictive inbox placement test.</p>
|
|
289
|
+
* @see {@link GetDeliverabilityTestReportCommand}
|
|
456
290
|
*/
|
|
457
291
|
getDeliverabilityTestReport(args: GetDeliverabilityTestReportCommandInput, options?: __HttpHandlerOptions): Promise<GetDeliverabilityTestReportCommandOutput>;
|
|
458
292
|
getDeliverabilityTestReport(args: GetDeliverabilityTestReportCommandInput, cb: (err: any, data?: GetDeliverabilityTestReportCommandOutput) => void): void;
|
|
459
293
|
getDeliverabilityTestReport(args: GetDeliverabilityTestReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeliverabilityTestReportCommandOutput) => void): void;
|
|
460
294
|
/**
|
|
461
|
-
* @
|
|
462
|
-
* <p>Retrieve all the deliverability data for a specific campaign. This data is available
|
|
463
|
-
* for a campaign only if the campaign sent email by using a domain that the
|
|
464
|
-
* Deliverability dashboard is enabled for.</p>
|
|
295
|
+
* @see {@link GetDomainDeliverabilityCampaignCommand}
|
|
465
296
|
*/
|
|
466
297
|
getDomainDeliverabilityCampaign(args: GetDomainDeliverabilityCampaignCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainDeliverabilityCampaignCommandOutput>;
|
|
467
298
|
getDomainDeliverabilityCampaign(args: GetDomainDeliverabilityCampaignCommandInput, cb: (err: any, data?: GetDomainDeliverabilityCampaignCommandOutput) => void): void;
|
|
468
299
|
getDomainDeliverabilityCampaign(args: GetDomainDeliverabilityCampaignCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainDeliverabilityCampaignCommandOutput) => void): void;
|
|
469
300
|
/**
|
|
470
|
-
* @
|
|
471
|
-
* <p>Retrieve inbox placement and engagement rates for the domains that you use to send
|
|
472
|
-
* email.</p>
|
|
301
|
+
* @see {@link GetDomainStatisticsReportCommand}
|
|
473
302
|
*/
|
|
474
303
|
getDomainStatisticsReport(args: GetDomainStatisticsReportCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainStatisticsReportCommandOutput>;
|
|
475
304
|
getDomainStatisticsReport(args: GetDomainStatisticsReportCommandInput, cb: (err: any, data?: GetDomainStatisticsReportCommandOutput) => void): void;
|
|
476
305
|
getDomainStatisticsReport(args: GetDomainStatisticsReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainStatisticsReportCommandOutput) => void): void;
|
|
477
306
|
/**
|
|
478
|
-
* @
|
|
479
|
-
* <p>Provides information about a specific identity, including the identity's verification
|
|
480
|
-
* status, sending authorization policies, its DKIM authentication status, and its custom
|
|
481
|
-
* Mail-From settings.</p>
|
|
307
|
+
* @see {@link GetEmailIdentityCommand}
|
|
482
308
|
*/
|
|
483
309
|
getEmailIdentity(args: GetEmailIdentityCommandInput, options?: __HttpHandlerOptions): Promise<GetEmailIdentityCommandOutput>;
|
|
484
310
|
getEmailIdentity(args: GetEmailIdentityCommandInput, cb: (err: any, data?: GetEmailIdentityCommandOutput) => void): void;
|
|
485
311
|
getEmailIdentity(args: GetEmailIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEmailIdentityCommandOutput) => void): void;
|
|
486
312
|
/**
|
|
487
|
-
* @
|
|
488
|
-
* <p>Returns the requested sending authorization policies for the given identity (an email
|
|
489
|
-
* address or a domain). The policies are returned as a map of policy names to policy
|
|
490
|
-
* contents. You can retrieve a maximum of 20 policies at a time.</p>
|
|
491
|
-
* <note>
|
|
492
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
493
|
-
* this API will return an error.</p>
|
|
494
|
-
* </note>
|
|
495
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
496
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
497
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
498
|
-
* Guide</a>.</p>
|
|
499
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
313
|
+
* @see {@link GetEmailIdentityPoliciesCommand}
|
|
500
314
|
*/
|
|
501
315
|
getEmailIdentityPolicies(args: GetEmailIdentityPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<GetEmailIdentityPoliciesCommandOutput>;
|
|
502
316
|
getEmailIdentityPolicies(args: GetEmailIdentityPoliciesCommandInput, cb: (err: any, data?: GetEmailIdentityPoliciesCommandOutput) => void): void;
|
|
503
317
|
getEmailIdentityPolicies(args: GetEmailIdentityPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEmailIdentityPoliciesCommandOutput) => void): void;
|
|
504
318
|
/**
|
|
505
|
-
* @
|
|
506
|
-
* <p>Displays the template object (which includes the subject line, HTML part and text
|
|
507
|
-
* part) for the template you specify.</p>
|
|
508
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
319
|
+
* @see {@link GetEmailTemplateCommand}
|
|
509
320
|
*/
|
|
510
321
|
getEmailTemplate(args: GetEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetEmailTemplateCommandOutput>;
|
|
511
322
|
getEmailTemplate(args: GetEmailTemplateCommandInput, cb: (err: any, data?: GetEmailTemplateCommandOutput) => void): void;
|
|
512
323
|
getEmailTemplate(args: GetEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEmailTemplateCommandOutput) => void): void;
|
|
513
324
|
/**
|
|
514
|
-
* @
|
|
515
|
-
* <p>Provides information about an import job.</p>
|
|
325
|
+
* @see {@link GetImportJobCommand}
|
|
516
326
|
*/
|
|
517
327
|
getImportJob(args: GetImportJobCommandInput, options?: __HttpHandlerOptions): Promise<GetImportJobCommandOutput>;
|
|
518
328
|
getImportJob(args: GetImportJobCommandInput, cb: (err: any, data?: GetImportJobCommandOutput) => void): void;
|
|
519
329
|
getImportJob(args: GetImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetImportJobCommandOutput) => void): void;
|
|
520
330
|
/**
|
|
521
|
-
* @
|
|
522
|
-
* <p>Retrieves information about a specific email address that's on the suppression list
|
|
523
|
-
* for your account.</p>
|
|
331
|
+
* @see {@link GetSuppressedDestinationCommand}
|
|
524
332
|
*/
|
|
525
333
|
getSuppressedDestination(args: GetSuppressedDestinationCommandInput, options?: __HttpHandlerOptions): Promise<GetSuppressedDestinationCommandOutput>;
|
|
526
334
|
getSuppressedDestination(args: GetSuppressedDestinationCommandInput, cb: (err: any, data?: GetSuppressedDestinationCommandOutput) => void): void;
|
|
527
335
|
getSuppressedDestination(args: GetSuppressedDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSuppressedDestinationCommandOutput) => void): void;
|
|
528
336
|
/**
|
|
529
|
-
* @
|
|
530
|
-
* <p>List all of the configuration sets associated with your account in the current
|
|
531
|
-
* region.</p>
|
|
532
|
-
* <p>
|
|
533
|
-
* <i>Configuration sets</i> are groups of rules that you can apply to the
|
|
534
|
-
* emails you send. You apply a configuration set to an email by including a reference to
|
|
535
|
-
* the configuration set in the headers of the email. When you apply a configuration set to
|
|
536
|
-
* an email, all of the rules in that configuration set are applied to the email.</p>
|
|
337
|
+
* @see {@link ListConfigurationSetsCommand}
|
|
537
338
|
*/
|
|
538
339
|
listConfigurationSets(args: ListConfigurationSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationSetsCommandOutput>;
|
|
539
340
|
listConfigurationSets(args: ListConfigurationSetsCommandInput, cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void): void;
|
|
540
341
|
listConfigurationSets(args: ListConfigurationSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void): void;
|
|
541
342
|
/**
|
|
542
|
-
* @
|
|
543
|
-
* <p>Lists all of the contact lists available.</p>
|
|
343
|
+
* @see {@link ListContactListsCommand}
|
|
544
344
|
*/
|
|
545
345
|
listContactLists(args: ListContactListsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactListsCommandOutput>;
|
|
546
346
|
listContactLists(args: ListContactListsCommandInput, cb: (err: any, data?: ListContactListsCommandOutput) => void): void;
|
|
547
347
|
listContactLists(args: ListContactListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactListsCommandOutput) => void): void;
|
|
548
348
|
/**
|
|
549
|
-
* @
|
|
550
|
-
* <p>Lists the contacts present in a specific contact list.</p>
|
|
349
|
+
* @see {@link ListContactsCommand}
|
|
551
350
|
*/
|
|
552
351
|
listContacts(args: ListContactsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactsCommandOutput>;
|
|
553
352
|
listContacts(args: ListContactsCommandInput, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
554
353
|
listContacts(args: ListContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
555
354
|
/**
|
|
556
|
-
* @
|
|
557
|
-
* <p>Lists the existing custom verification email templates for your account in the current
|
|
558
|
-
* Amazon Web Services Region.</p>
|
|
559
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
560
|
-
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
561
|
-
* Guide</i>.</p>
|
|
562
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
355
|
+
* @see {@link ListCustomVerificationEmailTemplatesCommand}
|
|
563
356
|
*/
|
|
564
357
|
listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomVerificationEmailTemplatesCommandOutput>;
|
|
565
358
|
listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void): void;
|
|
566
359
|
listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void): void;
|
|
567
360
|
/**
|
|
568
|
-
* @
|
|
569
|
-
* <p>List all of the dedicated IP pools that exist in your Amazon Web Services account in the current
|
|
570
|
-
* Region.</p>
|
|
361
|
+
* @see {@link ListDedicatedIpPoolsCommand}
|
|
571
362
|
*/
|
|
572
363
|
listDedicatedIpPools(args: ListDedicatedIpPoolsCommandInput, options?: __HttpHandlerOptions): Promise<ListDedicatedIpPoolsCommandOutput>;
|
|
573
364
|
listDedicatedIpPools(args: ListDedicatedIpPoolsCommandInput, cb: (err: any, data?: ListDedicatedIpPoolsCommandOutput) => void): void;
|
|
574
365
|
listDedicatedIpPools(args: ListDedicatedIpPoolsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDedicatedIpPoolsCommandOutput) => void): void;
|
|
575
366
|
/**
|
|
576
|
-
* @
|
|
577
|
-
* <p>Show a list of the predictive inbox placement tests that you've performed, regardless of their statuses. For
|
|
578
|
-
* predictive inbox placement tests that are complete, you can use the <code>GetDeliverabilityTestReport</code>
|
|
579
|
-
* operation to view the results.</p>
|
|
367
|
+
* @see {@link ListDeliverabilityTestReportsCommand}
|
|
580
368
|
*/
|
|
581
369
|
listDeliverabilityTestReports(args: ListDeliverabilityTestReportsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeliverabilityTestReportsCommandOutput>;
|
|
582
370
|
listDeliverabilityTestReports(args: ListDeliverabilityTestReportsCommandInput, cb: (err: any, data?: ListDeliverabilityTestReportsCommandOutput) => void): void;
|
|
583
371
|
listDeliverabilityTestReports(args: ListDeliverabilityTestReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeliverabilityTestReportsCommandOutput) => void): void;
|
|
584
372
|
/**
|
|
585
|
-
* @
|
|
586
|
-
* <p>Retrieve deliverability data for all the campaigns that used a specific domain to send
|
|
587
|
-
* email during a specified time range. This data is available for a domain only if you
|
|
588
|
-
* enabled the Deliverability dashboard for the domain.</p>
|
|
373
|
+
* @see {@link ListDomainDeliverabilityCampaignsCommand}
|
|
589
374
|
*/
|
|
590
375
|
listDomainDeliverabilityCampaigns(args: ListDomainDeliverabilityCampaignsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainDeliverabilityCampaignsCommandOutput>;
|
|
591
376
|
listDomainDeliverabilityCampaigns(args: ListDomainDeliverabilityCampaignsCommandInput, cb: (err: any, data?: ListDomainDeliverabilityCampaignsCommandOutput) => void): void;
|
|
592
377
|
listDomainDeliverabilityCampaigns(args: ListDomainDeliverabilityCampaignsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainDeliverabilityCampaignsCommandOutput) => void): void;
|
|
593
378
|
/**
|
|
594
|
-
* @
|
|
595
|
-
* <p>Returns a list of all of the email identities that are associated with your Amazon Web Services
|
|
596
|
-
* account. An identity can be either an email address or a domain. This operation returns
|
|
597
|
-
* identities that are verified as well as those that aren't. This operation returns
|
|
598
|
-
* identities that are associated with Amazon SES and Amazon Pinpoint.</p>
|
|
379
|
+
* @see {@link ListEmailIdentitiesCommand}
|
|
599
380
|
*/
|
|
600
381
|
listEmailIdentities(args: ListEmailIdentitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListEmailIdentitiesCommandOutput>;
|
|
601
382
|
listEmailIdentities(args: ListEmailIdentitiesCommandInput, cb: (err: any, data?: ListEmailIdentitiesCommandOutput) => void): void;
|
|
602
383
|
listEmailIdentities(args: ListEmailIdentitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEmailIdentitiesCommandOutput) => void): void;
|
|
603
384
|
/**
|
|
604
|
-
* @
|
|
605
|
-
* <p>Lists the email templates present in your Amazon SES account in the current Amazon Web Services
|
|
606
|
-
* Region.</p>
|
|
607
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
385
|
+
* @see {@link ListEmailTemplatesCommand}
|
|
608
386
|
*/
|
|
609
387
|
listEmailTemplates(args: ListEmailTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListEmailTemplatesCommandOutput>;
|
|
610
388
|
listEmailTemplates(args: ListEmailTemplatesCommandInput, cb: (err: any, data?: ListEmailTemplatesCommandOutput) => void): void;
|
|
611
389
|
listEmailTemplates(args: ListEmailTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEmailTemplatesCommandOutput) => void): void;
|
|
612
390
|
/**
|
|
613
|
-
* @
|
|
614
|
-
* <p>Lists all of the import jobs.</p>
|
|
391
|
+
* @see {@link ListImportJobsCommand}
|
|
615
392
|
*/
|
|
616
393
|
listImportJobs(args: ListImportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListImportJobsCommandOutput>;
|
|
617
394
|
listImportJobs(args: ListImportJobsCommandInput, cb: (err: any, data?: ListImportJobsCommandOutput) => void): void;
|
|
618
395
|
listImportJobs(args: ListImportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListImportJobsCommandOutput) => void): void;
|
|
619
396
|
/**
|
|
620
|
-
* @
|
|
621
|
-
* <p>Lists the recommendations present in your Amazon SES account in the current Amazon Web Services Region.</p>
|
|
622
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
397
|
+
* @see {@link ListRecommendationsCommand}
|
|
623
398
|
*/
|
|
624
399
|
listRecommendations(args: ListRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecommendationsCommandOutput>;
|
|
625
400
|
listRecommendations(args: ListRecommendationsCommandInput, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
|
|
626
401
|
listRecommendations(args: ListRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
|
|
627
402
|
/**
|
|
628
|
-
* @
|
|
629
|
-
* <p>Retrieves a list of email addresses that are on the suppression list for your
|
|
630
|
-
* account.</p>
|
|
403
|
+
* @see {@link ListSuppressedDestinationsCommand}
|
|
631
404
|
*/
|
|
632
405
|
listSuppressedDestinations(args: ListSuppressedDestinationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSuppressedDestinationsCommandOutput>;
|
|
633
406
|
listSuppressedDestinations(args: ListSuppressedDestinationsCommandInput, cb: (err: any, data?: ListSuppressedDestinationsCommandOutput) => void): void;
|
|
634
407
|
listSuppressedDestinations(args: ListSuppressedDestinationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSuppressedDestinationsCommandOutput) => void): void;
|
|
635
408
|
/**
|
|
636
|
-
* @
|
|
637
|
-
* <p>Retrieve a list of the tags (keys and values) that are associated with a specified
|
|
638
|
-
* resource. A <i>tag</i> is a label that you optionally define and associate
|
|
639
|
-
* with a resource. Each tag consists of a required <i>tag key</i> and an
|
|
640
|
-
* optional associated <i>tag value</i>. A tag key is a general label that
|
|
641
|
-
* acts as a category for more specific tag values. A tag value acts as a descriptor within
|
|
642
|
-
* a tag key.</p>
|
|
409
|
+
* @see {@link ListTagsForResourceCommand}
|
|
643
410
|
*/
|
|
644
411
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
645
412
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
646
413
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
647
414
|
/**
|
|
648
|
-
* @
|
|
649
|
-
* <p>Enable or disable the automatic warm-up feature for dedicated IP addresses.</p>
|
|
415
|
+
* @see {@link PutAccountDedicatedIpWarmupAttributesCommand}
|
|
650
416
|
*/
|
|
651
417
|
putAccountDedicatedIpWarmupAttributes(args: PutAccountDedicatedIpWarmupAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountDedicatedIpWarmupAttributesCommandOutput>;
|
|
652
418
|
putAccountDedicatedIpWarmupAttributes(args: PutAccountDedicatedIpWarmupAttributesCommandInput, cb: (err: any, data?: PutAccountDedicatedIpWarmupAttributesCommandOutput) => void): void;
|
|
653
419
|
putAccountDedicatedIpWarmupAttributes(args: PutAccountDedicatedIpWarmupAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountDedicatedIpWarmupAttributesCommandOutput) => void): void;
|
|
654
420
|
/**
|
|
655
|
-
* @
|
|
656
|
-
* <p>Update your Amazon SES account details.</p>
|
|
421
|
+
* @see {@link PutAccountDetailsCommand}
|
|
657
422
|
*/
|
|
658
423
|
putAccountDetails(args: PutAccountDetailsCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountDetailsCommandOutput>;
|
|
659
424
|
putAccountDetails(args: PutAccountDetailsCommandInput, cb: (err: any, data?: PutAccountDetailsCommandOutput) => void): void;
|
|
660
425
|
putAccountDetails(args: PutAccountDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountDetailsCommandOutput) => void): void;
|
|
661
426
|
/**
|
|
662
|
-
* @
|
|
663
|
-
* <p>Enable or disable the ability of your account to send email.</p>
|
|
427
|
+
* @see {@link PutAccountSendingAttributesCommand}
|
|
664
428
|
*/
|
|
665
429
|
putAccountSendingAttributes(args: PutAccountSendingAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountSendingAttributesCommandOutput>;
|
|
666
430
|
putAccountSendingAttributes(args: PutAccountSendingAttributesCommandInput, cb: (err: any, data?: PutAccountSendingAttributesCommandOutput) => void): void;
|
|
667
431
|
putAccountSendingAttributes(args: PutAccountSendingAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountSendingAttributesCommandOutput) => void): void;
|
|
668
432
|
/**
|
|
669
|
-
* @
|
|
670
|
-
* <p>Change the settings for the account-level suppression list.</p>
|
|
433
|
+
* @see {@link PutAccountSuppressionAttributesCommand}
|
|
671
434
|
*/
|
|
672
435
|
putAccountSuppressionAttributes(args: PutAccountSuppressionAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountSuppressionAttributesCommandOutput>;
|
|
673
436
|
putAccountSuppressionAttributes(args: PutAccountSuppressionAttributesCommandInput, cb: (err: any, data?: PutAccountSuppressionAttributesCommandOutput) => void): void;
|
|
674
437
|
putAccountSuppressionAttributes(args: PutAccountSuppressionAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountSuppressionAttributesCommandOutput) => void): void;
|
|
675
438
|
/**
|
|
676
|
-
* @
|
|
677
|
-
* <p>Update your Amazon SES account VDM attributes.</p>
|
|
678
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
439
|
+
* @see {@link PutAccountVdmAttributesCommand}
|
|
679
440
|
*/
|
|
680
441
|
putAccountVdmAttributes(args: PutAccountVdmAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountVdmAttributesCommandOutput>;
|
|
681
442
|
putAccountVdmAttributes(args: PutAccountVdmAttributesCommandInput, cb: (err: any, data?: PutAccountVdmAttributesCommandOutput) => void): void;
|
|
682
443
|
putAccountVdmAttributes(args: PutAccountVdmAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountVdmAttributesCommandOutput) => void): void;
|
|
683
444
|
/**
|
|
684
|
-
* @
|
|
685
|
-
* <p>Associate a configuration set with a dedicated IP pool. You can use dedicated IP pools
|
|
686
|
-
* to create groups of dedicated IP addresses for sending specific types of email.</p>
|
|
445
|
+
* @see {@link PutConfigurationSetDeliveryOptionsCommand}
|
|
687
446
|
*/
|
|
688
447
|
putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetDeliveryOptionsCommandOutput>;
|
|
689
448
|
putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void): void;
|
|
690
449
|
putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void): void;
|
|
691
450
|
/**
|
|
692
|
-
* @
|
|
693
|
-
* <p>Enable or disable collection of reputation metrics for emails that you send using a
|
|
694
|
-
* particular configuration set in a specific Amazon Web Services Region.</p>
|
|
451
|
+
* @see {@link PutConfigurationSetReputationOptionsCommand}
|
|
695
452
|
*/
|
|
696
453
|
putConfigurationSetReputationOptions(args: PutConfigurationSetReputationOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetReputationOptionsCommandOutput>;
|
|
697
454
|
putConfigurationSetReputationOptions(args: PutConfigurationSetReputationOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetReputationOptionsCommandOutput) => void): void;
|
|
698
455
|
putConfigurationSetReputationOptions(args: PutConfigurationSetReputationOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetReputationOptionsCommandOutput) => void): void;
|
|
699
456
|
/**
|
|
700
|
-
* @
|
|
701
|
-
* <p>Enable or disable email sending for messages that use a particular configuration set
|
|
702
|
-
* in a specific Amazon Web Services Region.</p>
|
|
457
|
+
* @see {@link PutConfigurationSetSendingOptionsCommand}
|
|
703
458
|
*/
|
|
704
459
|
putConfigurationSetSendingOptions(args: PutConfigurationSetSendingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetSendingOptionsCommandOutput>;
|
|
705
460
|
putConfigurationSetSendingOptions(args: PutConfigurationSetSendingOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetSendingOptionsCommandOutput) => void): void;
|
|
706
461
|
putConfigurationSetSendingOptions(args: PutConfigurationSetSendingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetSendingOptionsCommandOutput) => void): void;
|
|
707
462
|
/**
|
|
708
|
-
* @
|
|
709
|
-
* <p>Specify the account suppression list preferences for a configuration set.</p>
|
|
463
|
+
* @see {@link PutConfigurationSetSuppressionOptionsCommand}
|
|
710
464
|
*/
|
|
711
465
|
putConfigurationSetSuppressionOptions(args: PutConfigurationSetSuppressionOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetSuppressionOptionsCommandOutput>;
|
|
712
466
|
putConfigurationSetSuppressionOptions(args: PutConfigurationSetSuppressionOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetSuppressionOptionsCommandOutput) => void): void;
|
|
713
467
|
putConfigurationSetSuppressionOptions(args: PutConfigurationSetSuppressionOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetSuppressionOptionsCommandOutput) => void): void;
|
|
714
468
|
/**
|
|
715
|
-
* @
|
|
716
|
-
* <p>Specify a custom domain to use for open and click tracking elements in email that you
|
|
717
|
-
* send.</p>
|
|
469
|
+
* @see {@link PutConfigurationSetTrackingOptionsCommand}
|
|
718
470
|
*/
|
|
719
471
|
putConfigurationSetTrackingOptions(args: PutConfigurationSetTrackingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetTrackingOptionsCommandOutput>;
|
|
720
472
|
putConfigurationSetTrackingOptions(args: PutConfigurationSetTrackingOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
721
473
|
putConfigurationSetTrackingOptions(args: PutConfigurationSetTrackingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
722
474
|
/**
|
|
723
|
-
* @
|
|
724
|
-
* <p>Specify VDM preferences for email that you send using the configuration set.</p>
|
|
725
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
475
|
+
* @see {@link PutConfigurationSetVdmOptionsCommand}
|
|
726
476
|
*/
|
|
727
477
|
putConfigurationSetVdmOptions(args: PutConfigurationSetVdmOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetVdmOptionsCommandOutput>;
|
|
728
478
|
putConfigurationSetVdmOptions(args: PutConfigurationSetVdmOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetVdmOptionsCommandOutput) => void): void;
|
|
729
479
|
putConfigurationSetVdmOptions(args: PutConfigurationSetVdmOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetVdmOptionsCommandOutput) => void): void;
|
|
730
480
|
/**
|
|
731
|
-
* @
|
|
732
|
-
* <p>Move a dedicated IP address to an existing dedicated IP pool.</p>
|
|
733
|
-
* <note>
|
|
734
|
-
* <p>The dedicated IP address that you specify must already exist, and must be
|
|
735
|
-
* associated with your Amazon Web Services account.
|
|
736
|
-
*
|
|
737
|
-
* </p>
|
|
738
|
-
* <p>The dedicated IP pool you specify must already exist. You can create a new pool by
|
|
739
|
-
* using the <code>CreateDedicatedIpPool</code> operation.</p>
|
|
740
|
-
* </note>
|
|
481
|
+
* @see {@link PutDedicatedIpInPoolCommand}
|
|
741
482
|
*/
|
|
742
483
|
putDedicatedIpInPool(args: PutDedicatedIpInPoolCommandInput, options?: __HttpHandlerOptions): Promise<PutDedicatedIpInPoolCommandOutput>;
|
|
743
484
|
putDedicatedIpInPool(args: PutDedicatedIpInPoolCommandInput, cb: (err: any, data?: PutDedicatedIpInPoolCommandOutput) => void): void;
|
|
744
485
|
putDedicatedIpInPool(args: PutDedicatedIpInPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDedicatedIpInPoolCommandOutput) => void): void;
|
|
745
486
|
/**
|
|
746
|
-
* @
|
|
747
|
-
* <p></p>
|
|
487
|
+
* @see {@link PutDedicatedIpWarmupAttributesCommand}
|
|
748
488
|
*/
|
|
749
489
|
putDedicatedIpWarmupAttributes(args: PutDedicatedIpWarmupAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutDedicatedIpWarmupAttributesCommandOutput>;
|
|
750
490
|
putDedicatedIpWarmupAttributes(args: PutDedicatedIpWarmupAttributesCommandInput, cb: (err: any, data?: PutDedicatedIpWarmupAttributesCommandOutput) => void): void;
|
|
751
491
|
putDedicatedIpWarmupAttributes(args: PutDedicatedIpWarmupAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDedicatedIpWarmupAttributesCommandOutput) => void): void;
|
|
752
492
|
/**
|
|
753
|
-
* @
|
|
754
|
-
* <p>Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain
|
|
755
|
-
* access to reputation, deliverability, and other metrics for the domains that you use to
|
|
756
|
-
* send email. You also gain the ability to perform predictive inbox placement tests.</p>
|
|
757
|
-
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
758
|
-
* to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
|
|
759
|
-
* information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/ses/pricing/">Amazon SES Pricing</a>.</p>
|
|
493
|
+
* @see {@link PutDeliverabilityDashboardOptionCommand}
|
|
760
494
|
*/
|
|
761
495
|
putDeliverabilityDashboardOption(args: PutDeliverabilityDashboardOptionCommandInput, options?: __HttpHandlerOptions): Promise<PutDeliverabilityDashboardOptionCommandOutput>;
|
|
762
496
|
putDeliverabilityDashboardOption(args: PutDeliverabilityDashboardOptionCommandInput, cb: (err: any, data?: PutDeliverabilityDashboardOptionCommandOutput) => void): void;
|
|
763
497
|
putDeliverabilityDashboardOption(args: PutDeliverabilityDashboardOptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDeliverabilityDashboardOptionCommandOutput) => void): void;
|
|
764
498
|
/**
|
|
765
|
-
* @
|
|
766
|
-
* <p>Used to associate a configuration set with an email identity.</p>
|
|
499
|
+
* @see {@link PutEmailIdentityConfigurationSetAttributesCommand}
|
|
767
500
|
*/
|
|
768
501
|
putEmailIdentityConfigurationSetAttributes(args: PutEmailIdentityConfigurationSetAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailIdentityConfigurationSetAttributesCommandOutput>;
|
|
769
502
|
putEmailIdentityConfigurationSetAttributes(args: PutEmailIdentityConfigurationSetAttributesCommandInput, cb: (err: any, data?: PutEmailIdentityConfigurationSetAttributesCommandOutput) => void): void;
|
|
770
503
|
putEmailIdentityConfigurationSetAttributes(args: PutEmailIdentityConfigurationSetAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailIdentityConfigurationSetAttributesCommandOutput) => void): void;
|
|
771
504
|
/**
|
|
772
|
-
* @
|
|
773
|
-
* <p>Used to enable or disable DKIM authentication for an email identity.</p>
|
|
505
|
+
* @see {@link PutEmailIdentityDkimAttributesCommand}
|
|
774
506
|
*/
|
|
775
507
|
putEmailIdentityDkimAttributes(args: PutEmailIdentityDkimAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailIdentityDkimAttributesCommandOutput>;
|
|
776
508
|
putEmailIdentityDkimAttributes(args: PutEmailIdentityDkimAttributesCommandInput, cb: (err: any, data?: PutEmailIdentityDkimAttributesCommandOutput) => void): void;
|
|
777
509
|
putEmailIdentityDkimAttributes(args: PutEmailIdentityDkimAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailIdentityDkimAttributesCommandOutput) => void): void;
|
|
778
510
|
/**
|
|
779
|
-
* @
|
|
780
|
-
* <p>Used to configure or change the DKIM authentication settings for an email domain
|
|
781
|
-
* identity. You can use this operation to do any of the following:</p>
|
|
782
|
-
* <ul>
|
|
783
|
-
* <li>
|
|
784
|
-
* <p>Update the signing attributes for an identity that uses Bring Your Own DKIM
|
|
785
|
-
* (BYODKIM).</p>
|
|
786
|
-
* </li>
|
|
787
|
-
* <li>
|
|
788
|
-
* <p>Update the key length that should be used for Easy DKIM.</p>
|
|
789
|
-
* </li>
|
|
790
|
-
* <li>
|
|
791
|
-
* <p>Change from using no DKIM authentication to using Easy DKIM.</p>
|
|
792
|
-
* </li>
|
|
793
|
-
* <li>
|
|
794
|
-
* <p>Change from using no DKIM authentication to using BYODKIM.</p>
|
|
795
|
-
* </li>
|
|
796
|
-
* <li>
|
|
797
|
-
* <p>Change from using Easy DKIM to using BYODKIM.</p>
|
|
798
|
-
* </li>
|
|
799
|
-
* <li>
|
|
800
|
-
* <p>Change from using BYODKIM to using Easy DKIM.</p>
|
|
801
|
-
* </li>
|
|
802
|
-
* </ul>
|
|
511
|
+
* @see {@link PutEmailIdentityDkimSigningAttributesCommand}
|
|
803
512
|
*/
|
|
804
513
|
putEmailIdentityDkimSigningAttributes(args: PutEmailIdentityDkimSigningAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailIdentityDkimSigningAttributesCommandOutput>;
|
|
805
514
|
putEmailIdentityDkimSigningAttributes(args: PutEmailIdentityDkimSigningAttributesCommandInput, cb: (err: any, data?: PutEmailIdentityDkimSigningAttributesCommandOutput) => void): void;
|
|
806
515
|
putEmailIdentityDkimSigningAttributes(args: PutEmailIdentityDkimSigningAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailIdentityDkimSigningAttributesCommandOutput) => void): void;
|
|
807
516
|
/**
|
|
808
|
-
* @
|
|
809
|
-
* <p>Used to enable or disable feedback forwarding for an identity. This setting determines
|
|
810
|
-
* what happens when an identity is used to send an email that results in a bounce or
|
|
811
|
-
* complaint event.</p>
|
|
812
|
-
* <p>If the value is <code>true</code>, you receive email notifications when bounce or
|
|
813
|
-
* complaint events occur. These notifications are sent to the address that you specified
|
|
814
|
-
* in the <code>Return-Path</code> header of the original email.</p>
|
|
815
|
-
* <p>You're required to have a method of tracking bounces and complaints. If you haven't
|
|
816
|
-
* set up another mechanism for receiving bounce or complaint notifications (for example,
|
|
817
|
-
* by setting up an event destination), you receive an email notification when these events
|
|
818
|
-
* occur (even if this setting is disabled).</p>
|
|
517
|
+
* @see {@link PutEmailIdentityFeedbackAttributesCommand}
|
|
819
518
|
*/
|
|
820
519
|
putEmailIdentityFeedbackAttributes(args: PutEmailIdentityFeedbackAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailIdentityFeedbackAttributesCommandOutput>;
|
|
821
520
|
putEmailIdentityFeedbackAttributes(args: PutEmailIdentityFeedbackAttributesCommandInput, cb: (err: any, data?: PutEmailIdentityFeedbackAttributesCommandOutput) => void): void;
|
|
822
521
|
putEmailIdentityFeedbackAttributes(args: PutEmailIdentityFeedbackAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailIdentityFeedbackAttributesCommandOutput) => void): void;
|
|
823
522
|
/**
|
|
824
|
-
* @
|
|
825
|
-
* <p>Used to enable or disable the custom Mail-From domain configuration for an email
|
|
826
|
-
* identity.</p>
|
|
523
|
+
* @see {@link PutEmailIdentityMailFromAttributesCommand}
|
|
827
524
|
*/
|
|
828
525
|
putEmailIdentityMailFromAttributes(args: PutEmailIdentityMailFromAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailIdentityMailFromAttributesCommandOutput>;
|
|
829
526
|
putEmailIdentityMailFromAttributes(args: PutEmailIdentityMailFromAttributesCommandInput, cb: (err: any, data?: PutEmailIdentityMailFromAttributesCommandOutput) => void): void;
|
|
830
527
|
putEmailIdentityMailFromAttributes(args: PutEmailIdentityMailFromAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailIdentityMailFromAttributesCommandOutput) => void): void;
|
|
831
528
|
/**
|
|
832
|
-
* @
|
|
833
|
-
* <p>Adds an email address to the suppression list for your account.</p>
|
|
529
|
+
* @see {@link PutSuppressedDestinationCommand}
|
|
834
530
|
*/
|
|
835
531
|
putSuppressedDestination(args: PutSuppressedDestinationCommandInput, options?: __HttpHandlerOptions): Promise<PutSuppressedDestinationCommandOutput>;
|
|
836
532
|
putSuppressedDestination(args: PutSuppressedDestinationCommandInput, cb: (err: any, data?: PutSuppressedDestinationCommandOutput) => void): void;
|
|
837
533
|
putSuppressedDestination(args: PutSuppressedDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSuppressedDestinationCommandOutput) => void): void;
|
|
838
534
|
/**
|
|
839
|
-
* @
|
|
840
|
-
* <p>Composes an email message to multiple destinations.</p>
|
|
535
|
+
* @see {@link SendBulkEmailCommand}
|
|
841
536
|
*/
|
|
842
537
|
sendBulkEmail(args: SendBulkEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendBulkEmailCommandOutput>;
|
|
843
538
|
sendBulkEmail(args: SendBulkEmailCommandInput, cb: (err: any, data?: SendBulkEmailCommandOutput) => void): void;
|
|
844
539
|
sendBulkEmail(args: SendBulkEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendBulkEmailCommandOutput) => void): void;
|
|
845
540
|
/**
|
|
846
|
-
* @
|
|
847
|
-
* <p>Adds an email address to the list of identities for your Amazon SES account in the current
|
|
848
|
-
* Amazon Web Services Region and attempts to verify it. As a result of executing this
|
|
849
|
-
* operation, a customized verification email is sent to the specified address.</p>
|
|
850
|
-
* <p>To use this operation, you must first create a custom verification email template. For
|
|
851
|
-
* more information about creating and using custom verification email templates, see
|
|
852
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
853
|
-
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
854
|
-
* Guide</i>.</p>
|
|
855
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
541
|
+
* @see {@link SendCustomVerificationEmailCommand}
|
|
856
542
|
*/
|
|
857
543
|
sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendCustomVerificationEmailCommandOutput>;
|
|
858
544
|
sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void): void;
|
|
859
545
|
sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void): void;
|
|
860
546
|
/**
|
|
861
|
-
* @
|
|
862
|
-
* <p>Sends an email message. You can use the Amazon SES API v2 to send the following types of
|
|
863
|
-
* messages:</p>
|
|
864
|
-
* <ul>
|
|
865
|
-
* <li>
|
|
866
|
-
* <p>
|
|
867
|
-
* <b>Simple</b> – A standard email message. When
|
|
868
|
-
* you create this type of message, you specify the sender, the recipient, and the
|
|
869
|
-
* message body, and Amazon SES assembles the message for you.</p>
|
|
870
|
-
* </li>
|
|
871
|
-
* <li>
|
|
872
|
-
* <p>
|
|
873
|
-
* <b>Raw</b> – A raw, MIME-formatted email
|
|
874
|
-
* message. When you send this type of email, you have to specify all of the
|
|
875
|
-
* message headers, as well as the message body. You can use this message type to
|
|
876
|
-
* send messages that contain attachments. The message that you specify has to be a
|
|
877
|
-
* valid MIME message.</p>
|
|
878
|
-
* </li>
|
|
879
|
-
* <li>
|
|
880
|
-
* <p>
|
|
881
|
-
* <b>Templated</b> – A message that contains
|
|
882
|
-
* personalization tags. When you send this type of email, Amazon SES API v2 automatically
|
|
883
|
-
* replaces the tags with values that you specify.</p>
|
|
884
|
-
* </li>
|
|
885
|
-
* </ul>
|
|
547
|
+
* @see {@link SendEmailCommand}
|
|
886
548
|
*/
|
|
887
549
|
sendEmail(args: SendEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendEmailCommandOutput>;
|
|
888
550
|
sendEmail(args: SendEmailCommandInput, cb: (err: any, data?: SendEmailCommandOutput) => void): void;
|
|
889
551
|
sendEmail(args: SendEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendEmailCommandOutput) => void): void;
|
|
890
552
|
/**
|
|
891
|
-
* @
|
|
892
|
-
* <p>Add one or more tags (keys and values) to a specified resource. A
|
|
893
|
-
* <i>tag</i> is a label that you optionally define and associate with a
|
|
894
|
-
* resource. Tags can help you categorize and manage resources in different ways, such as
|
|
895
|
-
* by purpose, owner, environment, or other criteria. A resource can have as many as 50
|
|
896
|
-
* tags.</p>
|
|
897
|
-
* <p>Each tag consists of a required <i>tag key</i> and an
|
|
898
|
-
* associated <i>tag value</i>, both of which you define. A tag key is a
|
|
899
|
-
* general label that acts as a category for more specific tag values. A tag value acts as
|
|
900
|
-
* a descriptor within a tag key.</p>
|
|
553
|
+
* @see {@link TagResourceCommand}
|
|
901
554
|
*/
|
|
902
555
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
903
556
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
904
557
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
905
558
|
/**
|
|
906
|
-
* @
|
|
907
|
-
* <p>Creates a preview of the MIME content of an email when provided with a template and a
|
|
908
|
-
* set of replacement data.</p>
|
|
909
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
559
|
+
* @see {@link TestRenderEmailTemplateCommand}
|
|
910
560
|
*/
|
|
911
561
|
testRenderEmailTemplate(args: TestRenderEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<TestRenderEmailTemplateCommandOutput>;
|
|
912
562
|
testRenderEmailTemplate(args: TestRenderEmailTemplateCommandInput, cb: (err: any, data?: TestRenderEmailTemplateCommandOutput) => void): void;
|
|
913
563
|
testRenderEmailTemplate(args: TestRenderEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestRenderEmailTemplateCommandOutput) => void): void;
|
|
914
564
|
/**
|
|
915
|
-
* @
|
|
916
|
-
* <p>Remove one or more tags (keys and values) from a specified resource.</p>
|
|
565
|
+
* @see {@link UntagResourceCommand}
|
|
917
566
|
*/
|
|
918
567
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
919
568
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
920
569
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
921
570
|
/**
|
|
922
|
-
* @
|
|
923
|
-
* <p>Update the configuration of an event destination for a configuration set.</p>
|
|
924
|
-
* <p>
|
|
925
|
-
* <i>Events</i> include message sends, deliveries, opens, clicks, bounces,
|
|
926
|
-
* and complaints. <i>Event destinations</i> are places that you can send
|
|
927
|
-
* information about these events to. For example, you can send event data to Amazon SNS to
|
|
928
|
-
* receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to
|
|
929
|
-
* stream data to Amazon S3 for long-term storage.</p>
|
|
571
|
+
* @see {@link UpdateConfigurationSetEventDestinationCommand}
|
|
930
572
|
*/
|
|
931
573
|
updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetEventDestinationCommandOutput>;
|
|
932
574
|
updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
933
575
|
updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
934
576
|
/**
|
|
935
|
-
* @
|
|
936
|
-
* <p>Updates a contact's preferences for a list. It is not necessary to specify all
|
|
937
|
-
* existing topic preferences in the TopicPreferences object, just the ones that need
|
|
938
|
-
* updating.</p>
|
|
577
|
+
* @see {@link UpdateContactCommand}
|
|
939
578
|
*/
|
|
940
579
|
updateContact(args: UpdateContactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactCommandOutput>;
|
|
941
580
|
updateContact(args: UpdateContactCommandInput, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
942
581
|
updateContact(args: UpdateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
943
582
|
/**
|
|
944
|
-
* @
|
|
945
|
-
* <p>Updates contact list metadata. This operation does a complete replacement.</p>
|
|
583
|
+
* @see {@link UpdateContactListCommand}
|
|
946
584
|
*/
|
|
947
585
|
updateContactList(args: UpdateContactListCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactListCommandOutput>;
|
|
948
586
|
updateContactList(args: UpdateContactListCommandInput, cb: (err: any, data?: UpdateContactListCommandOutput) => void): void;
|
|
949
587
|
updateContactList(args: UpdateContactListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactListCommandOutput) => void): void;
|
|
950
588
|
/**
|
|
951
|
-
* @
|
|
952
|
-
* <p>Updates an existing custom verification email template.</p>
|
|
953
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
954
|
-
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
955
|
-
* Guide</i>.</p>
|
|
956
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
589
|
+
* @see {@link UpdateCustomVerificationEmailTemplateCommand}
|
|
957
590
|
*/
|
|
958
591
|
updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomVerificationEmailTemplateCommandOutput>;
|
|
959
592
|
updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
960
593
|
updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
961
594
|
/**
|
|
962
|
-
* @
|
|
963
|
-
* <p>Updates the specified sending authorization policy for the given identity (an email
|
|
964
|
-
* address or a domain). This API returns successfully even if a policy with the specified
|
|
965
|
-
* name does not exist.</p>
|
|
966
|
-
* <note>
|
|
967
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
968
|
-
* this API will return an error.</p>
|
|
969
|
-
* </note>
|
|
970
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
971
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
972
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
973
|
-
* Guide</a>.</p>
|
|
974
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
595
|
+
* @see {@link UpdateEmailIdentityPolicyCommand}
|
|
975
596
|
*/
|
|
976
597
|
updateEmailIdentityPolicy(args: UpdateEmailIdentityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEmailIdentityPolicyCommandOutput>;
|
|
977
598
|
updateEmailIdentityPolicy(args: UpdateEmailIdentityPolicyCommandInput, cb: (err: any, data?: UpdateEmailIdentityPolicyCommandOutput) => void): void;
|
|
978
599
|
updateEmailIdentityPolicy(args: UpdateEmailIdentityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEmailIdentityPolicyCommandOutput) => void): void;
|
|
979
600
|
/**
|
|
980
|
-
* @
|
|
981
|
-
* <p>Updates an email template. Email templates enable you to send personalized email to
|
|
982
|
-
* one or more destinations in a single API operation. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
|
|
983
|
-
* Guide</a>.</p>
|
|
984
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
601
|
+
* @see {@link UpdateEmailTemplateCommand}
|
|
985
602
|
*/
|
|
986
603
|
updateEmailTemplate(args: UpdateEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEmailTemplateCommandOutput>;
|
|
987
604
|
updateEmailTemplate(args: UpdateEmailTemplateCommandInput, cb: (err: any, data?: UpdateEmailTemplateCommandOutput) => void): void;
|
|
988
605
|
updateEmailTemplate(args: UpdateEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEmailTemplateCommandOutput) => void): void;
|
|
989
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
* <fullname>Amazon SES API v2</fullname>
|
|
610
|
+
* <p>
|
|
611
|
+
* <a href="http://aws.amazon.com/ses">Amazon SES</a> is an Amazon Web Services service that
|
|
612
|
+
* you can use to send email messages to your customers.</p>
|
|
613
|
+
* <p>If you're new to Amazon SES API v2, you might find it helpful to review the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/">Amazon Simple Email Service Developer
|
|
614
|
+
* Guide</a>. The <i>Amazon SES Developer Guide</i> provides information
|
|
615
|
+
* and code samples that demonstrate how to use Amazon SES API v2 features programmatically.</p>
|
|
616
|
+
*/
|
|
617
|
+
export declare class SESv2 extends SESv2Client implements SESv2 {
|
|
618
|
+
}
|