@aws-sdk/client-sesv2 3.199.0 → 3.200.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 (49) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/SESv2.js +60 -0
  4. package/dist-cjs/commands/BatchGetMetricDataCommand.js +46 -0
  5. package/dist-cjs/commands/ListRecommendationsCommand.js +46 -0
  6. package/dist-cjs/commands/PutAccountVdmAttributesCommand.js +46 -0
  7. package/dist-cjs/commands/PutConfigurationSetVdmOptionsCommand.js +46 -0
  8. package/dist-cjs/commands/index.js +4 -0
  9. package/dist-cjs/endpoint/ruleset.js +1 -1
  10. package/dist-cjs/models/models_0.js +173 -32
  11. package/dist-cjs/pagination/ListRecommendationsPaginator.js +36 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +478 -4
  14. package/dist-es/SESv2.js +60 -0
  15. package/dist-es/commands/BatchGetMetricDataCommand.js +42 -0
  16. package/dist-es/commands/ListRecommendationsCommand.js +42 -0
  17. package/dist-es/commands/PutAccountVdmAttributesCommand.js +42 -0
  18. package/dist-es/commands/PutConfigurationSetVdmOptionsCommand.js +42 -0
  19. package/dist-es/commands/index.js +4 -0
  20. package/dist-es/endpoint/ruleset.js +1 -1
  21. package/dist-es/models/models_0.js +146 -24
  22. package/dist-es/pagination/ListRecommendationsPaginator.js +32 -0
  23. package/dist-es/pagination/index.js +1 -0
  24. package/dist-es/protocols/Aws_restJson1.js +467 -1
  25. package/dist-types/SESv2.d.ts +33 -0
  26. package/dist-types/SESv2Client.d.ts +6 -2
  27. package/dist-types/commands/BatchGetMetricDataCommand.d.ts +39 -0
  28. package/dist-types/commands/ListRecommendationsCommand.d.ts +38 -0
  29. package/dist-types/commands/PutAccountVdmAttributesCommand.d.ts +38 -0
  30. package/dist-types/commands/PutConfigurationSetVdmOptionsCommand.d.ts +38 -0
  31. package/dist-types/commands/index.d.ts +4 -0
  32. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  33. package/dist-types/models/models_0.d.ts +552 -22
  34. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +4 -0
  35. package/dist-types/pagination/index.d.ts +1 -0
  36. package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
  37. package/dist-types/ts3.4/SESv2.d.ts +68 -0
  38. package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
  39. package/dist-types/ts3.4/commands/BatchGetMetricDataCommand.d.ts +38 -0
  40. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +38 -0
  41. package/dist-types/ts3.4/commands/PutAccountVdmAttributesCommand.d.ts +41 -0
  42. package/dist-types/ts3.4/commands/PutConfigurationSetVdmOptionsCommand.d.ts +41 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  44. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  45. package/dist-types/ts3.4/models/models_0.d.ts +194 -12
  46. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
  47. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  49. package/package.json +28 -28
@@ -129,6 +129,224 @@ export declare class BadRequestException extends __BaseException {
129
129
  */
130
130
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
131
131
  }
