@aws-sdk/client-sesv2 3.301.0 → 3.306.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.
@@ -2,27 +2,42 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { SESv2ServiceException as __BaseException } from "./SESv2ServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum ContactLanguage {
7
- EN = "EN",
8
- JA = "JA"
9
- }
7
+ export declare const ContactLanguage: {
8
+ readonly EN: "EN";
9
+ readonly JA: "JA";
10
+ };
10
11
  /**
11
12
  * @public
12
13
  */
13
- export declare enum MailType {
14
- MARKETING = "MARKETING",
15
- TRANSACTIONAL = "TRANSACTIONAL"
16
- }
14
+ export type ContactLanguage = (typeof ContactLanguage)[keyof typeof ContactLanguage];
17
15
  /**
18
16
  * @public
17
+ * @enum
19
18
  */
20
- export declare enum ReviewStatus {
21
- DENIED = "DENIED",
22
- FAILED = "FAILED",
23
- GRANTED = "GRANTED",
24
- PENDING = "PENDING"
25
- }
19
+ export declare const MailType: {
20
+ readonly MARKETING: "MARKETING";
21
+ readonly TRANSACTIONAL: "TRANSACTIONAL";
22
+ };
23
+ /**
24
+ * @public
25
+ */
26
+ export type MailType = (typeof MailType)[keyof typeof MailType];
27
+ /**
28
+ * @public
29
+ * @enum
30
+ */
31
+ export declare const ReviewStatus: {
32
+ readonly DENIED: "DENIED";
33
+ readonly FAILED: "FAILED";
34
+ readonly GRANTED: "GRANTED";
35
+ readonly PENDING: "PENDING";
36
+ };
37
+ /**
38
+ * @public
39
+ */
40
+ export type ReviewStatus = (typeof ReviewStatus)[keyof typeof ReviewStatus];
26
41
  /**
27
42
  * @public
28
43
  * <p>An object that contains information about your account details review.</p>
@@ -145,33 +160,48 @@ export declare class BadRequestException extends __BaseException {
145
160
  }
146
161
  /**
147
162
  * @public
163
+ * @enum
148
164
  */
149
- export declare enum MetricDimensionName {
150
- CONFIGURATION_SET = "CONFIGURATION_SET",
151
- EMAIL_IDENTITY = "EMAIL_IDENTITY",
152
- ISP = "ISP"
153
- }
165
+ export declare const MetricDimensionName: {
166
+ readonly CONFIGURATION_SET: "CONFIGURATION_SET";
167
+ readonly EMAIL_IDENTITY: "EMAIL_IDENTITY";
168
+ readonly ISP: "ISP";
169
+ };
154
170
  /**
155
171
  * @public
156
172
  */
157
- export declare enum Metric {
158
- CLICK = "CLICK",
159
- COMPLAINT = "COMPLAINT",
160
- DELIVERY = "DELIVERY",
161
- DELIVERY_CLICK = "DELIVERY_CLICK",
162
- DELIVERY_COMPLAINT = "DELIVERY_COMPLAINT",
163
- DELIVERY_OPEN = "DELIVERY_OPEN",
164
- OPEN = "OPEN",
165
- PERMANENT_BOUNCE = "PERMANENT_BOUNCE",
166
- SEND = "SEND",
167
- TRANSIENT_BOUNCE = "TRANSIENT_BOUNCE"
168
- }
173
+ export type MetricDimensionName = (typeof MetricDimensionName)[keyof typeof MetricDimensionName];
169
174
  /**
170
175
  * @public
176
+ * @enum
171
177
  */
