@aws-sdk/client-sesv2 3.954.0 → 3.956.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +167 -19
  3. package/dist-es/SESv2.js +2 -0
  4. package/dist-es/commands/GetEmailAddressInsightsCommand.js +16 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/index.js +2 -0
  7. package/dist-es/models/enums.js +14 -4
  8. package/dist-es/schemas/schemas_0.js +127 -15
  9. package/dist-types/SESv2.d.ts +7 -0
  10. package/dist-types/SESv2Client.d.ts +3 -2
  11. package/dist-types/commands/CreateConfigurationSetCommand.d.ts +8 -0
  12. package/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateEmailTemplateCommand.d.ts +6 -0
  14. package/dist-types/commands/GetAccountCommand.d.ts +8 -0
  15. package/dist-types/commands/GetConfigurationSetCommand.d.ts +8 -0
  16. package/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +6 -0
  17. package/dist-types/commands/GetEmailAddressInsightsCommand.d.ts +100 -0
  18. package/dist-types/commands/GetEmailTemplateCommand.d.ts +6 -0
  19. package/dist-types/commands/PutAccountSuppressionAttributesCommand.d.ts +8 -0
  20. package/dist-types/commands/PutConfigurationSetSuppressionOptionsCommand.d.ts +8 -0
  21. package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +1 -1
  22. package/dist-types/commands/PutSuppressedDestinationCommand.d.ts +1 -1
  23. package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -1
  24. package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
  25. package/dist-types/commands/SendEmailCommand.d.ts +1 -2
  26. package/dist-types/commands/index.d.ts +1 -0
  27. package/dist-types/index.d.ts +2 -2
  28. package/dist-types/models/enums.d.ts +35 -9
  29. package/dist-types/models/models_0.d.ts +182 -322
  30. package/dist-types/models/models_1.d.ts +322 -2
  31. package/dist-types/schemas/schemas_0.d.ts +10 -0
  32. package/dist-types/ts3.4/SESv2.d.ts +17 -0
  33. package/dist-types/ts3.4/SESv2Client.d.ts +6 -0
  34. package/dist-types/ts3.4/commands/GetEmailAddressInsightsCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/PutSuppressedDestinationCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/SendBulkEmailCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/SendEmailCommand.d.ts +1 -2
  40. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  41. package/dist-types/ts3.4/models/enums.d.ts +19 -5
  42. package/dist-types/ts3.4/models/models_0.d.ts +44 -49
  43. package/dist-types/ts3.4/models/models_1.d.ts +62 -1
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
  45. package/package.json +34 -34