132
+ export declare enum MetricDimensionName {
133
+ CONFIGURATION_SET = "CONFIGURATION_SET",
134
+ EMAIL_IDENTITY = "EMAIL_IDENTITY",
135
+ ISP = "ISP"
136
+ }
137
+ export declare enum Metric {
138
+ CLICK = "CLICK",
139
+ COMPLAINT = "COMPLAINT",
140
+ DELIVERY = "DELIVERY",
141
+ DELIVERY_CLICK = "DELIVERY_CLICK",
142
+ DELIVERY_COMPLAINT = "DELIVERY_COMPLAINT",
143
+ DELIVERY_OPEN = "DELIVERY_OPEN",
144
+ OPEN = "OPEN",
145
+ PERMANENT_BOUNCE = "PERMANENT_BOUNCE",
146
+ SEND = "SEND",
147
+ TRANSIENT_BOUNCE = "TRANSIENT_BOUNCE"
148
+ }
149
+ export declare enum MetricNamespace {
150
+ VDM = "VDM"
151
+ }
152
+ /**
153
+ * <p>Represents a single metric data query to include in a batch.</p>
154
+ */
155
+ export interface BatchGetMetricDataQuery {
156
+ /**
157
+ * <p>The query identifier.</p>
158
+ */
159
+ Id: string | undefined;
160
+ /**
161
+ * <p>The query namespace - e.g. <code>VDM</code>
162
+ * </p>
163
+ */
164
+ Namespace: MetricNamespace | string | undefined;
165
+ /**
166
+ * <p>The queried metric. This can be one of the following:</p>
167
+ * <ul>
168
+ * <li>
169
+ * <p>
170
+ * <code>SEND</code> – Emails sent eligible for tracking
171
+ * in the VDM dashboard. This excludes emails sent to the mailbox simulator and emails
172
+ * addressed to more than one recipient.</p>
173
+ * </li>
174
+ * <li>
175
+ * <p>
176
+ * <code>COMPLAINT</code> – Complaints received for your
177
+ * account. This excludes complaints from the mailbox simulator, those originating from
178
+ * your account-level suppression list (if enabled), and those for emails addressed to more
179
+ * than one recipient</p>
180
+ * </li>
181
+ * <li>
182
+ * <p>
183
+ * <code>PERMANENT_BOUNCE</code> – Permanent bounces - i.e. feedback received for
184
+ * emails sent to non-existent mailboxes. Excludes bounces from the mailbox simulator, those
185
+ * originating from your account-level suppression list (if enabled), and those for emails
186
+ * addressed to more than one recipient.</p>
187
+ * </li>
188
+ * <li>
189
+ * <p>
190
+ * <code>TRANSIENT_BOUNCE</code> – Transient bounces - i.e. feedback received for
191
+ * delivery failures excluding issues with non-existent mailboxes. Excludes bounces from the
192
+ * mailbox simulator, and those for emails addressed to more than one recipient.</p>
193
+ * </li>
194
+ * <li>
195
+ * <p>
196
+ * <code>OPEN</code> – Unique open events for emails including open trackers.
197
+ * Excludes opens for emails addressed to more than one recipient.</p>
198
+ * </li>
199
+ * <li>
200
+ * <p>
201
+ * <code>CLICK</code> – Unique click events for emails including wrapped links.
202
+ * Excludes clicks for emails addressed to more than one recipient.</p>
203
+ * </li>
204
+ * <li>
205
+ * <p>
206
+ * <code>DELIVERY</code> – Successful deliveries for email sending attempts.
207
+ * Excludes deliveries to the mailbox simulator and for emails addressed to more
208
+ * than one recipient.</p>
209
+ * </li>
210
+ * <li>
211
+ * <p>
212
+ * <code>DELIVERY_OPEN</code> – Successful deliveries for email sending attempts.
213
+ * Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient,
214
+ * and emails without open trackers.</p>
215
+ * </li>
216
+ * <li>
217
+ * <p>
218
+ * <code>DELIVERY_CLICK</code> – Successful deliveries for email sending attempts.
219
+ * Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient,
220
+ * and emails without click trackers.</p>
221
+ * </li>
222
+ * <li>
223
+ * <p>
224
+ * <code>DELIVERY_COMPLAINT</code> – Successful deliveries for email sending attempts.
225
+ * Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient,
226
+ * and emails addressed to recipients hosted by ISPs with which Amazon SES does not have a
227
+ * feedback loop agreement.</p>
228
+ * </li>
229
+ * </ul>
230
+ */
231
+ Metric: Metric | string | undefined;
232
+ /**
233
+ * <p>An object that contains mapping between <code>MetricDimensionName</code>
234
+ * and <code>MetricDimensionValue</code> to filter metrics by.</p>
235
+ */
236
+ Dimensions?: Record<string, string>;
237
+ /**
238
+ * <p>Represents the start date for the query interval.</p>
239
+ */
240
+ StartDate: Date | undefined;
241
+ /**
242
+ * <p>Represents the end date for the query interval.</p>
243
+ */
244
+ EndDate: Date | undefined;
245
+ }
246
+ /**
247
+ * <p>Represents a request to retrieve a batch of metric data.</p>
248
+ */
249
+ export interface BatchGetMetricDataRequest {
250
+ /**
251
+ * <p>A list of queries for metrics to be retrieved.</p>
252
+ */
253
+ Queries: BatchGetMetricDataQuery[] | undefined;
254
+ }
255
+ export declare enum QueryErrorCode {
256
+ ACCESS_DENIED = "ACCESS_DENIED",
257
+ INTERNAL_FAILURE = "INTERNAL_FAILURE"
258
+ }
259
+ /**
260
+ * <p>An error corresponding to the unsuccessful processing of a single metric data query.</p>
261
+ */
262
+ export interface MetricDataError {
263
+ /**
264
+ * <p>The query identifier.</p>
265
+ */
266
+ Id?: string;
267
+ /**
268
+ * <p>The query error code. Can be one of:</p>
269
+ * <ul>
270
+ * <li>
271
+ * <p>
272
+ * <code>INTERNAL_FAILURE</code> – Amazon SES has failed to process one of the queries.</p>
273
+ * </li>
274
+ * <li>
275
+ * <p>
276
+ * <code>ACCESS_DENIED</code> – You have insufficient access to retrieve metrics
277
+ * based on the given query.</p>
278
+ * </li>
279
+ * </ul>
280
+ */
281
+ Code?: QueryErrorCode | string;
282
+ /**
283
+ * <p>The error message associated with the current query error.</p>
284
+ */
285
+ Message?: string;
286
+ }
287
+ /**
288
+ * <p>The result of a single metric data query.</p>
289
+ */
290
+ export interface MetricDataResult {
291
+ /**
292
+ * <p>The query identifier.</p>
293
+ */
294
+ Id?: string;
295
+ /**
296
+ * <p>A list of timestamps for the metric data results.</p>
297
+ */
298
+ Timestamps?: Date[];
299
+ /**
300
+ * <p>A list of values (cumulative / sum) for the metric data results.</p>
301
+ */
302
+ Values?: number[];
303
+ }
304
+ /**
305
+ * <p>Represents the result of processing your metric data batch request</p>
306
+ */
307
+ export interface BatchGetMetricDataResponse {
308
+ /**
309
+ * <p>A list of successfully retrieved <code>MetricDataResult</code>.</p>
310
+ */
311
+ Results?: MetricDataResult[];
312
+ /**
313
+ * <p>A list of <code>MetricDataError</code> encountered while processing your metric data batch request.</p>
314
+ */
315
+ Errors?: MetricDataError[];
316
+ }
317
+ /**
318
+ * <p>The request couldn't be processed because an error occurred with the Amazon SES API v2.</p>
319
+ */
320
+ export declare class InternalServiceErrorException extends __BaseException {
321
+ readonly name: "InternalServiceErrorException";
322
+ readonly $fault: "server";
323
+ /**
324
+ * @internal
325
+ */
326
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
327
+ }
328
+ /**
329
+ * <p>The resource you attempted to access doesn't exist.</p>
330
+ */
331
+ export declare class NotFoundException extends __BaseException {
332
+ readonly name: "NotFoundException";
333
+ readonly $fault: "client";
334
+ /**
335
+ * @internal
336
+ */
337
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
338
+ }
339
+ /**
340
+ * <p>Too many requests have been made to the operation.</p>
341
+ */
342
+ export declare class TooManyRequestsException extends __BaseException {
343
+ readonly name: "TooManyRequestsException";
344
+ readonly $fault: "client";
345
+ /**
346
+ * @internal
347
+ */
348
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
349
+ }
132
350
  export declare enum BehaviorOnMxFailure {
133
351
  REJECT_MESSAGE = "REJECT_MESSAGE",
134
352
  USE_DEFAULT_VALUE = "USE_DEFAULT_VALUE"
@@ -739,6 +957,62 @@ export interface TrackingOptions {
739
957
  */
740
958
  CustomRedirectDomain: string | undefined;
741
959
  }
960
+ export declare enum FeatureStatus {
961
+ DISABLED = "DISABLED",
962
+ ENABLED = "ENABLED"
963
+ }
964
+ /**
965
+ * <p>An object containing additional settings for your VDM configuration as applicable to the Dashboard.</p>
966
+ */
967
+ export interface DashboardOptions {
968
+ /**
969
+ * <p>Specifies the status of your VDM engagement metrics collection. Can be one of the following:</p>
970
+ * <ul>
971
+ * <li>
972
+ * <p>
973
+ * <code>ENABLED</code> – Amazon SES enables engagement metrics for the configuration set.</p>
974
+ * </li>
975
+ * <li>
976
+ * <p>
977
+ * <code>DISABLED</code> – Amazon SES disables engagement metrics for the configuration set.</p>
978
+ * </li>
979
+ * </ul>
980
+ */
981
+ EngagementMetrics?: FeatureStatus | string;
982
+ }
983
+ /**
984
+ * <p>An object containing additional settings for your VDM configuration as applicable to the Guardian.</p>
985
+ */
986
+ export interface GuardianOptions {
987
+ /**
988
+ * <p>Specifies the status of your VDM optimized shared delivery. Can be one of the following:</p>
989
+ * <ul>
990
+ * <li>
991
+ * <p>
992
+ * <code>ENABLED</code> – Amazon SES enables optimized shared delivery for the configuration set.</p>
993
+ * </li>
994
+ * <li>
995
+ * <p>
996
+ * <code>DISABLED</code> – Amazon SES disables optimized shared delivery for the configuration set.</p>
997
+ * </li>
998
+ * </ul>
999
+ */
1000
+ OptimizedSharedDelivery?: FeatureStatus | string;
1001
+ }
1002
+ /**
1003
+ * <p>An object that defines the VDM settings that apply to emails that you send
1004
+ * using the configuration set.</p>
1005
+ */
1006
+ export interface VdmOptions {
1007
+ /**
1008
+ * <p>Specifies additional settings for your VDM configuration as applicable to the Dashboard.</p>
1009
+ */
1010
+ DashboardOptions?: DashboardOptions;
1011
+ /**
1012
+ * <p>Specifies additional settings for your VDM configuration as applicable to the Guardian.</p>
1013
+ */
1014
+ GuardianOptions?: GuardianOptions;
1015
+ }
742
1016
  /**
743
1017
  * <p>A request to create a configuration set.</p>
744
1018
  */
@@ -778,6 +1052,10 @@ export interface CreateConfigurationSetRequest {
778
1052
  * account.</p>
779
1053
  */
780
1054
  SuppressionOptions?: SuppressionOptions;
1055
+ /**
1056
+ * <p>An object that defines the VDM options for emails that you send using the configuration set.</p>
1057
+ */
1058
+ VdmOptions?: VdmOptions;
781
1059
  }
782
1060
  /**
783
1061
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -796,28 +1074,6 @@ export declare class LimitExceededException extends __BaseException {
796
1074
  */
797
1075
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
798
1076
  }