172
- export declare enum MetricNamespace {
173
- VDM = "VDM"
174
- }
178
+ export declare const Metric: {
179
+ readonly CLICK: "CLICK";
180
+ readonly COMPLAINT: "COMPLAINT";
181
+ readonly DELIVERY: "DELIVERY";
182
+ readonly DELIVERY_CLICK: "DELIVERY_CLICK";
183
+ readonly DELIVERY_COMPLAINT: "DELIVERY_COMPLAINT";
184
+ readonly DELIVERY_OPEN: "DELIVERY_OPEN";
185
+ readonly OPEN: "OPEN";
186
+ readonly PERMANENT_BOUNCE: "PERMANENT_BOUNCE";
187
+ readonly SEND: "SEND";
188
+ readonly TRANSIENT_BOUNCE: "TRANSIENT_BOUNCE";
189
+ };
190
+ /**
191
+ * @public
192
+ */
193
+ export type Metric = (typeof Metric)[keyof typeof Metric];
194
+ /**
195
+ * @public
196
+ * @enum
197
+ */
198
+ export declare const MetricNamespace: {
199
+ readonly VDM: "VDM";
200
+ };
201
+ /**
202
+ * @public
203
+ */
204
+ export type MetricNamespace = (typeof MetricNamespace)[keyof typeof MetricNamespace];
175
205
  /**
176
206
  * @public
177
207
  * <p>Represents a single metric data query to include in a batch.</p>
@@ -279,11 +309,16 @@ export interface BatchGetMetricDataRequest {
279
309
  }
280
310
  /**
281
311
  * @public
312
+ * @enum
282
313
  */
283
- export declare enum QueryErrorCode {
284
- ACCESS_DENIED = "ACCESS_DENIED",
285
- INTERNAL_FAILURE = "INTERNAL_FAILURE"
286
- }
314
+ export declare const QueryErrorCode: {
315
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
316
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
317
+ };
318
+ /**
319
+ * @public
320
+ */
321
+ export type QueryErrorCode = (typeof QueryErrorCode)[keyof typeof QueryErrorCode];
287
322
  /**
288
323
  * @public
289
324
  * <p>An error corresponding to the unsuccessful processing of a single metric data query.</p>
@@ -383,11 +418,16 @@ export declare class TooManyRequestsException extends __BaseException {
383
418
  }
384
419
  /**
385
420
  * @public
421
+ * @enum
386
422
  */
387
- export declare enum BehaviorOnMxFailure {
388
- REJECT_MESSAGE = "REJECT_MESSAGE",
389
- USE_DEFAULT_VALUE = "USE_DEFAULT_VALUE"
390
- }
423
+ export declare const BehaviorOnMxFailure: {
424
+ readonly REJECT_MESSAGE: "REJECT_MESSAGE";
425
+ readonly USE_DEFAULT_VALUE: "USE_DEFAULT_VALUE";
426
+ };
427
+ /**
428
+ * @public
429
+ */
430
+ export type BehaviorOnMxFailure = (typeof BehaviorOnMxFailure)[keyof typeof BehaviorOnMxFailure];
391
431
  /**
392
432
  * @public
393
433
  * <p>An object that contains information about a blacklisting event that impacts one of the
@@ -603,23 +643,28 @@ export interface BulkEmailEntry {
603
643
  }
604
644
  /**
605
645
  * @public
646
+ * @enum
606
647
  */
