@aws-sdk/client-ses 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/SES.js +75 -994
- package/dist-cjs/protocols/Aws_query.js +143 -213
- package/dist-es/SES.js +75 -994
- package/dist-es/protocols/Aws_query.js +144 -214
- package/dist-types/SES.d.ts +86 -769
- package/dist-types/ts3.4/SES.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/SES.d.ts
CHANGED
|
@@ -71,1128 +71,445 @@ import { VerifyDomainIdentityCommandInput, VerifyDomainIdentityCommandOutput } f
|
|
|
71
71
|
import { VerifyEmailAddressCommandInput, VerifyEmailAddressCommandOutput } from "./commands/VerifyEmailAddressCommand";
|
|
72
72
|
import { VerifyEmailIdentityCommandInput, VerifyEmailIdentityCommandOutput } from "./commands/VerifyEmailIdentityCommand";
|
|
73
73
|
import { SESClient } from "./SESClient";
|
|
74
|
-
|
|
75
|
-
* @public
|
|
76
|
-
* <fullname>Amazon Simple Email Service</fullname>
|
|
77
|
-
* <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version
|
|
78
|
-
* 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
|
|
79
|
-
* Guide</a>. </p>
|
|
80
|
-
* <note>
|
|
81
|
-
* <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and
|
|
82
|
-
* Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
|
|
83
|
-
* Guide</a>.</p>
|
|
84
|
-
* </note>
|
|
85
|
-
*/
|
|
86
|
-
export declare class SES extends SESClient {
|
|
74
|
+
export interface SES {
|
|
87
75
|
/**
|
|
88
|
-
* @
|
|
89
|
-
* <p>Creates a receipt rule set by cloning an existing one. All receipt rules and
|
|
90
|
-
* configurations are copied to the new receipt rule set and are completely independent of
|
|
91
|
-
* the source rule set.</p>
|
|
92
|
-
* <p>For information about setting up rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html">Amazon SES
|
|
93
|
-
* Developer Guide</a>.</p>
|
|
94
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
76
|
+
* @see {@link CloneReceiptRuleSetCommand}
|
|
95
77
|
*/
|
|
96
78
|
cloneReceiptRuleSet(args: CloneReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<CloneReceiptRuleSetCommandOutput>;
|
|
97
79
|
cloneReceiptRuleSet(args: CloneReceiptRuleSetCommandInput, cb: (err: any, data?: CloneReceiptRuleSetCommandOutput) => void): void;
|
|
98
80
|
cloneReceiptRuleSet(args: CloneReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CloneReceiptRuleSetCommandOutput) => void): void;
|
|
99
81
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>Creates a configuration set.</p>
|
|
102
|
-
* <p>Configuration sets enable you to publish email sending events. For information about
|
|
103
|
-
* using configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
|
|
104
|
-
* Guide</a>.</p>
|
|
105
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
82
|
+
* @see {@link CreateConfigurationSetCommand}
|
|
106
83
|
*/
|
|
107
84
|
createConfigurationSet(args: CreateConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetCommandOutput>;
|
|
108
85
|
createConfigurationSet(args: CreateConfigurationSetCommandInput, cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void): void;
|
|
109
86
|
createConfigurationSet(args: CreateConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void): void;
|
|
110
87
|
/**
|
|
111
|
-
* @
|
|
112
|
-
* <p>Creates a configuration set event destination.</p>
|
|
113
|
-
* <note>
|
|
114
|
-
* <p>When you create or update an event destination, you must provide one, and only
|
|
115
|
-
* one, destination. The destination can be CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).</p>
|
|
116
|
-
* </note>
|
|
117
|
-
* <p>An event destination is the AWS service to which Amazon SES publishes the email sending
|
|
118
|
-
* events associated with a configuration set. For information about using configuration
|
|
119
|
-
* sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
|
|
120
|
-
* Guide</a>.</p>
|
|
121
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
88
|
+
* @see {@link CreateConfigurationSetEventDestinationCommand}
|
|
122
89
|
*/
|
|
123
90
|
createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetEventDestinationCommandOutput>;
|
|
124
91
|
createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
125
92
|
createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
126
93
|
/**
|
|
127
|
-
* @
|
|
128
|
-
* <p>Creates an association between a configuration set and a custom domain for open and
|
|
129
|
-
* click event tracking. </p>
|
|
130
|
-
* <p>By default, images and links used for tracking open and click events are hosted on
|
|
131
|
-
* domains operated by Amazon SES. You can configure a subdomain of your own to handle these
|
|
132
|
-
* events. For information about using custom domains, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html">Amazon SES Developer Guide</a>.</p>
|
|
94
|
+
* @see {@link CreateConfigurationSetTrackingOptionsCommand}
|
|
133
95
|
*/
|
|
134
96
|
createConfigurationSetTrackingOptions(args: CreateConfigurationSetTrackingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetTrackingOptionsCommandOutput>;
|
|
135
97
|
createConfigurationSetTrackingOptions(args: CreateConfigurationSetTrackingOptionsCommandInput, cb: (err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
136
98
|
createConfigurationSetTrackingOptions(args: CreateConfigurationSetTrackingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
137
99
|
/**
|
|
138
|
-
* @
|
|
139
|
-
* <p>Creates a new custom verification email template.</p>
|
|
140
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
141
|
-
* Guide</i>.</p>
|
|
142
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
100
|
+
* @see {@link CreateCustomVerificationEmailTemplateCommand}
|
|
143
101
|
*/
|
|
144
102
|
createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomVerificationEmailTemplateCommandOutput>;
|
|
145
103
|
createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
146
104
|
createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
147
105
|
/**
|
|
148
|
-
* @
|
|
149
|
-
* <p>Creates a new IP address filter.</p>
|
|
150
|
-
* <p>For information about setting up IP address filters, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html">Amazon SES Developer Guide</a>.</p>
|
|
151
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
106
|
+
* @see {@link CreateReceiptFilterCommand}
|
|
152
107
|
*/
|
|
153
108
|
createReceiptFilter(args: CreateReceiptFilterCommandInput, options?: __HttpHandlerOptions): Promise<CreateReceiptFilterCommandOutput>;
|
|
154
109
|
createReceiptFilter(args: CreateReceiptFilterCommandInput, cb: (err: any, data?: CreateReceiptFilterCommandOutput) => void): void;
|
|
155
110
|
createReceiptFilter(args: CreateReceiptFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReceiptFilterCommandOutput) => void): void;
|
|
156
111
|
/**
|
|
157
|
-
* @
|
|
158
|
-
* <p>Creates a receipt rule.</p>
|
|
159
|
-
* <p>For information about setting up receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html">Amazon SES Developer
|
|
160
|
-
* Guide</a>.</p>
|
|
161
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
112
|
+
* @see {@link CreateReceiptRuleCommand}
|
|
162
113
|
*/
|
|
163
114
|
createReceiptRule(args: CreateReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateReceiptRuleCommandOutput>;
|
|
164
115
|
createReceiptRule(args: CreateReceiptRuleCommandInput, cb: (err: any, data?: CreateReceiptRuleCommandOutput) => void): void;
|
|
165
116
|
createReceiptRule(args: CreateReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReceiptRuleCommandOutput) => void): void;
|
|
166
117
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>Creates an empty receipt rule set.</p>
|
|
169
|
-
* <p>For information about setting up receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html">Amazon SES
|
|
170
|
-
* Developer Guide</a>.</p>
|
|
171
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
118
|
+
* @see {@link CreateReceiptRuleSetCommand}
|
|
172
119
|
*/
|
|
173
120
|
createReceiptRuleSet(args: CreateReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateReceiptRuleSetCommandOutput>;
|
|
174
121
|
createReceiptRuleSet(args: CreateReceiptRuleSetCommandInput, cb: (err: any, data?: CreateReceiptRuleSetCommandOutput) => void): void;
|
|
175
122
|
createReceiptRuleSet(args: CreateReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReceiptRuleSetCommandOutput) => void): void;
|
|
176
123
|
/**
|
|
177
|
-
* @
|
|
178
|
-
* <p>Creates an email template. Email templates enable you to send personalized email to
|
|
179
|
-
* 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
|
|
180
|
-
* Guide</a>.</p>
|
|
181
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
124
|
+
* @see {@link CreateTemplateCommand}
|
|
182
125
|
*/
|
|
183
126
|
createTemplate(args: CreateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateTemplateCommandOutput>;
|
|
184
127
|
createTemplate(args: CreateTemplateCommandInput, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
|
|
185
128
|
createTemplate(args: CreateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
|
|
186
129
|
/**
|
|
187
|
-
* @
|
|
188
|
-
* <p>Deletes a configuration set. Configuration sets enable you to publish email sending
|
|
189
|
-
* events. For information about using configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer Guide</a>.</p>
|
|
190
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
130
|
+
* @see {@link DeleteConfigurationSetCommand}
|
|
191
131
|
*/
|
|
192
132
|
deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetCommandOutput>;
|
|
193
133
|
deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void): void;
|
|
194
134
|
deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void): void;
|
|
195
135
|
/**
|
|
196
|
-
* @
|
|
197
|
-
* <p>Deletes a configuration set event destination. Configuration set event destinations
|
|
198
|
-
* are associated with configuration sets, which enable you to publish email sending
|
|
199
|
-
* events. For information about using configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer Guide</a>.</p>
|
|
200
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
136
|
+
* @see {@link DeleteConfigurationSetEventDestinationCommand}
|
|
201
137
|
*/
|
|
202
138
|
deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetEventDestinationCommandOutput>;
|
|
203
139
|
deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
204
140
|
deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
205
141
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* <p>Deletes an association between a configuration set and a custom domain for open and
|
|
208
|
-
* click event tracking.</p>
|
|
209
|
-
* <p>By default, images and links used for tracking open and click events are hosted on
|
|
210
|
-
* domains operated by Amazon SES. You can configure a subdomain of your own to handle these
|
|
211
|
-
* events. For information about using custom domains, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html">Amazon SES Developer Guide</a>.</p>
|
|
212
|
-
* <note>
|
|
213
|
-
* <p>Deleting this kind of association will result in emails sent using the specified
|
|
214
|
-
* configuration set to capture open and click events using the standard,
|
|
215
|
-
* Amazon SES-operated domains.</p>
|
|
216
|
-
* </note>
|
|
142
|
+
* @see {@link DeleteConfigurationSetTrackingOptionsCommand}
|
|
217
143
|
*/
|
|
218
144
|
deleteConfigurationSetTrackingOptions(args: DeleteConfigurationSetTrackingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetTrackingOptionsCommandOutput>;
|
|
219
145
|
deleteConfigurationSetTrackingOptions(args: DeleteConfigurationSetTrackingOptionsCommandInput, cb: (err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
220
146
|
deleteConfigurationSetTrackingOptions(args: DeleteConfigurationSetTrackingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
221
147
|
/**
|
|
222
|
-
* @
|
|
223
|
-
* <p>Deletes an existing custom verification email template. </p>
|
|
224
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
225
|
-
* Guide</i>.</p>
|
|
226
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
148
|
+
* @see {@link DeleteCustomVerificationEmailTemplateCommand}
|
|
227
149
|
*/
|
|
228
150
|
deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomVerificationEmailTemplateCommandOutput>;
|
|
229
151
|
deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
230
152
|
deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
231
153
|
/**
|
|
232
|
-
* @
|
|
233
|
-
* <p>Deletes the specified identity (an email address or a domain) from the list of
|
|
234
|
-
* verified identities.</p>
|
|
235
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
154
|
+
* @see {@link DeleteIdentityCommand}
|
|
236
155
|
*/
|
|
237
156
|
deleteIdentity(args: DeleteIdentityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityCommandOutput>;
|
|
238
157
|
deleteIdentity(args: DeleteIdentityCommandInput, cb: (err: any, data?: DeleteIdentityCommandOutput) => void): void;
|
|
239
158
|
deleteIdentity(args: DeleteIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityCommandOutput) => void): void;
|
|
240
159
|
/**
|
|
241
|
-
* @
|
|
242
|
-
* <p>Deletes the specified sending authorization policy for the given identity (an email
|
|
243
|
-
* address or a domain). This API returns successfully even if a policy with the specified
|
|
244
|
-
* name does not exist.</p>
|
|
245
|
-
* <note>
|
|
246
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
247
|
-
* this API will return an error.</p>
|
|
248
|
-
* </note>
|
|
249
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
250
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
251
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
252
|
-
* Guide</a>.</p>
|
|
253
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
160
|
+
* @see {@link DeleteIdentityPolicyCommand}
|
|
254
161
|
*/
|
|
255
162
|
deleteIdentityPolicy(args: DeleteIdentityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityPolicyCommandOutput>;
|
|
256
163
|
deleteIdentityPolicy(args: DeleteIdentityPolicyCommandInput, cb: (err: any, data?: DeleteIdentityPolicyCommandOutput) => void): void;
|
|
257
164
|
deleteIdentityPolicy(args: DeleteIdentityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityPolicyCommandOutput) => void): void;
|
|
258
165
|
/**
|
|
259
|
-
* @
|
|
260
|
-
* <p>Deletes the specified IP address filter.</p>
|
|
261
|
-
* <p>For information about managing IP address filters, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html">Amazon SES
|
|
262
|
-
* Developer Guide</a>.</p>
|
|
263
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
166
|
+
* @see {@link DeleteReceiptFilterCommand}
|
|
264
167
|
*/
|
|
265
168
|
deleteReceiptFilter(args: DeleteReceiptFilterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReceiptFilterCommandOutput>;
|
|
266
169
|
deleteReceiptFilter(args: DeleteReceiptFilterCommandInput, cb: (err: any, data?: DeleteReceiptFilterCommandOutput) => void): void;
|
|
267
170
|
deleteReceiptFilter(args: DeleteReceiptFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReceiptFilterCommandOutput) => void): void;
|
|
268
171
|
/**
|
|
269
|
-
* @
|
|
270
|
-
* <p>Deletes the specified receipt rule.</p>
|
|
271
|
-
* <p>For information about managing receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html">Amazon SES
|
|
272
|
-
* Developer Guide</a>.</p>
|
|
273
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
172
|
+
* @see {@link DeleteReceiptRuleCommand}
|
|
274
173
|
*/
|
|
275
174
|
deleteReceiptRule(args: DeleteReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReceiptRuleCommandOutput>;
|
|
276
175
|
deleteReceiptRule(args: DeleteReceiptRuleCommandInput, cb: (err: any, data?: DeleteReceiptRuleCommandOutput) => void): void;
|
|
277
176
|
deleteReceiptRule(args: DeleteReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReceiptRuleCommandOutput) => void): void;
|
|
278
177
|
/**
|
|
279
|
-
* @
|
|
280
|
-
* <p>Deletes the specified receipt rule set and all of the receipt rules it
|
|
281
|
-
* contains.</p>
|
|
282
|
-
* <note>
|
|
283
|
-
* <p>The currently active rule set cannot be deleted.</p>
|
|
284
|
-
* </note>
|
|
285
|
-
* <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
|
|
286
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
178
|
+
* @see {@link DeleteReceiptRuleSetCommand}
|
|
287
179
|
*/
|
|
288
180
|
deleteReceiptRuleSet(args: DeleteReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReceiptRuleSetCommandOutput>;
|
|
289
181
|
deleteReceiptRuleSet(args: DeleteReceiptRuleSetCommandInput, cb: (err: any, data?: DeleteReceiptRuleSetCommandOutput) => void): void;
|
|
290
182
|
deleteReceiptRuleSet(args: DeleteReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReceiptRuleSetCommandOutput) => void): void;
|
|
291
183
|
/**
|
|
292
|
-
* @
|
|
293
|
-
* <p>Deletes an email template.</p>
|
|
294
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
184
|
+
* @see {@link DeleteTemplateCommand}
|
|
295
185
|
*/
|
|
296
186
|
deleteTemplate(args: DeleteTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTemplateCommandOutput>;
|
|
297
187
|
deleteTemplate(args: DeleteTemplateCommandInput, cb: (err: any, data?: DeleteTemplateCommandOutput) => void): void;
|
|
298
188
|
deleteTemplate(args: DeleteTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTemplateCommandOutput) => void): void;
|
|
299
189
|
/**
|
|
300
|
-
* @
|
|
301
|
-
* <p>Deprecated. Use the <code>DeleteIdentity</code> operation to delete email addresses
|
|
302
|
-
* and domains.</p>
|
|
190
|
+
* @see {@link DeleteVerifiedEmailAddressCommand}
|
|
303
191
|
*/
|
|
304
192
|
deleteVerifiedEmailAddress(args: DeleteVerifiedEmailAddressCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVerifiedEmailAddressCommandOutput>;
|
|
305
193
|
deleteVerifiedEmailAddress(args: DeleteVerifiedEmailAddressCommandInput, cb: (err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void): void;
|
|
306
194
|
deleteVerifiedEmailAddress(args: DeleteVerifiedEmailAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void): void;
|
|
307
195
|
/**
|
|
308
|
-
* @
|
|
309
|
-
* <p>Returns the metadata and receipt rules for the receipt rule set that is currently
|
|
310
|
-
* active.</p>
|
|
311
|
-
* <p>For information about setting up receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html">Amazon SES
|
|
312
|
-
* Developer Guide</a>.</p>
|
|
313
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
196
|
+
* @see {@link DescribeActiveReceiptRuleSetCommand}
|
|
314
197
|
*/
|
|
315
198
|
describeActiveReceiptRuleSet(args: DescribeActiveReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeActiveReceiptRuleSetCommandOutput>;
|
|
316
199
|
describeActiveReceiptRuleSet(args: DescribeActiveReceiptRuleSetCommandInput, cb: (err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void): void;
|
|
317
200
|
describeActiveReceiptRuleSet(args: DescribeActiveReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void): void;
|
|
318
201
|
/**
|
|
319
|
-
* @
|
|
320
|
-
* <p>Returns the details of the specified configuration set. For information about using
|
|
321
|
-
* configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
|
|
322
|
-
* Guide</a>.</p>
|
|
323
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
202
|
+
* @see {@link DescribeConfigurationSetCommand}
|
|
324
203
|
*/
|
|
325
204
|
describeConfigurationSet(args: DescribeConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationSetCommandOutput>;
|
|
326
205
|
describeConfigurationSet(args: DescribeConfigurationSetCommandInput, cb: (err: any, data?: DescribeConfigurationSetCommandOutput) => void): void;
|
|
327
206
|
describeConfigurationSet(args: DescribeConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationSetCommandOutput) => void): void;
|
|
328
207
|
/**
|
|
329
|
-
* @
|
|
330
|
-
* <p>Returns the details of the specified receipt rule.</p>
|
|
331
|
-
* <p>For information about setting up receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html">Amazon SES Developer
|
|
332
|
-
* Guide</a>.</p>
|
|
333
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
208
|
+
* @see {@link DescribeReceiptRuleCommand}
|
|
334
209
|
*/
|
|
335
210
|
describeReceiptRule(args: DescribeReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReceiptRuleCommandOutput>;
|
|
336
211
|
describeReceiptRule(args: DescribeReceiptRuleCommandInput, cb: (err: any, data?: DescribeReceiptRuleCommandOutput) => void): void;
|
|
337
212
|
describeReceiptRule(args: DescribeReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReceiptRuleCommandOutput) => void): void;
|
|
338
213
|
/**
|
|
339
|
-
* @
|
|
340
|
-
* <p>Returns the details of the specified receipt rule set.</p>
|
|
341
|
-
* <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
|
|
342
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
214
|
+
* @see {@link DescribeReceiptRuleSetCommand}
|
|
343
215
|
*/
|
|
344
216
|
describeReceiptRuleSet(args: DescribeReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReceiptRuleSetCommandOutput>;
|
|
345
217
|
describeReceiptRuleSet(args: DescribeReceiptRuleSetCommandInput, cb: (err: any, data?: DescribeReceiptRuleSetCommandOutput) => void): void;
|
|
346
218
|
describeReceiptRuleSet(args: DescribeReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReceiptRuleSetCommandOutput) => void): void;
|
|
347
219
|
/**
|
|
348
|
-
* @
|
|
349
|
-
* <p>Returns the email sending status of the Amazon SES account for the current region.</p>
|
|
350
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
220
|
+
* @see {@link GetAccountSendingEnabledCommand}
|
|
351
221
|
*/
|
|
352
222
|
getAccountSendingEnabled(args: GetAccountSendingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSendingEnabledCommandOutput>;
|
|
353
223
|
getAccountSendingEnabled(args: GetAccountSendingEnabledCommandInput, cb: (err: any, data?: GetAccountSendingEnabledCommandOutput) => void): void;
|
|
354
224
|
getAccountSendingEnabled(args: GetAccountSendingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSendingEnabledCommandOutput) => void): void;
|
|
355
225
|
/**
|
|
356
|
-
* @
|
|
357
|
-
* <p>Returns the custom email verification template for the template name you
|
|
358
|
-
* specify.</p>
|
|
359
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
360
|
-
* Guide</i>.</p>
|
|
361
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
226
|
+
* @see {@link GetCustomVerificationEmailTemplateCommand}
|
|
362
227
|
*/
|
|
363
228
|
getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetCustomVerificationEmailTemplateCommandOutput>;
|
|
364
229
|
getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
365
230
|
getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
366
231
|
/**
|
|
367
|
-
* @
|
|
368
|
-
* <p>Returns the current status of Easy DKIM signing for an entity. For domain name
|
|
369
|
-
* identities, this operation also returns the DKIM tokens that are required for Easy DKIM
|
|
370
|
-
* signing, and whether Amazon SES has successfully verified that these tokens have been
|
|
371
|
-
* published.</p>
|
|
372
|
-
* <p>This operation takes a list of identities as input and returns the following
|
|
373
|
-
* information for each:</p>
|
|
374
|
-
* <ul>
|
|
375
|
-
* <li>
|
|
376
|
-
* <p>Whether Easy DKIM signing is enabled or disabled.</p>
|
|
377
|
-
* </li>
|
|
378
|
-
* <li>
|
|
379
|
-
* <p>A set of DKIM tokens that represent the identity. If the identity is an email
|
|
380
|
-
* address, the tokens represent the domain of that address.</p>
|
|
381
|
-
* </li>
|
|
382
|
-
* <li>
|
|
383
|
-
* <p>Whether Amazon SES has successfully verified the DKIM tokens published in the
|
|
384
|
-
* domain's DNS. This information is only returned for domain name identities, not
|
|
385
|
-
* for email addresses.</p>
|
|
386
|
-
* </li>
|
|
387
|
-
* </ul>
|
|
388
|
-
* <p>This operation is throttled at one request per second and can only get DKIM attributes
|
|
389
|
-
* for up to 100 identities at a time.</p>
|
|
390
|
-
* <p>For more information about creating DNS records using DKIM tokens, go to the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html">Amazon SES Developer Guide</a>.</p>
|
|
232
|
+
* @see {@link GetIdentityDkimAttributesCommand}
|
|
391
233
|
*/
|
|
392
234
|
getIdentityDkimAttributes(args: GetIdentityDkimAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityDkimAttributesCommandOutput>;
|
|
393
235
|
getIdentityDkimAttributes(args: GetIdentityDkimAttributesCommandInput, cb: (err: any, data?: GetIdentityDkimAttributesCommandOutput) => void): void;
|
|
394
236
|
getIdentityDkimAttributes(args: GetIdentityDkimAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityDkimAttributesCommandOutput) => void): void;
|
|
395
237
|
/**
|
|
396
|
-
* @
|
|
397
|
-
* <p>Returns the custom MAIL FROM attributes for a list of identities (email addresses :
|
|
398
|
-
* domains).</p>
|
|
399
|
-
* <p>This operation is throttled at one request per second and can only get custom MAIL
|
|
400
|
-
* FROM attributes for up to 100 identities at a time.</p>
|
|
238
|
+
* @see {@link GetIdentityMailFromDomainAttributesCommand}
|
|
401
239
|
*/
|
|
402
240
|
getIdentityMailFromDomainAttributes(args: GetIdentityMailFromDomainAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityMailFromDomainAttributesCommandOutput>;
|
|
403
241
|
getIdentityMailFromDomainAttributes(args: GetIdentityMailFromDomainAttributesCommandInput, cb: (err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void): void;
|
|
404
242
|
getIdentityMailFromDomainAttributes(args: GetIdentityMailFromDomainAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void): void;
|
|
405
243
|
/**
|
|
406
|
-
* @
|
|
407
|
-
* <p>Given a list of verified identities (email addresses and/or domains), returns a
|
|
408
|
-
* structure describing identity notification attributes.</p>
|
|
409
|
-
* <p>This operation is throttled at one request per second and can only get notification
|
|
410
|
-
* attributes for up to 100 identities at a time.</p>
|
|
411
|
-
* <p>For more information about using notifications with Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES
|
|
412
|
-
* Developer Guide</a>.</p>
|
|
244
|
+
* @see {@link GetIdentityNotificationAttributesCommand}
|
|
413
245
|
*/
|
|
414
246
|
getIdentityNotificationAttributes(args: GetIdentityNotificationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityNotificationAttributesCommandOutput>;
|
|
415
247
|
getIdentityNotificationAttributes(args: GetIdentityNotificationAttributesCommandInput, cb: (err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void): void;
|
|
416
248
|
getIdentityNotificationAttributes(args: GetIdentityNotificationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void): void;
|
|
417
249
|
/**
|
|
418
|
-
* @
|
|
419
|
-
* <p>Returns the requested sending authorization policies for the given identity (an email
|
|
420
|
-
* address or a domain). The policies are returned as a map of policy names to policy
|
|
421
|
-
* contents. You can retrieve a maximum of 20 policies at a time.</p>
|
|
422
|
-
* <note>
|
|
423
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
424
|
-
* this API will return an error.</p>
|
|
425
|
-
* </note>
|
|
426
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
427
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
428
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
429
|
-
* Guide</a>.</p>
|
|
430
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
250
|
+
* @see {@link GetIdentityPoliciesCommand}
|
|
431
251
|
*/
|
|
432
252
|
getIdentityPolicies(args: GetIdentityPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityPoliciesCommandOutput>;
|
|
433
253
|
getIdentityPolicies(args: GetIdentityPoliciesCommandInput, cb: (err: any, data?: GetIdentityPoliciesCommandOutput) => void): void;
|
|
434
254
|
getIdentityPolicies(args: GetIdentityPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityPoliciesCommandOutput) => void): void;
|
|
435
255
|
/**
|
|
436
|
-
* @
|
|
437
|
-
* <p>Given a list of identities (email addresses and/or domains), returns the verification
|
|
438
|
-
* status and (for domain identities) the verification token for each identity.</p>
|
|
439
|
-
* <p>The verification status of an email address is "Pending" until the email address owner
|
|
440
|
-
* clicks the link within the verification email that Amazon SES sent to that address. If the
|
|
441
|
-
* email address owner clicks the link within 24 hours, the verification status of the
|
|
442
|
-
* email address changes to "Success". If the link is not clicked within 24 hours, the
|
|
443
|
-
* verification status changes to "Failed." In that case, if you still want to verify the
|
|
444
|
-
* email address, you must restart the verification process from the beginning.</p>
|
|
445
|
-
* <p>For domain identities, the domain's verification status is "Pending" as Amazon SES searches
|
|
446
|
-
* for the required TXT record in the DNS settings of the domain. When Amazon SES detects the
|
|
447
|
-
* record, the domain's verification status changes to "Success". If Amazon SES is unable to
|
|
448
|
-
* detect the record within 72 hours, the domain's verification status changes to "Failed."
|
|
449
|
-
* In that case, if you still want to verify the domain, you must restart the verification
|
|
450
|
-
* process from the beginning.</p>
|
|
451
|
-
* <p>This operation is throttled at one request per second and can only get verification
|
|
452
|
-
* attributes for up to 100 identities at a time.</p>
|
|
256
|
+
* @see {@link GetIdentityVerificationAttributesCommand}
|
|
453
257
|
*/
|
|
454
258
|
getIdentityVerificationAttributes(args: GetIdentityVerificationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityVerificationAttributesCommandOutput>;
|
|
455
259
|
getIdentityVerificationAttributes(args: GetIdentityVerificationAttributesCommandInput, cb: (err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void): void;
|
|
456
260
|
getIdentityVerificationAttributes(args: GetIdentityVerificationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void): void;
|
|
457
261
|
/**
|
|
458
|
-
* @
|
|
459
|
-
* <p>Provides the sending limits for the Amazon SES account. </p>
|
|
460
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
262
|
+
* @see {@link GetSendQuotaCommand}
|
|
461
263
|
*/
|
|
462
264
|
getSendQuota(args: GetSendQuotaCommandInput, options?: __HttpHandlerOptions): Promise<GetSendQuotaCommandOutput>;
|
|
463
265
|
getSendQuota(args: GetSendQuotaCommandInput, cb: (err: any, data?: GetSendQuotaCommandOutput) => void): void;
|
|
464
266
|
getSendQuota(args: GetSendQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSendQuotaCommandOutput) => void): void;
|
|
465
267
|
/**
|
|
466
|
-
* @
|
|
467
|
-
* <p>Provides sending statistics for the current AWS Region. The result is a list of data
|
|
468
|
-
* points, representing the last two weeks of sending activity. Each data point in the list
|
|
469
|
-
* contains statistics for a 15-minute period of time.</p>
|
|
470
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
268
|
+
* @see {@link GetSendStatisticsCommand}
|
|
471
269
|
*/
|
|
472
270
|
getSendStatistics(args: GetSendStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<GetSendStatisticsCommandOutput>;
|
|
473
271
|
getSendStatistics(args: GetSendStatisticsCommandInput, cb: (err: any, data?: GetSendStatisticsCommandOutput) => void): void;
|
|
474
272
|
getSendStatistics(args: GetSendStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSendStatisticsCommandOutput) => void): void;
|
|
475
273
|
/**
|
|
476
|
-
* @
|
|
477
|
-
* <p>Displays the template object (which includes the Subject line, HTML part and text
|
|
478
|
-
* part) for the template you specify.</p>
|
|
479
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
274
|
+
* @see {@link GetTemplateCommand}
|
|
480
275
|
*/
|
|
481
276
|
getTemplate(args: GetTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetTemplateCommandOutput>;
|
|
482
277
|
getTemplate(args: GetTemplateCommandInput, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
|
|
483
278
|
getTemplate(args: GetTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
|
|
484
279
|
/**
|
|
485
|
-
* @
|
|
486
|
-
* <p>Provides a list of the configuration sets associated with your Amazon SES account in the
|
|
487
|
-
* current AWS Region. For information about using configuration sets, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Monitoring Your Amazon SES Sending Activity</a> in the <i>Amazon SES Developer
|
|
488
|
-
* Guide.</i>
|
|
489
|
-
* </p>
|
|
490
|
-
* <p>You can execute this operation no more than once per second. This operation will
|
|
491
|
-
* return up to 1,000 configuration sets each time it is run. If your Amazon SES account has
|
|
492
|
-
* more than 1,000 configuration sets, this operation will also return a NextToken element.
|
|
493
|
-
* You can then execute the <code>ListConfigurationSets</code> operation again, passing the
|
|
494
|
-
* <code>NextToken</code> parameter and the value of the NextToken element to retrieve
|
|
495
|
-
* additional results.</p>
|
|
280
|
+
* @see {@link ListConfigurationSetsCommand}
|
|
496
281
|
*/
|
|
497
282
|
listConfigurationSets(args: ListConfigurationSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationSetsCommandOutput>;
|
|
498
283
|
listConfigurationSets(args: ListConfigurationSetsCommandInput, cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void): void;
|
|
499
284
|
listConfigurationSets(args: ListConfigurationSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void): void;
|
|
500
285
|
/**
|
|
501
|
-
* @
|
|
502
|
-
* <p>Lists the existing custom verification email templates for your account in the current
|
|
503
|
-
* AWS Region.</p>
|
|
504
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
505
|
-
* Guide</i>.</p>
|
|
506
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
286
|
+
* @see {@link ListCustomVerificationEmailTemplatesCommand}
|
|
507
287
|
*/
|
|
508
288
|
listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomVerificationEmailTemplatesCommandOutput>;
|
|
509
289
|
listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void): void;
|
|
510
290
|
listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void): void;
|
|
511
291
|
/**
|
|
512
|
-
* @
|
|
513
|
-
* <p>Returns a list containing all of the identities (email addresses and domains) for your
|
|
514
|
-
* AWS account in the current AWS Region, regardless of verification status.</p>
|
|
515
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
292
|
+
* @see {@link ListIdentitiesCommand}
|
|
516
293
|
*/
|
|
517
294
|
listIdentities(args: ListIdentitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentitiesCommandOutput>;
|
|
518
295
|
listIdentities(args: ListIdentitiesCommandInput, cb: (err: any, data?: ListIdentitiesCommandOutput) => void): void;
|
|
519
296
|
listIdentities(args: ListIdentitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentitiesCommandOutput) => void): void;
|
|
520
297
|
/**
|
|
521
|
-
* @
|
|
522
|
-
* <p>Returns a list of sending authorization policies that are attached to the given
|
|
523
|
-
* identity (an email address or a domain). This API returns only a list. If you want the
|
|
524
|
-
* actual policy content, you can use <code>GetIdentityPolicies</code>.</p>
|
|
525
|
-
* <note>
|
|
526
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
527
|
-
* this API will return an error.</p>
|
|
528
|
-
* </note>
|
|
529
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
530
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
531
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
532
|
-
* Guide</a>.</p>
|
|
533
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
298
|
+
* @see {@link ListIdentityPoliciesCommand}
|
|
534
299
|
*/
|
|
535
300
|
listIdentityPolicies(args: ListIdentityPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityPoliciesCommandOutput>;
|
|
536
301
|
listIdentityPolicies(args: ListIdentityPoliciesCommandInput, cb: (err: any, data?: ListIdentityPoliciesCommandOutput) => void): void;
|
|
537
302
|
listIdentityPolicies(args: ListIdentityPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityPoliciesCommandOutput) => void): void;
|
|
538
303
|
/**
|
|
539
|
-
* @
|
|
540
|
-
* <p>Lists the IP address filters associated with your AWS account in the current AWS
|
|
541
|
-
* Region.</p>
|
|
542
|
-
* <p>For information about managing IP address filters, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html">Amazon SES
|
|
543
|
-
* Developer Guide</a>.</p>
|
|
544
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
304
|
+
* @see {@link ListReceiptFiltersCommand}
|
|
545
305
|
*/
|
|
546
306
|
listReceiptFilters(args: ListReceiptFiltersCommandInput, options?: __HttpHandlerOptions): Promise<ListReceiptFiltersCommandOutput>;
|
|
547
307
|
listReceiptFilters(args: ListReceiptFiltersCommandInput, cb: (err: any, data?: ListReceiptFiltersCommandOutput) => void): void;
|
|
548
308
|
listReceiptFilters(args: ListReceiptFiltersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceiptFiltersCommandOutput) => void): void;
|
|
549
309
|
/**
|
|
550
|
-
* @
|
|
551
|
-
* <p>Lists the receipt rule sets that exist under your AWS account in the current AWS
|
|
552
|
-
* Region. If there are additional receipt rule sets to be retrieved, you will receive a
|
|
553
|
-
* <code>NextToken</code> that you can provide to the next call to
|
|
554
|
-
* <code>ListReceiptRuleSets</code> to retrieve the additional entries.</p>
|
|
555
|
-
* <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
|
|
556
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
310
|
+
* @see {@link ListReceiptRuleSetsCommand}
|
|
557
311
|
*/
|
|
558
312
|
listReceiptRuleSets(args: ListReceiptRuleSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListReceiptRuleSetsCommandOutput>;
|
|
559
313
|
listReceiptRuleSets(args: ListReceiptRuleSetsCommandInput, cb: (err: any, data?: ListReceiptRuleSetsCommandOutput) => void): void;
|
|
560
314
|
listReceiptRuleSets(args: ListReceiptRuleSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceiptRuleSetsCommandOutput) => void): void;
|
|
561
315
|
/**
|
|
562
|
-
* @
|
|
563
|
-
* <p>Lists the email templates present in your Amazon SES account in the current AWS
|
|
564
|
-
* Region.</p>
|
|
565
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
316
|
+
* @see {@link ListTemplatesCommand}
|
|
566
317
|
*/
|
|
567
318
|
listTemplates(args: ListTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTemplatesCommandOutput>;
|
|
568
319
|
listTemplates(args: ListTemplatesCommandInput, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
|
|
569
320
|
listTemplates(args: ListTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
|
|
570
321
|
/**
|
|
571
|
-
* @
|
|
572
|
-
* <p>Deprecated. Use the <code>ListIdentities</code> operation to list the email addresses
|
|
573
|
-
* and domains associated with your account.</p>
|
|
322
|
+
* @see {@link ListVerifiedEmailAddressesCommand}
|
|
574
323
|
*/
|
|
575
324
|
listVerifiedEmailAddresses(args: ListVerifiedEmailAddressesCommandInput, options?: __HttpHandlerOptions): Promise<ListVerifiedEmailAddressesCommandOutput>;
|
|
576
325
|
listVerifiedEmailAddresses(args: ListVerifiedEmailAddressesCommandInput, cb: (err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void): void;
|
|
577
326
|
listVerifiedEmailAddresses(args: ListVerifiedEmailAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void): void;
|
|
578
327
|
/**
|
|
579
|
-
* @
|
|
580
|
-
* <p>Adds or updates the delivery options for a configuration set.</p>
|
|
328
|
+
* @see {@link PutConfigurationSetDeliveryOptionsCommand}
|
|
581
329
|
*/
|
|
582
330
|
putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetDeliveryOptionsCommandOutput>;
|
|
583
331
|
putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void): void;
|
|
584
332
|
putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void): void;
|
|
585
333
|
/**
|
|
586
|
-
* @
|
|
587
|
-
* <p>Adds or updates a sending authorization policy for the specified identity (an email
|
|
588
|
-
* address or a domain).</p>
|
|
589
|
-
* <note>
|
|
590
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
591
|
-
* this API will return an error.</p>
|
|
592
|
-
* </note>
|
|
593
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
594
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
595
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
596
|
-
* Guide</a>.</p>
|
|
597
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
334
|
+
* @see {@link PutIdentityPolicyCommand}
|
|
598
335
|
*/
|
|
599
336
|
putIdentityPolicy(args: PutIdentityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutIdentityPolicyCommandOutput>;
|
|
600
337
|
putIdentityPolicy(args: PutIdentityPolicyCommandInput, cb: (err: any, data?: PutIdentityPolicyCommandOutput) => void): void;
|
|
601
338
|
putIdentityPolicy(args: PutIdentityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutIdentityPolicyCommandOutput) => void): void;
|
|
602
339
|
/**
|
|
603
|
-
* @
|
|
604
|
-
* <p>Reorders the receipt rules within a receipt rule set.</p>
|
|
605
|
-
* <note>
|
|
606
|
-
* <p>All of the rules in the rule set must be represented in this request. That is,
|
|
607
|
-
* this API will return an error if the reorder request doesn't explicitly position all
|
|
608
|
-
* of the rules.</p>
|
|
609
|
-
* </note>
|
|
610
|
-
* <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
|
|
611
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
340
|
+
* @see {@link ReorderReceiptRuleSetCommand}
|
|
612
341
|
*/
|
|
613
342
|
reorderReceiptRuleSet(args: ReorderReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<ReorderReceiptRuleSetCommandOutput>;
|
|
614
343
|
reorderReceiptRuleSet(args: ReorderReceiptRuleSetCommandInput, cb: (err: any, data?: ReorderReceiptRuleSetCommandOutput) => void): void;
|
|
615
344
|
reorderReceiptRuleSet(args: ReorderReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReorderReceiptRuleSetCommandOutput) => void): void;
|
|
616
345
|
/**
|
|
617
|
-
* @
|
|
618
|
-
* <p>Generates and sends a bounce message to the sender of an email you received through
|
|
619
|
-
* Amazon SES. You can only use this API on an email up to 24 hours after you receive it.</p>
|
|
620
|
-
* <note>
|
|
621
|
-
* <p>You cannot use this API to send generic bounces for mail that was not received by
|
|
622
|
-
* Amazon SES.</p>
|
|
623
|
-
* </note>
|
|
624
|
-
* <p>For information about receiving email through Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html">Amazon SES
|
|
625
|
-
* Developer Guide</a>.</p>
|
|
626
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
346
|
+
* @see {@link SendBounceCommand}
|
|
627
347
|
*/
|
|
628
348
|
sendBounce(args: SendBounceCommandInput, options?: __HttpHandlerOptions): Promise<SendBounceCommandOutput>;
|
|
629
349
|
sendBounce(args: SendBounceCommandInput, cb: (err: any, data?: SendBounceCommandOutput) => void): void;
|
|
630
350
|
sendBounce(args: SendBounceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendBounceCommandOutput) => void): void;
|
|
631
351
|
/**
|
|
632
|
-
* @
|
|
633
|
-
* <p>Composes an email message to multiple destinations. The message body is created using
|
|
634
|
-
* an email template.</p>
|
|
635
|
-
* <p>In order to send email using the <code>SendBulkTemplatedEmail</code> operation, your
|
|
636
|
-
* call to the API must meet the following requirements:</p>
|
|
637
|
-
* <ul>
|
|
638
|
-
* <li>
|
|
639
|
-
* <p>The call must refer to an existing email template. You can create email
|
|
640
|
-
* templates using the <a>CreateTemplate</a> operation.</p>
|
|
641
|
-
* </li>
|
|
642
|
-
* <li>
|
|
643
|
-
* <p>The message must be sent from a verified email address or domain.</p>
|
|
644
|
-
* </li>
|
|
645
|
-
* <li>
|
|
646
|
-
* <p>If your account is still in the Amazon SES sandbox, you may only send to verified
|
|
647
|
-
* addresses or domains, or to email addresses associated with the Amazon SES Mailbox
|
|
648
|
-
* Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
|
|
649
|
-
* Email Addresses and Domains</a> in the <i>Amazon SES Developer
|
|
650
|
-
* Guide.</i>
|
|
651
|
-
* </p>
|
|
652
|
-
* </li>
|
|
653
|
-
* <li>
|
|
654
|
-
* <p>The maximum message size is 10 MB.</p>
|
|
655
|
-
* </li>
|
|
656
|
-
* <li>
|
|
657
|
-
* <p>Each <code>Destination</code> parameter must include at least one recipient
|
|
658
|
-
* email address. The recipient address can be a To: address, a CC: address, or a
|
|
659
|
-
* BCC: address. If a recipient email address is invalid (that is, it is not in the
|
|
660
|
-
* format <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the
|
|
661
|
-
* entire message will be rejected, even if the message contains other recipients
|
|
662
|
-
* that are valid.</p>
|
|
663
|
-
* </li>
|
|
664
|
-
* <li>
|
|
665
|
-
* <p>The message may not include more than 50 recipients, across the To:, CC: and
|
|
666
|
-
* BCC: fields. If you need to send an email message to a larger audience, you can
|
|
667
|
-
* divide your recipient list into groups of 50 or fewer, and then call the
|
|
668
|
-
* <code>SendBulkTemplatedEmail</code> operation several times to send the
|
|
669
|
-
* message to each group.</p>
|
|
670
|
-
* </li>
|
|
671
|
-
* <li>
|
|
672
|
-
* <p>The number of destinations you can contact in a single call to the API may be
|
|
673
|
-
* limited by your account's maximum sending rate.</p>
|
|
674
|
-
* </li>
|
|
675
|
-
* </ul>
|
|
352
|
+
* @see {@link SendBulkTemplatedEmailCommand}
|
|
676
353
|
*/
|
|
677
354
|
sendBulkTemplatedEmail(args: SendBulkTemplatedEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendBulkTemplatedEmailCommandOutput>;
|
|
678
355
|
sendBulkTemplatedEmail(args: SendBulkTemplatedEmailCommandInput, cb: (err: any, data?: SendBulkTemplatedEmailCommandOutput) => void): void;
|
|
679
356
|
sendBulkTemplatedEmail(args: SendBulkTemplatedEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendBulkTemplatedEmailCommandOutput) => void): void;
|
|
680
357
|
/**
|
|
681
|
-
* @
|
|
682
|
-
* <p>Adds an email address to the list of identities for your Amazon SES account in the current
|
|
683
|
-
* AWS Region and attempts to verify it. As a result of executing this operation, a
|
|
684
|
-
* customized verification email is sent to the specified address.</p>
|
|
685
|
-
* <p>To use this operation, you must first create a custom verification email template. For
|
|
686
|
-
* more information about creating and using custom verification email templates, see
|
|
687
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom
|
|
688
|
-
* Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
689
|
-
* Guide</i>.</p>
|
|
690
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
358
|
+
* @see {@link SendCustomVerificationEmailCommand}
|
|
691
359
|
*/
|
|
692
360
|
sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendCustomVerificationEmailCommandOutput>;
|
|
693
361
|
sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void): void;
|
|
694
362
|
sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void): void;
|
|
695
363
|
/**
|
|
696
|
-
* @
|
|
697
|
-
* <p>Composes an email message and immediately queues it for sending. In order to send
|
|
698
|
-
* email using the <code>SendEmail</code> operation, your message must meet the following
|
|
699
|
-
* requirements:</p>
|
|
700
|
-
*
|
|
701
|
-
* <ul>
|
|
702
|
-
* <li>
|
|
703
|
-
* <p>The message must be sent from a verified email address or domain. If you
|
|
704
|
-
* attempt to send email using a non-verified address or domain, the operation will
|
|
705
|
-
* result in an "Email address not verified" error. </p>
|
|
706
|
-
* </li>
|
|
707
|
-
* <li>
|
|
708
|
-
* <p>If your account is still in the Amazon SES sandbox, you may only send to verified
|
|
709
|
-
* addresses or domains, or to email addresses associated with the Amazon SES Mailbox
|
|
710
|
-
* Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
|
|
711
|
-
* Email Addresses and Domains</a> in the <i>Amazon SES Developer
|
|
712
|
-
* Guide.</i>
|
|
713
|
-
* </p>
|
|
714
|
-
* </li>
|
|
715
|
-
* <li>
|
|
716
|
-
* <p>The maximum message size is 10 MB.</p>
|
|
717
|
-
* </li>
|
|
718
|
-
* <li>
|
|
719
|
-
* <p>The message must include at least one recipient email address. The recipient
|
|
720
|
-
* address can be a To: address, a CC: address, or a BCC: address. If a recipient
|
|
721
|
-
* email address is invalid (that is, it is not in the format
|
|
722
|
-
* <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the entire
|
|
723
|
-
* message will be rejected, even if the message contains other recipients that are
|
|
724
|
-
* valid.</p>
|
|
725
|
-
* </li>
|
|
726
|
-
* <li>
|
|
727
|
-
* <p>The message may not include more than 50 recipients, across the To:, CC: and
|
|
728
|
-
* BCC: fields. If you need to send an email message to a larger audience, you can
|
|
729
|
-
* divide your recipient list into groups of 50 or fewer, and then call the
|
|
730
|
-
* <code>SendEmail</code> operation several times to send the message to each
|
|
731
|
-
* group.</p>
|
|
732
|
-
* </li>
|
|
733
|
-
* </ul>
|
|
734
|
-
* <important>
|
|
735
|
-
* <p>For every message that you send, the total number of recipients (including each
|
|
736
|
-
* recipient in the To:, CC: and BCC: fields) is counted against the maximum number of
|
|
737
|
-
* emails you can send in a 24-hour period (your <i>sending quota</i>).
|
|
738
|
-
* For more information about sending quotas in Amazon SES, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html">Managing Your Amazon SES
|
|
739
|
-
* Sending Limits</a> in the <i>Amazon SES Developer Guide.</i>
|
|
740
|
-
* </p>
|
|
741
|
-
* </important>
|
|
364
|
+
* @see {@link SendEmailCommand}
|
|
742
365
|
*/
|
|
743
366
|
sendEmail(args: SendEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendEmailCommandOutput>;
|
|
744
367
|
sendEmail(args: SendEmailCommandInput, cb: (err: any, data?: SendEmailCommandOutput) => void): void;
|
|
745
368
|
sendEmail(args: SendEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendEmailCommandOutput) => void): void;
|
|
746
369
|
/**
|
|
747
|
-
* @
|
|
748
|
-
* <p>Composes an email message and immediately queues it for sending.</p>
|
|
749
|
-
*
|
|
750
|
-
* <p>This operation is more flexible than the <code>SendEmail</code> API operation. When
|
|
751
|
-
* you use the <code>SendRawEmail</code> operation, you can specify the headers of the
|
|
752
|
-
* message as well as its content. This flexibility is useful, for example, when you want
|
|
753
|
-
* to send a multipart MIME email (such a message that contains both a text and an HTML
|
|
754
|
-
* version). You can also use this operation to send messages that include
|
|
755
|
-
* attachments.</p>
|
|
756
|
-
* <p>The <code>SendRawEmail</code> operation has the following requirements:</p>
|
|
757
|
-
* <ul>
|
|
758
|
-
* <li>
|
|
759
|
-
* <p>You can only send email from <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">verified email addresses or domains</a>. If you try
|
|
760
|
-
* to send email from an address that isn't verified, the operation results in an
|
|
761
|
-
* "Email address not verified" error.</p>
|
|
762
|
-
* </li>
|
|
763
|
-
* <li>
|
|
764
|
-
* <p>If your account is still in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html">Amazon SES sandbox</a>, you can only send email to other
|
|
765
|
-
* verified addresses in your account, or to addresses that are associated with the
|
|
766
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mailbox-simulator.html">Amazon SES mailbox simulator</a>.</p>
|
|
767
|
-
* </li>
|
|
768
|
-
* <li>
|
|
769
|
-
* <p>The maximum message size, including attachments, is 10 MB.</p>
|
|
770
|
-
* </li>
|
|
771
|
-
* <li>
|
|
772
|
-
* <p>Each message has to include at least one recipient address. A recipient
|
|
773
|
-
* address includes any address on the To:, CC:, or BCC: lines.</p>
|
|
774
|
-
* </li>
|
|
775
|
-
* <li>
|
|
776
|
-
* <p>If you send a single message to more than one recipient address, and one of
|
|
777
|
-
* the recipient addresses isn't in a valid format (that is, it's not in the format
|
|
778
|
-
* <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), Amazon SES
|
|
779
|
-
* rejects the entire message, even if the other addresses are valid.</p>
|
|
780
|
-
* </li>
|
|
781
|
-
* <li>
|
|
782
|
-
* <p>Each message can include up to 50 recipient addresses across the To:, CC:, or
|
|
783
|
-
* BCC: lines. If you need to send a single message to more than 50 recipients, you
|
|
784
|
-
* have to split the list of recipient addresses into groups of less than 50
|
|
785
|
-
* recipients, and send separate messages to each group.</p>
|
|
786
|
-
* </li>
|
|
787
|
-
* <li>
|
|
788
|
-
* <p>Amazon SES allows you to specify 8-bit Content-Transfer-Encoding for MIME message
|
|
789
|
-
* parts. However, if Amazon SES has to modify the contents of your message (for
|
|
790
|
-
* example, if you use open and click tracking), 8-bit content isn't preserved. For
|
|
791
|
-
* this reason, we highly recommend that you encode all content that isn't 7-bit
|
|
792
|
-
* ASCII. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html#send-email-mime-encoding">MIME Encoding</a> in the <i>Amazon SES Developer
|
|
793
|
-
* Guide</i>.</p>
|
|
794
|
-
* </li>
|
|
795
|
-
* </ul>
|
|
796
|
-
*
|
|
797
|
-
*
|
|
798
|
-
*
|
|
799
|
-
* <p>Additionally, keep the following considerations in mind when using the
|
|
800
|
-
* <code>SendRawEmail</code> operation:</p>
|
|
801
|
-
*
|
|
802
|
-
* <ul>
|
|
803
|
-
* <li>
|
|
804
|
-
* <p>Although you can customize the message headers when using the
|
|
805
|
-
* <code>SendRawEmail</code> operation, Amazon SES will automatically apply its own
|
|
806
|
-
* <code>Message-ID</code> and <code>Date</code> headers; if you passed these
|
|
807
|
-
* headers when creating the message, they will be overwritten by the values that
|
|
808
|
-
* Amazon SES provides.</p>
|
|
809
|
-
* </li>
|
|
810
|
-
* <li>
|
|
811
|
-
* <p>If you are using sending authorization to send on behalf of another user,
|
|
812
|
-
* <code>SendRawEmail</code> enables you to specify the cross-account identity
|
|
813
|
-
* for the email's Source, From, and Return-Path parameters in one of two ways: you
|
|
814
|
-
* can pass optional parameters <code>SourceArn</code>, <code>FromArn</code>,
|
|
815
|
-
* and/or <code>ReturnPathArn</code> to the API, or you can include the following
|
|
816
|
-
* X-headers in the header of your raw email:</p>
|
|
817
|
-
* <ul>
|
|
818
|
-
* <li>
|
|
819
|
-
* <p>
|
|
820
|
-
* <code>X-SES-SOURCE-ARN</code>
|
|
821
|
-
* </p>
|
|
822
|
-
* </li>
|
|
823
|
-
* <li>
|
|
824
|
-
* <p>
|
|
825
|
-
* <code>X-SES-FROM-ARN</code>
|
|
826
|
-
* </p>
|
|
827
|
-
* </li>
|
|
828
|
-
* <li>
|
|
829
|
-
* <p>
|
|
830
|
-
* <code>X-SES-RETURN-PATH-ARN</code>
|
|
831
|
-
* </p>
|
|
832
|
-
* </li>
|
|
833
|
-
* </ul>
|
|
834
|
-
* <important>
|
|
835
|
-
* <p>Don't include these X-headers in the DKIM signature. Amazon SES removes these
|
|
836
|
-
* before it sends the email.</p>
|
|
837
|
-
* </important>
|
|
838
|
-
* <p>If you only specify the <code>SourceIdentityArn</code> parameter, Amazon SES sets
|
|
839
|
-
* the From and Return-Path addresses to the same identity that you
|
|
840
|
-
* specified.</p>
|
|
841
|
-
* <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Using Sending
|
|
842
|
-
* Authorization with Amazon SES</a> in the <i>Amazon SES Developer
|
|
843
|
-
* Guide.</i>
|
|
844
|
-
* </p>
|
|
845
|
-
* </li>
|
|
846
|
-
* <li>
|
|
847
|
-
* <p>For every message that you send, the total number of recipients (including
|
|
848
|
-
* each recipient in the To:, CC: and BCC: fields) is counted against the maximum
|
|
849
|
-
* number of emails you can send in a 24-hour period (your <i>sending
|
|
850
|
-
* quota</i>). For more information about sending quotas in Amazon SES, see
|
|
851
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html">Managing Your
|
|
852
|
-
* Amazon SES Sending Limits</a> in the <i>Amazon SES Developer
|
|
853
|
-
* Guide.</i>
|
|
854
|
-
* </p>
|
|
855
|
-
* </li>
|
|
856
|
-
* </ul>
|
|
370
|
+
* @see {@link SendRawEmailCommand}
|
|
857
371
|
*/
|
|
858
372
|
sendRawEmail(args: SendRawEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendRawEmailCommandOutput>;
|
|
859
373
|
sendRawEmail(args: SendRawEmailCommandInput, cb: (err: any, data?: SendRawEmailCommandOutput) => void): void;
|
|
860
374
|
sendRawEmail(args: SendRawEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendRawEmailCommandOutput) => void): void;
|
|
861
375
|
/**
|
|
862
|
-
* @
|
|
863
|
-
* <p>Composes an email message using an email template and immediately queues it for
|
|
864
|
-
* sending.</p>
|
|
865
|
-
* <p>In order to send email using the <code>SendTemplatedEmail</code> operation, your call
|
|
866
|
-
* to the API must meet the following requirements:</p>
|
|
867
|
-
* <ul>
|
|
868
|
-
* <li>
|
|
869
|
-
* <p>The call must refer to an existing email template. You can create email
|
|
870
|
-
* templates using the <a>CreateTemplate</a> operation.</p>
|
|
871
|
-
* </li>
|
|
872
|
-
* <li>
|
|
873
|
-
* <p>The message must be sent from a verified email address or domain.</p>
|
|
874
|
-
* </li>
|
|
875
|
-
* <li>
|
|
876
|
-
* <p>If your account is still in the Amazon SES sandbox, you may only send to verified
|
|
877
|
-
* addresses or domains, or to email addresses associated with the Amazon SES Mailbox
|
|
878
|
-
* Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
|
|
879
|
-
* Email Addresses and Domains</a> in the <i>Amazon SES Developer
|
|
880
|
-
* Guide.</i>
|
|
881
|
-
* </p>
|
|
882
|
-
* </li>
|
|
883
|
-
* <li>
|
|
884
|
-
* <p>The maximum message size is 10 MB.</p>
|
|
885
|
-
* </li>
|
|
886
|
-
* <li>
|
|
887
|
-
* <p>Calls to the <code>SendTemplatedEmail</code> operation may only include one
|
|
888
|
-
* <code>Destination</code> parameter. A destination is a set of recipients who
|
|
889
|
-
* will receive the same version of the email. The <code>Destination</code>
|
|
890
|
-
* parameter can include up to 50 recipients, across the To:, CC: and BCC:
|
|
891
|
-
* fields.</p>
|
|
892
|
-
* </li>
|
|
893
|
-
* <li>
|
|
894
|
-
* <p>The <code>Destination</code> parameter must include at least one recipient
|
|
895
|
-
* email address. The recipient address can be a To: address, a CC: address, or a
|
|
896
|
-
* BCC: address. If a recipient email address is invalid (that is, it is not in the
|
|
897
|
-
* format <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the
|
|
898
|
-
* entire message will be rejected, even if the message contains other recipients
|
|
899
|
-
* that are valid.</p>
|
|
900
|
-
* </li>
|
|
901
|
-
* </ul>
|
|
902
|
-
* <important>
|
|
903
|
-
* <p>If your call to the <code>SendTemplatedEmail</code> operation includes all of the
|
|
904
|
-
* required parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES
|
|
905
|
-
* can't render the email because the template contains errors, it doesn't send the
|
|
906
|
-
* email. Additionally, because it already accepted the message, Amazon SES doesn't return a
|
|
907
|
-
* message stating that it was unable to send the email.</p>
|
|
908
|
-
* <p>For these reasons, we highly recommend that you set up Amazon SES to send you
|
|
909
|
-
* notifications when Rendering Failure events occur. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Sending
|
|
910
|
-
* Personalized Email Using the Amazon SES API</a> in the <i>Amazon Simple Email Service
|
|
911
|
-
* Developer Guide</i>.</p>
|
|
912
|
-
* </important>
|
|
376
|
+
* @see {@link SendTemplatedEmailCommand}
|
|
913
377
|
*/
|
|
914
378
|
sendTemplatedEmail(args: SendTemplatedEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendTemplatedEmailCommandOutput>;
|
|
915
379
|
sendTemplatedEmail(args: SendTemplatedEmailCommandInput, cb: (err: any, data?: SendTemplatedEmailCommandOutput) => void): void;
|
|
916
380
|
sendTemplatedEmail(args: SendTemplatedEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendTemplatedEmailCommandOutput) => void): void;
|
|
917
381
|
/**
|
|
918
|
-
* @
|
|
919
|
-
* <p>Sets the specified receipt rule set as the active receipt rule set.</p>
|
|
920
|
-
* <note>
|
|
921
|
-
* <p>To disable your email-receiving through Amazon SES completely, you can call this API
|
|
922
|
-
* with RuleSetName set to null.</p>
|
|
923
|
-
* </note>
|
|
924
|
-
* <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
|
|
925
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
382
|
+
* @see {@link SetActiveReceiptRuleSetCommand}
|
|
926
383
|
*/
|
|
927
384
|
setActiveReceiptRuleSet(args: SetActiveReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<SetActiveReceiptRuleSetCommandOutput>;
|
|
928
385
|
setActiveReceiptRuleSet(args: SetActiveReceiptRuleSetCommandInput, cb: (err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void): void;
|
|
929
386
|
setActiveReceiptRuleSet(args: SetActiveReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void): void;
|
|
930
387
|
/**
|
|
931
|
-
* @
|
|
932
|
-
* <p>Enables or disables Easy DKIM signing of email sent from an identity. If Easy DKIM
|
|
933
|
-
* signing is enabled for a domain, then Amazon SES uses DKIM to sign all email that it sends
|
|
934
|
-
* from addresses on that domain. If Easy DKIM signing is enabled for an email address,
|
|
935
|
-
* then Amazon SES uses DKIM to sign all email it sends from that address.</p>
|
|
936
|
-
* <note>
|
|
937
|
-
* <p>For email addresses (for example, <code>user@example.com</code>), you can only
|
|
938
|
-
* enable DKIM signing if the corresponding domain (in this case,
|
|
939
|
-
* <code>example.com</code>) has been set up to use Easy DKIM.</p>
|
|
940
|
-
* </note>
|
|
941
|
-
* <p>You can enable DKIM signing for an identity at any time after you start the
|
|
942
|
-
* verification process for the identity, even if the verification process isn't complete. </p>
|
|
943
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
944
|
-
* <p>For more information about Easy DKIM signing, go to the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Amazon SES Developer Guide</a>.</p>
|
|
388
|
+
* @see {@link SetIdentityDkimEnabledCommand}
|
|
945
389
|
*/
|
|
946
390
|
setIdentityDkimEnabled(args: SetIdentityDkimEnabledCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityDkimEnabledCommandOutput>;
|
|
947
391
|
setIdentityDkimEnabled(args: SetIdentityDkimEnabledCommandInput, cb: (err: any, data?: SetIdentityDkimEnabledCommandOutput) => void): void;
|
|
948
392
|
setIdentityDkimEnabled(args: SetIdentityDkimEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityDkimEnabledCommandOutput) => void): void;
|
|
949
393
|
/**
|
|
950
|
-
* @
|
|
951
|
-
* <p>Given an identity (an email address or a domain), enables or disables whether Amazon SES
|
|
952
|
-
* forwards bounce and complaint notifications as email. Feedback forwarding can only be
|
|
953
|
-
* disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and
|
|
954
|
-
* complaints.</p>
|
|
955
|
-
* <note>
|
|
956
|
-
* <p>Feedback forwarding does not apply to delivery notifications. Delivery
|
|
957
|
-
* notifications are only available through Amazon SNS.</p>
|
|
958
|
-
* </note>
|
|
959
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
960
|
-
* <p>For more information about using notifications with Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES
|
|
961
|
-
* Developer Guide</a>.</p>
|
|
394
|
+
* @see {@link SetIdentityFeedbackForwardingEnabledCommand}
|
|
962
395
|
*/
|
|
963
396
|
setIdentityFeedbackForwardingEnabled(args: SetIdentityFeedbackForwardingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityFeedbackForwardingEnabledCommandOutput>;
|
|
964
397
|
setIdentityFeedbackForwardingEnabled(args: SetIdentityFeedbackForwardingEnabledCommandInput, cb: (err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void): void;
|
|
965
398
|
setIdentityFeedbackForwardingEnabled(args: SetIdentityFeedbackForwardingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void): void;
|
|
966
399
|
/**
|
|
967
|
-
* @
|
|
968
|
-
* <p>Given an identity (an email address or a domain), sets whether Amazon SES includes the
|
|
969
|
-
* original email headers in the Amazon Simple Notification Service (Amazon SNS) notifications of a specified
|
|
970
|
-
* type.</p>
|
|
971
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
972
|
-
* <p>For more information about using notifications with Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES
|
|
973
|
-
* Developer Guide</a>.</p>
|
|
400
|
+
* @see {@link SetIdentityHeadersInNotificationsEnabledCommand}
|
|
974
401
|
*/
|
|
975
402
|
setIdentityHeadersInNotificationsEnabled(args: SetIdentityHeadersInNotificationsEnabledCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityHeadersInNotificationsEnabledCommandOutput>;
|
|
976
403
|
setIdentityHeadersInNotificationsEnabled(args: SetIdentityHeadersInNotificationsEnabledCommandInput, cb: (err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void): void;
|
|
977
404
|
setIdentityHeadersInNotificationsEnabled(args: SetIdentityHeadersInNotificationsEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void): void;
|
|
978
405
|
/**
|
|
979
|
-
* @
|
|
980
|
-
* <p>Enables or disables the custom MAIL FROM domain setup for a verified identity (an
|
|
981
|
-
* email address or a domain).</p>
|
|
982
|
-
* <important>
|
|
983
|
-
* <p>To send emails using the specified MAIL FROM domain, you must add an MX record to
|
|
984
|
-
* your MAIL FROM domain's DNS settings. If you want your emails to pass Sender Policy
|
|
985
|
-
* Framework (SPF) checks, you must also add or update an SPF record. For more
|
|
986
|
-
* information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html">Amazon SES Developer
|
|
987
|
-
* Guide</a>.</p>
|
|
988
|
-
* </important>
|
|
989
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
406
|
+
* @see {@link SetIdentityMailFromDomainCommand}
|
|
990
407
|
*/
|
|
991
408
|
setIdentityMailFromDomain(args: SetIdentityMailFromDomainCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityMailFromDomainCommandOutput>;
|
|
992
409
|
setIdentityMailFromDomain(args: SetIdentityMailFromDomainCommandInput, cb: (err: any, data?: SetIdentityMailFromDomainCommandOutput) => void): void;
|
|
993
410
|
setIdentityMailFromDomain(args: SetIdentityMailFromDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityMailFromDomainCommandOutput) => void): void;
|
|
994
411
|
/**
|
|
995
|
-
* @
|
|
996
|
-
* <p>Sets an Amazon Simple Notification Service (Amazon SNS) topic to use when delivering notifications. When you use
|
|
997
|
-
* this operation, you specify a verified identity, such as an email address or domain.
|
|
998
|
-
* When you send an email that uses the chosen identity in the Source field, Amazon SES sends
|
|
999
|
-
* notifications to the topic you specified. You can send bounce, complaint, or delivery
|
|
1000
|
-
* notifications (or any combination of the three) to the Amazon SNS topic that you
|
|
1001
|
-
* specify.</p>
|
|
1002
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
1003
|
-
* <p>For more information about feedback notification, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES Developer
|
|
1004
|
-
* Guide</a>.</p>
|
|
412
|
+
* @see {@link SetIdentityNotificationTopicCommand}
|
|
1005
413
|
*/
|
|
1006
414
|
setIdentityNotificationTopic(args: SetIdentityNotificationTopicCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityNotificationTopicCommandOutput>;
|
|
1007
415
|
setIdentityNotificationTopic(args: SetIdentityNotificationTopicCommandInput, cb: (err: any, data?: SetIdentityNotificationTopicCommandOutput) => void): void;
|
|
1008
416
|
setIdentityNotificationTopic(args: SetIdentityNotificationTopicCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityNotificationTopicCommandOutput) => void): void;
|
|
1009
417
|
/**
|
|
1010
|
-
* @
|
|
1011
|
-
* <p>Sets the position of the specified receipt rule in the receipt rule set.</p>
|
|
1012
|
-
* <p>For information about managing receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html">Amazon SES
|
|
1013
|
-
* Developer Guide</a>.</p>
|
|
1014
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
418
|
+
* @see {@link SetReceiptRulePositionCommand}
|
|
1015
419
|
*/
|
|
1016
420
|
setReceiptRulePosition(args: SetReceiptRulePositionCommandInput, options?: __HttpHandlerOptions): Promise<SetReceiptRulePositionCommandOutput>;
|
|
1017
421
|
setReceiptRulePosition(args: SetReceiptRulePositionCommandInput, cb: (err: any, data?: SetReceiptRulePositionCommandOutput) => void): void;
|
|
1018
422
|
setReceiptRulePosition(args: SetReceiptRulePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetReceiptRulePositionCommandOutput) => void): void;
|
|
1019
423
|
/**
|
|
1020
|
-
* @
|
|
1021
|
-
* <p>Creates a preview of the MIME content of an email when provided with a template and a
|
|
1022
|
-
* set of replacement data.</p>
|
|
1023
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
424
|
+
* @see {@link TestRenderTemplateCommand}
|
|
1024
425
|
*/
|
|
1025
426
|
testRenderTemplate(args: TestRenderTemplateCommandInput, options?: __HttpHandlerOptions): Promise<TestRenderTemplateCommandOutput>;
|
|
1026
427
|
testRenderTemplate(args: TestRenderTemplateCommandInput, cb: (err: any, data?: TestRenderTemplateCommandOutput) => void): void;
|
|
1027
428
|
testRenderTemplate(args: TestRenderTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestRenderTemplateCommandOutput) => void): void;
|
|
1028
429
|
/**
|
|
1029
|
-
* @
|
|
1030
|
-
* <p>Enables or disables email sending across your entire Amazon SES account in the current
|
|
1031
|
-
* AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to
|
|
1032
|
-
* temporarily pause email sending across your Amazon SES account in a given AWS Region when
|
|
1033
|
-
* reputation metrics (such as your bounce or complaint rates) reach certain
|
|
1034
|
-
* thresholds.</p>
|
|
1035
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
430
|
+
* @see {@link UpdateAccountSendingEnabledCommand}
|
|
1036
431
|
*/
|
|
1037
432
|
updateAccountSendingEnabled(args: UpdateAccountSendingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccountSendingEnabledCommandOutput>;
|
|
1038
433
|
updateAccountSendingEnabled(args: UpdateAccountSendingEnabledCommandInput, cb: (err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void): void;
|
|
1039
434
|
updateAccountSendingEnabled(args: UpdateAccountSendingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void): void;
|
|
1040
435
|
/**
|
|
1041
|
-
* @
|
|
1042
|
-
* <p>Updates the event destination of a configuration set. Event destinations are
|
|
1043
|
-
* associated with configuration sets, which enable you to publish email sending events to
|
|
1044
|
-
* Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets,
|
|
1045
|
-
* see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Monitoring Your Amazon SES
|
|
1046
|
-
* Sending Activity</a> in the <i>Amazon SES Developer Guide.</i>
|
|
1047
|
-
* </p>
|
|
1048
|
-
* <note>
|
|
1049
|
-
* <p>When you create or update an event destination, you must provide one, and only
|
|
1050
|
-
* one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service
|
|
1051
|
-
* (Amazon SNS).</p>
|
|
1052
|
-
* </note>
|
|
1053
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
436
|
+
* @see {@link UpdateConfigurationSetEventDestinationCommand}
|
|
1054
437
|
*/
|
|
1055
438
|
updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetEventDestinationCommandOutput>;
|
|
1056
439
|
updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
1057
440
|
updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void): void;
|
|
1058
441
|
/**
|
|
1059
|
-
* @
|
|
1060
|
-
* <p>Enables or disables the publishing of reputation metrics for emails sent using a
|
|
1061
|
-
* specific configuration set in a given AWS Region. Reputation metrics include bounce
|
|
1062
|
-
* and complaint rates. These metrics are published to Amazon CloudWatch. By using CloudWatch, you can
|
|
1063
|
-
* create alarms when bounce or complaint rates exceed certain thresholds.</p>
|
|
1064
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
442
|
+
* @see {@link UpdateConfigurationSetReputationMetricsEnabledCommand}
|
|
1065
443
|
*/
|
|
1066
444
|
updateConfigurationSetReputationMetricsEnabled(args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetReputationMetricsEnabledCommandOutput>;
|
|
1067
445
|
updateConfigurationSetReputationMetricsEnabled(args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, cb: (err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void): void;
|
|
1068
446
|
updateConfigurationSetReputationMetricsEnabled(args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void): void;
|
|
1069
447
|
/**
|
|
1070
|
-
* @
|
|
1071
|
-
* <p>Enables or disables email sending for messages sent using a specific configuration set
|
|
1072
|
-
* in a given AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms
|
|
1073
|
-
* to temporarily pause email sending for a configuration set when the reputation metrics
|
|
1074
|
-
* for that configuration set (such as your bounce on complaint rate) exceed certain
|
|
1075
|
-
* thresholds.</p>
|
|
1076
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
448
|
+
* @see {@link UpdateConfigurationSetSendingEnabledCommand}
|
|
1077
449
|
*/
|
|
1078
450
|
updateConfigurationSetSendingEnabled(args: UpdateConfigurationSetSendingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetSendingEnabledCommandOutput>;
|
|
1079
451
|
updateConfigurationSetSendingEnabled(args: UpdateConfigurationSetSendingEnabledCommandInput, cb: (err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void): void;
|
|
1080
452
|
updateConfigurationSetSendingEnabled(args: UpdateConfigurationSetSendingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void): void;
|
|
1081
453
|
/**
|
|
1082
|
-
* @
|
|
1083
|
-
* <p>Modifies an association between a configuration set and a custom domain for open and
|
|
1084
|
-
* click event tracking. </p>
|
|
1085
|
-
* <p>By default, images and links used for tracking open and click events are hosted on
|
|
1086
|
-
* domains operated by Amazon SES. You can configure a subdomain of your own to handle these
|
|
1087
|
-
* events. For information about using custom domains, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html">Amazon SES Developer Guide</a>.</p>
|
|
454
|
+
* @see {@link UpdateConfigurationSetTrackingOptionsCommand}
|
|
1088
455
|
*/
|
|
1089
456
|
updateConfigurationSetTrackingOptions(args: UpdateConfigurationSetTrackingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetTrackingOptionsCommandOutput>;
|
|
1090
457
|
updateConfigurationSetTrackingOptions(args: UpdateConfigurationSetTrackingOptionsCommandInput, cb: (err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
1091
458
|
updateConfigurationSetTrackingOptions(args: UpdateConfigurationSetTrackingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void): void;
|
|
1092
459
|
/**
|
|
1093
|
-
* @
|
|
1094
|
-
* <p>Updates an existing custom verification email template.</p>
|
|
1095
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
1096
|
-
* Guide</i>.</p>
|
|
1097
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
460
|
+
* @see {@link UpdateCustomVerificationEmailTemplateCommand}
|
|
1098
461
|
*/
|
|
1099
462
|
updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomVerificationEmailTemplateCommandOutput>;
|
|
1100
463
|
updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
1101
464
|
updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void): void;
|
|
1102
465
|
/**
|
|
1103
|
-
* @
|
|
1104
|
-
* <p>Updates a receipt rule.</p>
|
|
1105
|
-
* <p>For information about managing receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html">Amazon SES
|
|
1106
|
-
* Developer Guide</a>.</p>
|
|
1107
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
466
|
+
* @see {@link UpdateReceiptRuleCommand}
|
|
1108
467
|
*/
|
|
1109
468
|
updateReceiptRule(args: UpdateReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReceiptRuleCommandOutput>;
|
|
1110
469
|
updateReceiptRule(args: UpdateReceiptRuleCommandInput, cb: (err: any, data?: UpdateReceiptRuleCommandOutput) => void): void;
|
|
1111
470
|
updateReceiptRule(args: UpdateReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReceiptRuleCommandOutput) => void): void;
|
|
1112
471
|
/**
|
|
1113
|
-
* @
|
|
1114
|
-
* <p>Updates an email template. Email templates enable you to send personalized email to
|
|
1115
|
-
* 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
|
|
1116
|
-
* Guide</a>.</p>
|
|
1117
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
472
|
+
* @see {@link UpdateTemplateCommand}
|
|
1118
473
|
*/
|
|
1119
474
|
updateTemplate(args: UpdateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTemplateCommandOutput>;
|
|
1120
475
|
updateTemplate(args: UpdateTemplateCommandInput, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
|
|
1121
476
|
updateTemplate(args: UpdateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
|
|
1122
477
|
/**
|
|
1123
|
-
* @
|
|
1124
|
-
* <p>Returns a set of DKIM tokens for a domain identity.</p>
|
|
1125
|
-
* <important>
|
|
1126
|
-
* <p>When you execute the <code>VerifyDomainDkim</code> operation, the domain that you
|
|
1127
|
-
* specify is added to the list of identities that are associated with your account.
|
|
1128
|
-
* This is true even if you haven't already associated the domain with your account by
|
|
1129
|
-
* using the <code>VerifyDomainIdentity</code> operation. However, you can't send email
|
|
1130
|
-
* from the domain until you either successfully <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html">verify it</a> or you
|
|
1131
|
-
* successfully <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">set up DKIM for
|
|
1132
|
-
* it</a>.</p>
|
|
1133
|
-
* </important>
|
|
1134
|
-
* <p>You use the tokens that are generated by this operation to create CNAME records. When
|
|
1135
|
-
* Amazon SES detects that you've added these records to the DNS configuration for a domain, you
|
|
1136
|
-
* can start sending email from that domain. You can start sending email even if you
|
|
1137
|
-
* haven't added the TXT record provided by the VerifyDomainIdentity operation to the DNS
|
|
1138
|
-
* configuration for your domain. All email that you send from the domain is authenticated
|
|
1139
|
-
* using DKIM.</p>
|
|
1140
|
-
* <p>To create the CNAME records for DKIM authentication, use the following values:</p>
|
|
1141
|
-
* <ul>
|
|
1142
|
-
* <li>
|
|
1143
|
-
* <p>
|
|
1144
|
-
* <b>Name</b>:
|
|
1145
|
-
* <i>token</i>._domainkey.<i>example.com</i>
|
|
1146
|
-
* </p>
|
|
1147
|
-
* </li>
|
|
1148
|
-
* <li>
|
|
1149
|
-
* <p>
|
|
1150
|
-
* <b>Type</b>: CNAME</p>
|
|
1151
|
-
* </li>
|
|
1152
|
-
* <li>
|
|
1153
|
-
* <p>
|
|
1154
|
-
* <b>Value</b>:
|
|
1155
|
-
* <i>token</i>.dkim.amazonses.com</p>
|
|
1156
|
-
* </li>
|
|
1157
|
-
* </ul>
|
|
1158
|
-
* <p>In the preceding example, replace <i>token</i> with one of the tokens
|
|
1159
|
-
* that are generated when you execute this operation. Replace
|
|
1160
|
-
* <i>example.com</i> with your domain. Repeat this process for each
|
|
1161
|
-
* token that's generated by this operation.</p>
|
|
1162
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
478
|
+
* @see {@link VerifyDomainDkimCommand}
|
|
1163
479
|
*/
|
|
1164
480
|
verifyDomainDkim(args: VerifyDomainDkimCommandInput, options?: __HttpHandlerOptions): Promise<VerifyDomainDkimCommandOutput>;
|
|
1165
481
|
verifyDomainDkim(args: VerifyDomainDkimCommandInput, cb: (err: any, data?: VerifyDomainDkimCommandOutput) => void): void;
|
|
1166
482
|
verifyDomainDkim(args: VerifyDomainDkimCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyDomainDkimCommandOutput) => void): void;
|
|
1167
483
|
/**
|
|
1168
|
-
* @
|
|
1169
|
-
* <p>Adds a domain to the list of identities for your Amazon SES account in the current AWS
|
|
1170
|
-
* Region and attempts to verify it. For more information about verifying domains, see
|
|
1171
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying Email
|
|
1172
|
-
* Addresses and Domains</a> in the <i>Amazon SES Developer
|
|
1173
|
-
* Guide.</i>
|
|
1174
|
-
* </p>
|
|
1175
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
484
|
+
* @see {@link VerifyDomainIdentityCommand}
|
|
1176
485
|
*/
|
|
1177
486
|
verifyDomainIdentity(args: VerifyDomainIdentityCommandInput, options?: __HttpHandlerOptions): Promise<VerifyDomainIdentityCommandOutput>;
|
|
1178
487
|
verifyDomainIdentity(args: VerifyDomainIdentityCommandInput, cb: (err: any, data?: VerifyDomainIdentityCommandOutput) => void): void;
|
|
1179
488
|
verifyDomainIdentity(args: VerifyDomainIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyDomainIdentityCommandOutput) => void): void;
|
|
1180
489
|
/**
|
|
1181
|
-
* @
|
|
1182
|
-
* <p>Deprecated. Use the <code>VerifyEmailIdentity</code> operation to verify a new email
|
|
1183
|
-
* address.</p>
|
|
490
|
+
* @see {@link VerifyEmailAddressCommand}
|
|
1184
491
|
*/
|
|
1185
492
|
verifyEmailAddress(args: VerifyEmailAddressCommandInput, options?: __HttpHandlerOptions): Promise<VerifyEmailAddressCommandOutput>;
|
|
1186
493
|
verifyEmailAddress(args: VerifyEmailAddressCommandInput, cb: (err: any, data?: VerifyEmailAddressCommandOutput) => void): void;
|
|
1187
494
|
verifyEmailAddress(args: VerifyEmailAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyEmailAddressCommandOutput) => void): void;
|
|
1188
495
|
/**
|
|
1189
|
-
* @
|
|
1190
|
-
* <p>Adds an email address to the list of identities for your Amazon SES account in the current
|
|
1191
|
-
* AWS region and attempts to verify it. As a result of executing this operation, a
|
|
1192
|
-
* verification email is sent to the specified address.</p>
|
|
1193
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
496
|
+
* @see {@link VerifyEmailIdentityCommand}
|
|
1194
497
|
*/
|
|
1195
498
|
verifyEmailIdentity(args: VerifyEmailIdentityCommandInput, options?: __HttpHandlerOptions): Promise<VerifyEmailIdentityCommandOutput>;
|
|
1196
499
|
verifyEmailIdentity(args: VerifyEmailIdentityCommandInput, cb: (err: any, data?: VerifyEmailIdentityCommandOutput) => void): void;
|
|
1197
500
|
verifyEmailIdentity(args: VerifyEmailIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyEmailIdentityCommandOutput) => void): void;
|
|
1198
501
|
}
|
|
502
|
+
/**
|
|
503
|
+
* @public
|
|
504
|
+
* <fullname>Amazon Simple Email Service</fullname>
|
|
505
|
+
* <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version
|
|
506
|
+
* 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
|
|
507
|
+
* Guide</a>. </p>
|
|
508
|
+
* <note>
|
|
509
|
+
* <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and
|
|
510
|
+
* Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
|
|
511
|
+
* Guide</a>.</p>
|
|
512
|
+
* </note>
|
|
513
|
+
*/
|
|
514
|
+
export declare class SES extends SESClient implements SES {
|
|
515
|
+
}
|