@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.
@@ -1,19 +1,23 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SESv2ServiceException as __BaseException } from "./SESv2ServiceException";
3
- export declare enum ContactLanguage {
4
- EN = "EN",
5
- JA = "JA",
6
- }
7
- export declare enum MailType {
8
- MARKETING = "MARKETING",
9
- TRANSACTIONAL = "TRANSACTIONAL",
10
- }
11
- export declare enum ReviewStatus {
12
- DENIED = "DENIED",
13
- FAILED = "FAILED",
14
- GRANTED = "GRANTED",
15
- PENDING = "PENDING",
16
- }
3
+ export declare const ContactLanguage: {
4
+ readonly EN: "EN";
5
+ readonly JA: "JA";
6
+ };
7
+ export type ContactLanguage =
8
+ (typeof ContactLanguage)[keyof typeof ContactLanguage];
9
+ export declare const MailType: {
10
+ readonly MARKETING: "MARKETING";
11
+ readonly TRANSACTIONAL: "TRANSACTIONAL";
12
+ };
13
+ export type MailType = (typeof MailType)[keyof typeof MailType];
14
+ export declare const ReviewStatus: {
15
+ readonly DENIED: "DENIED";
16
+ readonly FAILED: "FAILED";
17
+ readonly GRANTED: "GRANTED";
18
+ readonly PENDING: "PENDING";
19
+ };
20
+ export type ReviewStatus = (typeof ReviewStatus)[keyof typeof ReviewStatus];
17
21
  export interface ReviewDetails {
18
22
  Status?: ReviewStatus | string;
19
23
  CaseId?: string;
@@ -47,26 +51,31 @@ export declare class BadRequestException extends __BaseException {
47
51
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
48
52
  );
49
53
  }