607
- export declare enum BulkEmailStatus {
608
- ACCOUNT_DAILY_QUOTA_EXCEEDED = "ACCOUNT_DAILY_QUOTA_EXCEEDED",
609
- ACCOUNT_SENDING_PAUSED = "ACCOUNT_SENDING_PAUSED",
610
- ACCOUNT_SUSPENDED = "ACCOUNT_SUSPENDED",
611
- ACCOUNT_THROTTLED = "ACCOUNT_THROTTLED",
612
- CONFIGURATION_SET_NOT_FOUND = "CONFIGURATION_SET_NOT_FOUND",
613
- CONFIGURATION_SET_SENDING_PAUSED = "CONFIGURATION_SET_SENDING_PAUSED",
614
- FAILED = "FAILED",
615
- INVALID_PARAMETER = "INVALID_PARAMETER",
616
- INVALID_SENDING_POOL_NAME = "INVALID_SENDING_POOL_NAME",
617
- MAIL_FROM_DOMAIN_NOT_VERIFIED = "MAIL_FROM_DOMAIN_NOT_VERIFIED",
618
- MESSAGE_REJECTED = "MESSAGE_REJECTED",
619
- SUCCESS = "SUCCESS",
620
- TEMPLATE_NOT_FOUND = "TEMPLATE_NOT_FOUND",
621
- TRANSIENT_FAILURE = "TRANSIENT_FAILURE"
622
- }
648
+ export declare const BulkEmailStatus: {
649
+ readonly ACCOUNT_DAILY_QUOTA_EXCEEDED: "ACCOUNT_DAILY_QUOTA_EXCEEDED";
650
+ readonly ACCOUNT_SENDING_PAUSED: "ACCOUNT_SENDING_PAUSED";
651
+ readonly ACCOUNT_SUSPENDED: "ACCOUNT_SUSPENDED";
652
+ readonly ACCOUNT_THROTTLED: "ACCOUNT_THROTTLED";
653
+ readonly CONFIGURATION_SET_NOT_FOUND: "CONFIGURATION_SET_NOT_FOUND";
654
+ readonly CONFIGURATION_SET_SENDING_PAUSED: "CONFIGURATION_SET_SENDING_PAUSED";
655
+ readonly FAILED: "FAILED";
656
+ readonly INVALID_PARAMETER: "INVALID_PARAMETER";
657
+ readonly INVALID_SENDING_POOL_NAME: "INVALID_SENDING_POOL_NAME";
658
+ readonly MAIL_FROM_DOMAIN_NOT_VERIFIED: "MAIL_FROM_DOMAIN_NOT_VERIFIED";
659
+ readonly MESSAGE_REJECTED: "MESSAGE_REJECTED";
660
+ readonly SUCCESS: "SUCCESS";
661
+ readonly TEMPLATE_NOT_FOUND: "TEMPLATE_NOT_FOUND";
662
+ readonly TRANSIENT_FAILURE: "TRANSIENT_FAILURE";
663
+ };
664
+ /**
665
+ * @public
666
+ */
667
+ export type BulkEmailStatus = (typeof BulkEmailStatus)[keyof typeof BulkEmailStatus];
623
668
  /**
624
669
  * @public
625
670
  * <p>The result of the <code>SendBulkEmail</code> operation of each specified
@@ -703,12 +748,17 @@ export interface BulkEmailEntryResult {
703
748
  }
704
749
  /**
705
750
  * @public
751
+ * @enum
706
752
  */
707
- export declare enum DimensionValueSource {
708
- EMAIL_HEADER = "EMAIL_HEADER",
709
- LINK_TAG = "LINK_TAG",
710
- MESSAGE_TAG = "MESSAGE_TAG"
711
- }
753
+ export declare const DimensionValueSource: {
754
+ readonly EMAIL_HEADER: "EMAIL_HEADER";
755
+ readonly LINK_TAG: "LINK_TAG";
756
+ readonly MESSAGE_TAG: "MESSAGE_TAG";
757
+ };
758
+ /**
759
+ * @public
760
+ */
761
+ export type DimensionValueSource = (typeof DimensionValueSource)[keyof typeof DimensionValueSource];
712
762
  /**
713
763
  * @public
714
764
  * <p>An object that defines the dimension configuration to use when you send email events
@@ -791,11 +841,16 @@ export declare class ConflictException extends __BaseException {
791
841
  }
792
842
  /**
793
843
  * @public
844
+ * @enum
794
845
  */
795
- export declare enum SubscriptionStatus {
796
- OPT_IN = "OPT_IN",
797
- OPT_OUT = "OPT_OUT"
798
- }
846
+ export declare const SubscriptionStatus: {
847
+ readonly OPT_IN: "OPT_IN";
848
+ readonly OPT_OUT: "OPT_OUT";
849
+ };
850
+ /**
851
+ * @public
852
+ */
853
+ export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
799
854
  /**
800
855
  * @public
801
856
  * <p>The contact's preference for being opted-in to or opted-out of a topic.</p>
@@ -855,11 +910,16 @@ export interface ContactList {
855
910
  }
856
911
  /**
857
912
  * @public
913
+ * @enum
858
914
  */
