@aws-sdk/client-sesv2 3.687.0 → 3.692.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.
@@ -19,16 +19,16 @@ export declare const ReviewStatus: {
19
19
  };
20
20
  export type ReviewStatus = (typeof ReviewStatus)[keyof typeof ReviewStatus];
21
21
  export interface ReviewDetails {
22
- Status?: ReviewStatus;
23
- CaseId?: string;
22
+ Status?: ReviewStatus | undefined;
23
+ CaseId?: string | undefined;
24
24
  }
25
25
  export interface AccountDetails {
26
- MailType?: MailType;
27
- WebsiteURL?: string;
28
- ContactLanguage?: ContactLanguage;
29
- UseCaseDescription?: string;
30
- AdditionalContactEmailAddresses?: string[];
31
- ReviewDetails?: ReviewDetails;
26
+ MailType?: MailType | undefined;
27
+ WebsiteURL?: string | undefined;
28
+ ContactLanguage?: ContactLanguage | undefined;
29
+ UseCaseDescription?: string | undefined;
30
+ AdditionalContactEmailAddresses?: string[] | undefined;
31
+ ReviewDetails?: ReviewDetails | undefined;
32
32
  }
33
33
  export declare class AccountSuspendedException extends __BaseException {
34
34
  readonly name: "AccountSuspendedException";
@@ -80,7 +80,7 @@ export interface BatchGetMetricDataQuery {
80
80
  Id: string | undefined;
81
81
  Namespace: MetricNamespace | undefined;
82
82
  Metric: Metric | undefined;
83
- Dimensions?: Partial<Record<MetricDimensionName, string>>;
83
+ Dimensions?: Partial<Record<MetricDimensionName, string>> | undefined;
84
84
  StartDate: Date | undefined;
85
85
  EndDate: Date | undefined;
86
86
  }
@@ -94,18 +94,18 @@ export declare const QueryErrorCode: {
94
94
  export type QueryErrorCode =
95
95
  (typeof QueryErrorCode)[keyof typeof QueryErrorCode];
96
96
  export interface MetricDataError {
97
- Id?: string;
98
- Code?: QueryErrorCode;
99
- Message?: string;
97
+ Id?: string | undefined;
98
+ Code?: QueryErrorCode | undefined;
99
+ Message?: string | undefined;
100
100
  }
101
101
  export interface MetricDataResult {
102
- Id?: string;
103
- Timestamps?: Date[];
104
- Values?: number[];
102
+ Id?: string | undefined;
103
+ Timestamps?: Date[] | undefined;
104
+ Values?: number[] | undefined;
105
105
  }
106
106
  export interface BatchGetMetricDataResponse {
107
- Results?: MetricDataResult[];
108
- Errors?: MetricDataError[];
107
+ Results?: MetricDataResult[] | undefined;
108
+ Errors?: MetricDataError[] | undefined;
109
109
  }
110
110
  export declare class InternalServiceErrorException extends __BaseException {
111
111
  readonly name: "InternalServiceErrorException";
@@ -133,17 +133,17 @@ export declare const BehaviorOnMxFailure: {
133
133
  export type BehaviorOnMxFailure =
134
134
  (typeof BehaviorOnMxFailure)[keyof typeof BehaviorOnMxFailure];
135
135
  export interface BlacklistEntry {
136
- RblName?: string;
137
- ListingTime?: Date;
138
- Description?: string;
136
+ RblName?: string | undefined;
137
+ ListingTime?: Date | undefined;
138
+ Description?: string | undefined;
139
139
  }
140
140
  export interface Content {
141
141
  Data: string | undefined;
142
- Charset?: string;
142
+ Charset?: string | undefined;
143
143
  }
144
144
  export interface Body {
145
- Text?: Content;
146
- Html?: Content;
145
+ Text?: Content | undefined;
146
+ Html?: Content | undefined;
147
147
  }
148
148
  export declare const BounceType: {
149
149
  readonly PERMANENT: "PERMANENT";
@@ -152,39 +152,39 @@ export declare const BounceType: {
152
152
  };
153
153
  export type BounceType = (typeof BounceType)[keyof typeof BounceType];
154
154
  export interface Bounce {
155
- BounceType?: BounceType;
156
- BounceSubType?: string;
157
- DiagnosticCode?: string;
155
+ BounceType?: BounceType | undefined;
156
+ BounceSubType?: string | undefined;
157
+ DiagnosticCode?: string | undefined;
158
158
  }
159
159
  export interface MessageHeader {
160
160
  Name: string | undefined;
161
161
  Value: string | undefined;
162
162
  }
163
163
  export interface EmailTemplateContent {
164
- Subject?: string;
165
- Text?: string;
166
- Html?: string;
164
+ Subject?: string | undefined;
165
+ Text?: string | undefined;
166
+ Html?: string | undefined;
167
167
  }
168
168
  export interface Template {
169
- TemplateName?: string;
170
- TemplateArn?: string;
171
- TemplateContent?: EmailTemplateContent;
172
- TemplateData?: string;
173
- Headers?: MessageHeader[];
169
+ TemplateName?: string | undefined;
170
+ TemplateArn?: string | undefined;
171
+ TemplateContent?: EmailTemplateContent | undefined;
172
+ TemplateData?: string | undefined;
173
+ Headers?: MessageHeader[] | undefined;
174
174
  }
175
175
  export interface BulkEmailContent {
176
- Template?: Template;
176
+ Template?: Template | undefined;
177
177
  }
178
178
  export interface Destination {
179
- ToAddresses?: string[];
180
- CcAddresses?: string[];
181
- BccAddresses?: string[];
179
+ ToAddresses?: string[] | undefined;
180
+ CcAddresses?: string[] | undefined;
181
+ BccAddresses?: string[] | undefined;
182
182
  }
183
183
  export interface ReplacementTemplate {
184
- ReplacementTemplateData?: string;
184
+ ReplacementTemplateData?: string | undefined;
185
185
  }
186
186
  export interface ReplacementEmailContent {
187
- ReplacementTemplate?: ReplacementTemplate;
187
+ ReplacementTemplate?: ReplacementTemplate | undefined;
188
188
  }
189
189
  export interface MessageTag {
190
190
  Name: string | undefined;
@@ -192,9 +192,9 @@ export interface MessageTag {
192
192
  }
193
193
  export interface BulkEmailEntry {
194
194
  Destination: Destination | undefined;
195
- ReplacementTags?: MessageTag[];
196
- ReplacementEmailContent?: ReplacementEmailContent;
197
- ReplacementHeaders?: MessageHeader[];
195
+ ReplacementTags?: MessageTag[] | undefined;
196
+ ReplacementEmailContent?: ReplacementEmailContent | undefined;
197
+ ReplacementHeaders?: MessageHeader[] | undefined;
198
198
  }
199
199
  export declare const BulkEmailStatus: {
200
200
  readonly ACCOUNT_DAILY_QUOTA_EXCEEDED: "ACCOUNT_DAILY_QUOTA_EXCEEDED";
@@ -215,9 +215,9 @@ export declare const BulkEmailStatus: {
215
215
  export type BulkEmailStatus =
216
216
  (typeof BulkEmailStatus)[keyof typeof BulkEmailStatus];
217
217
  export interface BulkEmailEntryResult {
218
- Status?: BulkEmailStatus;
219
- Error?: string;
220
- MessageId?: string;
218
+ Status?: BulkEmailStatus | undefined;
219
+ Error?: string | undefined;
220
+ MessageId?: string | undefined;
221
221
  }
222
222
  export interface CancelExportJobRequest {
223
223
  JobId: string | undefined;
@@ -239,8 +239,8 @@ export interface CloudWatchDestination {
239
239
  DimensionConfigurations: CloudWatchDimensionConfiguration[] | undefined;
240
240
  }
241
241
  export interface Complaint {
242
- ComplaintSubType?: string;
243
- ComplaintFeedbackType?: string;
242
+ ComplaintSubType?: string | undefined;
243
+ ComplaintFeedbackType?: string | undefined;
244
244
  }
245
245
  export declare class ConcurrentModificationException extends __BaseException {
246
246
  readonly name: "ConcurrentModificationException";
@@ -268,15 +268,15 @@ export interface TopicPreference {
268
268
  SubscriptionStatus: SubscriptionStatus | undefined;
269
269
  }
270
270
  export interface Contact {
271
- EmailAddress?: string;
272
- TopicPreferences?: TopicPreference[];
273
- TopicDefaultPreferences?: TopicPreference[];
274
- UnsubscribeAll?: boolean;
275
- LastUpdatedTimestamp?: Date;
271
+ EmailAddress?: string | undefined;
272
+ TopicPreferences?: TopicPreference[] | undefined;
273
+ TopicDefaultPreferences?: TopicPreference[] | undefined;
274
+ UnsubscribeAll?: boolean | undefined;
275
+ LastUpdatedTimestamp?: Date | undefined;
276
276
  }
277
277
  export interface ContactList {
278
- ContactListName?: string;
279
- LastUpdatedTimestamp?: Date;
278
+ ContactListName?: string | undefined;
279
+ LastUpdatedTimestamp?: Date | undefined;
280
280
  }
281
281
  export declare const ContactListImportAction: {
282
282
  readonly DELETE: "DELETE";
@@ -294,16 +294,16 @@ export declare const TlsPolicy: {
294
294
  };
295
295
  export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
296
296
  export interface DeliveryOptions {
297
- TlsPolicy?: TlsPolicy;
298
- SendingPoolName?: string;
299
- MaxDeliverySeconds?: number;
297
+ TlsPolicy?: TlsPolicy | undefined;
298
+ SendingPoolName?: string | undefined;
299
+ MaxDeliverySeconds?: number | undefined;
300
300
  }
301
301
  export interface ReputationOptions {
302
- ReputationMetricsEnabled?: boolean;
303
- LastFreshStart?: Date;
302
+ ReputationMetricsEnabled?: boolean | undefined;
303
+ LastFreshStart?: Date | undefined;
304
304
  }
305
305
  export interface SendingOptions {
306
- SendingEnabled?: boolean;
306
+ SendingEnabled?: boolean | undefined;
307
307
  }
308
308
  export declare const SuppressionListReason: {
309
309
  readonly BOUNCE: "BOUNCE";
@@ -312,7 +312,7 @@ export declare const SuppressionListReason: {
312
312
  export type SuppressionListReason =
313
313
  (typeof SuppressionListReason)[keyof typeof SuppressionListReason];
314
314
  export interface SuppressionOptions {
315
- SuppressedReasons?: SuppressionListReason[];
315
+ SuppressedReasons?: SuppressionListReason[] | undefined;
316
316
  }
317
317
  export interface Tag {
318
318
  Key: string | undefined;
@@ -326,7 +326,7 @@ export declare const HttpsPolicy: {
326
326
  export type HttpsPolicy = (typeof HttpsPolicy)[keyof typeof HttpsPolicy];
327
327
  export interface TrackingOptions {
328
328
  CustomRedirectDomain: string | undefined;
329
- HttpsPolicy?: HttpsPolicy;
329
+ HttpsPolicy?: HttpsPolicy | undefined;
330
330
  }
331
331
  export declare const FeatureStatus: {
332
332
  readonly DISABLED: "DISABLED";
@@ -334,24 +334,24 @@ export declare const FeatureStatus: {
334
334
  };
335
335
  export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
336
336
  export interface DashboardOptions {
337
- EngagementMetrics?: FeatureStatus;
337
+ EngagementMetrics?: FeatureStatus | undefined;
338
338
  }
339
339
  export interface GuardianOptions {
340
- OptimizedSharedDelivery?: FeatureStatus;
340
+ OptimizedSharedDelivery?: FeatureStatus | undefined;
341
341
  }
342
342
  export interface VdmOptions {
343
- DashboardOptions?: DashboardOptions;
344
- GuardianOptions?: GuardianOptions;
343
+ DashboardOptions?: DashboardOptions | undefined;
344
+ GuardianOptions?: GuardianOptions | undefined;
345
345
  }
346
346
  export interface CreateConfigurationSetRequest {
347
347
  ConfigurationSetName: string | undefined;
348
- TrackingOptions?: TrackingOptions;
349
- DeliveryOptions?: DeliveryOptions;
350
- ReputationOptions?: ReputationOptions;
351
- SendingOptions?: SendingOptions;
352
- Tags?: Tag[];
353
- SuppressionOptions?: SuppressionOptions;
354
- VdmOptions?: VdmOptions;
348
+ TrackingOptions?: TrackingOptions | undefined;
349
+ DeliveryOptions?: DeliveryOptions | undefined;
350
+ ReputationOptions?: ReputationOptions | undefined;
351
+ SendingOptions?: SendingOptions | undefined;
352
+ Tags?: Tag[] | undefined;
353
+ SuppressionOptions?: SuppressionOptions | undefined;
354
+ VdmOptions?: VdmOptions | undefined;
355
355
  }
356
356
  export interface CreateConfigurationSetResponse {}
357
357
  export declare class LimitExceededException extends __BaseException {
@@ -382,19 +382,19 @@ export declare const EventType: {
382
382
  };
383
383
  export type EventType = (typeof EventType)[keyof typeof EventType];
384
384
  export interface PinpointDestination {
385
- ApplicationArn?: string;
385
+ ApplicationArn?: string | undefined;
386
386
  }
387
387
  export interface SnsDestination {
388
388
  TopicArn: string | undefined;
389
389
  }
390
390
  export interface EventDestinationDefinition {
391
- Enabled?: boolean;
392
- MatchingEventTypes?: EventType[];
393
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
394
- CloudWatchDestination?: CloudWatchDestination;
395
- SnsDestination?: SnsDestination;
396
- EventBridgeDestination?: EventBridgeDestination;
397
- PinpointDestination?: PinpointDestination;
391
+ Enabled?: boolean | undefined;
392
+ MatchingEventTypes?: EventType[] | undefined;
393
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
394
+ CloudWatchDestination?: CloudWatchDestination | undefined;
395
+ SnsDestination?: SnsDestination | undefined;
396
+ EventBridgeDestination?: EventBridgeDestination | undefined;
397
+ PinpointDestination?: PinpointDestination | undefined;
398
398
  }
399
399
  export interface CreateConfigurationSetEventDestinationRequest {
400
400
  ConfigurationSetName: string | undefined;
@@ -405,22 +405,22 @@ export interface CreateConfigurationSetEventDestinationResponse {}
405
405
  export interface CreateContactRequest {
406
406
  ContactListName: string | undefined;
407
407
  EmailAddress: string | undefined;
408
- TopicPreferences?: TopicPreference[];
409
- UnsubscribeAll?: boolean;
410
- AttributesData?: string;
408
+ TopicPreferences?: TopicPreference[] | undefined;
409
+ UnsubscribeAll?: boolean | undefined;
410
+ AttributesData?: string | undefined;
411
411
  }
412
412
  export interface CreateContactResponse {}
413
413
  export interface Topic {
414
414
  TopicName: string | undefined;
415
415
  DisplayName: string | undefined;
416
- Description?: string;
416
+ Description?: string | undefined;
417
417
  DefaultSubscriptionStatus: SubscriptionStatus | undefined;
418
418
  }
419
419
  export interface CreateContactListRequest {
420
420
  ContactListName: string | undefined;
421
- Topics?: Topic[];
422
- Description?: string;
423
- Tags?: Tag[];
421
+ Topics?: Topic[] | undefined;
422
+ Description?: string | undefined;
423
+ Tags?: Tag[] | undefined;
424
424
  }
425
425
  export interface CreateContactListResponse {}
426
426
  export interface CreateCustomVerificationEmailTemplateRequest {
@@ -439,8 +439,8 @@ export declare const ScalingMode: {
439
439
  export type ScalingMode = (typeof ScalingMode)[keyof typeof ScalingMode];
440
440
  export interface CreateDedicatedIpPoolRequest {
441
441
  PoolName: string | undefined;
442
- Tags?: Tag[];
443
- ScalingMode?: ScalingMode;
442
+ Tags?: Tag[] | undefined;
443
+ ScalingMode?: ScalingMode | undefined;
444
444
  }
445
445
  export interface CreateDedicatedIpPoolResponse {}
446
446
  export interface RawMessage {
@@ -449,18 +449,18 @@ export interface RawMessage {
449
449
  export interface Message {
450
450
  Subject: Content | undefined;
451
451
  Body: Body | undefined;
452
- Headers?: MessageHeader[];
452
+ Headers?: MessageHeader[] | undefined;
453
453
  }
454
454
  export interface EmailContent {
455
- Simple?: Message;
456
- Raw?: RawMessage;
457
- Template?: Template;
455
+ Simple?: Message | undefined;
456
+ Raw?: RawMessage | undefined;
457
+ Template?: Template | undefined;
458
458
  }
459
459
  export interface CreateDeliverabilityTestReportRequest {
460
- ReportName?: string;
460
+ ReportName?: string | undefined;
461
461
  FromEmailAddress: string | undefined;
462
462
  Content: EmailContent | undefined;
463
- Tags?: Tag[];
463
+ Tags?: Tag[] | undefined;
464
464
  }
465
465
  export declare const DeliverabilityTestStatus: {
466
466
  readonly COMPLETED: "COMPLETED";
@@ -501,15 +501,15 @@ export declare const DkimSigningKeyLength: {
501
501
  export type DkimSigningKeyLength =
502
502
  (typeof DkimSigningKeyLength)[keyof typeof DkimSigningKeyLength];
503
503
  export interface DkimSigningAttributes {
504
- DomainSigningSelector?: string;
505
- DomainSigningPrivateKey?: string;
506
- NextSigningKeyLength?: DkimSigningKeyLength;
504
+ DomainSigningSelector?: string | undefined;
505
+ DomainSigningPrivateKey?: string | undefined;
506
+ NextSigningKeyLength?: DkimSigningKeyLength | undefined;
507
507
  }
508
508
  export interface CreateEmailIdentityRequest {
509
509
  EmailIdentity: string | undefined;
510
- Tags?: Tag[];
511
- DkimSigningAttributes?: DkimSigningAttributes;
512
- ConfigurationSetName?: string;
510
+ Tags?: Tag[] | undefined;
511
+ DkimSigningAttributes?: DkimSigningAttributes | undefined;
512
+ ConfigurationSetName?: string | undefined;
513
513
  }
514
514
  export declare const DkimSigningAttributesOrigin: {
515
515
  readonly AWS_SES: "AWS_SES";
@@ -526,13 +526,13 @@ export declare const DkimStatus: {
526
526
  };
527
527
  export type DkimStatus = (typeof DkimStatus)[keyof typeof DkimStatus];
528
528
  export interface DkimAttributes {
529
- SigningEnabled?: boolean;
530
- Status?: DkimStatus;
531
- Tokens?: string[];
532
- SigningAttributesOrigin?: DkimSigningAttributesOrigin;
533
- NextSigningKeyLength?: DkimSigningKeyLength;
534
- CurrentSigningKeyLength?: DkimSigningKeyLength;
535
- LastKeyGenerationTimestamp?: Date;
529
+ SigningEnabled?: boolean | undefined;
530
+ Status?: DkimStatus | undefined;
531
+ Tokens?: string[] | undefined;
532
+ SigningAttributesOrigin?: DkimSigningAttributesOrigin | undefined;
533
+ NextSigningKeyLength?: DkimSigningKeyLength | undefined;
534
+ CurrentSigningKeyLength?: DkimSigningKeyLength | undefined;
535
+ LastKeyGenerationTimestamp?: Date | undefined;
536
536
  }
537
537
  export declare const IdentityType: {
538
538
  readonly DOMAIN: "DOMAIN";
@@ -541,9 +541,9 @@ export declare const IdentityType: {
541
541
  };
542
542
  export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
543
543
  export interface CreateEmailIdentityResponse {
544
- IdentityType?: IdentityType;
545
- VerifiedForSendingStatus?: boolean;
546
- DkimAttributes?: DkimAttributes;
544
+ IdentityType?: IdentityType | undefined;
545
+ VerifiedForSendingStatus?: boolean | undefined;
546
+ DkimAttributes?: DkimAttributes | undefined;
547
547
  }
548
548
  export interface CreateEmailIdentityPolicyRequest {
549
549
  EmailIdentity: string | undefined;
@@ -573,19 +573,19 @@ export declare const EngagementEventType: {
573
573
  export type EngagementEventType =
574
574
  (typeof EngagementEventType)[keyof typeof EngagementEventType];
575
575
  export interface MessageInsightsFilters {
576
- FromEmailAddress?: string[];
577
- Destination?: string[];
578
- Subject?: string[];
579
- Isp?: string[];
580
- LastDeliveryEvent?: DeliveryEventType[];
581
- LastEngagementEvent?: EngagementEventType[];
576
+ FromEmailAddress?: string[] | undefined;
577
+ Destination?: string[] | undefined;
578
+ Subject?: string[] | undefined;
579
+ Isp?: string[] | undefined;
580
+ LastDeliveryEvent?: DeliveryEventType[] | undefined;
581
+ LastEngagementEvent?: EngagementEventType[] | undefined;
582
582
  }
583
583
  export interface MessageInsightsDataSource {
584
584
  StartDate: Date | undefined;
585
585
  EndDate: Date | undefined;
586
- Include?: MessageInsightsFilters;
587
- Exclude?: MessageInsightsFilters;
588
- MaxResults?: number;
586
+ Include?: MessageInsightsFilters | undefined;
587
+ Exclude?: MessageInsightsFilters | undefined;
588
+ MaxResults?: number | undefined;
589
589
  }
590
590
  export declare const MetricAggregation: {
591
591
  readonly RATE: "RATE";
@@ -594,8 +594,8 @@ export declare const MetricAggregation: {
594
594
  export type MetricAggregation =
595
595
  (typeof MetricAggregation)[keyof typeof MetricAggregation];
596
596
  export interface ExportMetric {
597
- Name?: Metric;
598
- Aggregation?: MetricAggregation;
597
+ Name?: Metric | undefined;
598
+ Aggregation?: MetricAggregation | undefined;
599
599
  }
600
600
  export interface MetricsDataSource {
601
601
  Dimensions: Partial<Record<MetricDimensionName, string[]>> | undefined;
@@ -605,8 +605,8 @@ export interface MetricsDataSource {
605
605
  EndDate: Date | undefined;
606
606
  }
607
607
  export interface ExportDataSource {
608
- MetricsDataSource?: MetricsDataSource;
609
- MessageInsightsDataSource?: MessageInsightsDataSource;
608
+ MetricsDataSource?: MetricsDataSource | undefined;
609
+ MessageInsightsDataSource?: MessageInsightsDataSource | undefined;
610
610
  }
611
611
  export declare const DataFormat: {
612
612
  readonly CSV: "CSV";
@@ -615,14 +615,14 @@ export declare const DataFormat: {
615
615
  export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
616
616
  export interface ExportDestination {
617
617
  DataFormat: DataFormat | undefined;
618
- S3Url?: string;
618
+ S3Url?: string | undefined;
619
619
  }
620
620
  export interface CreateExportJobRequest {
621
621
  ExportDataSource: ExportDataSource | undefined;
622
622
  ExportDestination: ExportDestination | undefined;
623
623
  }
624
624
  export interface CreateExportJobResponse {
625
- JobId?: string;
625
+ JobId?: string | undefined;
626
626
  }
627
627
  export interface ImportDataSource {
628
628
  S3Url: string | undefined;
@@ -638,43 +638,43 @@ export interface SuppressionListDestination {
638
638
  SuppressionListImportAction: SuppressionListImportAction | undefined;
639
639
  }
640
640
  export interface ImportDestination {
641
- SuppressionListDestination?: SuppressionListDestination;
642
- ContactListDestination?: ContactListDestination;
641
+ SuppressionListDestination?: SuppressionListDestination | undefined;
642
+ ContactListDestination?: ContactListDestination | undefined;
643
643
  }
644
644
  export interface CreateImportJobRequest {
645
645
  ImportDestination: ImportDestination | undefined;
646
646
  ImportDataSource: ImportDataSource | undefined;
647
647
  }
648
648
  export interface CreateImportJobResponse {
649
- JobId?: string;
649
+ JobId?: string | undefined;
650
650
  }
651
651
  export interface CustomVerificationEmailTemplateMetadata {
652
- TemplateName?: string;
653
- FromEmailAddress?: string;
654
- TemplateSubject?: string;
655
- SuccessRedirectionURL?: string;
656
- FailureRedirectionURL?: string;
652
+ TemplateName?: string | undefined;
653
+ FromEmailAddress?: string | undefined;
654
+ TemplateSubject?: string | undefined;
655
+ SuccessRedirectionURL?: string | undefined;
656
+ FailureRedirectionURL?: string | undefined;
657
657
  }
658
658
  export interface DomainIspPlacement {
659
- IspName?: string;
660
- InboxRawCount?: number;
661
- SpamRawCount?: number;
662
- InboxPercentage?: number;
663
- SpamPercentage?: number;
659
+ IspName?: string | undefined;
660
+ InboxRawCount?: number | undefined;
661
+ SpamRawCount?: number | undefined;
662
+ InboxPercentage?: number | undefined;
663
+ SpamPercentage?: number | undefined;
664
664
  }
665
665
  export interface VolumeStatistics {
666
- InboxRawCount?: number;
667
- SpamRawCount?: number;
668
- ProjectedInbox?: number;
669
- ProjectedSpam?: number;
666
+ InboxRawCount?: number | undefined;
667
+ SpamRawCount?: number | undefined;
668
+ ProjectedInbox?: number | undefined;
669
+ ProjectedSpam?: number | undefined;
670
670
  }
671
671
  export interface DailyVolume {
672
- StartDate?: Date;
673
- VolumeStatistics?: VolumeStatistics;
674
- DomainIspPlacements?: DomainIspPlacement[];
672
+ StartDate?: Date | undefined;
673
+ VolumeStatistics?: VolumeStatistics | undefined;
674
+ DomainIspPlacements?: DomainIspPlacement[] | undefined;
675
675
  }
676
676
  export interface DashboardAttributes {
677
- EngagementMetrics?: FeatureStatus;
677
+ EngagementMetrics?: FeatureStatus | undefined;
678
678
  }
679
679
  export declare const WarmupStatus: {
680
680
  readonly DONE: "DONE";
@@ -685,7 +685,7 @@ export interface DedicatedIp {
685
685
  Ip: string | undefined;
686
686
  WarmupStatus: WarmupStatus | undefined;
687
687
  WarmupPercentage: number | undefined;
688
- PoolName?: string;
688
+ PoolName?: string | undefined;
689
689
  }
690
690
  export interface DedicatedIpPool {
691
691
  PoolName: string | undefined;
@@ -742,65 +742,65 @@ export declare const DeliverabilityDashboardAccountStatus: {
742
742
  export type DeliverabilityDashboardAccountStatus =
743
743
  (typeof DeliverabilityDashboardAccountStatus)[keyof typeof DeliverabilityDashboardAccountStatus];
744
744
  export interface DeliverabilityTestReport {
745
- ReportId?: string;
746
- ReportName?: string;
747
- Subject?: string;
748
- FromEmailAddress?: string;
749
- CreateDate?: Date;
750
- DeliverabilityTestStatus?: DeliverabilityTestStatus;
745
+ ReportId?: string | undefined;
746
+ ReportName?: string | undefined;
747
+ Subject?: string | undefined;
748
+ FromEmailAddress?: string | undefined;
749
+ CreateDate?: Date | undefined;
750
+ DeliverabilityTestStatus?: DeliverabilityTestStatus | undefined;
751
751
  }
752
752
  export interface DomainDeliverabilityCampaign {
753
- CampaignId?: string;
754
- ImageUrl?: string;
755
- Subject?: string;
756
- FromAddress?: string;
757
- SendingIps?: string[];
758
- FirstSeenDateTime?: Date;
759
- LastSeenDateTime?: Date;
760
- InboxCount?: number;
761
- SpamCount?: number;
762
- ReadRate?: number;
763
- DeleteRate?: number;
764
- ReadDeleteRate?: number;
765
- ProjectedVolume?: number;
766
- Esps?: string[];
753
+ CampaignId?: string | undefined;
754
+ ImageUrl?: string | undefined;
755
+ Subject?: string | undefined;
756
+ FromAddress?: string | undefined;
757
+ SendingIps?: string[] | undefined;
758
+ FirstSeenDateTime?: Date | undefined;
759
+ LastSeenDateTime?: Date | undefined;
760
+ InboxCount?: number | undefined;
761
+ SpamCount?: number | undefined;
762
+ ReadRate?: number | undefined;
763
+ DeleteRate?: number | undefined;
764
+ ReadDeleteRate?: number | undefined;
765
+ ProjectedVolume?: number | undefined;
766
+ Esps?: string[] | undefined;
767
767
  }
768
768
  export interface InboxPlacementTrackingOption {
769
- Global?: boolean;
770
- TrackedIsps?: string[];
769
+ Global?: boolean | undefined;
770
+ TrackedIsps?: string[] | undefined;
771
771
  }
772
772
  export interface DomainDeliverabilityTrackingOption {
773
- Domain?: string;
774
- SubscriptionStartDate?: Date;
775
- InboxPlacementTrackingOption?: InboxPlacementTrackingOption;
773
+ Domain?: string | undefined;
774
+ SubscriptionStartDate?: Date | undefined;
775
+ InboxPlacementTrackingOption?: InboxPlacementTrackingOption | undefined;
776
776
  }
777
777
  export interface EventDetails {
778
- Bounce?: Bounce;
779
- Complaint?: Complaint;
778
+ Bounce?: Bounce | undefined;
779
+ Complaint?: Complaint | undefined;
780
780
  }
781
781
  export interface InsightsEvent {
782
- Timestamp?: Date;
783
- Type?: EventType;
784
- Details?: EventDetails;
782
+ Timestamp?: Date | undefined;
783
+ Type?: EventType | undefined;
784
+ Details?: EventDetails | undefined;
785
785
  }
786
786
  export interface EmailInsights {
787
- Destination?: string;
788
- Isp?: string;
789
- Events?: InsightsEvent[];
787
+ Destination?: string | undefined;
788
+ Isp?: string | undefined;
789
+ Events?: InsightsEvent[] | undefined;
790
790
  }
791
791
  export interface EmailTemplateMetadata {
792
- TemplateName?: string;
793
- CreatedTimestamp?: Date;
792
+ TemplateName?: string | undefined;
793
+ CreatedTimestamp?: Date | undefined;
794
794
  }
795
795
  export interface EventDestination {
796
796
  Name: string | undefined;
797
- Enabled?: boolean;
797
+ Enabled?: boolean | undefined;
798
798
  MatchingEventTypes: EventType[] | undefined;
799
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
800
- CloudWatchDestination?: CloudWatchDestination;
801
- SnsDestination?: SnsDestination;
802
- EventBridgeDestination?: EventBridgeDestination;
803
- PinpointDestination?: PinpointDestination;
799
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
800
+ CloudWatchDestination?: CloudWatchDestination | undefined;
801
+ SnsDestination?: SnsDestination | undefined;
802
+ EventBridgeDestination?: EventBridgeDestination | undefined;
803
+ PinpointDestination?: PinpointDestination | undefined;
804
804
  }
805
805
  export declare const ExportSourceType: {
806
806
  readonly MESSAGE_INSIGHTS: "MESSAGE_INSIGHTS";
@@ -817,46 +817,46 @@ export declare const JobStatus: {
817
817
  };
818
818
  export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
819
819
  export interface ExportJobSummary {
820
- JobId?: string;
821
- ExportSourceType?: ExportSourceType;
822
- JobStatus?: JobStatus;
823
- CreatedTimestamp?: Date;
824
- CompletedTimestamp?: Date;
820
+ JobId?: string | undefined;
821
+ ExportSourceType?: ExportSourceType | undefined;
822
+ JobStatus?: JobStatus | undefined;
823
+ CreatedTimestamp?: Date | undefined;
824
+ CompletedTimestamp?: Date | undefined;
825
825
  }
826
826
  export interface ExportStatistics {
827
- ProcessedRecordsCount?: number;
828
- ExportedRecordsCount?: number;
827
+ ProcessedRecordsCount?: number | undefined;
828
+ ExportedRecordsCount?: number | undefined;
829
829
  }
830
830
  export interface FailureInfo {
831
- FailedRecordsS3Url?: string;
832
- ErrorMessage?: string;
831
+ FailedRecordsS3Url?: string | undefined;
832
+ ErrorMessage?: string | undefined;
833
833
  }
834
834
  export interface GetAccountRequest {}
835
835
  export interface SendQuota {
836
- Max24HourSend?: number;
837
- MaxSendRate?: number;
838
- SentLast24Hours?: number;
836
+ Max24HourSend?: number | undefined;
837
+ MaxSendRate?: number | undefined;
838
+ SentLast24Hours?: number | undefined;
839
839
  }
840
840
  export interface SuppressionAttributes {
841
- SuppressedReasons?: SuppressionListReason[];
841
+ SuppressedReasons?: SuppressionListReason[] | undefined;
842
842
  }
843
843
  export interface GuardianAttributes {
844
- OptimizedSharedDelivery?: FeatureStatus;
844
+ OptimizedSharedDelivery?: FeatureStatus | undefined;
845
845
  }
846
846
  export interface VdmAttributes {
847
847
  VdmEnabled: FeatureStatus | undefined;
848
- DashboardAttributes?: DashboardAttributes;
849
- GuardianAttributes?: GuardianAttributes;
848
+ DashboardAttributes?: DashboardAttributes | undefined;
849
+ GuardianAttributes?: GuardianAttributes | undefined;
850
850
  }
851
851
  export interface GetAccountResponse {
852
- DedicatedIpAutoWarmupEnabled?: boolean;
853
- EnforcementStatus?: string;
854
- ProductionAccessEnabled?: boolean;
855
- SendQuota?: SendQuota;
856
- SendingEnabled?: boolean;
857
- SuppressionAttributes?: SuppressionAttributes;
858
- Details?: AccountDetails;
859
- VdmAttributes?: VdmAttributes;
852
+ DedicatedIpAutoWarmupEnabled?: boolean | undefined;
853
+ EnforcementStatus?: string | undefined;
854
+ ProductionAccessEnabled?: boolean | undefined;
855
+ SendQuota?: SendQuota | undefined;
856
+ SendingEnabled?: boolean | undefined;
857
+ SuppressionAttributes?: SuppressionAttributes | undefined;
858
+ Details?: AccountDetails | undefined;
859
+ VdmAttributes?: VdmAttributes | undefined;
860
860
  }
861
861
  export interface GetBlacklistReportsRequest {
862
862
  BlacklistItemNames: string[] | undefined;
@@ -868,106 +868,108 @@ export interface GetConfigurationSetRequest {
868
868
  ConfigurationSetName: string | undefined;
869
869
  }
870
870
  export interface GetConfigurationSetResponse {
871
- ConfigurationSetName?: string;
872
- TrackingOptions?: TrackingOptions;
873
- DeliveryOptions?: DeliveryOptions;
874
- ReputationOptions?: ReputationOptions;
875
- SendingOptions?: SendingOptions;
876
- Tags?: Tag[];
877
- SuppressionOptions?: SuppressionOptions;
878
- VdmOptions?: VdmOptions;
871
+ ConfigurationSetName?: string | undefined;
872
+ TrackingOptions?: TrackingOptions | undefined;
873
+ DeliveryOptions?: DeliveryOptions | undefined;
874
+ ReputationOptions?: ReputationOptions | undefined;
875
+ SendingOptions?: SendingOptions | undefined;
876
+ Tags?: Tag[] | undefined;
877
+ SuppressionOptions?: SuppressionOptions | undefined;
878
+ VdmOptions?: VdmOptions | undefined;
879
879
  }
880
880
  export interface GetConfigurationSetEventDestinationsRequest {
881
881
  ConfigurationSetName: string | undefined;
882
882
  }
883
883
  export interface GetConfigurationSetEventDestinationsResponse {
884
- EventDestinations?: EventDestination[];
884
+ EventDestinations?: EventDestination[] | undefined;
885
885
  }
886
886
  export interface GetContactRequest {
887
887
  ContactListName: string | undefined;
888
888
  EmailAddress: string | undefined;
889
889
  }
890
890
  export interface GetContactResponse {
891
- ContactListName?: string;
892
- EmailAddress?: string;
893
- TopicPreferences?: TopicPreference[];
894
- TopicDefaultPreferences?: TopicPreference[];
895
- UnsubscribeAll?: boolean;
896
- AttributesData?: string;
897
- CreatedTimestamp?: Date;
898
- LastUpdatedTimestamp?: Date;
891
+ ContactListName?: string | undefined;
892
+ EmailAddress?: string | undefined;
893
+ TopicPreferences?: TopicPreference[] | undefined;
894
+ TopicDefaultPreferences?: TopicPreference[] | undefined;
895
+ UnsubscribeAll?: boolean | undefined;
896
+ AttributesData?: string | undefined;
897
+ CreatedTimestamp?: Date | undefined;
898
+ LastUpdatedTimestamp?: Date | undefined;
899
899
  }
900
900
  export interface GetContactListRequest {
901
901
  ContactListName: string | undefined;
902
902
  }
903
903
  export interface GetContactListResponse {
904
- ContactListName?: string;
905
- Topics?: Topic[];
906
- Description?: string;
907
- CreatedTimestamp?: Date;
908
- LastUpdatedTimestamp?: Date;
909
- Tags?: Tag[];
904
+ ContactListName?: string | undefined;
905
+ Topics?: Topic[] | undefined;
906
+ Description?: string | undefined;
907
+ CreatedTimestamp?: Date | undefined;
908
+ LastUpdatedTimestamp?: Date | undefined;
909
+ Tags?: Tag[] | undefined;
910
910
  }
911
911
  export interface GetCustomVerificationEmailTemplateRequest {
912
912
  TemplateName: string | undefined;
913
913
  }
914
914
  export interface GetCustomVerificationEmailTemplateResponse {
915
- TemplateName?: string;
916
- FromEmailAddress?: string;
917
- TemplateSubject?: string;
918
- TemplateContent?: string;
919
- SuccessRedirectionURL?: string;
920
- FailureRedirectionURL?: string;
915
+ TemplateName?: string | undefined;
916
+ FromEmailAddress?: string | undefined;
917
+ TemplateSubject?: string | undefined;
918
+ TemplateContent?: string | undefined;
919
+ SuccessRedirectionURL?: string | undefined;
920
+ FailureRedirectionURL?: string | undefined;
921
921
  }
922
922
  export interface GetDedicatedIpRequest {
923
923
  Ip: string | undefined;
924
924
  }
925
925
  export interface GetDedicatedIpResponse {
926
- DedicatedIp?: DedicatedIp;
926
+ DedicatedIp?: DedicatedIp | undefined;
927
927
  }
928
928
  export interface GetDedicatedIpPoolRequest {
929
929
  PoolName: string | undefined;
930
930
  }
931
931
  export interface GetDedicatedIpPoolResponse {
932
- DedicatedIpPool?: DedicatedIpPool;
932
+ DedicatedIpPool?: DedicatedIpPool | undefined;
933
933
  }
934
934
  export interface GetDedicatedIpsRequest {
935
- PoolName?: string;
936
- NextToken?: string;
937
- PageSize?: number;
935
+ PoolName?: string | undefined;
936
+ NextToken?: string | undefined;
937
+ PageSize?: number | undefined;
938
938
  }
939
939
  export interface GetDedicatedIpsResponse {
940
- DedicatedIps?: DedicatedIp[];
941
- NextToken?: string;
940
+ DedicatedIps?: DedicatedIp[] | undefined;
941
+ NextToken?: string | undefined;
942
942
  }
943
943
  export interface GetDeliverabilityDashboardOptionsRequest {}
944
944
  export interface GetDeliverabilityDashboardOptionsResponse {
945
945
  DashboardEnabled: boolean | undefined;
946
- SubscriptionExpiryDate?: Date;
947
- AccountStatus?: DeliverabilityDashboardAccountStatus;
948
- ActiveSubscribedDomains?: DomainDeliverabilityTrackingOption[];
949
- PendingExpirationSubscribedDomains?: DomainDeliverabilityTrackingOption[];
946
+ SubscriptionExpiryDate?: Date | undefined;
947
+ AccountStatus?: DeliverabilityDashboardAccountStatus | undefined;
948
+ ActiveSubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
949
+ PendingExpirationSubscribedDomains?:
950
+ | DomainDeliverabilityTrackingOption[]
951
+ | undefined;
950
952
  }
951
953
  export interface GetDeliverabilityTestReportRequest {
952
954
  ReportId: string | undefined;
953
955
  }
954
956
  export interface PlacementStatistics {
955
- InboxPercentage?: number;
956
- SpamPercentage?: number;
957
- MissingPercentage?: number;
958
- SpfPercentage?: number;
959
- DkimPercentage?: number;
957
+ InboxPercentage?: number | undefined;
958
+ SpamPercentage?: number | undefined;
959
+ MissingPercentage?: number | undefined;
960
+ SpfPercentage?: number | undefined;
961
+ DkimPercentage?: number | undefined;
960
962
  }
961
963
  export interface IspPlacement {
962
- IspName?: string;
963
- PlacementStatistics?: PlacementStatistics;
964
+ IspName?: string | undefined;
965
+ PlacementStatistics?: PlacementStatistics | undefined;
964
966
  }
965
967
  export interface GetDeliverabilityTestReportResponse {
966
968
  DeliverabilityTestReport: DeliverabilityTestReport | undefined;
967
969
  OverallPlacement: PlacementStatistics | undefined;
968
970
  IspPlacements: IspPlacement[] | undefined;
969
- Message?: string;
970
- Tags?: Tag[];
971
+ Message?: string | undefined;
972
+ Tags?: Tag[] | undefined;
971
973
  }
972
974
  export interface GetDomainDeliverabilityCampaignRequest {
973
975
  CampaignId: string | undefined;
@@ -981,9 +983,9 @@ export interface GetDomainStatisticsReportRequest {
981
983
  EndDate: Date | undefined;
982
984
  }
983
985
  export interface OverallVolume {
984
- VolumeStatistics?: VolumeStatistics;
985
- ReadRatePercent?: number;
986
- DomainIspPlacements?: DomainIspPlacement[];
986
+ VolumeStatistics?: VolumeStatistics | undefined;
987
+ ReadRatePercent?: number | undefined;
988
+ DomainIspPlacements?: DomainIspPlacement[] | undefined;
987
989
  }
988
990
  export interface GetDomainStatisticsReportResponse {
989
991
  OverallVolume: OverallVolume | undefined;
@@ -1015,15 +1017,15 @@ export declare const VerificationError: {
1015
1017
  export type VerificationError =
1016
1018
  (typeof VerificationError)[keyof typeof VerificationError];
1017
1019
  export interface SOARecord {
1018
- PrimaryNameServer?: string;
1019
- AdminEmail?: string;
1020
- SerialNumber?: number;
1020
+ PrimaryNameServer?: string | undefined;
1021
+ AdminEmail?: string | undefined;
1022
+ SerialNumber?: number | undefined;
1021
1023
  }
1022
1024
  export interface VerificationInfo {
1023
- LastCheckedTimestamp?: Date;
1024
- LastSuccessTimestamp?: Date;
1025
- ErrorType?: VerificationError;
1026
- SOARecord?: SOARecord;
1025
+ LastCheckedTimestamp?: Date | undefined;
1026
+ LastSuccessTimestamp?: Date | undefined;
1027
+ ErrorType?: VerificationError | undefined;
1028
+ SOARecord?: SOARecord | undefined;
1027
1029
  }
1028
1030
  export declare const VerificationStatus: {
1029
1031
  readonly FAILED: "FAILED";
@@ -1035,22 +1037,22 @@ export declare const VerificationStatus: {
1035
1037
  export type VerificationStatus =
1036
1038
  (typeof VerificationStatus)[keyof typeof VerificationStatus];
1037
1039
  export interface GetEmailIdentityResponse {
1038
- IdentityType?: IdentityType;
1039
- FeedbackForwardingStatus?: boolean;
1040
- VerifiedForSendingStatus?: boolean;
1041
- DkimAttributes?: DkimAttributes;
1042
- MailFromAttributes?: MailFromAttributes;
1043
- Policies?: Record<string, string>;
1044
- Tags?: Tag[];
1045
- ConfigurationSetName?: string;
1046
- VerificationStatus?: VerificationStatus;
1047
- VerificationInfo?: VerificationInfo;
1040
+ IdentityType?: IdentityType | undefined;
1041
+ FeedbackForwardingStatus?: boolean | undefined;
1042
+ VerifiedForSendingStatus?: boolean | undefined;
1043
+ DkimAttributes?: DkimAttributes | undefined;
1044
+ MailFromAttributes?: MailFromAttributes | undefined;
1045
+ Policies?: Record<string, string> | undefined;
1046
+ Tags?: Tag[] | undefined;
1047
+ ConfigurationSetName?: string | undefined;
1048
+ VerificationStatus?: VerificationStatus | undefined;
1049
+ VerificationInfo?: VerificationInfo | undefined;
1048
1050
  }
1049
1051
  export interface GetEmailIdentityPoliciesRequest {
1050
1052
  EmailIdentity: string | undefined;
1051
1053
  }
1052
1054
  export interface GetEmailIdentityPoliciesResponse {
1053
- Policies?: Record<string, string>;
1055
+ Policies?: Record<string, string> | undefined;
1054
1056
  }
1055
1057
  export interface GetEmailTemplateRequest {
1056
1058
  TemplateName: string | undefined;
@@ -1063,61 +1065,61 @@ export interface GetExportJobRequest {
1063
1065
  JobId: string | undefined;
1064
1066
  }
1065
1067
  export interface GetExportJobResponse {
1066
- JobId?: string;
1067
- ExportSourceType?: ExportSourceType;
1068
- JobStatus?: JobStatus;
1069
- ExportDestination?: ExportDestination;
1070
- ExportDataSource?: ExportDataSource;
1071
- CreatedTimestamp?: Date;
1072
- CompletedTimestamp?: Date;
1073
- FailureInfo?: FailureInfo;
1074
- Statistics?: ExportStatistics;
1068
+ JobId?: string | undefined;
1069
+ ExportSourceType?: ExportSourceType | undefined;
1070
+ JobStatus?: JobStatus | undefined;
1071
+ ExportDestination?: ExportDestination | undefined;
1072
+ ExportDataSource?: ExportDataSource | undefined;
1073
+ CreatedTimestamp?: Date | undefined;
1074
+ CompletedTimestamp?: Date | undefined;
1075
+ FailureInfo?: FailureInfo | undefined;
1076
+ Statistics?: ExportStatistics | undefined;
1075
1077
  }
1076
1078
  export interface GetImportJobRequest {
1077
1079
  JobId: string | undefined;
1078
1080
  }
1079
1081
  export interface GetImportJobResponse {
1080
- JobId?: string;
1081
- ImportDestination?: ImportDestination;
1082
- ImportDataSource?: ImportDataSource;
1083
- FailureInfo?: FailureInfo;
1084
- JobStatus?: JobStatus;
1085
- CreatedTimestamp?: Date;
1086
- CompletedTimestamp?: Date;
1087
- ProcessedRecordsCount?: number;
1088
- FailedRecordsCount?: number;
1082
+ JobId?: string | undefined;
1083
+ ImportDestination?: ImportDestination | undefined;
1084
+ ImportDataSource?: ImportDataSource | undefined;
1085
+ FailureInfo?: FailureInfo | undefined;
1086
+ JobStatus?: JobStatus | undefined;
1087
+ CreatedTimestamp?: Date | undefined;
1088
+ CompletedTimestamp?: Date | undefined;
1089
+ ProcessedRecordsCount?: number | undefined;
1090
+ FailedRecordsCount?: number | undefined;
1089
1091
  }
1090
1092
  export interface GetMessageInsightsRequest {
1091
1093
  MessageId: string | undefined;
1092
1094
  }
1093
1095
  export interface GetMessageInsightsResponse {
1094
- MessageId?: string;
1095
- FromEmailAddress?: string;
1096
- Subject?: string;
1097
- EmailTags?: MessageTag[];
1098
- Insights?: EmailInsights[];
1096
+ MessageId?: string | undefined;
1097
+ FromEmailAddress?: string | undefined;
1098
+ Subject?: string | undefined;
1099
+ EmailTags?: MessageTag[] | undefined;
1100
+ Insights?: EmailInsights[] | undefined;
1099
1101
  }
1100
1102
  export interface GetSuppressedDestinationRequest {
1101
1103
  EmailAddress: string | undefined;
1102
1104
  }
1103
1105
  export interface SuppressedDestinationAttributes {
1104
- MessageId?: string;
1105
- FeedbackId?: string;
1106
+ MessageId?: string | undefined;
1107
+ FeedbackId?: string | undefined;
1106
1108
  }
1107
1109
  export interface SuppressedDestination {
1108
1110
  EmailAddress: string | undefined;
1109
1111
  Reason: SuppressionListReason | undefined;
1110
1112
  LastUpdateTime: Date | undefined;
1111
- Attributes?: SuppressedDestinationAttributes;
1113
+ Attributes?: SuppressedDestinationAttributes | undefined;
1112
1114
  }
1113
1115
  export interface GetSuppressedDestinationResponse {
1114
1116
  SuppressedDestination: SuppressedDestination | undefined;
1115
1117
  }
1116
1118
  export interface IdentityInfo {
1117
- IdentityType?: IdentityType;
1118
- IdentityName?: string;
1119
- SendingEnabled?: boolean;
1120
- VerificationStatus?: VerificationStatus;
1119
+ IdentityType?: IdentityType | undefined;
1120
+ IdentityName?: string | undefined;
1121
+ SendingEnabled?: boolean | undefined;
1122
+ VerificationStatus?: VerificationStatus | undefined;
1121
1123
  }
1122
1124
  export declare const ImportDestinationType: {
1123
1125
  readonly CONTACT_LIST: "CONTACT_LIST";
@@ -1126,12 +1128,12 @@ export declare const ImportDestinationType: {
1126
1128
  export type ImportDestinationType =
1127
1129
  (typeof ImportDestinationType)[keyof typeof ImportDestinationType];
1128
1130
  export interface ImportJobSummary {
1129
- JobId?: string;
1130
- ImportDestination?: ImportDestination;
1131
- JobStatus?: JobStatus;
1132
- CreatedTimestamp?: Date;
1133
- ProcessedRecordsCount?: number;
1134
- FailedRecordsCount?: number;
1131
+ JobId?: string | undefined;
1132
+ ImportDestination?: ImportDestination | undefined;
1133
+ JobStatus?: JobStatus | undefined;
1134
+ CreatedTimestamp?: Date | undefined;
1135
+ ProcessedRecordsCount?: number | undefined;
1136
+ FailedRecordsCount?: number | undefined;
1135
1137
  }
1136
1138
  export declare class InvalidNextTokenException extends __BaseException {
1137
1139
  readonly name: "InvalidNextTokenException";
@@ -1141,112 +1143,114 @@ export declare class InvalidNextTokenException extends __BaseException {
1141
1143
  );
1142
1144
  }
1143
1145
  export interface ListConfigurationSetsRequest {
1144
- NextToken?: string;
1145
- PageSize?: number;
1146
+ NextToken?: string | undefined;
1147
+ PageSize?: number | undefined;
1146
1148
  }
1147
1149
  export interface ListConfigurationSetsResponse {
1148
- ConfigurationSets?: string[];
1149
- NextToken?: string;
1150
+ ConfigurationSets?: string[] | undefined;
1151
+ NextToken?: string | undefined;
1150
1152
  }
1151
1153
  export interface ListContactListsRequest {
1152
- PageSize?: number;
1153
- NextToken?: string;
1154
+ PageSize?: number | undefined;
1155
+ NextToken?: string | undefined;
1154
1156
  }
1155
1157
  export interface ListContactListsResponse {
1156
- ContactLists?: ContactList[];
1157
- NextToken?: string;
1158
+ ContactLists?: ContactList[] | undefined;
1159
+ NextToken?: string | undefined;
1158
1160
  }
1159
1161
  export interface TopicFilter {
1160
- TopicName?: string;
1161
- UseDefaultIfPreferenceUnavailable?: boolean;
1162
+ TopicName?: string | undefined;
1163
+ UseDefaultIfPreferenceUnavailable?: boolean | undefined;
1162
1164
  }
1163
1165
  export interface ListContactsFilter {
1164
- FilteredStatus?: SubscriptionStatus;
1165
- TopicFilter?: TopicFilter;
1166
+ FilteredStatus?: SubscriptionStatus | undefined;
1167
+ TopicFilter?: TopicFilter | undefined;
1166
1168
  }
1167
1169
  export interface ListContactsRequest {
1168
1170
  ContactListName: string | undefined;
1169
- Filter?: ListContactsFilter;
1170
- PageSize?: number;
1171
- NextToken?: string;
1171
+ Filter?: ListContactsFilter | undefined;
1172
+ PageSize?: number | undefined;
1173
+ NextToken?: string | undefined;
1172
1174
  }
1173
1175
  export interface ListContactsResponse {
1174
- Contacts?: Contact[];
1175
- NextToken?: string;
1176
+ Contacts?: Contact[] | undefined;
1177
+ NextToken?: string | undefined;
1176
1178
  }
1177
1179
  export interface ListCustomVerificationEmailTemplatesRequest {
1178
- NextToken?: string;
1179
- PageSize?: number;
1180
+ NextToken?: string | undefined;
1181
+ PageSize?: number | undefined;
1180
1182
  }
1181
1183
  export interface ListCustomVerificationEmailTemplatesResponse {
1182
- CustomVerificationEmailTemplates?: CustomVerificationEmailTemplateMetadata[];
1183
- NextToken?: string;
1184
+ CustomVerificationEmailTemplates?:
1185
+ | CustomVerificationEmailTemplateMetadata[]
1186
+ | undefined;
1187
+ NextToken?: string | undefined;
1184
1188
  }
1185
1189
  export interface ListDedicatedIpPoolsRequest {
1186
- NextToken?: string;
1187
- PageSize?: number;
1190
+ NextToken?: string | undefined;
1191
+ PageSize?: number | undefined;
1188
1192
  }
1189
1193
  export interface ListDedicatedIpPoolsResponse {
1190
- DedicatedIpPools?: string[];
1191
- NextToken?: string;
1194
+ DedicatedIpPools?: string[] | undefined;
1195
+ NextToken?: string | undefined;
1192
1196
  }
1193
1197
  export interface ListDeliverabilityTestReportsRequest {
1194
- NextToken?: string;
1195
- PageSize?: number;
1198
+ NextToken?: string | undefined;
1199
+ PageSize?: number | undefined;
1196
1200
  }
1197
1201
  export interface ListDeliverabilityTestReportsResponse {
1198
1202
  DeliverabilityTestReports: DeliverabilityTestReport[] | undefined;
1199
- NextToken?: string;
1203
+ NextToken?: string | undefined;
1200
1204
  }
1201
1205
  export interface ListDomainDeliverabilityCampaignsRequest {
1202
1206
  StartDate: Date | undefined;
1203
1207
  EndDate: Date | undefined;
1204
1208
  SubscribedDomain: string | undefined;
1205
- NextToken?: string;
1206
- PageSize?: number;
1209
+ NextToken?: string | undefined;
1210
+ PageSize?: number | undefined;
1207
1211
  }
1208
1212
  export interface ListDomainDeliverabilityCampaignsResponse {
1209
1213
  DomainDeliverabilityCampaigns: DomainDeliverabilityCampaign[] | undefined;
1210
- NextToken?: string;
1214
+ NextToken?: string | undefined;
1211
1215
  }
1212
1216
  export interface ListEmailIdentitiesRequest {
1213
- NextToken?: string;
1214
- PageSize?: number;
1217
+ NextToken?: string | undefined;
1218
+ PageSize?: number | undefined;
1215
1219
  }
1216
1220
  export interface ListEmailIdentitiesResponse {
1217
- EmailIdentities?: IdentityInfo[];
1218
- NextToken?: string;
1221
+ EmailIdentities?: IdentityInfo[] | undefined;
1222
+ NextToken?: string | undefined;
1219
1223
  }
1220
1224
  export interface ListEmailTemplatesRequest {
1221
- NextToken?: string;
1222
- PageSize?: number;
1225
+ NextToken?: string | undefined;
1226
+ PageSize?: number | undefined;
1223
1227
  }
1224
1228
  export interface ListEmailTemplatesResponse {
1225
- TemplatesMetadata?: EmailTemplateMetadata[];
1226
- NextToken?: string;
1229
+ TemplatesMetadata?: EmailTemplateMetadata[] | undefined;
1230
+ NextToken?: string | undefined;
1227
1231
  }
1228
1232
  export interface ListExportJobsRequest {
1229
- NextToken?: string;
1230
- PageSize?: number;
1231
- ExportSourceType?: ExportSourceType;
1232
- JobStatus?: JobStatus;
1233
+ NextToken?: string | undefined;
1234
+ PageSize?: number | undefined;
1235
+ ExportSourceType?: ExportSourceType | undefined;
1236
+ JobStatus?: JobStatus | undefined;
1233
1237
  }
1234
1238
  export interface ListExportJobsResponse {
1235
- ExportJobs?: ExportJobSummary[];
1236
- NextToken?: string;
1239
+ ExportJobs?: ExportJobSummary[] | undefined;
1240
+ NextToken?: string | undefined;
1237
1241
  }
1238
1242
  export interface ListImportJobsRequest {
1239
- ImportDestinationType?: ImportDestinationType;
1240
- NextToken?: string;
1241
- PageSize?: number;
1243
+ ImportDestinationType?: ImportDestinationType | undefined;
1244
+ NextToken?: string | undefined;
1245
+ PageSize?: number | undefined;
1242
1246
  }
1243
1247
  export interface ListImportJobsResponse {
1244
- ImportJobs?: ImportJobSummary[];
1245
- NextToken?: string;
1248
+ ImportJobs?: ImportJobSummary[] | undefined;
1249
+ NextToken?: string | undefined;
1246
1250
  }
1247
1251
  export interface ListManagementOptions {
1248
1252
  ContactListName: string | undefined;
1249
- TopicName?: string;
1253
+ TopicName?: string | undefined;
1250
1254
  }
1251
1255
  export declare const ListRecommendationsFilterKey: {
1252
1256
  readonly IMPACT: "IMPACT";
@@ -1257,9 +1261,9 @@ export declare const ListRecommendationsFilterKey: {
1257
1261
  export type ListRecommendationsFilterKey =
1258
1262
  (typeof ListRecommendationsFilterKey)[keyof typeof ListRecommendationsFilterKey];
1259
1263
  export interface ListRecommendationsRequest {
1260
- Filter?: Partial<Record<ListRecommendationsFilterKey, string>>;
1261
- NextToken?: string;
1262
- PageSize?: number;
1264
+ Filter?: Partial<Record<ListRecommendationsFilterKey, string>> | undefined;
1265
+ NextToken?: string | undefined;
1266
+ PageSize?: number | undefined;
1263
1267
  }
1264
1268
  export declare const RecommendationImpact: {
1265
1269
  readonly HIGH: "HIGH";
@@ -1282,24 +1286,24 @@ export declare const RecommendationType: {
1282
1286
  export type RecommendationType =
1283
1287
  (typeof RecommendationType)[keyof typeof RecommendationType];
1284
1288
  export interface Recommendation {
1285
- ResourceArn?: string;
1286
- Type?: RecommendationType;
1287
- Description?: string;
1288
- Status?: RecommendationStatus;
1289
- CreatedTimestamp?: Date;
1290
- LastUpdatedTimestamp?: Date;
1291
- Impact?: RecommendationImpact;
1289
+ ResourceArn?: string | undefined;
1290
+ Type?: RecommendationType | undefined;
1291
+ Description?: string | undefined;
1292
+ Status?: RecommendationStatus | undefined;
1293
+ CreatedTimestamp?: Date | undefined;
1294
+ LastUpdatedTimestamp?: Date | undefined;
1295
+ Impact?: RecommendationImpact | undefined;
1292
1296
  }
1293
1297
  export interface ListRecommendationsResponse {
1294
- Recommendations?: Recommendation[];
1295
- NextToken?: string;
1298
+ Recommendations?: Recommendation[] | undefined;
1299
+ NextToken?: string | undefined;
1296
1300
  }
1297
1301
  export interface ListSuppressedDestinationsRequest {
1298
- Reasons?: SuppressionListReason[];
1299
- StartDate?: Date;
1300
- EndDate?: Date;
1301
- NextToken?: string;
1302
- PageSize?: number;
1302
+ Reasons?: SuppressionListReason[] | undefined;
1303
+ StartDate?: Date | undefined;
1304
+ EndDate?: Date | undefined;
1305
+ NextToken?: string | undefined;
1306
+ PageSize?: number | undefined;
1303
1307
  }
1304
1308
  export interface SuppressedDestinationSummary {
1305
1309
  EmailAddress: string | undefined;
@@ -1307,8 +1311,8 @@ export interface SuppressedDestinationSummary {
1307
1311
  LastUpdateTime: Date | undefined;
1308
1312
  }
1309
1313
  export interface ListSuppressedDestinationsResponse {
1310
- SuppressedDestinationSummaries?: SuppressedDestinationSummary[];
1311
- NextToken?: string;
1314
+ SuppressedDestinationSummaries?: SuppressedDestinationSummary[] | undefined;
1315
+ NextToken?: string | undefined;
1312
1316
  }
1313
1317
  export interface ListTagsForResourceRequest {
1314
1318
  ResourceArn: string | undefined;
@@ -1317,24 +1321,24 @@ export interface ListTagsForResourceResponse {
1317
1321
  Tags: Tag[] | undefined;
1318
1322
  }
1319
1323
  export interface PutAccountDedicatedIpWarmupAttributesRequest {
1320
- AutoWarmupEnabled?: boolean;
1324
+ AutoWarmupEnabled?: boolean | undefined;
1321
1325
  }
1322
1326
  export interface PutAccountDedicatedIpWarmupAttributesResponse {}
1323
1327
  export interface PutAccountDetailsRequest {
1324
1328
  MailType: MailType | undefined;
1325
1329
  WebsiteURL: string | undefined;
1326
- ContactLanguage?: ContactLanguage;
1327
- UseCaseDescription?: string;
1328
- AdditionalContactEmailAddresses?: string[];
1329
- ProductionAccessEnabled?: boolean;
1330
+ ContactLanguage?: ContactLanguage | undefined;
1331
+ UseCaseDescription?: string | undefined;
1332
+ AdditionalContactEmailAddresses?: string[] | undefined;
1333
+ ProductionAccessEnabled?: boolean | undefined;
1330
1334
  }
1331
1335
  export interface PutAccountDetailsResponse {}
1332
1336
  export interface PutAccountSendingAttributesRequest {
1333
- SendingEnabled?: boolean;
1337
+ SendingEnabled?: boolean | undefined;
1334
1338
  }
1335
1339
  export interface PutAccountSendingAttributesResponse {}
1336
1340
  export interface PutAccountSuppressionAttributesRequest {
1337
- SuppressedReasons?: SuppressionListReason[];
1341
+ SuppressedReasons?: SuppressionListReason[] | undefined;
1338
1342
  }
1339
1343
  export interface PutAccountSuppressionAttributesResponse {}
1340
1344
  export interface PutAccountVdmAttributesRequest {
@@ -1343,35 +1347,35 @@ export interface PutAccountVdmAttributesRequest {
1343
1347
  export interface PutAccountVdmAttributesResponse {}
1344
1348
  export interface PutConfigurationSetDeliveryOptionsRequest {
1345
1349
  ConfigurationSetName: string | undefined;
1346
- TlsPolicy?: TlsPolicy;
1347
- SendingPoolName?: string;
1348
- MaxDeliverySeconds?: number;
1350
+ TlsPolicy?: TlsPolicy | undefined;
1351
+ SendingPoolName?: string | undefined;
1352
+ MaxDeliverySeconds?: number | undefined;
1349
1353
  }
1350
1354
  export interface PutConfigurationSetDeliveryOptionsResponse {}
1351
1355
  export interface PutConfigurationSetReputationOptionsRequest {
1352
1356
  ConfigurationSetName: string | undefined;
1353
- ReputationMetricsEnabled?: boolean;
1357
+ ReputationMetricsEnabled?: boolean | undefined;
1354
1358
  }
1355
1359
  export interface PutConfigurationSetReputationOptionsResponse {}
1356
1360
  export interface PutConfigurationSetSendingOptionsRequest {
1357
1361
  ConfigurationSetName: string | undefined;
1358
- SendingEnabled?: boolean;
1362
+ SendingEnabled?: boolean | undefined;
1359
1363
  }
1360
1364
  export interface PutConfigurationSetSendingOptionsResponse {}
1361
1365
  export interface PutConfigurationSetSuppressionOptionsRequest {
1362
1366
  ConfigurationSetName: string | undefined;
1363
- SuppressedReasons?: SuppressionListReason[];
1367
+ SuppressedReasons?: SuppressionListReason[] | undefined;
1364
1368
  }
1365
1369
  export interface PutConfigurationSetSuppressionOptionsResponse {}
1366
1370
  export interface PutConfigurationSetTrackingOptionsRequest {
1367
1371
  ConfigurationSetName: string | undefined;
1368
- CustomRedirectDomain?: string;
1369
- HttpsPolicy?: HttpsPolicy;
1372
+ CustomRedirectDomain?: string | undefined;
1373
+ HttpsPolicy?: HttpsPolicy | undefined;
1370
1374
  }
1371
1375
  export interface PutConfigurationSetTrackingOptionsResponse {}
1372
1376
  export interface PutConfigurationSetVdmOptionsRequest {
1373
1377
  ConfigurationSetName: string | undefined;
1374
- VdmOptions?: VdmOptions;
1378
+ VdmOptions?: VdmOptions | undefined;
1375
1379
  }
1376
1380
  export interface PutConfigurationSetVdmOptionsResponse {}
1377
1381
  export interface PutDedicatedIpInPoolRequest {
@@ -1391,23 +1395,23 @@ export interface PutDedicatedIpWarmupAttributesRequest {
1391
1395
  export interface PutDedicatedIpWarmupAttributesResponse {}
1392
1396
  export interface PutDeliverabilityDashboardOptionRequest {
1393
1397
  DashboardEnabled: boolean | undefined;
1394
- SubscribedDomains?: DomainDeliverabilityTrackingOption[];
1398
+ SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
1395
1399
  }
1396
1400
  export interface PutDeliverabilityDashboardOptionResponse {}
1397
1401
  export interface PutEmailIdentityConfigurationSetAttributesRequest {
1398
1402
  EmailIdentity: string | undefined;
1399
- ConfigurationSetName?: string;
1403
+ ConfigurationSetName?: string | undefined;
1400
1404
  }
1401
1405
  export interface PutEmailIdentityConfigurationSetAttributesResponse {}
1402
1406
  export interface PutEmailIdentityDkimAttributesRequest {
1403
1407
  EmailIdentity: string | undefined;
1404
- SigningEnabled?: boolean;
1408
+ SigningEnabled?: boolean | undefined;
1405
1409
  }
1406
1410
  export interface PutEmailIdentityDkimAttributesResponse {}
1407
1411
  export interface PutEmailIdentityDkimSigningAttributesRequest {
1408
1412
  EmailIdentity: string | undefined;
1409
1413
  SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
1410
- SigningAttributes?: DkimSigningAttributes;
1414
+ SigningAttributes?: DkimSigningAttributes | undefined;
1411
1415
  }
1412
1416
  export declare const AccountDetailsFilterSensitiveLog: (
1413
1417
  obj: AccountDetails