799
- /**
800
- * <p>The resource you attempted to access doesn't exist.</p>
801
- */
802
- export declare class NotFoundException extends __BaseException {
803
- readonly name: "NotFoundException";
804
- readonly $fault: "client";
805
- /**
806
- * @internal
807
- */
808
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
809
- }
810
- /**
811
- * <p>Too many requests have been made to the operation.</p>
812
- */
813
- export declare class TooManyRequestsException extends __BaseException {
814
- readonly name: "TooManyRequestsException";
815
- readonly $fault: "client";
816
- /**
817
- * @internal
818
- */
819
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
820
- }
821
1077
  /**
822
1078
  * <p>An object that defines an Amazon Kinesis Data Firehose destination for email events. You can use Amazon Kinesis Data Firehose to
823
1079
  * stream data to other services, such as Amazon S3 and Amazon Redshift.</p>
@@ -1693,6 +1949,25 @@ export interface DailyVolume {
1693
1949
  */
1694
1950
  DomainIspPlacements?: DomainIspPlacement[];
1695
1951
  }
1952
+ /**
1953
+ * <p>An object containing additional settings for your VDM configuration as applicable to the Dashboard.</p>
1954
+ */
1955
+ export interface DashboardAttributes {
1956
+ /**
1957
+ * <p>Specifies the status of your VDM engagement metrics collection. Can be one of the following:</p>
1958
+ * <ul>
1959
+ * <li>
1960
+ * <p>
1961
+ * <code>ENABLED</code> – Amazon SES enables engagement metrics for your account.</p>
1962
+ * </li>
1963
+ * <li>
1964
+ * <p>
1965
+ * <code>DISABLED</code> – Amazon SES disables engagement metrics for your account.</p>
1966
+ * </li>
1967
+ * </ul>
1968
+ */
1969
+ EngagementMetrics?: FeatureStatus | string;
1970
+ }
1696
1971
  export declare enum WarmupStatus {
1697
1972
  DONE = "DONE",
1698
1973
  IN_PROGRESS = "IN_PROGRESS"
@@ -2199,6 +2474,52 @@ export interface SuppressionAttributes {
2199
2474
  */
2200
2475
  SuppressedReasons?: (SuppressionListReason | string)[];
2201
2476
  }
2477
+ /**
2478
+ * <p>An object containing additional settings for your VDM configuration as applicable to the Guardian.</p>
2479
+ */
2480
+ export interface GuardianAttributes {
2481
+ /**
2482
+ * <p>Specifies the status of your VDM optimized shared delivery. Can be one of the following:</p>
2483
+ * <ul>
2484
+ * <li>
2485
+ * <p>
2486
+ * <code>ENABLED</code> – Amazon SES enables optimized shared delivery for your account.</p>
2487
+ * </li>
2488
+ * <li>
2489
+ * <p>
2490
+ * <code>DISABLED</code> – Amazon SES disables optimized shared delivery for your account.</p>
2491
+ * </li>
2492
+ * </ul>
2493
+ */
2494
+ OptimizedSharedDelivery?: FeatureStatus | string;
2495
+ }
2496
+ /**
2497
+ * <p>The VDM attributes that apply to your Amazon SES account.</p>
2498
+ */
2499
+ export interface VdmAttributes {
2500
+ /**
2501
+ * <p>Specifies the status of your VDM configuration. Can be one of the following:</p>
2502
+ * <ul>
2503
+ * <li>
2504
+ * <p>
2505
+ * <code>ENABLED</code> – Amazon SES enables VDM for your account.</p>
2506
+ * </li>
2507
+ * <li>
2508
+ * <p>
2509
+ * <code>DISABLED</code> – Amazon SES disables VDM for your account.</p>
2510
+ * </li>
2511
+ * </ul>
2512
+ */
2513
+ VdmEnabled: FeatureStatus | string | undefined;
2514
+ /**
2515
+ * <p>Specifies additional settings for your VDM configuration as applicable to the Dashboard.</p>
2516
+ */
2517
+ DashboardAttributes?: DashboardAttributes;
2518
+ /**
2519
+ * <p>Specifies additional settings for your VDM configuration as applicable to the Guardian.</p>
2520
+ */
2521
+ GuardianAttributes?: GuardianAttributes;
2522
+ }
2202
2523
  /**
2203
2524
  * <p>A list of details about the email-sending capabilities of your Amazon SES account in the
2204
2525
  * current Amazon Web Services Region.</p>
@@ -2266,6 +2587,10 @@ export interface GetAccountResponse {
2266
2587
  * <p>An object that defines your account details.</p>
2267
2588
  */
2268
2589
  Details?: AccountDetails;
2590
+ /**
2591
+ * <p>The VDM attributes that apply to your Amazon SES account.</p>
2592
+ */
2593
+ VdmAttributes?: VdmAttributes;
2269
2594
  }