859
- export declare enum ContactListImportAction {
860
- DELETE = "DELETE",
861
- PUT = "PUT"
862
- }
915
+ export declare const ContactListImportAction: {
916
+ readonly DELETE: "DELETE";
917
+ readonly PUT: "PUT";
918
+ };
919
+ /**
920
+ * @public
921
+ */
922
+ export type ContactListImportAction = (typeof ContactListImportAction)[keyof typeof ContactListImportAction];
863
923
  /**
864
924
  * @public
865
925
  * <p>An object that contains details about the action of a contact list.</p>
@@ -886,11 +946,16 @@ export interface ContactListDestination {
886
946
  }
887
947
  /**
888
948
  * @public
949
+ * @enum
889
950
  */
890
- export declare enum TlsPolicy {
891
- OPTIONAL = "OPTIONAL",
892
- REQUIRE = "REQUIRE"
893
- }
951
+ export declare const TlsPolicy: {
952
+ readonly OPTIONAL: "OPTIONAL";
953
+ readonly REQUIRE: "REQUIRE";
954
+ };
955
+ /**
956
+ * @public
957
+ */
958
+ export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
894
959
  /**
895
960
  * @public
896
961
  * <p>Used to associate a configuration set with a dedicated IP pool.</p>
@@ -941,11 +1006,16 @@ export interface SendingOptions {
941
1006
  }
942
1007
  /**
943
1008
  * @public
1009
+ * @enum
944
1010
  */
945
- export declare enum SuppressionListReason {
946
- BOUNCE = "BOUNCE",
947
- COMPLAINT = "COMPLAINT"
948
- }
1011
+ export declare const SuppressionListReason: {
1012
+ readonly BOUNCE: "BOUNCE";
1013
+ readonly COMPLAINT: "COMPLAINT";
1014
+ };
1015
+ /**
1016
+ * @public
1017
+ */
1018
+ export type SuppressionListReason = (typeof SuppressionListReason)[keyof typeof SuppressionListReason];
949
1019
  /**
950
1020
  * @public
951
1021
  * <p>An object that contains information about the suppression list preferences for your
@@ -1041,11 +1111,16 @@ export interface TrackingOptions {
1041
1111
  }
1042
1112
  /**
1043
1113
  * @public
1114
+ * @enum
1044
1115
  */
1045
- export declare enum FeatureStatus {
1046
- DISABLED = "DISABLED",
1047
- ENABLED = "ENABLED"
1048
- }
1116
+ export declare const FeatureStatus: {
1117
+ readonly DISABLED: "DISABLED";
1118
+ readonly ENABLED: "ENABLED";
1119
+ };
1120
+ /**
1121
+ * @public
1122
+ */
1123
+ export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
1049
1124
  /**
1050
1125
  * @public
1051
1126
  * <p>An object containing additional settings for your VDM configuration as applicable to
@@ -1195,19 +1270,24 @@ export interface KinesisFirehoseDestination {
1195
1270
  }
1196
1271
  /**
1197
1272
  * @public
1273
+ * @enum
1198
1274
  */
1199
- export declare enum EventType {
1200
- BOUNCE = "BOUNCE",
1201
- CLICK = "CLICK",
1202
- COMPLAINT = "COMPLAINT",
1203
- DELIVERY = "DELIVERY",
1204
- DELIVERY_DELAY = "DELIVERY_DELAY",
1205
- OPEN = "OPEN",
1206
- REJECT = "REJECT",
1207
- RENDERING_FAILURE = "RENDERING_FAILURE",
1208
- SEND = "SEND",
1209
- SUBSCRIPTION = "SUBSCRIPTION"
1210
- }
1275
+ export declare const EventType: {
1276
+ readonly BOUNCE: "BOUNCE";
1277
+ readonly CLICK: "CLICK";
1278
+ readonly COMPLAINT: "COMPLAINT";
1279
+ readonly DELIVERY: "DELIVERY";
1280
+ readonly DELIVERY_DELAY: "DELIVERY_DELAY";
1281
+ readonly OPEN: "OPEN";
1282
+ readonly REJECT: "REJECT";
1283
+ readonly RENDERING_FAILURE: "RENDERING_FAILURE";
1284
+ readonly SEND: "SEND";
1285
+ readonly SUBSCRIPTION: "SUBSCRIPTION";
1286
+ };
1287
+ /**
1288
+ * @public
1289
+ */
1290
+ export type EventType = (typeof EventType)[keyof typeof EventType];
1211
1291
  /**
1212
1292
  * @public
1213
1293
  * <p>An object that defines an Amazon Pinpoint project destination for email events. You can send
@@ -1428,11 +1508,16 @@ export interface CreateCustomVerificationEmailTemplateResponse {
1428
1508
  }
1429
1509
  /**
1430
1510
  * @public
1511
+ * @enum
1431
1512
  */