@@ -1,5 +1,325 @@
1
- import { ReputationEntityType, SendingStatus } from "./enums";
2
- import { type EmailTemplateContent, type EventDestinationDefinition, Tag, Topic, TopicPreference } from "./models_0";
1
+ import { BehaviorOnMxFailure, ReputationEntityType, SendingStatus, SuppressionListReason } from "./enums";
2
+ import { type BulkEmailContent, type Destination, type EmailContent, type EmailTemplateContent, type EventDestinationDefinition, type ListManagementOptions, BulkEmailEntry, BulkEmailEntryResult, MessageTag, Tag, Topic, TopicPreference } from "./models_0";
3
+ /**
4
+ * <p>A request to configure the custom MAIL FROM domain for a verified identity.</p>
5
+ * @public
6
+ */
7
+ export interface PutEmailIdentityMailFromAttributesRequest {
8
+ /**
9
+ * <p>The verified email identity.</p>
10
+ * @public
11
+ */
12
+ EmailIdentity: string | undefined;
13
+ /**
14
+ * <p> The custom MAIL FROM domain that you want the verified identity to use. The MAIL FROM
15
+ * domain must meet the following criteria:</p>
16
+ * <ul>
17
+ * <li>
18
+ * <p>It has to be a subdomain of the verified identity.</p>
19
+ * </li>
20
+ * <li>
21
+ * <p>It can't be used to receive email.</p>
22
+ * </li>
23
+ * <li>
24
+ * <p>It can't be used in a "From" address if the MAIL FROM domain is a destination
25
+ * for feedback forwarding emails.</p>
26
+ * </li>
27
+ * </ul>
28
+ * @public
29
+ */
30
+ MailFromDomain?: string | undefined;
31
+ /**
32
+ * <p>The action to take if the required MX record isn't found when you send an email. When
33
+ * you set this value to <code>UseDefaultValue</code>, the mail is sent using
34
+ * <i>amazonses.com</i> as the MAIL FROM domain. When you set this value
35
+ * to <code>RejectMessage</code>, the Amazon SES API v2 returns a
36
+ * <code>MailFromDomainNotVerified</code> error, and doesn't attempt to deliver the
37
+ * email.</p>
38
+ * <p>These behaviors are taken when the custom MAIL FROM domain configuration is in the
39
+ * <code>Pending</code>, <code>Failed</code>, and <code>TemporaryFailure</code>
40
+ * states.</p>
41
+ * @public
42
+ */
43
+ BehaviorOnMxFailure?: BehaviorOnMxFailure | undefined;
44
+ }
45
+ /**
46
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
47
+ * fails.</p>
48
+ * @public
49
+ */
50
+ export interface PutEmailIdentityMailFromAttributesResponse {
51
+ }
52
+ /**
53
+ * <p>A request to add an email destination to the suppression list for your account.</p>
54
+ * @public
55
+ */
56
+ export interface PutSuppressedDestinationRequest {
57
+ /**
58
+ * <p>The email address that should be added to the suppression list for your
59
+ * account.</p>
60
+ * @public
61
+ */
62
+ EmailAddress: string | undefined;
63
+ /**
64
+ * <p>The factors that should cause the email address to be added to the suppression list
65
+ * for your account.</p>
66
+ * @public
67
+ */
68
+ Reason: SuppressionListReason | undefined;
69
+ }
70
+ /**
71
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
72
+ * fails.</p>
73
+ * @public
74
+ */
75
+ export interface PutSuppressedDestinationResponse {
76
+ }
77
+ /**
78
+ * <p>Represents a request to send email messages to multiple destinations using Amazon SES. For
79
+ * more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
80
+ * Guide</a>.</p>
81
+ * @public
82
+ */
83
+ export interface SendBulkEmailRequest {
84
+ /**
85
+ * <p>The email address to use as the "From" address for the email. The address that you
86
+ * specify has to be verified.</p>
87
+ * @public
88
+ */
89
+ FromEmailAddress?: string | undefined;
90
+ /**
91
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
92
+ * that is associated with the sending authorization policy that permits you to use the
93
+ * email address specified in the <code>FromEmailAddress</code> parameter.</p>
94
+ * <p>For example, if the owner of example.com (which has ARN
95
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
96
+ * authorizes you to use sender@example.com, then you would specify the
97
+ * <code>FromEmailAddressIdentityArn</code> to be
98
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
99
+ * <code>FromEmailAddress</code> to be sender@example.com.</p>
100
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
101
+ * Guide</a>.</p>
102
+ * @public
103
+ */
104
+ FromEmailAddressIdentityArn?: string | undefined;
105
+ /**
106
+ * <p>The "Reply-to" email addresses for the message. When the recipient replies to the
107
+ * message, each Reply-to address receives the reply.</p>
108
+ * @public
109
+ */
110
+ ReplyToAddresses?: string[] | undefined;
111
+ /**
112
+ * <p>The address that you want bounce and complaint notifications to be sent to.</p>
113
+ * @public
114
+ */
115
+ FeedbackForwardingEmailAddress?: string | undefined;
116
+ /**
117
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
118
+ * that is associated with the sending authorization policy that permits you to use the
119
+ * email address specified in the <code>FeedbackForwardingEmailAddress</code>
120
+ * parameter.</p>
121
+ * <p>For example, if the owner of example.com (which has ARN
122
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
123
+ * authorizes you to use feedback@example.com, then you would specify the
124
+ * <code>FeedbackForwardingEmailAddressIdentityArn</code> to be
125
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
126
+ * <code>FeedbackForwardingEmailAddress</code> to be feedback@example.com.</p>
127
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
128
+ * Guide</a>.</p>
129
+ * @public
130
+ */
131
+ FeedbackForwardingEmailAddressIdentityArn?: string | undefined;
132
+ /**
133
+ * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send
134
+ * using the <code>SendEmail</code> operation. Tags correspond to characteristics of the
135
+ * email that you define, so that you can publish email sending events.</p>
136
+ * @public
137
+ */
138
+ DefaultEmailTags?: MessageTag[] | undefined;
139
+ /**
140
+ * <p>An object that contains the body of the message. You can specify a template
141
+ * message.</p>
142
+ * @public
143
+ */
144
+ DefaultContent: BulkEmailContent | undefined;
145
+ /**
146
+ * <p>The list of bulk email entry objects.</p>
147
+ * @public
148
+ */
149
+ BulkEmailEntries: BulkEmailEntry[] | undefined;
150
+ /**
151
+ * <p>The name of the configuration set to use when sending the email.</p>
152
+ * @public
153
+ */
154
+ ConfigurationSetName?: string | undefined;
155
+ /**
156
+ * <p>The ID of the multi-region endpoint (global-endpoint).</p>
157
+ * @public
158
+ */
159
+ EndpointId?: string | undefined;
160
+ /**
161
+ * <p>The name of the tenant through which this bulk email will be sent.</p>
162
+ * <note>
163
+ * <p>
164
+ * The email sending operation will only succeed if all referenced resources
165
+ * (identities, configuration sets, and templates) are associated with this tenant.
166
+ * </p>
167
+ * </note>
168
+ * @public
169
+ */
170
+ TenantName?: string | undefined;
171
+ }
172
+ /**
173
+ * <p>The following data is returned in JSON format by the service.</p>
174
+ * @public
175
+ */
176
+ export interface SendBulkEmailResponse {
177
+ /**
178
+ * <p>One object per intended recipient. Check each response object and retry any messages
179
+ * with a failure status.</p>
180
+ * @public
181
+ */
182
+ BulkEmailEntryResults: BulkEmailEntryResult[] | undefined;
183
+ }
184
+ /**
185
+ * <p>Represents a request to send a custom verification email to a specified
186
+ * recipient.</p>
187
+ * @public
188
+ */
189
+ export interface SendCustomVerificationEmailRequest {
190
+ /**
191
+ * <p>The email address to verify.</p>
192
+ * @public
193
+ */
194
+ EmailAddress: string | undefined;
195
+ /**
196
+ * <p>The name of the custom verification email template to use when sending the
197
+ * verification email.</p>
198
+ * @public
199
+ */
200
+ TemplateName: string | undefined;
201
+ /**
202
+ * <p>Name of a configuration set to use when sending the verification email.</p>
203
+ * @public
204
+ */
205
+ ConfigurationSetName?: string | undefined;
206
+ }
207
+ /**
208
+ * <p>The following element is returned by the service.</p>
209
+ * @public
210
+ */
211
+ export interface SendCustomVerificationEmailResponse {
212
+ /**
213
+ * <p>The unique message identifier returned from the
214
+ * <code>SendCustomVerificationEmail</code> operation.</p>
215
+ * @public
216
+ */
217
+ MessageId?: string | undefined;
218
+ }
219
+ /**
220
+ * <p>Represents a request to send a single formatted email using Amazon SES. For more
221
+ * information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-formatted.html">Amazon SES Developer
222
+ * Guide</a>.</p>
223
+ * @public
224
+ */
225
+ export interface SendEmailRequest {
226
+ /**
227
+ * <p>The email address to use as the "From" address for the email. The address that you
228
+ * specify has to be verified.
229
+ * </p>
230
+ * @public
231
+ */
232
+ FromEmailAddress?: string | undefined;
233
+ /**
234
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
235
+ * that is associated with the sending authorization policy that permits you to use the
236
+ * email address specified in the <code>FromEmailAddress</code> parameter.</p>
237
+ * <p>For example, if the owner of example.com (which has ARN
238
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
239
+ * authorizes you to use sender@example.com, then you would specify the
240
+ * <code>FromEmailAddressIdentityArn</code> to be
241
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
242
+ * <code>FromEmailAddress</code> to be sender@example.com.</p>
243
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
244
+ * Guide</a>.</p>
245
+ * <p>For Raw emails, the <code>FromEmailAddressIdentityArn</code> value overrides the
246
+ * X-SES-SOURCE-ARN and X-SES-FROM-ARN headers specified in raw email message
247
+ * content.</p>
248
+ * @public
249
+ */
250
+ FromEmailAddressIdentityArn?: string | undefined;
251
+ /**
252
+ * <p>An object that contains the recipients of the email message.</p>
253
+ * @public
254
+ */
255
+ Destination?: Destination | undefined;
256
+ /**
257
+ * <p>The "Reply-to" email addresses for the message. When the recipient replies to the
258
+ * message, each Reply-to address receives the reply.</p>
259
+ * @public
260
+ */
261
+ ReplyToAddresses?: string[] | undefined;
262
+ /**
263
+ * <p>The address that you want bounce and complaint notifications to be sent to.</p>
264
+ * @public
265
+ */
266
+ FeedbackForwardingEmailAddress?: string | undefined;
267
+ /**
268
+ * <p>This parameter is used only for sending authorization. It is the ARN of the identity
269
+ * that is associated with the sending authorization policy that permits you to use the
270
+ * email address specified in the <code>FeedbackForwardingEmailAddress</code>
271
+ * parameter.</p>
272
+ * <p>For example, if the owner of example.com (which has ARN
273
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that
274
+ * authorizes you to use feedback@example.com, then you would specify the
275
+ * <code>FeedbackForwardingEmailAddressIdentityArn</code> to be
276
+ * arn:aws:ses:us-east-1:123456789012:identity/example.com, and the
277
+ * <code>FeedbackForwardingEmailAddress</code> to be feedback@example.com.</p>
278
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
279
+ * Guide</a>.</p>
280
+ * @public
281
+ */
282
+ FeedbackForwardingEmailAddressIdentityArn?: string | undefined;
283
+ /**
284
+ * <p>An object that contains the body of the message. You can send either a Simple message,
285
+ * Raw message, or a Templated message.</p>
286
+ * @public
287
+ */
288
+ Content: EmailContent | undefined;
289
+ /**
290
+ * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send
291
+ * using the <code>SendEmail</code> operation. Tags correspond to characteristics of the
292
+ * email that you define, so that you can publish email sending events. </p>
293
+ * @public
294
+ */
295
+ EmailTags?: MessageTag[] | undefined;
296
+ /**
297
+ * <p>The name of the configuration set to use when sending the email.</p>
298
+ * @public
299
+ */
300
+ ConfigurationSetName?: string | undefined;
301
+ /**
302
+ * <p>The ID of the multi-region endpoint (global-endpoint).</p>
303
+ * @public
304
+ */
305
+ EndpointId?: string | undefined;
306
+ /**
307
+ * <p>The name of the tenant through which this email will be sent.</p>
308
+ * <note>
309
+ * <p>The email sending operation will only succeed if all referenced resources
310
+ * (identities, configuration sets, and templates) are associated with this tenant.
311
+ * </p>
312
+ * </note>
313
+ * @public
314
+ */
315
+ TenantName?: string | undefined;
316
+ /**
317
+ * <p>An object used to specify a list or topic to which an email belongs, which will be
318
+ * used when a contact chooses to unsubscribe.</p>
319
+ * @public
320
+ */
321
+ ListManagementOptions?: ListManagementOptions | undefined;
322
+ }
3
323
  /**
4
324
  * <p>A unique message ID that you receive when an email is accepted for sending.</p>
5
325
  * @public
@@ -96,6 +96,8 @@ export declare var DkimSigningAttributes$: StaticStructureSchema;
96
96
  export declare var DomainDeliverabilityCampaign$: StaticStructureSchema;
97
97
  export declare var DomainDeliverabilityTrackingOption$: StaticStructureSchema;
98
98
  export declare var DomainIspPlacement$: StaticStructureSchema;
99
+ export declare var EmailAddressInsightsMailboxEvaluations$: StaticStructureSchema;
100
+ export declare var EmailAddressInsightsVerdict$: StaticStructureSchema;
99
101
  export declare var EmailContent$: StaticStructureSchema;
100
102
  export declare var EmailInsights$: StaticStructureSchema;
101
103
  export declare var EmailTemplateContent$: StaticStructureSchema;
@@ -138,6 +140,8 @@ export declare var GetDomainDeliverabilityCampaignRequest$: StaticStructureSchem
138
140
  export declare var GetDomainDeliverabilityCampaignResponse$: StaticStructureSchema;
139
141
  export declare var GetDomainStatisticsReportRequest$: StaticStructureSchema;
140
142
  export declare var GetDomainStatisticsReportResponse$: StaticStructureSchema;
143
+ export declare var GetEmailAddressInsightsRequest$: StaticStructureSchema;
144
+ export declare var GetEmailAddressInsightsResponse$: StaticStructureSchema;
141
145
  export declare var GetEmailIdentityPoliciesRequest$: StaticStructureSchema;
142
146
  export declare var GetEmailIdentityPoliciesResponse$: StaticStructureSchema;
143
147
  export declare var GetEmailIdentityRequest$: StaticStructureSchema;
@@ -211,6 +215,7 @@ export declare var ListTenantResourcesRequest$: StaticStructureSchema;
211
215
  export declare var ListTenantResourcesResponse$: StaticStructureSchema;
212
216
  export declare var ListTenantsRequest$: StaticStructureSchema;
213
217
  export declare var ListTenantsResponse$: StaticStructureSchema;
218
+ export declare var MailboxValidation$: StaticStructureSchema;
214
219
  export declare var MailFromAttributes$: StaticStructureSchema;
215
220
  export declare var MailFromDomainNotVerifiedException$: StaticErrorSchema;
216
221
  export declare var Message$: StaticStructureSchema;
@@ -297,8 +302,12 @@ export declare var SuppressedDestination$: StaticStructureSchema;
297
302
  export declare var SuppressedDestinationAttributes$: StaticStructureSchema;
298
303
  export declare var SuppressedDestinationSummary$: StaticStructureSchema;
299
304
  export declare var SuppressionAttributes$: StaticStructureSchema;
305
+ export declare var SuppressionConditionThreshold$: StaticStructureSchema;
306
+ export declare var SuppressionConfidenceThreshold$: StaticStructureSchema;
300
307
  export declare var SuppressionListDestination$: StaticStructureSchema;
301
308
  export declare var SuppressionOptions$: StaticStructureSchema;
309
+ export declare var SuppressionValidationAttributes$: StaticStructureSchema;
310
+ export declare var SuppressionValidationOptions$: StaticStructureSchema;
302
311
  export declare var Tag$: StaticStructureSchema;
303
312
  export declare var TagResourceRequest$: StaticStructureSchema;
304
313
  export declare var TagResourceResponse$: StaticStructureSchema;
@@ -380,6 +389,7 @@ export declare var GetDeliverabilityDashboardOptions$: StaticOperationSchema;
380
389
  export declare var GetDeliverabilityTestReport$: StaticOperationSchema;
381
390
  export declare var GetDomainDeliverabilityCampaign$: StaticOperationSchema;
382
391
  export declare var GetDomainStatisticsReport$: StaticOperationSchema;
392
+ export declare var GetEmailAddressInsights$: StaticOperationSchema;
383
393
  export declare var GetEmailIdentity$: StaticOperationSchema;
384
394
  export declare var GetEmailIdentityPolicies$: StaticOperationSchema;
385
395
  export declare var GetEmailTemplate$: StaticOperationSchema;
@@ -175,6 +175,10 @@ import {
175
175
  GetDomainStatisticsReportCommandInput,
176
176
  GetDomainStatisticsReportCommandOutput,
177
177
  } from "./commands/GetDomainStatisticsReportCommand";
178
+ import {
179
+ GetEmailAddressInsightsCommandInput,
180
+ GetEmailAddressInsightsCommandOutput,
181
+ } from "./commands/GetEmailAddressInsightsCommand";
178
182
  import {
179
183
  GetEmailIdentityCommandInput,
180
184
  GetEmailIdentityCommandOutput,
@@ -1054,6 +1058,19 @@ export interface SESv2 {
1054
1058
  options: __HttpHandlerOptions,
1055
1059
  cb: (err: any, data?: GetDomainStatisticsReportCommandOutput) => void
1056
1060
  ): void;
1061
+ getEmailAddressInsights(
1062
+ args: GetEmailAddressInsightsCommandInput,
1063
+ options?: __HttpHandlerOptions
1064
+ ): Promise<GetEmailAddressInsightsCommandOutput>;
1065
+ getEmailAddressInsights(
1066
+ args: GetEmailAddressInsightsCommandInput,
1067
+ cb: (err: any, data?: GetEmailAddressInsightsCommandOutput) => void
1068
+ ): void;
1069
+ getEmailAddressInsights(
1070
+ args: GetEmailAddressInsightsCommandInput,
1071
+ options: __HttpHandlerOptions,
1072
+ cb: (err: any, data?: GetEmailAddressInsightsCommandOutput) => void
1073
+ ): void;
1057
1074
  getEmailIdentity(
1058
1075
  args: GetEmailIdentityCommandInput,
1059
1076
  options?: __HttpHandlerOptions
@@ -221,6 +221,10 @@ import {
221
221
  GetDomainStatisticsReportCommandInput,
222
222
  GetDomainStatisticsReportCommandOutput,
223
223
  } from "./commands/GetDomainStatisticsReportCommand";
224
+ import {
225
+ GetEmailAddressInsightsCommandInput,
226
+ GetEmailAddressInsightsCommandOutput,
227
+ } from "./commands/GetEmailAddressInsightsCommand";
224
228
  import {
225
229
  GetEmailIdentityCommandInput,
226
230
  GetEmailIdentityCommandOutput,
@@ -533,6 +537,7 @@ export type ServiceInputTypes =
533
537
  | GetDeliverabilityTestReportCommandInput
534
538
  | GetDomainDeliverabilityCampaignCommandInput
535
539
  | GetDomainStatisticsReportCommandInput
540
+ | GetEmailAddressInsightsCommandInput
536
541
  | GetEmailIdentityCommandInput
537
542
  | GetEmailIdentityPoliciesCommandInput
538
543
  | GetEmailTemplateCommandInput
@@ -643,6 +648,7 @@ export type ServiceOutputTypes =
643
648
  | GetDeliverabilityTestReportCommandOutput
644
649
  | GetDomainDeliverabilityCampaignCommandOutput
645
650
  | GetDomainStatisticsReportCommandOutput
651
+ | GetEmailAddressInsightsCommandOutput
646
652
  | GetEmailIdentityCommandOutput
647
653
  | GetEmailIdentityPoliciesCommandOutput
648
654
  | GetEmailTemplateCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetEmailAddressInsightsRequest,
5
+ GetEmailAddressInsightsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SESv2ClientResolvedConfig,
11
+ } from "../SESv2Client";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetEmailAddressInsightsCommandInput
15
+ extends GetEmailAddressInsightsRequest {}
16
+ export interface GetEmailAddressInsightsCommandOutput
17
+ extends GetEmailAddressInsightsResponse,
18
+ __MetadataBearer {}
19
+ declare const GetEmailAddressInsightsCommand_base: {
20
+ new (
21
+ input: GetEmailAddressInsightsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetEmailAddressInsightsCommandInput,
24
+ GetEmailAddressInsightsCommandOutput,
25
+ SESv2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetEmailAddressInsightsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetEmailAddressInsightsCommandInput,
33
+ GetEmailAddressInsightsCommandOutput,
34
+ SESv2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetEmailAddressInsightsCommand extends GetEmailAddressInsightsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetEmailAddressInsightsRequest;
44
+ output: GetEmailAddressInsightsResponse;
45
+ };
46
+ sdk: {
47
+ input: GetEmailAddressInsightsCommandInput;
48
+ output: GetEmailAddressInsightsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  PutEmailIdentityMailFromAttributesRequest,
5
5
  PutEmailIdentityMailFromAttributesResponse,
6
- } from "../models/models_0";
6
+ } from "../models/models_1";
7
7
  import {
8
8
  ServiceInputTypes,
9
9
  ServiceOutputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  PutSuppressedDestinationRequest,
5
5
  PutSuppressedDestinationResponse,
6
- } from "../models/models_0";
6
+ } from "../models/models_1";
7
7
  import {
8
8
  ServiceInputTypes,
9
9
  ServiceOutputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  SendBulkEmailRequest,
5
5
  SendBulkEmailResponse,
6
- } from "../models/models_0";
6
+ } from "../models/models_1";
7
7
  import {
8
8
  ServiceInputTypes,
9
9
  ServiceOutputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  SendCustomVerificationEmailRequest,
5
5
  SendCustomVerificationEmailResponse,
6
- } from "../models/models_0";
6
+ } from "../models/models_1";
7
7
  import {
8
8
  ServiceInputTypes,
9
9
  ServiceOutputTypes,
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { SendEmailRequest } from "../models/models_0";
4
- import { SendEmailResponse } from "../models/models_1";
3
+ import { SendEmailRequest, SendEmailResponse } from "../models/models_1";
5
4
  import {
6
5
  ServiceInputTypes,
7
6
  ServiceOutputTypes,
@@ -42,6 +42,7 @@ export * from "./GetDeliverabilityDashboardOptionsCommand";
42
42
  export * from "./GetDeliverabilityTestReportCommand";
43
43
  export * from "./GetDomainDeliverabilityCampaignCommand";
44
44
  export * from "./GetDomainStatisticsReportCommand";
45
+ export * from "./GetEmailAddressInsightsCommand";
45
46
  export * from "./GetEmailIdentityCommand";
46
47
  export * from "./GetEmailIdentityPoliciesCommand";
47
48
  export * from "./GetEmailTemplateCommand";
@@ -120,17 +120,24 @@ export declare const SuppressionListReason: {
120
120
  };
121
121
  export type SuppressionListReason =
122
122
  (typeof SuppressionListReason)[keyof typeof SuppressionListReason];
123
+ export declare const FeatureStatus: {
124
+ readonly DISABLED: "DISABLED";
125
+ readonly ENABLED: "ENABLED";
126
+ };
127
+ export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
128
+ export declare const SuppressionConfidenceVerdictThreshold: {
129
+ readonly HIGH: "HIGH";
130
+ readonly MANAGED: "MANAGED";
131
+ readonly MEDIUM: "MEDIUM";
132
+ };
133
+ export type SuppressionConfidenceVerdictThreshold =
134
+ (typeof SuppressionConfidenceVerdictThreshold)[keyof typeof SuppressionConfidenceVerdictThreshold];
123
135
  export declare const HttpsPolicy: {
124
136
  readonly OPTIONAL: "OPTIONAL";
125
137
  readonly REQUIRE: "REQUIRE";
126
138
  readonly REQUIRE_OPEN_ONLY: "REQUIRE_OPEN_ONLY";
127
139
  };
128
140
  export type HttpsPolicy = (typeof HttpsPolicy)[keyof typeof HttpsPolicy];
129
- export declare const FeatureStatus: {
130
- readonly DISABLED: "DISABLED";
131
- readonly ENABLED: "ENABLED";
132
- };
133
- export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
134
141
  export declare const EventType: {
135
142
  readonly BOUNCE: "BOUNCE";
136
143
  readonly CLICK: "CLICK";
@@ -267,6 +274,13 @@ export declare const DeliverabilityDashboardAccountStatus: {
267
274
  };
268
275
  export type DeliverabilityDashboardAccountStatus =
269
276
  (typeof DeliverabilityDashboardAccountStatus)[keyof typeof DeliverabilityDashboardAccountStatus];
277
+ export declare const EmailAddressInsightsConfidenceVerdict: {
278
+ readonly HIGH: "HIGH";
279
+ readonly LOW: "LOW";
280
+ readonly MEDIUM: "MEDIUM";
281
+ };
282
+ export type EmailAddressInsightsConfidenceVerdict =
283
+ (typeof EmailAddressInsightsConfidenceVerdict)[keyof typeof EmailAddressInsightsConfidenceVerdict];
270
284
  export declare const ExportSourceType: {
271
285
  readonly MESSAGE_INSIGHTS: "MESSAGE_INSIGHTS";
272
286
  readonly METRICS_DATA: "METRICS_DATA";