2270
2595
  /**
2271
2596
  * <p>A request to retrieve a list of the blacklists that your dedicated IP addresses appear
@@ -2336,6 +2661,10 @@ export interface GetConfigurationSetResponse {
2336
2661
  * account.</p>
2337
2662
  */
2338
2663
  SuppressionOptions?: SuppressionOptions;
2664
+ /**
2665
+ * <p>An object that contains information about the VDM preferences for your configuration set.</p>
2666
+ */
2667
+ VdmOptions?: VdmOptions;
2339
2668
  }
2340
2669
  /**
2341
2670
  * <p>A request to obtain information about the event destinations for a configuration
@@ -3582,6 +3911,105 @@ export interface ListManagementOptions {
3582
3911
  */
3583
3912
  TopicName?: string;
3584
3913
  }
3914
+ export declare enum ListRecommendationsFilterKey {
3915
+ IMPACT = "IMPACT",
3916
+ RESOURCE_ARN = "RESOURCE_ARN",
3917
+ STATUS = "STATUS",
3918
+ TYPE = "TYPE"
3919
+ }
3920
+ /**
3921
+ * <p>Represents a request to list the existing recommendations for your account.</p>
3922
+ */
3923
+ export interface ListRecommendationsRequest {
3924
+ /**
3925
+ * <p>Filters applied when retrieving recommendations. Can eiter be an individual filter, or
3926
+ * combinations of <code>STATUS</code> and <code>IMPACT</code> or
3927
+ * <code>STATUS</code> and <code>TYPE</code>
3928
+ * </p>
3929
+ */
3930
+ Filter?: Record<string, string>;
3931
+ /**
3932
+ * <p>A token returned from a previous call to <code>ListRecommendations</code> to
3933
+ * indicate the position in the list of recommendations.</p>
3934
+ */
3935
+ NextToken?: string;
3936
+ /**
3937
+ * <p>The number of results to show in a single call to
3938
+ * <code>ListRecommendations</code>. If the number of results is larger than
3939
+ * the number you specified in this parameter, then the response includes a
3940
+ * <code>NextToken</code> element, which you can use to obtain additional
3941
+ * results.</p>
3942
+ * <p>The value you specify has to be at least 1, and can be no more than 100.</p>
3943
+ */
3944
+ PageSize?: number;
3945
+ }
3946
+ export declare enum RecommendationImpact {
3947
+ HIGH = "HIGH",
3948
+ LOW = "LOW"
3949
+ }
3950
+ export declare enum RecommendationStatus {
3951
+ FIXED = "FIXED",
3952
+ OPEN = "OPEN"
3953
+ }
3954
+ export declare enum RecommendationType {
3955
+ DKIM = "DKIM",
3956
+ DMARC = "DMARC",
3957
+ SPF = "SPF"
3958
+ }
3959
+ /**
3960
+ * <p>A recommendation generated for your account.</p>
3961
+ */
3962
+ export interface Recommendation {
3963
+ /**
3964
+ * <p>The resource affected by the recommendation,
3965
+ * with values like <code>arn:aws:ses:us-east-1:123456789012:identity/example.com</code>.</p>
3966
+ */
3967
+ ResourceArn?: string;
3968
+ /**
3969
+ * <p>The recommendation type, with values like <code>DKIM</code>,
3970
+ * <code>SPF</code> or <code>DMARC</code>.</p>
3971
+ */
3972
+ Type?: RecommendationType | string;
3973
+ /**
3974
+ * <p>The recommendation description / disambiguator - e.g. <code>DKIM1</code> and <code>DKIM2</code>
3975
+ * are different recommendations about your DKIM setup.</p>
3976
+ */
3977
+ Description?: string;
3978
+ /**
3979
+ * <p>The recommendation status, with values like
3980
+ * <code>OPEN</code> or <code>FIXED</code>.</p>
3981
+ */
3982
+ Status?: RecommendationStatus | string;
3983
+ /**
3984
+ * <p>The first time this issue was encountered and the recommendation was generated.</p>
3985
+ */
3986
+ CreatedTimestamp?: Date;
3987
+ /**
3988
+ * <p>The last time the recommendation was updated.</p>
3989
+ */
3990
+ LastUpdatedTimestamp?: Date;
3991
+ /**
3992
+ * <p>The recommendation impact, with values like
3993
+ * <code>HIGH</code> or <code>LOW</code>.</p>
3994
+ */
3995
+ Impact?: RecommendationImpact | string;
3996
+ }
3997
+ /**
3998
+ * <p>Contains the response to your request to retrieve the list of recommendations for your account.</p>
3999
+ */
4000
+ export interface ListRecommendationsResponse {
4001
+ /**
4002
+ * <p>The recommendations applicable to your account.</p>
4003
+ */
4004
+ Recommendations?: Recommendation[];
4005
+ /**
4006
+ * <p>A string token indicating that there might be additional recommendations available to be
4007
+ * listed. Use the token provided in the <code>ListRecommendationsResponse</code> to use in the
4008
+ * subsequent call to <code>ListRecommendations</code> with the same parameters to retrieve the
4009
+ * next page of recommendations.</p>
4010
+ */
4011
+ NextToken?: string;
4012
+ }
3585
4013
  /**
3586
4014
  * <p>A request to obtain a list of email destinations that are on the suppression list for
3587
4015
  * your account.</p>
@@ -3780,6 +4208,17 @@ export interface PutAccountSuppressionAttributesRequest {
3780
4208
  */