1432
- export declare enum ScalingMode {
1433
- MANAGED = "MANAGED",
1434
- STANDARD = "STANDARD"
1435
- }
1513
+ export declare const ScalingMode: {
1514
+ readonly MANAGED: "MANAGED";
1515
+ readonly STANDARD: "STANDARD";
1516
+ };
1517
+ /**
1518
+ * @public
1519
+ */
1520
+ export type ScalingMode = (typeof ScalingMode)[keyof typeof ScalingMode];
1436
1521
  /**
1437
1522
  * @public
1438
1523
  * <p>A request to create a new dedicated IP pool.</p>
@@ -1597,11 +1682,16 @@ export interface CreateDeliverabilityTestReportRequest {
1597
1682
  }
1598
1683
  /**
1599
1684
  * @public
1685
+ * @enum
1600
1686
  */
1601
- export declare enum DeliverabilityTestStatus {
1602
- COMPLETED = "COMPLETED",
1603
- IN_PROGRESS = "IN_PROGRESS"
1604
- }
1687
+ export declare const DeliverabilityTestStatus: {
1688
+ readonly COMPLETED: "COMPLETED";
1689
+ readonly IN_PROGRESS: "IN_PROGRESS";
1690
+ };
1691
+ /**
1692
+ * @public
1693
+ */
1694
+ export type DeliverabilityTestStatus = (typeof DeliverabilityTestStatus)[keyof typeof DeliverabilityTestStatus];
1605
1695
  /**
1606
1696
  * @public
1607
1697
  * <p>Information about the predictive inbox placement test that you created.</p>
@@ -1658,11 +1748,16 @@ export declare class SendingPausedException extends __BaseException {
1658
1748
  }
1659
1749
  /**
1660
1750
  * @public
1751
+ * @enum
1661
1752
  */
1662
- export declare enum DkimSigningKeyLength {
1663
- RSA_1024_BIT = "RSA_1024_BIT",
1664
- RSA_2048_BIT = "RSA_2048_BIT"
1665
- }
1753
+ export declare const DkimSigningKeyLength: {
1754
+ readonly RSA_1024_BIT: "RSA_1024_BIT";
1755
+ readonly RSA_2048_BIT: "RSA_2048_BIT";
1756
+ };
1757
+ /**
1758
+ * @public
1759
+ */
1760
+ export type DkimSigningKeyLength = (typeof DkimSigningKeyLength)[keyof typeof DkimSigningKeyLength];
1666
1761
  /**
1667
1762
  * @public
1668
1763
  * <p>An object that contains configuration for Bring Your Own DKIM (BYODKIM), or, for Easy DKIM</p>
@@ -1716,21 +1811,31 @@ export interface CreateEmailIdentityRequest {
1716
1811
  }
1717
1812
  /**
1718
1813
  * @public
1814
+ * @enum
1719
1815
  */
1720
- export declare enum DkimSigningAttributesOrigin {
1721
- AWS_SES = "AWS_SES",
1722
- EXTERNAL = "EXTERNAL"
1723
- }
1816
+ export declare const DkimSigningAttributesOrigin: {
1817
+ readonly AWS_SES: "AWS_SES";
1818
+ readonly EXTERNAL: "EXTERNAL";
1819
+ };
1724
1820
  /**
1725
1821
  * @public
1726
1822
  */