50
- export declare enum MetricDimensionName {
51
- CONFIGURATION_SET = "CONFIGURATION_SET",
52
- EMAIL_IDENTITY = "EMAIL_IDENTITY",
53
- ISP = "ISP",
54
- }
55
- export declare enum Metric {
56
- CLICK = "CLICK",
57
- COMPLAINT = "COMPLAINT",
58
- DELIVERY = "DELIVERY",
59
- DELIVERY_CLICK = "DELIVERY_CLICK",
60
- DELIVERY_COMPLAINT = "DELIVERY_COMPLAINT",
61
- DELIVERY_OPEN = "DELIVERY_OPEN",
62
- OPEN = "OPEN",
63
- PERMANENT_BOUNCE = "PERMANENT_BOUNCE",
64
- SEND = "SEND",
65
- TRANSIENT_BOUNCE = "TRANSIENT_BOUNCE",
66
- }
67
- export declare enum MetricNamespace {
68
- VDM = "VDM",
69
- }
54
+ export declare const MetricDimensionName: {
55
+ readonly CONFIGURATION_SET: "CONFIGURATION_SET";
56
+ readonly EMAIL_IDENTITY: "EMAIL_IDENTITY";
57
+ readonly ISP: "ISP";
58
+ };
59
+ export type MetricDimensionName =
60
+ (typeof MetricDimensionName)[keyof typeof MetricDimensionName];
61
+ export declare const Metric: {
62
+ readonly CLICK: "CLICK";
63
+ readonly COMPLAINT: "COMPLAINT";
64
+ readonly DELIVERY: "DELIVERY";
65
+ readonly DELIVERY_CLICK: "DELIVERY_CLICK";
66
+ readonly DELIVERY_COMPLAINT: "DELIVERY_COMPLAINT";
67
+ readonly DELIVERY_OPEN: "DELIVERY_OPEN";
68
+ readonly OPEN: "OPEN";
69
+ readonly PERMANENT_BOUNCE: "PERMANENT_BOUNCE";
70
+ readonly SEND: "SEND";
71
+ readonly TRANSIENT_BOUNCE: "TRANSIENT_BOUNCE";
72
+ };
73
+ export type Metric = (typeof Metric)[keyof typeof Metric];
74
+ export declare const MetricNamespace: {
75
+ readonly VDM: "VDM";
76
+ };
77
+ export type MetricNamespace =
78
+ (typeof MetricNamespace)[keyof typeof MetricNamespace];
70
79
  export interface BatchGetMetricDataQuery {
71
80
  Id: string | undefined;
72
81
  Namespace: MetricNamespace | string | undefined;
@@ -78,10 +87,12 @@ export interface BatchGetMetricDataQuery {
78
87
  export interface BatchGetMetricDataRequest {
79
88
  Queries: BatchGetMetricDataQuery[] | undefined;
80
89
  }
81
- export declare enum QueryErrorCode {
82
- ACCESS_DENIED = "ACCESS_DENIED",
83
- INTERNAL_FAILURE = "INTERNAL_FAILURE",
84
- }
90
+ export declare const QueryErrorCode: {
91
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
92
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
93
+ };
94
+ export type QueryErrorCode =
95
+ (typeof QueryErrorCode)[keyof typeof QueryErrorCode];
85
96
  export interface MetricDataError {
86
97
  Id?: string;
87
98
  Code?: QueryErrorCode | string;
@@ -115,10 +126,12 @@ export declare class TooManyRequestsException extends __BaseException {
115
126
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
116
127
  );
117
128
  }
118
- export declare enum BehaviorOnMxFailure {
119
- REJECT_MESSAGE = "REJECT_MESSAGE",
120
- USE_DEFAULT_VALUE = "USE_DEFAULT_VALUE",
121
- }
129
+ export declare const BehaviorOnMxFailure: {
130
+ readonly REJECT_MESSAGE: "REJECT_MESSAGE";
131
+ readonly USE_DEFAULT_VALUE: "USE_DEFAULT_VALUE";
132
+ };
133
+ export type BehaviorOnMxFailure =
134
+ (typeof BehaviorOnMxFailure)[keyof typeof BehaviorOnMxFailure];
122
135
  export interface BlacklistEntry {
123
136
  RblName?: string;
124
137
  ListingTime?: Date;
@@ -160,32 +173,36 @@ export interface BulkEmailEntry {
160
173
  ReplacementTags?: MessageTag[];
161
174
  ReplacementEmailContent?: ReplacementEmailContent;
162
175
  }
163
- export declare enum BulkEmailStatus {
164
- ACCOUNT_DAILY_QUOTA_EXCEEDED = "ACCOUNT_DAILY_QUOTA_EXCEEDED",
165
- ACCOUNT_SENDING_PAUSED = "ACCOUNT_SENDING_PAUSED",
166
- ACCOUNT_SUSPENDED = "ACCOUNT_SUSPENDED",
167
- ACCOUNT_THROTTLED = "ACCOUNT_THROTTLED",
168
- CONFIGURATION_SET_NOT_FOUND = "CONFIGURATION_SET_NOT_FOUND",
169
- CONFIGURATION_SET_SENDING_PAUSED = "CONFIGURATION_SET_SENDING_PAUSED",
170
- FAILED = "FAILED",
171
- INVALID_PARAMETER = "INVALID_PARAMETER",
172
- INVALID_SENDING_POOL_NAME = "INVALID_SENDING_POOL_NAME",
173
- MAIL_FROM_DOMAIN_NOT_VERIFIED = "MAIL_FROM_DOMAIN_NOT_VERIFIED",
174
- MESSAGE_REJECTED = "MESSAGE_REJECTED",
175
- SUCCESS = "SUCCESS",
176
- TEMPLATE_NOT_FOUND = "TEMPLATE_NOT_FOUND",
177
- TRANSIENT_FAILURE = "TRANSIENT_FAILURE",
178
- }
176
+ export declare const BulkEmailStatus: {
177
+ readonly ACCOUNT_DAILY_QUOTA_EXCEEDED: "ACCOUNT_DAILY_QUOTA_EXCEEDED";
178
+ readonly ACCOUNT_SENDING_PAUSED: "ACCOUNT_SENDING_PAUSED";
179
+ readonly ACCOUNT_SUSPENDED: "ACCOUNT_SUSPENDED";
180
+ readonly ACCOUNT_THROTTLED: "ACCOUNT_THROTTLED";
181
+ readonly CONFIGURATION_SET_NOT_FOUND: "CONFIGURATION_SET_NOT_FOUND";
182
+ readonly CONFIGURATION_SET_SENDING_PAUSED: "CONFIGURATION_SET_SENDING_PAUSED";
183
+ readonly FAILED: "FAILED";
184
+ readonly INVALID_PARAMETER: "INVALID_PARAMETER";
185
+ readonly INVALID_SENDING_POOL_NAME: "INVALID_SENDING_POOL_NAME";
186
+ readonly MAIL_FROM_DOMAIN_NOT_VERIFIED: "MAIL_FROM_DOMAIN_NOT_VERIFIED";
187
+ readonly MESSAGE_REJECTED: "MESSAGE_REJECTED";
188
+ readonly SUCCESS: "SUCCESS";
189
+ readonly TEMPLATE_NOT_FOUND: "TEMPLATE_NOT_FOUND";
190
+ readonly TRANSIENT_FAILURE: "TRANSIENT_FAILURE";
191
+ };
192
+ export type BulkEmailStatus =
193
+ (typeof BulkEmailStatus)[keyof typeof BulkEmailStatus];
179
194
  export interface BulkEmailEntryResult {
180
195
  Status?: BulkEmailStatus | string;
181
196
  Error?: string;
182
197
  MessageId?: string;
183
198
  }
184
- export declare enum DimensionValueSource {
185
- EMAIL_HEADER = "EMAIL_HEADER",
186
- LINK_TAG = "LINK_TAG",
187
- MESSAGE_TAG = "MESSAGE_TAG",
188
- }
199
+ export declare const DimensionValueSource: {
200
+ readonly EMAIL_HEADER: "EMAIL_HEADER";
201
+ readonly LINK_TAG: "LINK_TAG";
202
+ readonly MESSAGE_TAG: "MESSAGE_TAG";
203
+ };
204
+ export type DimensionValueSource =
205
+ (typeof DimensionValueSource)[keyof typeof DimensionValueSource];
189
206
  export interface CloudWatchDimensionConfiguration {
190
207
  DimensionName: string | undefined;
191
208
  DimensionValueSource: DimensionValueSource | string | undefined;
@@ -209,10 +226,12 @@ export declare class ConflictException extends __BaseException {
209
226
  readonly $fault: "client";
210
227
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
211
228
  }
212
- export declare enum SubscriptionStatus {
213
- OPT_IN = "OPT_IN",
214
- OPT_OUT = "OPT_OUT",
215
- }
229
+ export declare const SubscriptionStatus: {
230
+ readonly OPT_IN: "OPT_IN";
231
+ readonly OPT_OUT: "OPT_OUT";
232
+ };
233
+ export type SubscriptionStatus =
234
+ (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
216
235
  export interface TopicPreference {
217
236
  TopicName: string | undefined;
218
237
  SubscriptionStatus: SubscriptionStatus | string | undefined;
@@ -228,18 +247,21 @@ export interface ContactList {
228
247
  ContactListName?: string;
229
248
  LastUpdatedTimestamp?: Date;
230
249
  }
231
- export declare enum ContactListImportAction {
232
- DELETE = "DELETE",
233
- PUT = "PUT",
234
- }
250
+ export declare const ContactListImportAction: {
251
+ readonly DELETE: "DELETE";
252
+ readonly PUT: "PUT";
253
+ };
254
+ export type ContactListImportAction =
255
+ (typeof ContactListImportAction)[keyof typeof ContactListImportAction];
235
256
  export interface ContactListDestination {
236
257
  ContactListName: string | undefined;
237
258
  ContactListImportAction: ContactListImportAction | string | undefined;
238
259
  }
239
- export declare enum TlsPolicy {
240
- OPTIONAL = "OPTIONAL",
241
- REQUIRE = "REQUIRE",
242
- }
260
+ export declare const TlsPolicy: {
261
+ readonly OPTIONAL: "OPTIONAL";
262
+ readonly REQUIRE: "REQUIRE";
263
+ };
264
+ export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
243
265
  export interface DeliveryOptions {
244
266
  TlsPolicy?: TlsPolicy | string;
245
267
  SendingPoolName?: string;
@@ -251,10 +273,12 @@ export interface ReputationOptions {
251
273
  export interface SendingOptions {
252
274
  SendingEnabled?: boolean;
253
275
  }
254
- export declare enum SuppressionListReason {
255
- BOUNCE = "BOUNCE",
256
- COMPLAINT = "COMPLAINT",
257
- }
276
+ export declare const SuppressionListReason: {
277
+ readonly BOUNCE: "BOUNCE";
278
+ readonly COMPLAINT: "COMPLAINT";
279
+ };
280
+ export type SuppressionListReason =
281
+ (typeof SuppressionListReason)[keyof typeof SuppressionListReason];
258
282
  export interface SuppressionOptions {
259
283
  SuppressedReasons?: (SuppressionListReason | string)[];
260
284
  }
@@ -265,10 +289,11 @@ export interface Tag {
265
289
  export interface TrackingOptions {
266
290
  CustomRedirectDomain: string | undefined;
267
291
  }
268
- export declare enum FeatureStatus {
269
- DISABLED = "DISABLED",
270
- ENABLED = "ENABLED",
271
- }
292
+ export declare const FeatureStatus: {
293
+ readonly DISABLED: "DISABLED";
294
+ readonly ENABLED: "ENABLED";
295
+ };
296
+ export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
272
297
  export interface DashboardOptions {
273
298
  EngagementMetrics?: FeatureStatus | string;
274
299
  }
@@ -301,18 +326,19 @@ export interface KinesisFirehoseDestination {
301
326
  IamRoleArn: string | undefined;
302
327
  DeliveryStreamArn: string | undefined;
303
328
  }
304
- export declare enum EventType {
305
- BOUNCE = "BOUNCE",
306
- CLICK = "CLICK",
307
- COMPLAINT = "COMPLAINT",
308
- DELIVERY = "DELIVERY",
309
- DELIVERY_DELAY = "DELIVERY_DELAY",
310
- OPEN = "OPEN",
311
- REJECT = "REJECT",
312
- RENDERING_FAILURE = "RENDERING_FAILURE",
313
- SEND = "SEND",
314
- SUBSCRIPTION = "SUBSCRIPTION",
315
- }
329
+ export declare const EventType: {
330
+ readonly BOUNCE: "BOUNCE";
331
+ readonly CLICK: "CLICK";
332
+ readonly COMPLAINT: "COMPLAINT";
333
+ readonly DELIVERY: "DELIVERY";
334
+ readonly DELIVERY_DELAY: "DELIVERY_DELAY";
335
+ readonly OPEN: "OPEN";
336
+ readonly REJECT: "REJECT";
337
+ readonly RENDERING_FAILURE: "RENDERING_FAILURE";
338
+ readonly SEND: "SEND";
339
+ readonly SUBSCRIPTION: "SUBSCRIPTION";
340
+ };
341
+ export type EventType = (typeof EventType)[keyof typeof EventType];
316
342
  export interface PinpointDestination {
317
343
  ApplicationArn?: string;
318
344
  }
@@ -363,10 +389,11 @@ export interface CreateCustomVerificationEmailTemplateRequest {
363
389
  FailureRedirectionURL: string | undefined;
364
390
  }
365
391
  export interface CreateCustomVerificationEmailTemplateResponse {}
366
- export declare enum ScalingMode {
367
- MANAGED = "MANAGED",
368
- STANDARD = "STANDARD",
369
- }
392
+ export declare const ScalingMode: {
393
+ readonly MANAGED: "MANAGED";
394
+ readonly STANDARD: "STANDARD";
395
+ };
396
+ export type ScalingMode = (typeof ScalingMode)[keyof typeof ScalingMode];
370
397
  export interface CreateDedicatedIpPoolRequest {
371
398
  PoolName: string | undefined;
372
399
  Tags?: Tag[];
@@ -391,10 +418,12 @@ export interface CreateDeliverabilityTestReportRequest {
391
418
  Content: EmailContent | undefined;
392
419
  Tags?: Tag[];
393
420
  }
394
- export declare enum DeliverabilityTestStatus {
395
- COMPLETED = "COMPLETED",
396
- IN_PROGRESS = "IN_PROGRESS",
397
- }
421
+ export declare const DeliverabilityTestStatus: {
422
+ readonly COMPLETED: "COMPLETED";
423
+ readonly IN_PROGRESS: "IN_PROGRESS";
424
+ };
425
+ export type DeliverabilityTestStatus =
426
+ (typeof DeliverabilityTestStatus)[keyof typeof DeliverabilityTestStatus];
398
427
  export interface CreateDeliverabilityTestReportResponse {
399
428
  ReportId: string | undefined;
400
429
  DeliverabilityTestStatus: DeliverabilityTestStatus | string | undefined;
@@ -421,10 +450,12 @@ export declare class SendingPausedException extends __BaseException {
421
450
  opts: __ExceptionOptionType<SendingPausedException, __BaseException>
422
451
  );
423
452
  }
424
- export declare enum DkimSigningKeyLength {
425
- RSA_1024_BIT = "RSA_1024_BIT",
426
- RSA_2048_BIT = "RSA_2048_BIT",
427
- }
453
+ export declare const DkimSigningKeyLength: {
454
+ readonly RSA_1024_BIT: "RSA_1024_BIT";
455
+ readonly RSA_2048_BIT: "RSA_2048_BIT";
456
+ };
457
+ export type DkimSigningKeyLength =
458
+ (typeof DkimSigningKeyLength)[keyof typeof DkimSigningKeyLength];
428
459
  export interface DkimSigningAttributes {
429
460
  DomainSigningSelector?: string;
430
461
  DomainSigningPrivateKey?: string;
@@ -436,17 +467,20 @@ export interface CreateEmailIdentityRequest {
436
467
  DkimSigningAttributes?: DkimSigningAttributes;
437
468
  ConfigurationSetName?: string;
438
469
  }
439
- export declare enum DkimSigningAttributesOrigin {
440
- AWS_SES = "AWS_SES",
441
- EXTERNAL = "EXTERNAL",
442
- }
443
- export declare enum DkimStatus {
444
- FAILED = "FAILED",
445
- NOT_STARTED = "NOT_STARTED",
446
- PENDING = "PENDING",
447
- SUCCESS = "SUCCESS",
448
- TEMPORARY_FAILURE = "TEMPORARY_FAILURE",
449
- }
470
+ export declare const DkimSigningAttributesOrigin: {
471
+ readonly AWS_SES: "AWS_SES";
472
+ readonly EXTERNAL: "EXTERNAL";
473
+ };
474
+ export type DkimSigningAttributesOrigin =
475
+ (typeof DkimSigningAttributesOrigin)[keyof typeof DkimSigningAttributesOrigin];
476
+ export declare const DkimStatus: {
477
+ readonly FAILED: "FAILED";
478
+ readonly NOT_STARTED: "NOT_STARTED";
479
+ readonly PENDING: "PENDING";
480
+ readonly SUCCESS: "SUCCESS";
481
+ readonly TEMPORARY_FAILURE: "TEMPORARY_FAILURE";
482
+ };
483
+ export type DkimStatus = (typeof DkimStatus)[keyof typeof DkimStatus];
450
484
  export interface DkimAttributes {
451
485
  SigningEnabled?: boolean;
452
486
  Status?: DkimStatus | string;
@@ -456,11 +490,12 @@ export interface DkimAttributes {
456
490
  CurrentSigningKeyLength?: DkimSigningKeyLength | string;
457
491
  LastKeyGenerationTimestamp?: Date;
458
492
  }
459
- export declare enum IdentityType {
460
- DOMAIN = "DOMAIN",
461
- EMAIL_ADDRESS = "EMAIL_ADDRESS",
462
- MANAGED_DOMAIN = "MANAGED_DOMAIN",
463
- }
493
+ export declare const IdentityType: {
494
+ readonly DOMAIN: "DOMAIN";
495
+ readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
496
+ readonly MANAGED_DOMAIN: "MANAGED_DOMAIN";
497
+ };
498
+ export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
464
499
  export interface CreateEmailIdentityResponse {
465
500
  IdentityType?: IdentityType | string;
466
501
  VerifiedForSendingStatus?: boolean;
@@ -482,18 +517,21 @@ export interface CreateEmailTemplateRequest {
482
517
  TemplateContent: EmailTemplateContent | undefined;
483
518
  }
484
519
  export interface CreateEmailTemplateResponse {}
485
- export declare enum DataFormat {
486
- CSV = "CSV",
487
- JSON = "JSON",
488
- }
520
+ export declare const DataFormat: {
521
+ readonly CSV: "CSV";
522
+ readonly JSON: "JSON";
523
+ };
524
+ export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
489
525
  export interface ImportDataSource {
490
526
  S3Url: string | undefined;
491
527
  DataFormat: DataFormat | string | undefined;
492
528
  }
493
- export declare enum SuppressionListImportAction {
494
- DELETE = "DELETE",
495
- PUT = "PUT",
496
- }
529
+ export declare const SuppressionListImportAction: {
530
+ readonly DELETE: "DELETE";
531
+ readonly PUT: "PUT";
532
+ };
533
+ export type SuppressionListImportAction =
534
+ (typeof SuppressionListImportAction)[keyof typeof SuppressionListImportAction];
497
535
  export interface SuppressionListDestination {
498
536
  SuppressionListImportAction: SuppressionListImportAction | string | undefined;
499
537
  }
@@ -536,10 +574,11 @@ export interface DailyVolume {
536
574
  export interface DashboardAttributes {
537
575
  EngagementMetrics?: FeatureStatus | string;
538
576
  }
539
- export declare enum WarmupStatus {
540
- DONE = "DONE",
541
- IN_PROGRESS = "IN_PROGRESS",
542
- }
577
+ export declare const WarmupStatus: {
578
+ readonly DONE: "DONE";
579
+ readonly IN_PROGRESS: "IN_PROGRESS";
580
+ };
581
+ export type WarmupStatus = (typeof WarmupStatus)[keyof typeof WarmupStatus];
543
582
  export interface DedicatedIp {
544
583
  Ip: string | undefined;
545
584
  WarmupStatus: WarmupStatus | string | undefined;
@@ -593,11 +632,13 @@ export interface DeleteSuppressedDestinationRequest {
593
632
  EmailAddress: string | undefined;
594
633
  }
595
634
  export interface DeleteSuppressedDestinationResponse {}
596
- export declare enum DeliverabilityDashboardAccountStatus {
597
- ACTIVE = "ACTIVE",
598
- DISABLED = "DISABLED",
599
- PENDING_EXPIRATION = "PENDING_EXPIRATION",
600
- }
635
+ export declare const DeliverabilityDashboardAccountStatus: {
636
+ readonly ACTIVE: "ACTIVE";
637
+ readonly DISABLED: "DISABLED";
638
+ readonly PENDING_EXPIRATION: "PENDING_EXPIRATION";
639
+ };
640
+ export type DeliverabilityDashboardAccountStatus =
641
+ (typeof DeliverabilityDashboardAccountStatus)[keyof typeof DeliverabilityDashboardAccountStatus];
601
642
  export interface DeliverabilityTestReport {
602
643
  ReportId?: string;
603
644
  ReportName?: string;
@@ -809,24 +850,28 @@ export interface GetDomainStatisticsReportResponse {
809
850
  export interface GetEmailIdentityRequest {
810
851
  EmailIdentity: string | undefined;
811
852
  }
812
- export declare enum MailFromDomainStatus {
813
- FAILED = "FAILED",
814
- PENDING = "PENDING",
815
- SUCCESS = "SUCCESS",
816
- TEMPORARY_FAILURE = "TEMPORARY_FAILURE",
817
- }
853
+ export declare const MailFromDomainStatus: {
854
+ readonly FAILED: "FAILED";
855
+ readonly PENDING: "PENDING";
856
+ readonly SUCCESS: "SUCCESS";
857
+ readonly TEMPORARY_FAILURE: "TEMPORARY_FAILURE";
858
+ };
859
+ export type MailFromDomainStatus =
860
+ (typeof MailFromDomainStatus)[keyof typeof MailFromDomainStatus];
818
861
  export interface MailFromAttributes {
819
862
  MailFromDomain: string | undefined;
820
863
  MailFromDomainStatus: MailFromDomainStatus | string | undefined;
821
864
  BehaviorOnMxFailure: BehaviorOnMxFailure | string | undefined;
822
865
  }
823
- export declare enum VerificationStatus {
824
- FAILED = "FAILED",
825
- NOT_STARTED = "NOT_STARTED",
826
- PENDING = "PENDING",
827
- SUCCESS = "SUCCESS",
828
- TEMPORARY_FAILURE = "TEMPORARY_FAILURE",
829
- }
866
+ export declare const VerificationStatus: {
867
+ readonly FAILED: "FAILED";
868
+ readonly NOT_STARTED: "NOT_STARTED";
869
+ readonly PENDING: "PENDING";
870
+ readonly SUCCESS: "SUCCESS";
871
+ readonly TEMPORARY_FAILURE: "TEMPORARY_FAILURE";
872
+ };
873
+ export type VerificationStatus =
874
+ (typeof VerificationStatus)[keyof typeof VerificationStatus];
830
875
  export interface GetEmailIdentityResponse {
831
876
  IdentityType?: IdentityType | string;
832
877
  FeedbackForwardingStatus?: boolean;
@@ -854,12 +899,13 @@ export interface GetEmailTemplateResponse {
854
899
  export interface GetImportJobRequest {
855
900
  JobId: string | undefined;
856
901
  }
857
- export declare enum JobStatus {
858
- COMPLETED = "COMPLETED",
859
- CREATED = "CREATED",
860
- FAILED = "FAILED",
861
- PROCESSING = "PROCESSING",
862
- }
902
+ export declare const JobStatus: {
903
+ readonly COMPLETED: "COMPLETED";
904
+ readonly CREATED: "CREATED";
905
+ readonly FAILED: "FAILED";
906
+ readonly PROCESSING: "PROCESSING";
907
+ };
908
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
863
909
  export interface GetImportJobResponse {
864
910
  JobId?: string;
865
911
  ImportDestination?: ImportDestination;
@@ -893,10 +939,12 @@ export interface IdentityInfo {
893
939
  SendingEnabled?: boolean;
894
940
  VerificationStatus?: VerificationStatus | string;
895
941
  }
896
- export declare enum ImportDestinationType {
897
- CONTACT_LIST = "CONTACT_LIST",
898
- SUPPRESSION_LIST = "SUPPRESSION_LIST",
899
- }
942
+ export declare const ImportDestinationType: {
943
+ readonly CONTACT_LIST: "CONTACT_LIST";
944
+ readonly SUPPRESSION_LIST: "SUPPRESSION_LIST";
945
+ };
946
+ export type ImportDestinationType =
947
+ (typeof ImportDestinationType)[keyof typeof ImportDestinationType];
900
948
  export interface ImportJobSummary {
901
949
  JobId?: string;
902
950
  ImportDestination?: ImportDestination;
@@ -1010,31 +1058,39 @@ export interface ListManagementOptions {
1010
1058
  ContactListName: string | undefined;
1011
1059
  TopicName?: string;
1012
1060
  }
1013
- export declare enum ListRecommendationsFilterKey {
1014
- IMPACT = "IMPACT",
1015
- RESOURCE_ARN = "RESOURCE_ARN",
1016
- STATUS = "STATUS",
1017
- TYPE = "TYPE",
1018
- }
1061
+ export declare const ListRecommendationsFilterKey: {
1062
+ readonly IMPACT: "IMPACT";
1063
+ readonly RESOURCE_ARN: "RESOURCE_ARN";
1064
+ readonly STATUS: "STATUS";
1065
+ readonly TYPE: "TYPE";
1066
+ };
1067
+ export type ListRecommendationsFilterKey =
1068
+ (typeof ListRecommendationsFilterKey)[keyof typeof ListRecommendationsFilterKey];
1019
1069
  export interface ListRecommendationsRequest {
1020
1070
  Filter?: Record<string, string>;
1021
1071
  NextToken?: string;
1022
1072
  PageSize?: number;
1023
1073
  }
1024
- export declare enum RecommendationImpact {
1025
- HIGH = "HIGH",
1026
- LOW = "LOW",
1027
- }
1028
- export declare enum RecommendationStatus {
1029
- FIXED = "FIXED",
1030
- OPEN = "OPEN",
1031
- }
1032
- export declare enum RecommendationType {
1033
- BIMI = "BIMI",
1034
- DKIM = "DKIM",
1035
- DMARC = "DMARC",
1036
- SPF = "SPF",
1037
- }
1074
+ export declare const RecommendationImpact: {
1075
+ readonly HIGH: "HIGH";
1076
+ readonly LOW: "LOW";
1077
+ };
1078
+ export type RecommendationImpact =
1079
+ (typeof RecommendationImpact)[keyof typeof RecommendationImpact];
1080
+ export declare const RecommendationStatus: {
1081
+ readonly FIXED: "FIXED";
1082
+ readonly OPEN: "OPEN";
1083
+ };
1084
+ export type RecommendationStatus =
1085
+ (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
1086
+ export declare const RecommendationType: {
1087
+ readonly BIMI: "BIMI";
1088
+ readonly DKIM: "DKIM";
1089
+ readonly DMARC: "DMARC";
1090
+ readonly SPF: "SPF";
1091
+ };
1092
+ export type RecommendationType =
1093
+ (typeof RecommendationType)[keyof typeof RecommendationType];
1038
1094
  export interface Recommendation {
1039
1095
  ResourceArn?: string;
1040
1096
  Type?: RecommendationType | string;