3781
4209
  export interface PutAccountSuppressionAttributesResponse {
3782
4210
  }
4211
+ /**
4212
+ * <p>A request to submit new account VDM attributes.</p>
4213
+ */
4214
+ export interface PutAccountVdmAttributesRequest {
4215
+ /**
4216
+ * <p>The VDM attributes that you wish to apply to your Amazon SES account.</p>
4217
+ */
4218
+ VdmAttributes: VdmAttributes | undefined;
4219
+ }
4220
+ export interface PutAccountVdmAttributesResponse {
4221
+ }
3783
4222
  /**
3784
4223
  * <p>A request to associate a configuration set with a dedicated IP pool.</p>
3785
4224
  */
@@ -3906,6 +4345,25 @@ export interface PutConfigurationSetTrackingOptionsRequest {
3906
4345
  */
3907
4346
  export interface PutConfigurationSetTrackingOptionsResponse {
3908
4347
  }
4348
+ /**
4349
+ * <p>A request to add specific VDM settings to a configuration set.</p>
4350
+ */
4351
+ export interface PutConfigurationSetVdmOptionsRequest {
4352
+ /**
4353
+ * <p>The name of the configuration set.</p>
4354
+ */
4355
+ ConfigurationSetName: string | undefined;
4356
+ /**
4357
+ * <p>The VDM options to apply to the configuration set.</p>
4358
+ */
4359
+ VdmOptions?: VdmOptions;
4360
+ }
4361
+ /**
4362
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
4363
+ * fails.</p>
4364
+ */
4365
+ export interface PutConfigurationSetVdmOptionsResponse {
4366
+ }
3909
4367
  /**
3910
4368
  * <p>A request to move a dedicated IP address to a dedicated IP pool.</p>
3911
4369
  */
@@ -4629,6 +5087,26 @@ export declare const ReviewDetailsFilterSensitiveLog: (obj: ReviewDetails) => an
4629
5087
  * @internal
4630
5088
  */
4631
5089
  export declare const AccountDetailsFilterSensitiveLog: (obj: AccountDetails) => any;
5090
+ /**
5091
+ * @internal
5092
+ */
5093
+ export declare const BatchGetMetricDataQueryFilterSensitiveLog: (obj: BatchGetMetricDataQuery) => any;
5094
+ /**
5095
+ * @internal
5096
+ */
5097
+ export declare const BatchGetMetricDataRequestFilterSensitiveLog: (obj: BatchGetMetricDataRequest) => any;
5098
+ /**
5099
+ * @internal
5100
+ */
5101
+ export declare const MetricDataErrorFilterSensitiveLog: (obj: MetricDataError) => any;
5102
+ /**
5103
+ * @internal
5104
+ */
5105
+ export declare const MetricDataResultFilterSensitiveLog: (obj: MetricDataResult) => any;
5106
+ /**
5107
+ * @internal
5108
+ */
5109
+ export declare const BatchGetMetricDataResponseFilterSensitiveLog: (obj: BatchGetMetricDataResponse) => any;
4632
5110
  /**
4633
5111
  * @internal
4634
5112
  */
@@ -4721,6 +5199,18 @@ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
4721
5199
  * @internal
4722
5200
  */
4723
5201
  export declare const TrackingOptionsFilterSensitiveLog: (obj: TrackingOptions) => any;
5202
+ /**
5203
+ * @internal
5204
+ */
5205
+ export declare const DashboardOptionsFilterSensitiveLog: (obj: DashboardOptions) => any;
5206
+ /**
5207
+ * @internal
5208
+ */
5209
+ export declare const GuardianOptionsFilterSensitiveLog: (obj: GuardianOptions) => any;
5210
+ /**
5211
+ * @internal
5212
+ */
5213
+ export declare const VdmOptionsFilterSensitiveLog: (obj: VdmOptions) => any;
4724
5214
  /**
4725
5215
  * @internal
4726
5216
  */
@@ -4881,6 +5371,10 @@ export declare const VolumeStatisticsFilterSensitiveLog: (obj: VolumeStatistics)
4881
5371
  * @internal
4882
5372
  */
4883
5373
  export declare const DailyVolumeFilterSensitiveLog: (obj: DailyVolume) => any;
5374
+ /**
5375
+ * @internal
5376
+ */
5377
+ export declare const DashboardAttributesFilterSensitiveLog: (obj: DashboardAttributes) => any;
4884
5378
  /**
4885
5379
  * @internal
4886
5380
  */
@@ -5009,6 +5503,14 @@ export declare const SendQuotaFilterSensitiveLog: (obj: SendQuota) => any;
5009
5503
  * @internal
5010
5504
  */
5011
5505
  export declare const SuppressionAttributesFilterSensitiveLog: (obj: SuppressionAttributes) => any;
5506
+ /**
5507
+ * @internal
5508
+ */
5509
+ export declare const GuardianAttributesFilterSensitiveLog: (obj: GuardianAttributes) => any;
5510
+ /**
5511
+ * @internal
5512
+ */
5513
+ export declare const VdmAttributesFilterSensitiveLog: (obj: VdmAttributes) => any;
5012
5514
  /**
5013
5515
  * @internal
5014
5516
  */
@@ -5281,6 +5783,18 @@ export declare const ListImportJobsResponseFilterSensitiveLog: (obj: ListImportJ
5281
5783
  * @internal
5282
5784
  */
5283
5785
  export declare const ListManagementOptionsFilterSensitiveLog: (obj: ListManagementOptions) => any;
5786
+ /**
5787
+ * @internal
5788
+ */
5789
+ export declare const ListRecommendationsRequestFilterSensitiveLog: (obj: ListRecommendationsRequest) => any;
5790
+ /**
5791
+ * @internal
5792
+ */
5793
+ export declare const RecommendationFilterSensitiveLog: (obj: Recommendation) => any;
5794
+ /**
5795
+ * @internal
5796
+ */
5797
+ export declare const ListRecommendationsResponseFilterSensitiveLog: (obj: ListRecommendationsResponse) => any;
5284
5798
  /**
5285
5799
  * @internal
5286
5800
  */
@@ -5333,6 +5847,14 @@ export declare const PutAccountSuppressionAttributesRequestFilterSensitiveLog: (
5333
5847
  * @internal
5334
5848
  */
5335
5849
  export declare const PutAccountSuppressionAttributesResponseFilterSensitiveLog: (obj: PutAccountSuppressionAttributesResponse) => any;
5850
+ /**
5851
+ * @internal
5852
+ */
5853
+ export declare const PutAccountVdmAttributesRequestFilterSensitiveLog: (obj: PutAccountVdmAttributesRequest) => any;
5854
+ /**
5855
+ * @internal
5856
+ */
5857
+ export declare const PutAccountVdmAttributesResponseFilterSensitiveLog: (obj: PutAccountVdmAttributesResponse) => any;
5336
5858
  /**
5337
5859
  * @internal
5338
5860
  */
@@ -5373,6 +5895,14 @@ export declare const PutConfigurationSetTrackingOptionsRequestFilterSensitiveLog
5373
5895
  * @internal
5374
5896
  */
5375
5897
  export declare const PutConfigurationSetTrackingOptionsResponseFilterSensitiveLog: (obj: PutConfigurationSetTrackingOptionsResponse) => any;
5898
+ /**
5899
+ * @internal
5900
+ */
5901
+ export declare const PutConfigurationSetVdmOptionsRequestFilterSensitiveLog: (obj: PutConfigurationSetVdmOptionsRequest) => any;
5902
+ /**
5903
+ * @internal
5904
+ */
5905
+ export declare const PutConfigurationSetVdmOptionsResponseFilterSensitiveLog: (obj: PutConfigurationSetVdmOptionsResponse) => any;
5376
5906
  /**
5377
5907
  * @internal
5378
5908
  */
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "../commands/ListRecommendationsCommand";
3
+ import { SESv2PaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListRecommendations(config: SESv2PaginationConfiguration, input: ListRecommendationsCommandInput, ...additionalArguments: any): Paginator<ListRecommendationsCommandOutput>;