1727
- export declare enum DkimStatus {
1728
- FAILED = "FAILED",
1729
- NOT_STARTED = "NOT_STARTED",
1730
- PENDING = "PENDING",
1731
- SUCCESS = "SUCCESS",
1732
- TEMPORARY_FAILURE = "TEMPORARY_FAILURE"
1733
- }
1823
+ export type DkimSigningAttributesOrigin = (typeof DkimSigningAttributesOrigin)[keyof typeof DkimSigningAttributesOrigin];
1824
+ /**
1825
+ * @public
1826
+ * @enum
1827
+ */
1828
+ export declare const DkimStatus: {
1829
+ readonly FAILED: "FAILED";
1830
+ readonly NOT_STARTED: "NOT_STARTED";
1831
+ readonly PENDING: "PENDING";
1832
+ readonly SUCCESS: "SUCCESS";
1833
+ readonly TEMPORARY_FAILURE: "TEMPORARY_FAILURE";
1834
+ };
1835
+ /**
1836
+ * @public
1837
+ */
1838
+ export type DkimStatus = (typeof DkimStatus)[keyof typeof DkimStatus];
1734
1839
  /**
1735
1840
  * @public
1736
1841
  * <p>An object that contains information about the DKIM authentication status for an email
@@ -1828,12 +1933,17 @@ export interface DkimAttributes {
1828
1933
  }
1829
1934
  /**
1830
1935
  * @public
1936
+ * @enum
1831
1937
  */
1832
- export declare enum IdentityType {
1833
- DOMAIN = "DOMAIN",
1834
- EMAIL_ADDRESS = "EMAIL_ADDRESS",
1835
- MANAGED_DOMAIN = "MANAGED_DOMAIN"
1836
- }
1938
+ export declare const IdentityType: {
1939
+ readonly DOMAIN: "DOMAIN";
1940
+ readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
1941
+ readonly MANAGED_DOMAIN: "MANAGED_DOMAIN";
1942
+ };
1943
+ /**
1944
+ * @public
1945
+ */
1946
+ export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
1837
1947
  /**
1838
1948
  * @public
1839
1949
  * <p>If the email identity is a domain, this object contains information about the DKIM
@@ -1933,11 +2043,16 @@ export interface CreateEmailTemplateResponse {
1933
2043
  }
1934
2044
  /**
1935
2045
  * @public
2046
+ * @enum
1936
2047
  */
1937
- export declare enum DataFormat {
1938
- CSV = "CSV",
1939
- JSON = "JSON"
1940
- }
2048
+ export declare const DataFormat: {
2049
+ readonly CSV: "CSV";
2050
+ readonly JSON: "JSON";
2051
+ };
2052
+ /**
2053
+ * @public
2054
+ */
2055
+ export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
1941
2056
  /**
1942
2057
  * @public
1943
2058
  * <p>An object that contains details about the data source of the import job.</p>
@@ -1955,11 +2070,16 @@ export interface ImportDataSource {
1955
2070
  }
1956
2071
  /**
1957
2072
  * @public
2073
+ * @enum
1958
2074
  */
1959
- export declare enum SuppressionListImportAction {
1960
- DELETE = "DELETE",
1961
- PUT = "PUT"
1962
- }
2075
+ export declare const SuppressionListImportAction: {
2076
+ readonly DELETE: "DELETE";
2077
+ readonly PUT: "PUT";
2078
+ };
2079
+ /**
2080
+ * @public
2081
+ */
2082
+ export type SuppressionListImportAction = (typeof SuppressionListImportAction)[keyof typeof SuppressionListImportAction];
1963
2083
  /**
1964
2084
  * @public
1965
2085
  * <p>An object that contains details about the action of suppression list.</p>
@@ -2148,11 +2268,16 @@ export interface DashboardAttributes {
2148
2268
  }
2149
2269
  /**
2150
2270
  * @public
2271
+ * @enum
2151
2272
  */
2152
- export declare enum WarmupStatus {
2153
- DONE = "DONE",
2154
- IN_PROGRESS = "IN_PROGRESS"
2155
- }
2273
+ export declare const WarmupStatus: {
2274
+ readonly DONE: "DONE";
2275
+ readonly IN_PROGRESS: "IN_PROGRESS";
2276
+ };
2277
+ /**
2278
+ * @public
2279
+ */
2280
+ export type WarmupStatus = (typeof WarmupStatus)[keyof typeof WarmupStatus];
2156
2281
  /**
2157
2282
  * @public
2158
2283
  * <p>Contains information about a dedicated IP address that is associated with your Amazon SES
@@ -2404,12 +2529,17 @@ export interface DeleteSuppressedDestinationResponse {
2404
2529
  }
2405
2530
  /**
2406
2531
  * @public
2532
+ * @enum
2407
2533
  */
2408
- export declare enum DeliverabilityDashboardAccountStatus {
2409
- ACTIVE = "ACTIVE",
2410
- DISABLED = "DISABLED",
2411
- PENDING_EXPIRATION = "PENDING_EXPIRATION"
2412
- }
2534
+ export declare const DeliverabilityDashboardAccountStatus: {
2535
+ readonly ACTIVE: "ACTIVE";
2536
+ readonly DISABLED: "DISABLED";
2537
+ readonly PENDING_EXPIRATION: "PENDING_EXPIRATION";
2538
+ };
2539
+ /**
2540
+ * @public
2541
+ */
2542
+ export type DeliverabilityDashboardAccountStatus = (typeof DeliverabilityDashboardAccountStatus)[keyof typeof DeliverabilityDashboardAccountStatus];
2413
2543
  /**
2414
2544
  * @public
2415
2545
  * <p>An object that contains metadata related to a predictive inbox placement test.</p>
@@ -3432,13 +3562,18 @@ export interface GetEmailIdentityRequest {
3432
3562
  }
3433
3563
  /**
3434
3564
  * @public
3565
+ * @enum
3435
3566
  */
3436
- export declare enum MailFromDomainStatus {
3437
- FAILED = "FAILED",
3438
- PENDING = "PENDING",
3439
- SUCCESS = "SUCCESS",
3440
- TEMPORARY_FAILURE = "TEMPORARY_FAILURE"
3441
- }
3567
+ export declare const MailFromDomainStatus: {
3568
+ readonly FAILED: "FAILED";
3569
+ readonly PENDING: "PENDING";
3570
+ readonly SUCCESS: "SUCCESS";
3571
+ readonly TEMPORARY_FAILURE: "TEMPORARY_FAILURE";
3572
+ };
3573
+ /**
3574
+ * @public
3575
+ */
3576
+ export type MailFromDomainStatus = (typeof MailFromDomainStatus)[keyof typeof MailFromDomainStatus];
3442
3577
  /**
3443
3578
  * @public
3444
3579
  * <p>A list of attributes that are associated with a MAIL FROM domain.</p>
@@ -3489,14 +3624,19 @@ export interface MailFromAttributes {
3489
3624
  }
3490
3625
  /**
3491
3626
  * @public
3627
+ * @enum
3492
3628
  */
3493
- export declare enum VerificationStatus {
3494
- FAILED = "FAILED",
3495
- NOT_STARTED = "NOT_STARTED",
3496
- PENDING = "PENDING",
3497
- SUCCESS = "SUCCESS",
3498
- TEMPORARY_FAILURE = "TEMPORARY_FAILURE"
3499
- }
3629
+ export declare const VerificationStatus: {
3630
+ readonly FAILED: "FAILED";
3631
+ readonly NOT_STARTED: "NOT_STARTED";
3632
+ readonly PENDING: "PENDING";
3633
+ readonly SUCCESS: "SUCCESS";
3634
+ readonly TEMPORARY_FAILURE: "TEMPORARY_FAILURE";
3635
+ };
3636
+ /**
3637
+ * @public
3638
+ */
3639
+ export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
3500
3640
  /**
3501
3641
  * @public
3502
3642
  * <p>Details about an email identity.</p>
@@ -3636,13 +3776,18 @@ export interface GetImportJobRequest {
3636
3776
  }
3637
3777
  /**
3638
3778
  * @public
3779
+ * @enum
3639
3780
  */
3640
- export declare enum JobStatus {
3641
- COMPLETED = "COMPLETED",
3642
- CREATED = "CREATED",
3643
- FAILED = "FAILED",
3644
- PROCESSING = "PROCESSING"
3645
- }
3781
+ export declare const JobStatus: {
3782
+ readonly COMPLETED: "COMPLETED";
3783
+ readonly CREATED: "CREATED";
3784
+ readonly FAILED: "FAILED";
3785
+ readonly PROCESSING: "PROCESSING";
3786
+ };
3787
+ /**
3788
+ * @public
3789
+ */
3790
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
3646
3791
  /**
3647
3792
  * @public
3648
3793
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -3804,11 +3949,16 @@ export interface IdentityInfo {
3804
3949
  }
3805
3950
  /**
3806
3951
  * @public
3952
+ * @enum
3807
3953
  */
3808
- export declare enum ImportDestinationType {
3809
- CONTACT_LIST = "CONTACT_LIST",
3810
- SUPPRESSION_LIST = "SUPPRESSION_LIST"
3811
- }
3954
+ export declare const ImportDestinationType: {
3955
+ readonly CONTACT_LIST: "CONTACT_LIST";
3956
+ readonly SUPPRESSION_LIST: "SUPPRESSION_LIST";
3957
+ };
3958
+ /**
3959
+ * @public
3960
+ */
3961
+ export type ImportDestinationType = (typeof ImportDestinationType)[keyof typeof ImportDestinationType];
3812
3962
  /**
3813
3963
  * @public
3814
3964
  * <p>A summary of the import job.</p>
@@ -4302,13 +4452,18 @@ export interface ListManagementOptions {
4302
4452
  }
4303
4453
  /**
4304
4454
  * @public
4455
+ * @enum
4305
4456
  */
4306
- export declare enum ListRecommendationsFilterKey {
4307
- IMPACT = "IMPACT",
4308
- RESOURCE_ARN = "RESOURCE_ARN",
4309
- STATUS = "STATUS",
4310
- TYPE = "TYPE"
4311
- }
4457
+ export declare const ListRecommendationsFilterKey: {
4458
+ readonly IMPACT: "IMPACT";
4459
+ readonly RESOURCE_ARN: "RESOURCE_ARN";
4460
+ readonly STATUS: "STATUS";
4461
+ readonly TYPE: "TYPE";
4462
+ };
4463
+ /**
4464
+ * @public
4465
+ */
4466
+ export type ListRecommendationsFilterKey = (typeof ListRecommendationsFilterKey)[keyof typeof ListRecommendationsFilterKey];
4312
4467
  /**
4313
4468
  * @public
4314
4469
  * <p>Represents a request to list the existing recommendations for your account.</p>
@@ -4338,27 +4493,42 @@ export interface ListRecommendationsRequest {
4338
4493
  }
4339
4494
  /**
4340
4495
  * @public
4496
+ * @enum
4341
4497
  */
4342
- export declare enum RecommendationImpact {
4343
- HIGH = "HIGH",
4344
- LOW = "LOW"
4345
- }
4498
+ export declare const RecommendationImpact: {
4499
+ readonly HIGH: "HIGH";
4500
+ readonly LOW: "LOW";
4501
+ };
4346
4502
  /**
4347
4503
  * @public
4348
4504
  */
4349
- export declare enum RecommendationStatus {
4350
- FIXED = "FIXED",
4351
- OPEN = "OPEN"
4352
- }
4505
+ export type RecommendationImpact = (typeof RecommendationImpact)[keyof typeof RecommendationImpact];
4353
4506
  /**
4354
4507
  * @public
4508
+ * @enum
4355
4509
  */
4356
- export declare enum RecommendationType {
4357
- BIMI = "BIMI",
4358
- DKIM = "DKIM",
4359
- DMARC = "DMARC",
4360
- SPF = "SPF"
4361
- }
4510
+ export declare const RecommendationStatus: {
4511
+ readonly FIXED: "FIXED";
4512
+ readonly OPEN: "OPEN";
4513
+ };
4514
+ /**
4515
+ * @public
4516
+ */
4517
+ export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
4518
+ /**
4519
+ * @public
4520
+ * @enum
4521
+ */
4522
+ export declare const RecommendationType: {
4523
+ readonly BIMI: "BIMI";
4524
+ readonly DKIM: "DKIM";
4525
+ readonly DMARC: "DMARC";
4526
+ readonly SPF: "SPF";
4527
+ };
4528
+ /**
4529
+ * @public
4530
+ */
4531
+ export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
4362
4532
  /**
4363
4533
  * @public
4364
4534
  * <p>A recommendation generated for your account.</p>