@aws-sdk/client-sesv2 3.687.0 → 3.691.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.
@@ -70,12 +70,12 @@ export interface ReviewDetails {
70
70
  * </ul>
71
71
  * @public
72
72
  */
73
- Status?: ReviewStatus;
73
+ Status?: ReviewStatus | undefined;
74
74
  /**
75
75
  * <p>The associated support center case ID (if any).</p>
76
76
  * @public
77
77
  */
78
- CaseId?: string;
78
+ CaseId?: string | undefined;
79
79
  }
80
80
  /**
81
81
  * <p>An object that contains information about your account details.</p>
@@ -99,37 +99,37 @@ export interface AccountDetails {
99
99
  * </ul>
100
100
  * @public
101
101
  */
102
- MailType?: MailType;
102
+ MailType?: MailType | undefined;
103
103
  /**
104
104
  * <p>The URL of your website. This information helps us better understand the type of
105
105
  * content that you plan to send.</p>
106
106
  * @public
107
107
  */
108
- WebsiteURL?: string;
108
+ WebsiteURL?: string | undefined;
109
109
  /**
110
110
  * <p>The language you would prefer for the case. The contact language can be one of
111
111
  * <code>ENGLISH</code> or <code>JAPANESE</code>.</p>
112
112
  * @public
113
113
  */
114
- ContactLanguage?: ContactLanguage;
114
+ ContactLanguage?: ContactLanguage | undefined;
115
115
  /**
116
116
  * @deprecated
117
117
  *
118
118
  * <p>A description of the types of email that you plan to send.</p>
119
119
  * @public
120
120
  */
121
- UseCaseDescription?: string;
121
+ UseCaseDescription?: string | undefined;
122
122
  /**
123
123
  * <p>Additional email addresses where updates are sent about your account review
124
124
  * process.</p>
125
125
  * @public
126
126
  */
127
- AdditionalContactEmailAddresses?: string[];
127
+ AdditionalContactEmailAddresses?: string[] | undefined;
128
128
  /**
129
129
  * <p>Information about the review of the latest details you submitted.</p>
130
130
  * @public
131
131
  */
132
- ReviewDetails?: ReviewDetails;
132
+ ReviewDetails?: ReviewDetails | undefined;
133
133
  }
134
134
  /**
135
135
  * <p>The message can't be sent because the account's ability to send email has been
@@ -301,7 +301,7 @@ export interface BatchGetMetricDataQuery {
301
301
  * and <code>MetricDimensionValue</code> to filter metrics by.</p>
302
302
  * @public
303
303
  */
304
- Dimensions?: Partial<Record<MetricDimensionName, string>>;
304
+ Dimensions?: Partial<Record<MetricDimensionName, string>> | undefined;
305
305
  /**
306
306
  * <p>Represents the start date for the query interval.</p>
307
307
  * @public
@@ -345,7 +345,7 @@ export interface MetricDataError {
345
345
  * <p>The query identifier.</p>
346
346
  * @public
347
347
  */
348
- Id?: string;
348
+ Id?: string | undefined;
349
349
  /**
350
350
  * <p>The query error code. Can be one of:</p>
351
351
  * <ul>
@@ -361,12 +361,12 @@ export interface MetricDataError {
361
361
  * </ul>
362
362
  * @public
363
363
  */
364
- Code?: QueryErrorCode;
364
+ Code?: QueryErrorCode | undefined;
365
365
  /**
366
366
  * <p>The error message associated with the current query error.</p>
367
367
  * @public
368
368
  */
369
- Message?: string;
369
+ Message?: string | undefined;
370
370
  }
371
371
  /**
372
372
  * <p>The result of a single metric data query.</p>
@@ -377,17 +377,17 @@ export interface MetricDataResult {
377
377
  * <p>The query identifier.</p>
378
378
  * @public
379
379
  */
380
- Id?: string;
380
+ Id?: string | undefined;
381
381
  /**
382
382
  * <p>A list of timestamps for the metric data results.</p>
383
383
  * @public
384
384
  */
385
- Timestamps?: Date[];
385
+ Timestamps?: Date[] | undefined;
386
386
  /**
387
387
  * <p>A list of values (cumulative / sum) for the metric data results.</p>
388
388
  * @public
389
389
  */
390
- Values?: number[];
390
+ Values?: number[] | undefined;
391
391
  }
392
392
  /**
393
393
  * <p>Represents the result of processing your metric data batch request</p>
@@ -398,12 +398,12 @@ export interface BatchGetMetricDataResponse {
398
398
  * <p>A list of successfully retrieved <code>MetricDataResult</code>.</p>
399
399
  * @public
400
400
  */
401
- Results?: MetricDataResult[];
401
+ Results?: MetricDataResult[] | undefined;
402
402
  /**
403
403
  * <p>A list of <code>MetricDataError</code> encountered while processing your metric data batch request.</p>
404
404
  * @public
405
405
  */
406
- Errors?: MetricDataError[];
406
+ Errors?: MetricDataError[] | undefined;
407
407
  }
408
408
  /**
409
409
  * <p>The request couldn't be processed because an error occurred with the Amazon SES API v2.</p>
@@ -463,18 +463,18 @@ export interface BlacklistEntry {
463
463
  * <p>The name of the blacklist that the IP address appears on.</p>
464
464
  * @public
465
465
  */
466
- RblName?: string;
466
+ RblName?: string | undefined;
467
467
  /**
468
468
  * <p>The time when the blacklisting event occurred.</p>
469
469
  * @public
470
470
  */
471
- ListingTime?: Date;
471
+ ListingTime?: Date | undefined;
472
472
  /**
473
473
  * <p>Additional information about the blacklisting event, as provided by the blacklist
474
474
  * maintainer.</p>
475
475
  * @public
476
476
  */
477
- Description?: string;
477
+ Description?: string | undefined;
478
478
  }
479
479
  /**
480
480
  * <p>An object that represents the content of the email, and optionally a character set
@@ -494,7 +494,7 @@ export interface Content {
494
494
  * <code>UTF-8</code>, <code>ISO-8859-1</code>, or <code>Shift_JIS</code>.</p>
495
495
  * @public
496
496
  */
497
- Charset?: string;
497
+ Charset?: string | undefined;
498
498
  }
499
499
  /**
500
500
  * <p>Represents the body of the email message.</p>
@@ -507,14 +507,14 @@ export interface Body {
507
507
  * rendering.</p>
508
508
  * @public
509
509
  */
510
- Text?: Content;
510
+ Text?: Content | undefined;
511
511
  /**
512
512
  * <p>An object that represents the version of the message that is displayed in email
513
513
  * clients that support HTML. HTML messages can include formatted text, hyperlinks, images,
514
514
  * and more. </p>
515
515
  * @public
516
516
  */
517
- Html?: Content;
517
+ Html?: Content | undefined;
518
518
  }
519
519
  /**
520
520
  * @public
@@ -540,12 +540,12 @@ export interface Bounce {
540
540
  * </p>
541
541
  * @public
542
542
  */
543
- BounceType?: BounceType;
543
+ BounceType?: BounceType | undefined;
544
544
  /**
545
545
  * <p>The subtype of the bounce, as determined by SES.</p>
546
546
  * @public
547
547
  */
548
- BounceSubType?: string;
548
+ BounceSubType?: string | undefined;
549
549
  /**
550
550
  * <p>The status code issued by the reporting Message Transfer Authority (MTA).
551
551
  * This field only appears if a delivery status notification (DSN) was attached to the bounce
@@ -553,7 +553,7 @@ export interface Bounce {
553
553
  * </p>
554
554
  * @public
555
555
  */
556
- DiagnosticCode?: string;
556
+ DiagnosticCode?: string | undefined;
557
557
  }
558
558
  /**
559
559
  * <p>Contains the name and value of a message header that you add to an email.</p>
@@ -599,18 +599,18 @@ export interface EmailTemplateContent {
599
599
  * <p>The subject line of the email.</p>
600
600
  * @public
601
601
  */
602
- Subject?: string;
602
+ Subject?: string | undefined;
603
603
  /**
604
604
  * <p>The email body that will be visible to recipients whose email clients do not display
605
605
  * HTML.</p>
606
606
  * @public
607
607
  */
608
- Text?: string;
608
+ Text?: string | undefined;
609
609
  /**
610
610
  * <p>The HTML body of the email.</p>
611
611
  * @public
612
612
  */
613
- Html?: string;
613
+ Html?: string | undefined;
614
614
  }
615
615
  /**
616
616
  * <p>An object that defines the email template to use for an email message, and the values
@@ -628,12 +628,12 @@ export interface Template {
628
628
  * </p>
629
629
  * @public
630
630
  */
631
- TemplateName?: string;
631
+ TemplateName?: string | undefined;
632
632
  /**
633
633
  * <p>The Amazon Resource Name (ARN) of the template.</p>
634
634
  * @public
635
635
  */
636
- TemplateArn?: string;
636
+ TemplateArn?: string | undefined;
637
637
  /**
638
638
  * <p>The content of the template.</p>
639
639
  * <note>
@@ -643,19 +643,19 @@ export interface Template {
643
643
  * </note>
644
644
  * @public
645
645
  */
646
- TemplateContent?: EmailTemplateContent;
646
+ TemplateContent?: EmailTemplateContent | undefined;
647
647
  /**
648
648
  * <p>An object that defines the values to use for message variables in the template. This
649
649
  * object is a set of key-value pairs. Each key defines a message variable in the template.
650
650
  * The corresponding value defines the value to use for that variable.</p>
651
651
  * @public
652
652
  */
653
- TemplateData?: string;
653
+ TemplateData?: string | undefined;
654
654
  /**
655
655
  * <p>The list of message headers that will be added to the email message.</p>
656
656
  * @public
657
657
  */
658
- Headers?: MessageHeader[];
658
+ Headers?: MessageHeader[] | undefined;
659
659
  }
660
660
  /**
661
661
  * <p>An object that contains the body of the message. You can specify a template
@@ -667,7 +667,7 @@ export interface BulkEmailContent {
667
667
  * <p>The template to use for the bulk email message.</p>
668
668
  * @public
669
669
  */
670
- Template?: Template;
670
+ Template?: Template | undefined;
671
671
  }
672
672
  /**
673
673
  * <p>An object that describes the recipients for an email.</p>
@@ -687,19 +687,19 @@ export interface Destination {
687
687
  * email.</p>
688
688
  * @public
689
689
  */
690
- ToAddresses?: string[];
690
+ ToAddresses?: string[] | undefined;
691
691
  /**
692
692
  * <p>An array that contains the email addresses of the "CC" (carbon copy) recipients for
693
693
  * the email.</p>
694
694
  * @public
695
695
  */
696
- CcAddresses?: string[];
696
+ CcAddresses?: string[] | undefined;
697
697
  /**
698
698
  * <p>An array that contains the email addresses of the "BCC" (blind carbon copy) recipients
699
699
  * for the email.</p>
700
700
  * @public
701
701
  */
702
- BccAddresses?: string[];
702
+ BccAddresses?: string[] | undefined;
703
703
  }
704
704
  /**
705
705
  * <p>An object which contains <code>ReplacementTemplateData</code> to be used for a
@@ -713,7 +713,7 @@ export interface ReplacementTemplate {
713
713
  * replacement tags in the email template.</p>
714
714
  * @public
715
715
  */
716
- ReplacementTemplateData?: string;
716
+ ReplacementTemplateData?: string | undefined;
717
717
  }
718
718
  /**
719
719
  * <p>The <code>ReplaceEmailContent</code> object to be used for a specific
@@ -727,7 +727,7 @@ export interface ReplacementEmailContent {
727
727
  * <code>ReplacementEmailContent</code>.</p>
728
728
  * @public
729
729
  */
730
- ReplacementTemplate?: ReplacementTemplate;
730
+ ReplacementTemplate?: ReplacementTemplate | undefined;
731
731
  }
732
732
  /**
733
733
  * <p>Contains the name and value of a tag that you apply to an email. You can use message
@@ -792,13 +792,13 @@ export interface BulkEmailEntry {
792
792
  * events.</p>
793
793
  * @public
794
794
  */
795
- ReplacementTags?: MessageTag[];
795
+ ReplacementTags?: MessageTag[] | undefined;
796
796
  /**
797
797
  * <p>The <code>ReplacementEmailContent</code> associated with a
798
798
  * <code>BulkEmailEntry</code>.</p>
799
799
  * @public
800
800
  */
801
- ReplacementEmailContent?: ReplacementEmailContent;
801
+ ReplacementEmailContent?: ReplacementEmailContent | undefined;
802
802
  /**
803
803
  * <p>The list of message headers associated with the <code>BulkEmailEntry</code> data type.</p>
804
804
  * <ul>
@@ -831,7 +831,7 @@ export interface BulkEmailEntry {
831
831
  * </ul>
832
832
  * @public
833
833
  */
834
- ReplacementHeaders?: MessageHeader[];
834
+ ReplacementHeaders?: MessageHeader[] | undefined;
835
835
  }
836
836
  /**
837
837
  * @public
@@ -927,19 +927,19 @@ export interface BulkEmailEntryResult {
927
927
  * </ul>
928
928
  * @public
929
929
  */
930
- Status?: BulkEmailStatus;
930
+ Status?: BulkEmailStatus | undefined;
931
931
  /**
932
932
  * <p>A description of an error that prevented a message being sent using the
933
933
  * <code>SendBulkTemplatedEmail</code> operation.</p>
934
934
  * @public
935
935
  */
936
- Error?: string;
936
+ Error?: string | undefined;
937
937
  /**
938
938
  * <p>The unique message identifier returned from the <code>SendBulkTemplatedEmail</code>
939
939
  * operation.</p>
940
940
  * @public
941
941
  */
942
- MessageId?: string;
942
+ MessageId?: string | undefined;
943
943
  }
944
944
  /**
945
945
  * <p>Represents a request to cancel an export job using the export job ID.</p>
@@ -1045,14 +1045,14 @@ export interface Complaint {
1045
1045
  * </p>
1046
1046
  * @public
1047
1047
  */
1048
- ComplaintSubType?: string;
1048
+ ComplaintSubType?: string | undefined;
1049
1049
  /**
1050
1050
  * <p>
1051
1051
  * The value of the <code>Feedback-Type</code> field from the feedback report received from the ISP.
1052
1052
  * </p>
1053
1053
  * @public
1054
1054
  */
1055
- ComplaintFeedbackType?: string;
1055
+ ComplaintFeedbackType?: string | undefined;
1056
1056
  }
1057
1057
  /**
1058
1058
  * <p>The resource is being modified by another operation or thread.</p>
@@ -1116,28 +1116,28 @@ export interface Contact {
1116
1116
  * <p>The contact's email address.</p>
1117
1117
  * @public
1118
1118
  */
1119
- EmailAddress?: string;
1119
+ EmailAddress?: string | undefined;
1120
1120
  /**
1121
1121
  * <p>The contact's preference for being opted-in to or opted-out of a topic.</p>
1122
1122
  * @public
1123
1123
  */
1124
- TopicPreferences?: TopicPreference[];
1124
+ TopicPreferences?: TopicPreference[] | undefined;
1125
1125
  /**
1126
1126
  * <p>The default topic preferences applied to the contact.</p>
1127
1127
  * @public
1128
1128
  */
1129
- TopicDefaultPreferences?: TopicPreference[];
1129
+ TopicDefaultPreferences?: TopicPreference[] | undefined;
1130
1130
  /**
1131
1131
  * <p>A boolean value status noting if the contact is unsubscribed from all contact list
1132
1132
  * topics.</p>
1133
1133
  * @public
1134
1134
  */
1135
- UnsubscribeAll?: boolean;
1135
+ UnsubscribeAll?: boolean | undefined;
1136
1136
  /**
1137
1137
  * <p>A timestamp noting the last time the contact's information was updated.</p>
1138
1138
  * @public
1139
1139
  */
1140
- LastUpdatedTimestamp?: Date;
1140
+ LastUpdatedTimestamp?: Date | undefined;
1141
1141
  }
1142
1142
  /**
1143
1143
  * <p>A list that contains contacts that have subscribed to a particular topic or
@@ -1149,12 +1149,12 @@ export interface ContactList {
1149
1149
  * <p>The name of the contact list.</p>
1150
1150
  * @public
1151
1151
  */
1152
- ContactListName?: string;
1152
+ ContactListName?: string | undefined;
1153
1153
  /**
1154
1154
  * <p>A timestamp noting the last time the contact list was updated.</p>
1155
1155
  * @public
1156
1156
  */
1157
- LastUpdatedTimestamp?: Date;
1157
+ LastUpdatedTimestamp?: Date | undefined;
1158
1158
  }
1159
1159
  /**
1160
1160
  * @public
@@ -1218,12 +1218,12 @@ export interface DeliveryOptions {
1218
1218
  * messages can be delivered in plain text if a TLS connection can't be established.</p>
1219
1219
  * @public
1220
1220
  */
1221
- TlsPolicy?: TlsPolicy;
1221
+ TlsPolicy?: TlsPolicy | undefined;
1222
1222
  /**
1223
1223
  * <p>The name of the dedicated IP pool to associate with the configuration set.</p>
1224
1224
  * @public
1225
1225
  */
1226
- SendingPoolName?: string;
1226
+ SendingPoolName?: string | undefined;
1227
1227
  /**
1228
1228
  * <p>The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email.
1229
1229
  * If specified, the value must greater than or equal to 300 seconds (5 minutes)
@@ -1231,7 +1231,7 @@ export interface DeliveryOptions {
1231
1231
  * </p>
1232
1232
  * @public
1233
1233
  */
1234
- MaxDeliverySeconds?: number;
1234
+ MaxDeliverySeconds?: number | undefined;
1235
1235
  }
1236
1236
  /**
1237
1237
  * <p>Enable or disable collection of reputation metrics for emails that you send using this
@@ -1245,14 +1245,14 @@ export interface ReputationOptions {
1245
1245
  * configuration set.</p>
1246
1246
  * @public
1247
1247
  */
1248
- ReputationMetricsEnabled?: boolean;
1248
+ ReputationMetricsEnabled?: boolean | undefined;
1249
1249
  /**
1250
1250
  * <p>The date and time (in Unix time) when the reputation metrics were last given a fresh
1251
1251
  * start. When your account is given a fresh start, your reputation metrics are calculated
1252
1252
  * starting from the date of the fresh start.</p>
1253
1253
  * @public
1254
1254
  */
1255
- LastFreshStart?: Date;
1255
+ LastFreshStart?: Date | undefined;
1256
1256
  }
1257
1257
  /**
1258
1258
  * <p>Used to enable or disable email sending for messages that use this configuration set
@@ -1265,7 +1265,7 @@ export interface SendingOptions {
1265
1265
  * <code>false</code>, email sending is disabled for the configuration set.</p>
1266
1266
  * @public
1267
1267
  */
1268
- SendingEnabled?: boolean;
1268
+ SendingEnabled?: boolean | undefined;
1269
1269
  }
1270
1270
  /**
1271
1271
  * @public
@@ -1305,7 +1305,7 @@ export interface SuppressionOptions {
1305
1305
  * </ul>
1306
1306
  * @public
1307
1307
  */
1308
- SuppressedReasons?: SuppressionListReason[];
1308
+ SuppressedReasons?: SuppressionListReason[] | undefined;
1309
1309
  }
1310
1310
  /**
1311
1311
  * <p>An object that defines the tags that are associated with a resource.
@@ -1392,7 +1392,7 @@ export interface TrackingOptions {
1392
1392
  * <p>The https policy to use for tracking open and click events.</p>
1393
1393
  * @public
1394
1394
  */
1395
- HttpsPolicy?: HttpsPolicy;
1395
+ HttpsPolicy?: HttpsPolicy | undefined;
1396
1396
  }
1397
1397
  /**
1398
1398
  * @public
@@ -1429,7 +1429,7 @@ export interface DashboardOptions {
1429
1429
  * </ul>
1430
1430
  * @public
1431
1431
  */
1432
- EngagementMetrics?: FeatureStatus;
1432
+ EngagementMetrics?: FeatureStatus | undefined;
1433
1433
  }
1434
1434
  /**
1435
1435
  * <p>An object containing additional settings for your VDM configuration as applicable to
@@ -1454,7 +1454,7 @@ export interface GuardianOptions {
1454
1454
  * </ul>
1455
1455
  * @public
1456
1456
  */
1457
- OptimizedSharedDelivery?: FeatureStatus;
1457
+ OptimizedSharedDelivery?: FeatureStatus | undefined;
1458
1458
  }
1459
1459
  /**
1460
1460
  * <p>An object that defines the VDM settings that apply to emails that you send using the
@@ -1467,13 +1467,13 @@ export interface VdmOptions {
1467
1467
  * Dashboard.</p>
1468
1468
  * @public
1469
1469
  */
1470
- DashboardOptions?: DashboardOptions;
1470
+ DashboardOptions?: DashboardOptions | undefined;
1471
1471
  /**
1472
1472
  * <p>Specifies additional settings for your VDM configuration as applicable to the
1473
1473
  * Guardian.</p>
1474
1474
  * @public
1475
1475
  */
1476
- GuardianOptions?: GuardianOptions;
1476
+ GuardianOptions?: GuardianOptions | undefined;
1477
1477
  }
1478
1478
  /**
1479
1479
  * <p>A request to create a configuration set.</p>
@@ -1491,43 +1491,43 @@ export interface CreateConfigurationSetRequest {
1491
1491
  * using the configuration set.</p>
1492
1492
  * @public
1493
1493
  */
1494
- TrackingOptions?: TrackingOptions;
1494
+ TrackingOptions?: TrackingOptions | undefined;
1495
1495
  /**
1496
1496
  * <p>An object that defines the dedicated IP pool that is used to send emails that you send
1497
1497
  * using the configuration set.</p>
1498
1498
  * @public
1499
1499
  */
1500
- DeliveryOptions?: DeliveryOptions;
1500
+ DeliveryOptions?: DeliveryOptions | undefined;
1501
1501
  /**
1502
1502
  * <p>An object that defines whether or not Amazon SES collects reputation metrics for the emails
1503
1503
  * that you send that use the configuration set.</p>
1504
1504
  * @public
1505
1505
  */
1506
- ReputationOptions?: ReputationOptions;
1506
+ ReputationOptions?: ReputationOptions | undefined;
1507
1507
  /**
1508
1508
  * <p>An object that defines whether or not Amazon SES can send email that you send using the
1509
1509
  * configuration set.</p>
1510
1510
  * @public
1511
1511
  */
1512
- SendingOptions?: SendingOptions;
1512
+ SendingOptions?: SendingOptions | undefined;
1513
1513
  /**
1514
1514
  * <p>An array of objects that define the tags (keys and values) to associate with the
1515
1515
  * configuration set.</p>
1516
1516
  * @public
1517
1517
  */
1518
- Tags?: Tag[];
1518
+ Tags?: Tag[] | undefined;
1519
1519
  /**
1520
1520
  * <p>An object that contains information about the suppression list preferences for your
1521
1521
  * account.</p>
1522
1522
  * @public
1523
1523
  */
1524
- SuppressionOptions?: SuppressionOptions;
1524
+ SuppressionOptions?: SuppressionOptions | undefined;
1525
1525
  /**
1526
1526
  * <p>An object that defines the VDM options for emails that you send using the
1527
1527
  * configuration set.</p>
1528
1528
  * @public
1529
1529
  */
1530
- VdmOptions?: VdmOptions;
1530
+ VdmOptions?: VdmOptions | undefined;
1531
1531
  }
1532
1532
  /**
1533
1533
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -1611,7 +1611,7 @@ export interface PinpointDestination {
1611
1611
  * <p>The Amazon Resource Name (ARN) of the Amazon Pinpoint project to send email events to.</p>
1612
1612
  * @public
1613
1613
  */
1614
- ApplicationArn?: string;
1614
+ ApplicationArn?: string | undefined;
1615
1615
  }
1616
1616
  /**
1617
1617
  * <p>An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to
@@ -1642,37 +1642,37 @@ export interface EventDestinationDefinition {
1642
1642
  * is disabled, events aren't sent to the specified destinations.</p>
1643
1643
  * @public
1644
1644
  */
1645
- Enabled?: boolean;
1645
+ Enabled?: boolean | undefined;
1646
1646
  /**
1647
1647
  * <p>An array that specifies which events the Amazon SES API v2 should send to the destinations in
1648
1648
  * this <code>EventDestinationDefinition</code>.</p>
1649
1649
  * @public
1650
1650
  */
1651
- MatchingEventTypes?: EventType[];
1651
+ MatchingEventTypes?: EventType[] | undefined;
1652
1652
  /**
1653
1653
  * <p>An object that defines an Amazon Kinesis Data Firehose destination for email events. You can use Amazon Kinesis Data Firehose to
1654
1654
  * stream data to other services, such as Amazon S3 and Amazon Redshift.</p>
1655
1655
  * @public
1656
1656
  */
1657
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
1657
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
1658
1658
  /**
1659
1659
  * <p>An object that defines an Amazon CloudWatch destination for email events. You can use Amazon CloudWatch to
1660
1660
  * monitor and gain insights on your email sending metrics.</p>
1661
1661
  * @public
1662
1662
  */
1663
- CloudWatchDestination?: CloudWatchDestination;
1663
+ CloudWatchDestination?: CloudWatchDestination | undefined;
1664
1664
  /**
1665
1665
  * <p>An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to
1666
1666
  * send notifications when certain email events occur.</p>
1667
1667
  * @public
1668
1668
  */
1669
- SnsDestination?: SnsDestination;
1669
+ SnsDestination?: SnsDestination | undefined;
1670
1670
  /**
1671
1671
  * <p>An object that defines an Amazon EventBridge destination for email events. You can use Amazon EventBridge to
1672
1672
  * send notifications when certain email events occur.</p>
1673
1673
  * @public
1674
1674
  */
1675
- EventBridgeDestination?: EventBridgeDestination;
1675
+ EventBridgeDestination?: EventBridgeDestination | undefined;
1676
1676
  /**
1677
1677
  * <p>An object that defines an Amazon Pinpoint project destination for email events. You can send
1678
1678
  * email event data to a Amazon Pinpoint project to view metrics using the Transactional Messaging
@@ -1680,7 +1680,7 @@ export interface EventDestinationDefinition {
1680
1680
  * Messaging Charts</a> in the <i>Amazon Pinpoint User Guide</i>.</p>
1681
1681
  * @public
1682
1682
  */
1683
- PinpointDestination?: PinpointDestination;
1683
+ PinpointDestination?: PinpointDestination | undefined;
1684
1684
  }
1685
1685
  /**
1686
1686
  * <p>A request to add an event destination to a configuration set.</p>
@@ -1728,18 +1728,18 @@ export interface CreateContactRequest {
1728
1728
  * <p>The contact's preferences for being opted-in to or opted-out of topics.</p>
1729
1729
  * @public
1730
1730
  */
1731
- TopicPreferences?: TopicPreference[];
1731
+ TopicPreferences?: TopicPreference[] | undefined;
1732
1732
  /**
1733
1733
  * <p>A boolean value status noting if the contact is unsubscribed from all contact list
1734
1734
  * topics.</p>
1735
1735
  * @public
1736
1736
  */
1737
- UnsubscribeAll?: boolean;
1737
+ UnsubscribeAll?: boolean | undefined;
1738
1738
  /**
1739
1739
  * <p>The attribute data attached to a contact.</p>
1740
1740
  * @public
1741
1741
  */
1742
- AttributesData?: string;
1742
+ AttributesData?: string | undefined;
1743
1743
  }
1744
1744
  /**
1745
1745
  * @public
@@ -1766,7 +1766,7 @@ export interface Topic {
1766
1766
  * <p>A description of what the topic is about, which the contact will see.</p>
1767
1767
  * @public
1768
1768
  */
1769
- Description?: string;
1769
+ Description?: string | undefined;
1770
1770
  /**
1771
1771
  * <p>The default subscription status to be applied to a contact if the contact has not
1772
1772
  * noted their preference for subscribing to a topic.</p>
@@ -1788,17 +1788,17 @@ export interface CreateContactListRequest {
1788
1788
  * topics.</p>
1789
1789
  * @public
1790
1790
  */
1791
- Topics?: Topic[];
1791
+ Topics?: Topic[] | undefined;
1792
1792
  /**
1793
1793
  * <p>A description of what the contact list is about.</p>
1794
1794
  * @public
1795
1795
  */
1796
- Description?: string;
1796
+ Description?: string | undefined;
1797
1797
  /**
1798
1798
  * <p>The tags associated with a contact list.</p>
1799
1799
  * @public
1800
1800
  */
1801
- Tags?: Tag[];
1801
+ Tags?: Tag[] | undefined;
1802
1802
  }
1803
1803
  /**
1804
1804
  * @public
@@ -1880,12 +1880,12 @@ export interface CreateDedicatedIpPoolRequest {
1880
1880
  * pool.</p>
1881
1881
  * @public
1882
1882
  */
1883
- Tags?: Tag[];
1883
+ Tags?: Tag[] | undefined;
1884
1884
  /**
1885
1885
  * <p>The type of scaling mode.</p>
1886
1886
  * @public
1887
1887
  */
1888
- ScalingMode?: ScalingMode;
1888
+ ScalingMode?: ScalingMode | undefined;
1889
1889
  }
1890
1890
  /**
1891
1891
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -1957,7 +1957,7 @@ export interface Message {
1957
1957
  * <p>The list of message headers that will be added to the email message.</p>
1958
1958
  * @public
1959
1959
  */
1960
- Headers?: MessageHeader[];
1960
+ Headers?: MessageHeader[] | undefined;
1961
1961
  }
1962
1962
  /**
1963
1963
  * <p>An object that defines the entire content of the email, including the message headers
@@ -1972,7 +1972,7 @@ export interface EmailContent {
1972
1972
  * <p>The simple email message. The message consists of a subject and a message body.</p>
1973
1973
  * @public
1974
1974
  */
1975
- Simple?: Message;
1975
+ Simple?: Message | undefined;
1976
1976
  /**
1977
1977
  * <p>The raw email message. The message has to meet the following criteria:</p>
1978
1978
  * <ul>
@@ -2008,12 +2008,12 @@ export interface EmailContent {
2008
2008
  * </ul>
2009
2009
  * @public
2010
2010
  */
2011
- Raw?: RawMessage;
2011
+ Raw?: RawMessage | undefined;
2012
2012
  /**
2013
2013
  * <p>The template to use for the email message.</p>
2014
2014
  * @public
2015
2015
  */
2016
- Template?: Template;
2016
+ Template?: Template | undefined;
2017
2017
  }
2018
2018
  /**
2019
2019
  * <p>A request to perform a predictive inbox placement test. Predictive inbox placement tests can help you predict how your messages will
@@ -2031,7 +2031,7 @@ export interface CreateDeliverabilityTestReportRequest {
2031
2031
  * results.</p>
2032
2032
  * @public
2033
2033
  */
2034
- ReportName?: string;
2034
+ ReportName?: string | undefined;
2035
2035
  /**
2036
2036
  * <p>The email address that the predictive inbox placement test email was sent from.</p>
2037
2037
  * @public
@@ -2047,7 +2047,7 @@ export interface CreateDeliverabilityTestReportRequest {
2047
2047
  * with the predictive inbox placement test.</p>
2048
2048
  * @public
2049
2049
  */
2050
- Tags?: Tag[];
2050
+ Tags?: Tag[] | undefined;
2051
2051
  }
2052
2052
  /**
2053
2053
  * @public
@@ -2140,20 +2140,20 @@ export interface DkimSigningAttributes {
2140
2140
  * configuration for a domain.</p>
2141
2141
  * @public
2142
2142
  */
2143
- DomainSigningSelector?: string;
2143
+ DomainSigningSelector?: string | undefined;
2144
2144
  /**
2145
2145
  * <p>[Bring Your Own DKIM] A private key that's used to generate a DKIM signature.</p>
2146
2146
  * <p>The private key must use 1024 or 2048-bit RSA encryption, and must be encoded using
2147
2147
  * base64 encoding.</p>
2148
2148
  * @public
2149
2149
  */
2150
- DomainSigningPrivateKey?: string;
2150
+ DomainSigningPrivateKey?: string | undefined;
2151
2151
  /**
2152
2152
  * <p>[Easy DKIM] The key length of the future DKIM key pair to be generated. This can be
2153
2153
  * changed at most once per day.</p>
2154
2154
  * @public
2155
2155
  */
2156
- NextSigningKeyLength?: DkimSigningKeyLength;
2156
+ NextSigningKeyLength?: DkimSigningKeyLength | undefined;
2157
2157
  }
2158
2158
  /**
2159
2159
  * <p>A request to begin the verification process for an email identity (an email address or
@@ -2171,7 +2171,7 @@ export interface CreateEmailIdentityRequest {
2171
2171
  * identity.</p>
2172
2172
  * @public
2173
2173
  */
2174
- Tags?: Tag[];
2174
+ Tags?: Tag[] | undefined;
2175
2175
  /**
2176
2176
  * <p>If your request includes this object, Amazon SES configures the identity to use Bring Your
2177
2177
  * Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be
@@ -2181,13 +2181,13 @@ export interface CreateEmailIdentityRequest {
2181
2181
  * address.</p>
2182
2182
  * @public
2183
2183
  */
2184
- DkimSigningAttributes?: DkimSigningAttributes;
2184
+ DkimSigningAttributes?: DkimSigningAttributes | undefined;
2185
2185
  /**
2186
2186
  * <p>The configuration set to use by default when sending from this identity. Note that any
2187
2187
  * configuration set defined in the email sending request takes precedence. </p>
2188
2188
  * @public
2189
2189
  */
2190
- ConfigurationSetName?: string;
2190
+ ConfigurationSetName?: string | undefined;
2191
2191
  }
2192
2192
  /**
2193
2193
  * @public
@@ -2235,7 +2235,7 @@ export interface DkimAttributes {
2235
2235
  * send from the identity aren't DKIM-signed.</p>
2236
2236
  * @public
2237
2237
  */
2238
- SigningEnabled?: boolean;
2238
+ SigningEnabled?: boolean | undefined;
2239
2239
  /**
2240
2240
  * <p>Describes whether or not Amazon SES has successfully located the DKIM records in the DNS
2241
2241
  * records for the domain. The status can be one of the following:</p>
@@ -2270,7 +2270,7 @@ export interface DkimAttributes {
2270
2270
  * </ul>
2271
2271
  * @public
2272
2272
  */
2273
- Status?: DkimStatus;
2273
+ Status?: DkimStatus | undefined;
2274
2274
  /**
2275
2275
  * <p>If you used <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a> to configure DKIM authentication for the domain, then this object
2276
2276
  * contains a set of unique strings that you use to create a set of CNAME records that you
@@ -2283,7 +2283,7 @@ export interface DkimAttributes {
2283
2283
  * appropriate records in the DNS configuration of the domain for up to 72 hours.</p>
2284
2284
  * @public
2285
2285
  */
2286
- Tokens?: string[];
2286
+ Tokens?: string[] | undefined;
2287
2287
  /**
2288
2288
  * <p>A string that indicates how DKIM was configured for the identity. These are the
2289
2289
  * possible values:</p>
@@ -2301,23 +2301,23 @@ export interface DkimAttributes {
2301
2301
  * </ul>
2302
2302
  * @public
2303
2303
  */
2304
- SigningAttributesOrigin?: DkimSigningAttributesOrigin;
2304
+ SigningAttributesOrigin?: DkimSigningAttributesOrigin | undefined;
2305
2305
  /**
2306
2306
  * <p>[Easy DKIM] The key length of the future DKIM key pair to be generated. This can be
2307
2307
  * changed at most once per day.</p>
2308
2308
  * @public
2309
2309
  */
2310
- NextSigningKeyLength?: DkimSigningKeyLength;
2310
+ NextSigningKeyLength?: DkimSigningKeyLength | undefined;
2311
2311
  /**
2312
2312
  * <p>[Easy DKIM] The key length of the DKIM key pair in use.</p>
2313
2313
  * @public
2314
2314
  */
2315
- CurrentSigningKeyLength?: DkimSigningKeyLength;
2315
+ CurrentSigningKeyLength?: DkimSigningKeyLength | undefined;
2316
2316
  /**
2317
2317
  * <p>[Easy DKIM] The last time a key pair was generated for this identity.</p>
2318
2318
  * @public
2319
2319
  */
2320
- LastKeyGenerationTimestamp?: Date;
2320
+ LastKeyGenerationTimestamp?: Date | undefined;
2321
2321
  }
2322
2322
  /**
2323
2323
  * @public
@@ -2344,19 +2344,19 @@ export interface CreateEmailIdentityResponse {
2344
2344
  * supported.</p>
2345
2345
  * @public
2346
2346
  */
2347
- IdentityType?: IdentityType;
2347
+ IdentityType?: IdentityType | undefined;
2348
2348
  /**
2349
2349
  * <p>Specifies whether or not the identity is verified. You can only send email from
2350
2350
  * verified email addresses or domains. For more information about verifying identities,
2351
2351
  * see the <a href="https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-manage-verify.html">Amazon Pinpoint User Guide</a>.</p>
2352
2352
  * @public
2353
2353
  */
2354
- VerifiedForSendingStatus?: boolean;
2354
+ VerifiedForSendingStatus?: boolean | undefined;
2355
2355
  /**
2356
2356
  * <p>An object that contains information about the DKIM attributes for the identity.</p>
2357
2357
  * @public
2358
2358
  */
2359
- DkimAttributes?: DkimAttributes;
2359
+ DkimAttributes?: DkimAttributes | undefined;
2360
2360
  }
2361
2361
  /**
2362
2362
  * <p>Represents a request to create a sending authorization policy for an identity. Sending
@@ -2463,23 +2463,23 @@ export interface MessageInsightsFilters {
2463
2463
  * <p>The from address used to send the message.</p>
2464
2464
  * @public
2465
2465
  */
2466
- FromEmailAddress?: string[];
2466
+ FromEmailAddress?: string[] | undefined;
2467
2467
  /**
2468
2468
  * <p>The recipient's email address.</p>
2469
2469
  * @public
2470
2470
  */
2471
- Destination?: string[];
2471
+ Destination?: string[] | undefined;
2472
2472
  /**
2473
2473
  * <p>The subject line of the message.</p>
2474
2474
  * @public
2475
2475
  */
2476
- Subject?: string[];
2476
+ Subject?: string[] | undefined;
2477
2477
  /**
2478
2478
  * <p>The recipient's ISP (e.g., <code>Gmail</code>, <code>Yahoo</code>,
2479
2479
  * etc.).</p>
2480
2480
  * @public
2481
2481
  */
2482
- Isp?: string[];
2482
+ Isp?: string[] | undefined;
2483
2483
  /**
2484
2484
  * <p>
2485
2485
  * The last delivery-related event for the email, where the ordering is as follows:
@@ -2487,7 +2487,7 @@ export interface MessageInsightsFilters {
2487
2487
  * </p>
2488
2488
  * @public
2489
2489
  */
2490
- LastDeliveryEvent?: DeliveryEventType[];
2490
+ LastDeliveryEvent?: DeliveryEventType[] | undefined;
2491
2491
  /**
2492
2492
  * <p>
2493
2493
  * The last engagement-related event for the email, where the ordering is as follows:
@@ -2499,7 +2499,7 @@ export interface MessageInsightsFilters {
2499
2499
  * </p>
2500
2500
  * @public
2501
2501
  */
2502
- LastEngagementEvent?: EngagementEventType[];
2502
+ LastEngagementEvent?: EngagementEventType[] | undefined;
2503
2503
  }
2504
2504
  /**
2505
2505
  * <p>An object that contains filters applied when performing the Message Insights export.</p>
@@ -2520,17 +2520,17 @@ export interface MessageInsightsDataSource {
2520
2520
  * <p>Filters for results to be included in the export file.</p>
2521
2521
  * @public
2522
2522
  */
2523
- Include?: MessageInsightsFilters;
2523
+ Include?: MessageInsightsFilters | undefined;
2524
2524
  /**
2525
2525
  * <p>Filters for results to be excluded from the export file.</p>
2526
2526
  * @public
2527
2527
  */
2528
- Exclude?: MessageInsightsFilters;
2528
+ Exclude?: MessageInsightsFilters | undefined;
2529
2529
  /**
2530
2530
  * <p>The maximum number of results.</p>
2531
2531
  * @public
2532
2532
  */
2533
- MaxResults?: number;
2533
+ MaxResults?: number | undefined;
2534
2534
  }
2535
2535
  /**
2536
2536
  * @public
@@ -2618,7 +2618,7 @@ export interface ExportMetric {
2618
2618
  * </ul>
2619
2619
  * @public
2620
2620
  */
2621
- Name?: Metric;
2621
+ Name?: Metric | undefined;
2622
2622
  /**
2623
2623
  * <p>The aggregation to apply to a metric, can be one of the following:</p>
2624
2624
  * <ul>
@@ -2634,7 +2634,7 @@ export interface ExportMetric {
2634
2634
  * </ul>
2635
2635
  * @public
2636
2636
  */
2637
- Aggregation?: MetricAggregation;
2637
+ Aggregation?: MetricAggregation | undefined;
2638
2638
  }
2639
2639
  /**
2640
2640
  * <p>An object that contains details about the data source for the metrics export.</p>
@@ -2679,12 +2679,12 @@ export interface ExportDataSource {
2679
2679
  * <p>An object that contains details about the data source for the metrics export.</p>
2680
2680
  * @public
2681
2681
  */
2682
- MetricsDataSource?: MetricsDataSource;
2682
+ MetricsDataSource?: MetricsDataSource | undefined;
2683
2683
  /**
2684
2684
  * <p>An object that contains filters applied when performing the Message Insights export.</p>
2685
2685
  * @public
2686
2686
  */
2687
- MessageInsightsDataSource?: MessageInsightsDataSource;
2687
+ MessageInsightsDataSource?: MessageInsightsDataSource | undefined;
2688
2688
  }
2689
2689
  /**
2690
2690
  * @public
@@ -2722,7 +2722,7 @@ export interface ExportDestination {
2722
2722
  * <p>An Amazon S3 pre-signed URL that points to the generated export file.</p>
2723
2723
  * @public
2724
2724
  */
2725
- S3Url?: string;
2725
+ S3Url?: string | undefined;
2726
2726
  }
2727
2727
  /**
2728
2728
  * <p>Represents a request to create an export job from a data source to a data
@@ -2751,7 +2751,7 @@ export interface CreateExportJobResponse {
2751
2751
  * <p>A string that represents the export job ID.</p>
2752
2752
  * @public
2753
2753
  */
2754
- JobId?: string;
2754
+ JobId?: string | undefined;
2755
2755
  }
2756
2756
  /**
2757
2757
  * <p>An object that contains details about the data source of the import job.</p>
@@ -2812,12 +2812,12 @@ export interface ImportDestination {
2812
2812
  * <p>An object that contains the action of the import job towards suppression list.</p>
2813
2813
  * @public
2814
2814
  */
2815
- SuppressionListDestination?: SuppressionListDestination;
2815
+ SuppressionListDestination?: SuppressionListDestination | undefined;
2816
2816
  /**
2817
2817
  * <p>An object that contains the action of the import job towards a contact list.</p>
2818
2818
  * @public
2819
2819
  */
2820
- ContactListDestination?: ContactListDestination;
2820
+ ContactListDestination?: ContactListDestination | undefined;
2821
2821
  }
2822
2822
  /**
2823
2823
  * <p>Represents a request to create an import job from a data source for a data
@@ -2846,7 +2846,7 @@ export interface CreateImportJobResponse {
2846
2846
  * <p>A string that represents the import job ID.</p>
2847
2847
  * @public
2848
2848
  */
2849
- JobId?: string;
2849
+ JobId?: string | undefined;
2850
2850
  }
2851
2851
  /**
2852
2852
  * <p>Contains information about a custom verification email template.</p>
@@ -2857,29 +2857,29 @@ export interface CustomVerificationEmailTemplateMetadata {
2857
2857
  * <p>The name of the custom verification email template.</p>
2858
2858
  * @public
2859
2859
  */
2860
- TemplateName?: string;
2860
+ TemplateName?: string | undefined;
2861
2861
  /**
2862
2862
  * <p>The email address that the custom verification email is sent from.</p>
2863
2863
  * @public
2864
2864
  */
2865
- FromEmailAddress?: string;
2865
+ FromEmailAddress?: string | undefined;
2866
2866
  /**
2867
2867
  * <p>The subject line of the custom verification email.</p>
2868
2868
  * @public
2869
2869
  */
2870
- TemplateSubject?: string;
2870
+ TemplateSubject?: string | undefined;
2871
2871
  /**
2872
2872
  * <p>The URL that the recipient of the verification email is sent to if his or her address
2873
2873
  * is successfully verified.</p>
2874
2874
  * @public
2875
2875
  */
2876
- SuccessRedirectionURL?: string;
2876
+ SuccessRedirectionURL?: string | undefined;
2877
2877
  /**
2878
2878
  * <p>The URL that the recipient of the verification email is sent to if his or her address
2879
2879
  * is not successfully verified.</p>
2880
2880
  * @public
2881
2881
  */
2882
- FailureRedirectionURL?: string;
2882
+ FailureRedirectionURL?: string | undefined;
2883
2883
  }
2884
2884
  /**
2885
2885
  * <p>An object that contains inbox placement data for email sent from one of your email
@@ -2891,31 +2891,31 @@ export interface DomainIspPlacement {
2891
2891
  * <p>The name of the email provider that the inbox placement data applies to.</p>
2892
2892
  * @public
2893
2893
  */
2894
- IspName?: string;
2894
+ IspName?: string | undefined;
2895
2895
  /**
2896
2896
  * <p>The total number of messages that were sent from the selected domain to the specified
2897
2897
  * email provider that arrived in recipients' inboxes.</p>
2898
2898
  * @public
2899
2899
  */
2900
- InboxRawCount?: number;
2900
+ InboxRawCount?: number | undefined;
2901
2901
  /**
2902
2902
  * <p>The total number of messages that were sent from the selected domain to the specified
2903
2903
  * email provider that arrived in recipients' spam or junk mail folders.</p>
2904
2904
  * @public
2905
2905
  */
2906
- SpamRawCount?: number;
2906
+ SpamRawCount?: number | undefined;
2907
2907
  /**
2908
2908
  * <p>The percentage of messages that were sent from the selected domain to the specified
2909
2909
  * email provider that arrived in recipients' inboxes.</p>
2910
2910
  * @public
2911
2911
  */
2912
- InboxPercentage?: number;
2912
+ InboxPercentage?: number | undefined;
2913
2913
  /**
2914
2914
  * <p>The percentage of messages that were sent from the selected domain to the specified
2915
2915
  * email provider that arrived in recipients' spam or junk mail folders.</p>
2916
2916
  * @public
2917
2917
  */
2918
- SpamPercentage?: number;
2918
+ SpamPercentage?: number | undefined;
2919
2919
  }
2920
2920
  /**
2921
2921
  * <p>An object that contains information about the amount of email that was delivered to
@@ -2927,25 +2927,25 @@ export interface VolumeStatistics {
2927
2927
  * <p>The total number of emails that arrived in recipients' inboxes.</p>
2928
2928
  * @public
2929
2929
  */
2930
- InboxRawCount?: number;
2930
+ InboxRawCount?: number | undefined;
2931
2931
  /**
2932
2932
  * <p>The total number of emails that arrived in recipients' spam or junk mail
2933
2933
  * folders.</p>
2934
2934
  * @public
2935
2935
  */
2936
- SpamRawCount?: number;
2936
+ SpamRawCount?: number | undefined;
2937
2937
  /**
2938
2938
  * <p>An estimate of the percentage of emails sent from the current domain that will arrive
2939
2939
  * in recipients' inboxes.</p>
2940
2940
  * @public
2941
2941
  */
2942
- ProjectedInbox?: number;
2942
+ ProjectedInbox?: number | undefined;
2943
2943
  /**
2944
2944
  * <p>An estimate of the percentage of emails sent from the current domain that will arrive
2945
2945
  * in recipients' spam or junk mail folders.</p>
2946
2946
  * @public
2947
2947
  */
2948
- ProjectedSpam?: number;
2948
+ ProjectedSpam?: number | undefined;
2949
2949
  }
2950
2950
  /**
2951
2951
  * <p>An object that contains information about the volume of email sent on each day of the
@@ -2957,19 +2957,19 @@ export interface DailyVolume {
2957
2957
  * <p>The date that the DailyVolume metrics apply to, in Unix time.</p>
2958
2958
  * @public
2959
2959
  */
2960
- StartDate?: Date;
2960
+ StartDate?: Date | undefined;
2961
2961
  /**
2962
2962
  * <p>An object that contains inbox placement metrics for a specific day in the analysis
2963
2963
  * period.</p>
2964
2964
  * @public
2965
2965
  */
2966
- VolumeStatistics?: VolumeStatistics;
2966
+ VolumeStatistics?: VolumeStatistics | undefined;
2967
2967
  /**
2968
2968
  * <p>An object that contains inbox placement metrics for a specified day in the analysis
2969
2969
  * period, broken out by the recipient's email provider.</p>
2970
2970
  * @public
2971
2971
  */
2972
- DomainIspPlacements?: DomainIspPlacement[];
2972
+ DomainIspPlacements?: DomainIspPlacement[] | undefined;
2973
2973
  }
2974
2974
  /**
2975
2975
  * <p>An object containing additional settings for your VDM configuration as applicable to
@@ -2994,7 +2994,7 @@ export interface DashboardAttributes {
2994
2994
  * </ul>
2995
2995
  * @public
2996
2996
  */
2997
- EngagementMetrics?: FeatureStatus;
2997
+ EngagementMetrics?: FeatureStatus | undefined;
2998
2998
  }
2999
2999
  /**
3000
3000
  * @public
@@ -3050,7 +3050,7 @@ export interface DedicatedIp {
3050
3050
  * <p>The name of the dedicated IP pool that the IP address is associated with.</p>
3051
3051
  * @public
3052
3052
  */
3053
- PoolName?: string;
3053
+ PoolName?: string | undefined;
3054
3054
  }
3055
3055
  /**
3056
3056
  * <p>Contains information about a dedicated IP pool.</p>
@@ -3300,27 +3300,27 @@ export interface DeliverabilityTestReport {
3300
3300
  * <p>A unique string that identifies the predictive inbox placement test.</p>
3301
3301
  * @public
3302
3302
  */
3303
- ReportId?: string;
3303
+ ReportId?: string | undefined;
3304
3304
  /**
3305
3305
  * <p>A name that helps you identify a predictive inbox placement test report.</p>
3306
3306
  * @public
3307
3307
  */
3308
- ReportName?: string;
3308
+ ReportName?: string | undefined;
3309
3309
  /**
3310
3310
  * <p>The subject line for an email that you submitted in a predictive inbox placement test.</p>
3311
3311
  * @public
3312
3312
  */
3313
- Subject?: string;
3313
+ Subject?: string | undefined;
3314
3314
  /**
3315
3315
  * <p>The sender address that you specified for the predictive inbox placement test.</p>
3316
3316
  * @public
3317
3317
  */
3318
- FromEmailAddress?: string;
3318
+ FromEmailAddress?: string | undefined;
3319
3319
  /**
3320
3320
  * <p>The date and time when the predictive inbox placement test was created.</p>
3321
3321
  * @public
3322
3322
  */
3323
- CreateDate?: Date;
3323
+ CreateDate?: Date | undefined;
3324
3324
  /**
3325
3325
  * <p>The status of the predictive inbox placement test. If the status is <code>IN_PROGRESS</code>, then the predictive inbox placement test
3326
3326
  * is currently running. Predictive inbox placement tests are usually complete within 24 hours of creating the
@@ -3328,7 +3328,7 @@ export interface DeliverabilityTestReport {
3328
3328
  * the <code>GetDeliverabilityTestReport</code> to view the results of the test.</p>
3329
3329
  * @public
3330
3330
  */
3331
- DeliverabilityTestStatus?: DeliverabilityTestStatus;
3331
+ DeliverabilityTestStatus?: DeliverabilityTestStatus | undefined;
3332
3332
  }
3333
3333
  /**
3334
3334
  * <p>An object that contains the deliverability data for a specific campaign. This data is
@@ -3343,84 +3343,84 @@ export interface DomainDeliverabilityCampaign {
3343
3343
  * and assigns this identifier to a campaign.</p>
3344
3344
  * @public
3345
3345
  */
3346
- CampaignId?: string;
3346
+ CampaignId?: string | undefined;
3347
3347
  /**
3348
3348
  * <p>The URL of an image that contains a snapshot of the email message that was
3349
3349
  * sent.</p>
3350
3350
  * @public
3351
3351
  */
3352
- ImageUrl?: string;
3352
+ ImageUrl?: string | undefined;
3353
3353
  /**
3354
3354
  * <p>The subject line, or title, of the email message.</p>
3355
3355
  * @public
3356
3356
  */
3357
- Subject?: string;
3357
+ Subject?: string | undefined;
3358
3358
  /**
3359
3359
  * <p>The verified email address that the email message was sent from.</p>
3360
3360
  * @public
3361
3361
  */
3362
- FromAddress?: string;
3362
+ FromAddress?: string | undefined;
3363
3363
  /**
3364
3364
  * <p>The IP addresses that were used to send the email message.</p>
3365
3365
  * @public
3366
3366
  */
3367
- SendingIps?: string[];
3367
+ SendingIps?: string[] | undefined;
3368
3368
  /**
3369
3369
  * <p>The first time when the email message was delivered to any
3370
3370
  * recipient's inbox. This value can help you determine how long it took for a campaign to
3371
3371
  * deliver an email message.</p>
3372
3372
  * @public
3373
3373
  */
3374
- FirstSeenDateTime?: Date;
3374
+ FirstSeenDateTime?: Date | undefined;
3375
3375
  /**
3376
3376
  * <p>The last time when the email message was delivered to any
3377
3377
  * recipient's inbox. This value can help you determine how long it took for a campaign to
3378
3378
  * deliver an email message.</p>
3379
3379
  * @public
3380
3380
  */
3381
- LastSeenDateTime?: Date;
3381
+ LastSeenDateTime?: Date | undefined;
3382
3382
  /**
3383
3383
  * <p>The number of email messages that were delivered to recipients’ inboxes.</p>
3384
3384
  * @public
3385
3385
  */
3386
- InboxCount?: number;
3386
+ InboxCount?: number | undefined;
3387
3387
  /**
3388
3388
  * <p>The number of email messages that were delivered to recipients' spam or junk mail
3389
3389
  * folders.</p>
3390
3390
  * @public
3391
3391
  */
3392
- SpamCount?: number;
3392
+ SpamCount?: number | undefined;
3393
3393
  /**
3394
3394
  * <p>The percentage of email messages that were opened by recipients. Due to technical
3395
3395
  * limitations, this value only includes recipients who opened the message by using an
3396
3396
  * email client that supports images.</p>
3397
3397
  * @public
3398
3398
  */
3399
- ReadRate?: number;
3399
+ ReadRate?: number | undefined;
3400
3400
  /**
3401
3401
  * <p>The percentage of email messages that were deleted by recipients, without being opened
3402
3402
  * first. Due to technical limitations, this value only includes recipients who opened the
3403
3403
  * message by using an email client that supports images.</p>
3404
3404
  * @public
3405
3405
  */
3406
- DeleteRate?: number;
3406
+ DeleteRate?: number | undefined;
3407
3407
  /**
3408
3408
  * <p>The percentage of email messages that were opened and then deleted by recipients. Due
3409
3409
  * to technical limitations, this value only includes recipients who opened the message by
3410
3410
  * using an email client that supports images.</p>
3411
3411
  * @public
3412
3412
  */
3413
- ReadDeleteRate?: number;
3413
+ ReadDeleteRate?: number | undefined;
3414
3414
  /**
3415
3415
  * <p>The projected number of recipients that the email message was sent to.</p>
3416
3416
  * @public
3417
3417
  */
3418
- ProjectedVolume?: number;
3418
+ ProjectedVolume?: number | undefined;
3419
3419
  /**
3420
3420
  * <p>The major email providers who handled the email message.</p>
3421
3421
  * @public
3422
3422
  */
3423
- Esps?: string[];
3423
+ Esps?: string[] | undefined;
3424
3424
  }
3425
3425
  /**
3426
3426
  * <p>An object that contains information about the inbox placement data settings for a
@@ -3433,13 +3433,13 @@ export interface InboxPlacementTrackingOption {
3433
3433
  * <p>Specifies whether inbox placement data is being tracked for the domain.</p>
3434
3434
  * @public
3435
3435
  */
3436
- Global?: boolean;
3436
+ Global?: boolean | undefined;
3437
3437
  /**
3438
3438
  * <p>An array of strings, one for each major email provider that the inbox placement data
3439
3439
  * applies to.</p>
3440
3440
  * @public
3441
3441
  */
3442
- TrackedIsps?: string[];
3442
+ TrackedIsps?: string[] | undefined;
3443
3443
  }
3444
3444
  /**
3445
3445
  * <p>An object that contains information about the Deliverability dashboard subscription for a
@@ -3454,19 +3454,19 @@ export interface DomainDeliverabilityTrackingOption {
3454
3454
  * active Deliverability dashboard subscription.</p>
3455
3455
  * @public
3456
3456
  */
3457
- Domain?: string;
3457
+ Domain?: string | undefined;
3458
3458
  /**
3459
3459
  * <p>The date when you enabled the Deliverability dashboard for the
3460
3460
  * domain.</p>
3461
3461
  * @public
3462
3462
  */
3463
- SubscriptionStartDate?: Date;
3463
+ SubscriptionStartDate?: Date | undefined;
3464
3464
  /**
3465
3465
  * <p>An object that contains information about the inbox placement data settings for the
3466
3466
  * domain.</p>
3467
3467
  * @public
3468
3468
  */
3469
- InboxPlacementTrackingOption?: InboxPlacementTrackingOption;
3469
+ InboxPlacementTrackingOption?: InboxPlacementTrackingOption | undefined;
3470
3470
  }
3471
3471
  /**
3472
3472
  * <p>
@@ -3480,12 +3480,12 @@ export interface EventDetails {
3480
3480
  * <p>Information about a <code>Bounce</code> event.</p>
3481
3481
  * @public
3482
3482
  */
3483
- Bounce?: Bounce;
3483
+ Bounce?: Bounce | undefined;
3484
3484
  /**
3485
3485
  * <p>Information about a <code>Complaint</code> event.</p>
3486
3486
  * @public
3487
3487
  */
3488
- Complaint?: Complaint;
3488
+ Complaint?: Complaint | undefined;
3489
3489
  }
3490
3490
  /**
3491
3491
  * <p>An object containing details about a specific event.</p>
@@ -3496,7 +3496,7 @@ export interface InsightsEvent {
3496
3496
  * <p>The timestamp of the event.</p>
3497
3497
  * @public
3498
3498
  */
3499
- Timestamp?: Date;
3499
+ Timestamp?: Date | undefined;
3500
3500
  /**
3501
3501
  * <p>The type of event:</p>
3502
3502
  * <ul>
@@ -3542,12 +3542,12 @@ export interface InsightsEvent {
3542
3542
  * </ul>
3543
3543
  * @public
3544
3544
  */
3545
- Type?: EventType;
3545
+ Type?: EventType | undefined;
3546
3546
  /**
3547
3547
  * <p>Details about bounce or complaint events.</p>
3548
3548
  * @public
3549
3549
  */
3550
- Details?: EventDetails;
3550
+ Details?: EventDetails | undefined;
3551
3551
  }
3552
3552
  /**
3553
3553
  * <p>An email's insights contain metadata and delivery information about a specific email.</p>
@@ -3558,18 +3558,18 @@ export interface EmailInsights {
3558
3558
  * <p>The recipient of the email.</p>
3559
3559
  * @public
3560
3560
  */
3561
- Destination?: string;
3561
+ Destination?: string | undefined;
3562
3562
  /**
3563
3563
  * <p>The recipient's ISP (e.g., <code>Gmail</code>, <code>Yahoo</code>,
3564
3564
  * etc.).</p>
3565
3565
  * @public
3566
3566
  */
3567
- Isp?: string;
3567
+ Isp?: string | undefined;
3568
3568
  /**
3569
3569
  * <p>A list of events associated with the sent email.</p>
3570
3570
  * @public
3571
3571
  */
3572
- Events?: InsightsEvent[];
3572
+ Events?: InsightsEvent[] | undefined;
3573
3573
  }
3574
3574
  /**
3575
3575
  * <p>Contains information about an email template.</p>
@@ -3580,12 +3580,12 @@ export interface EmailTemplateMetadata {
3580
3580
  * <p>The name of the template.</p>
3581
3581
  * @public
3582
3582
  */
3583
- TemplateName?: string;
3583
+ TemplateName?: string | undefined;
3584
3584
  /**
3585
3585
  * <p>The time and date the template was created.</p>
3586
3586
  * @public
3587
3587
  */
3588
- CreatedTimestamp?: Date;
3588
+ CreatedTimestamp?: Date | undefined;
3589
3589
  }
3590
3590
  /**
3591
3591
  * <p>In the Amazon SES API v2, <i>events</i> include message sends, deliveries, opens,
@@ -3609,7 +3609,7 @@ export interface EventDestination {
3609
3609
  * is disabled, events aren't sent to the specified destinations.</p>
3610
3610
  * @public
3611
3611
  */
3612
- Enabled?: boolean;
3612
+ Enabled?: boolean | undefined;
3613
3613
  /**
3614
3614
  * <p>The types of events that Amazon SES sends to the specified event destinations.</p>
3615
3615
  * <ul>
@@ -3687,25 +3687,25 @@ export interface EventDestination {
3687
3687
  * stream data to other services, such as Amazon S3 and Amazon Redshift.</p>
3688
3688
  * @public
3689
3689
  */
3690
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
3690
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
3691
3691
  /**
3692
3692
  * <p>An object that defines an Amazon CloudWatch destination for email events. You can use Amazon CloudWatch to
3693
3693
  * monitor and gain insights on your email sending metrics.</p>
3694
3694
  * @public
3695
3695
  */
3696
- CloudWatchDestination?: CloudWatchDestination;
3696
+ CloudWatchDestination?: CloudWatchDestination | undefined;
3697
3697
  /**
3698
3698
  * <p>An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to
3699
3699
  * send notifications when certain email events occur.</p>
3700
3700
  * @public
3701
3701
  */
3702
- SnsDestination?: SnsDestination;
3702
+ SnsDestination?: SnsDestination | undefined;
3703
3703
  /**
3704
3704
  * <p>An object that defines an Amazon EventBridge destination for email events. You can use Amazon EventBridge to
3705
3705
  * send notifications when certain email events occur.</p>
3706
3706
  * @public
3707
3707
  */
3708
- EventBridgeDestination?: EventBridgeDestination;
3708
+ EventBridgeDestination?: EventBridgeDestination | undefined;
3709
3709
  /**
3710
3710
  * <p>An object that defines an Amazon Pinpoint project destination for email events. You can send
3711
3711
  * email event data to a Amazon Pinpoint project to view metrics using the Transactional Messaging
@@ -3713,7 +3713,7 @@ export interface EventDestination {
3713
3713
  * Messaging Charts</a> in the <i>Amazon Pinpoint User Guide</i>.</p>
3714
3714
  * @public
3715
3715
  */
3716
- PinpointDestination?: PinpointDestination;
3716
+ PinpointDestination?: PinpointDestination | undefined;
3717
3717
  }
3718
3718
  /**
3719
3719
  * @public
@@ -3751,27 +3751,27 @@ export interface ExportJobSummary {
3751
3751
  * <p>The export job ID.</p>
3752
3752
  * @public
3753
3753
  */
3754
- JobId?: string;
3754
+ JobId?: string | undefined;
3755
3755
  /**
3756
3756
  * <p>The source type of the export job.</p>
3757
3757
  * @public
3758
3758
  */
3759
- ExportSourceType?: ExportSourceType;
3759
+ ExportSourceType?: ExportSourceType | undefined;
3760
3760
  /**
3761
3761
  * <p>The status of the export job.</p>
3762
3762
  * @public
3763
3763
  */
3764
- JobStatus?: JobStatus;
3764
+ JobStatus?: JobStatus | undefined;
3765
3765
  /**
3766
3766
  * <p>The timestamp of when the export job was created.</p>
3767
3767
  * @public
3768
3768
  */
3769
- CreatedTimestamp?: Date;
3769
+ CreatedTimestamp?: Date | undefined;
3770
3770
  /**
3771
3771
  * <p>The timestamp of when the export job was completed.</p>
3772
3772
  * @public
3773
3773
  */
3774
- CompletedTimestamp?: Date;
3774
+ CompletedTimestamp?: Date | undefined;
3775
3775
  }
3776
3776
  /**
3777
3777
  * <p>Statistics about the execution of an export job.</p>
@@ -3782,13 +3782,13 @@ export interface ExportStatistics {
3782
3782
  * <p>The number of records that were processed to generate the final export file.</p>
3783
3783
  * @public
3784
3784
  */
3785
- ProcessedRecordsCount?: number;
3785
+ ProcessedRecordsCount?: number | undefined;
3786
3786
  /**
3787
3787
  * <p>The number of records that were exported to the final export file.</p>
3788
3788
  * <p>This value might not be available for all export source types</p>
3789
3789
  * @public
3790
3790
  */
3791
- ExportedRecordsCount?: number;
3791
+ ExportedRecordsCount?: number | undefined;
3792
3792
  }
3793
3793
  /**
3794
3794
  * <p>An object that contains the failure details about a job.</p>
@@ -3799,12 +3799,12 @@ export interface FailureInfo {
3799
3799
  * <p>An Amazon S3 pre-signed URL that contains all the failed records and related information.</p>
3800
3800
  * @public
3801
3801
  */
3802
- FailedRecordsS3Url?: string;
3802
+ FailedRecordsS3Url?: string | undefined;
3803
3803
  /**
3804
3804
  * <p>A message about why the job failed.</p>
3805
3805
  * @public
3806
3806
  */
3807
- ErrorMessage?: string;
3807
+ ErrorMessage?: string | undefined;
3808
3808
  }
3809
3809
  /**
3810
3810
  * <p>A request to obtain information about the email-sending capabilities of your Amazon SES
@@ -3825,20 +3825,20 @@ export interface SendQuota {
3825
3825
  * to as your <i>sending quota</i>.)</p>
3826
3826
  * @public
3827
3827
  */
3828
- Max24HourSend?: number;
3828
+ Max24HourSend?: number | undefined;
3829
3829
  /**
3830
3830
  * <p>The maximum number of emails that you can send per second in the current Amazon Web Services Region.
3831
3831
  * This value is also called your <i>maximum sending rate</i> or your
3832
3832
  * <i>maximum TPS (transactions per second) rate</i>.</p>
3833
3833
  * @public
3834
3834
  */
3835
- MaxSendRate?: number;
3835
+ MaxSendRate?: number | undefined;
3836
3836
  /**
3837
3837
  * <p>The number of emails sent from your Amazon SES account in the current Amazon Web Services Region over the
3838
3838
  * past 24 hours.</p>
3839
3839
  * @public
3840
3840
  */
3841
- SentLast24Hours?: number;
3841
+ SentLast24Hours?: number | undefined;
3842
3842
  }
3843
3843
  /**
3844
3844
  * <p>An object that contains information about the email address suppression preferences
@@ -3866,7 +3866,7 @@ export interface SuppressionAttributes {
3866
3866
  * </ul>
3867
3867
  * @public
3868
3868
  */
3869
- SuppressedReasons?: SuppressionListReason[];
3869
+ SuppressedReasons?: SuppressionListReason[] | undefined;
3870
3870
  }
3871
3871
  /**
3872
3872
  * <p>An object containing additional settings for your VDM configuration as applicable to
@@ -3891,7 +3891,7 @@ export interface GuardianAttributes {
3891
3891
  * </ul>
3892
3892
  * @public
3893
3893
  */
3894
- OptimizedSharedDelivery?: FeatureStatus;
3894
+ OptimizedSharedDelivery?: FeatureStatus | undefined;
3895
3895
  }
3896
3896
  /**
3897
3897
  * <p>The VDM attributes that apply to your Amazon SES account.</p>
@@ -3918,13 +3918,13 @@ export interface VdmAttributes {
3918
3918
  * Dashboard.</p>
3919
3919
  * @public
3920
3920
  */
3921
- DashboardAttributes?: DashboardAttributes;
3921
+ DashboardAttributes?: DashboardAttributes | undefined;
3922
3922
  /**
3923
3923
  * <p>Specifies additional settings for your VDM configuration as applicable to the
3924
3924
  * Guardian.</p>
3925
3925
  * @public
3926
3926
  */
3927
- GuardianAttributes?: GuardianAttributes;
3927
+ GuardianAttributes?: GuardianAttributes | undefined;
3928
3928
  }
3929
3929
  /**
3930
3930
  * <p>A list of details about the email-sending capabilities of your Amazon SES account in the
@@ -3937,7 +3937,7 @@ export interface GetAccountResponse {
3937
3937
  * addresses that are associated with your account.</p>
3938
3938
  * @public
3939
3939
  */
3940
- DedicatedIpAutoWarmupEnabled?: boolean;
3940
+ DedicatedIpAutoWarmupEnabled?: boolean | undefined;
3941
3941
  /**
3942
3942
  * <p>The reputation status of your Amazon SES account. The status can be one of the
3943
3943
  * following:</p>
@@ -3963,7 +3963,7 @@ export interface GetAccountResponse {
3963
3963
  * </ul>
3964
3964
  * @public
3965
3965
  */
3966
- EnforcementStatus?: string;
3966
+ EnforcementStatus?: string | undefined;
3967
3967
  /**
3968
3968
  * <p>Indicates whether or not your account has production access in the current Amazon Web Services
3969
3969
  * Region.</p>
@@ -3976,35 +3976,35 @@ export interface GetAccountResponse {
3976
3976
  * maximum sending rate for your account vary based on your specific use case.</p>
3977
3977
  * @public
3978
3978
  */
3979
- ProductionAccessEnabled?: boolean;
3979
+ ProductionAccessEnabled?: boolean | undefined;
3980
3980
  /**
3981
3981
  * <p>An object that contains information about the per-day and per-second sending limits
3982
3982
  * for your Amazon SES account in the current Amazon Web Services Region.</p>
3983
3983
  * @public
3984
3984
  */
3985
- SendQuota?: SendQuota;
3985
+ SendQuota?: SendQuota | undefined;
3986
3986
  /**
3987
3987
  * <p>Indicates whether or not email sending is enabled for your Amazon SES account in the
3988
3988
  * current Amazon Web Services Region.</p>
3989
3989
  * @public
3990
3990
  */
3991
- SendingEnabled?: boolean;
3991
+ SendingEnabled?: boolean | undefined;
3992
3992
  /**
3993
3993
  * <p>An object that contains information about the email address suppression preferences
3994
3994
  * for your account in the current Amazon Web Services Region.</p>
3995
3995
  * @public
3996
3996
  */
3997
- SuppressionAttributes?: SuppressionAttributes;
3997
+ SuppressionAttributes?: SuppressionAttributes | undefined;
3998
3998
  /**
3999
3999
  * <p>An object that defines your account details.</p>
4000
4000
  * @public
4001
4001
  */
4002
- Details?: AccountDetails;
4002
+ Details?: AccountDetails | undefined;
4003
4003
  /**
4004
4004
  * <p>The VDM attributes that apply to your Amazon SES account.</p>
4005
4005
  * @public
4006
4006
  */
4007
- VdmAttributes?: VdmAttributes;
4007
+ VdmAttributes?: VdmAttributes | undefined;
4008
4008
  }
4009
4009
  /**
4010
4010
  * <p>A request to retrieve a list of the blacklists that your dedicated IP addresses appear
@@ -4052,49 +4052,49 @@ export interface GetConfigurationSetResponse {
4052
4052
  * <p>The name of the configuration set.</p>
4053
4053
  * @public
4054
4054
  */
4055
- ConfigurationSetName?: string;
4055
+ ConfigurationSetName?: string | undefined;
4056
4056
  /**
4057
4057
  * <p>An object that defines the open and click tracking options for emails that you send
4058
4058
  * using the configuration set.</p>
4059
4059
  * @public
4060
4060
  */
4061
- TrackingOptions?: TrackingOptions;
4061
+ TrackingOptions?: TrackingOptions | undefined;
4062
4062
  /**
4063
4063
  * <p>An object that defines the dedicated IP pool that is used to send emails that you send
4064
4064
  * using the configuration set.</p>
4065
4065
  * @public
4066
4066
  */
4067
- DeliveryOptions?: DeliveryOptions;
4067
+ DeliveryOptions?: DeliveryOptions | undefined;
4068
4068
  /**
4069
4069
  * <p>An object that defines whether or not Amazon SES collects reputation metrics for the emails
4070
4070
  * that you send that use the configuration set.</p>
4071
4071
  * @public
4072
4072
  */
4073
- ReputationOptions?: ReputationOptions;
4073
+ ReputationOptions?: ReputationOptions | undefined;
4074
4074
  /**
4075
4075
  * <p>An object that defines whether or not Amazon SES can send email that you send using the
4076
4076
  * configuration set.</p>
4077
4077
  * @public
4078
4078
  */
4079
- SendingOptions?: SendingOptions;
4079
+ SendingOptions?: SendingOptions | undefined;
4080
4080
  /**
4081
4081
  * <p>An array of objects that define the tags (keys and values) that are associated with
4082
4082
  * the configuration set.</p>
4083
4083
  * @public
4084
4084
  */
4085
- Tags?: Tag[];
4085
+ Tags?: Tag[] | undefined;
4086
4086
  /**
4087
4087
  * <p>An object that contains information about the suppression list preferences for your
4088
4088
  * account.</p>
4089
4089
  * @public
4090
4090
  */
4091
- SuppressionOptions?: SuppressionOptions;
4091
+ SuppressionOptions?: SuppressionOptions | undefined;
4092
4092
  /**
4093
4093
  * <p>An object that contains information about the VDM preferences for your configuration
4094
4094
  * set.</p>
4095
4095
  * @public
4096
4096
  */
4097
- VdmOptions?: VdmOptions;
4097
+ VdmOptions?: VdmOptions | undefined;
4098
4098
  }
4099
4099
  /**
4100
4100
  * <p>A request to obtain information about the event destinations for a configuration
@@ -4118,7 +4118,7 @@ export interface GetConfigurationSetEventDestinationsResponse {
4118
4118
  * the configuration set.</p>
4119
4119
  * @public
4120
4120
  */
4121
- EventDestinations?: EventDestination[];
4121
+ EventDestinations?: EventDestination[] | undefined;
4122
4122
  }
4123
4123
  /**
4124
4124
  * @public
@@ -4143,43 +4143,43 @@ export interface GetContactResponse {
4143
4143
  * <p>The name of the contact list to which the contact belongs.</p>
4144
4144
  * @public
4145
4145
  */
4146
- ContactListName?: string;
4146
+ ContactListName?: string | undefined;
4147
4147
  /**
4148
4148
  * <p>The contact's email address.</p>
4149
4149
  * @public
4150
4150
  */
4151
- EmailAddress?: string;
4151
+ EmailAddress?: string | undefined;
4152
4152
  /**
4153
4153
  * <p>The contact's preference for being opted-in to or opted-out of a topic.></p>
4154
4154
  * @public
4155
4155
  */
4156
- TopicPreferences?: TopicPreference[];
4156
+ TopicPreferences?: TopicPreference[] | undefined;
4157
4157
  /**
4158
4158
  * <p>The default topic preferences applied to the contact.</p>
4159
4159
  * @public
4160
4160
  */
4161
- TopicDefaultPreferences?: TopicPreference[];
4161
+ TopicDefaultPreferences?: TopicPreference[] | undefined;
4162
4162
  /**
4163
4163
  * <p>A boolean value status noting if the contact is unsubscribed from all contact list
4164
4164
  * topics.</p>
4165
4165
  * @public
4166
4166
  */
4167
- UnsubscribeAll?: boolean;
4167
+ UnsubscribeAll?: boolean | undefined;
4168
4168
  /**
4169
4169
  * <p>The attribute data attached to a contact.</p>
4170
4170
  * @public
4171
4171
  */
4172
- AttributesData?: string;
4172
+ AttributesData?: string | undefined;
4173
4173
  /**
4174
4174
  * <p>A timestamp noting when the contact was created.</p>
4175
4175
  * @public
4176
4176
  */
4177
- CreatedTimestamp?: Date;
4177
+ CreatedTimestamp?: Date | undefined;
4178
4178
  /**
4179
4179
  * <p>A timestamp noting the last time the contact's information was updated.</p>
4180
4180
  * @public
4181
4181
  */
4182
- LastUpdatedTimestamp?: Date;
4182
+ LastUpdatedTimestamp?: Date | undefined;
4183
4183
  }
4184
4184
  /**
4185
4185
  * @public
@@ -4199,33 +4199,33 @@ export interface GetContactListResponse {
4199
4199
  * <p>The name of the contact list.</p>
4200
4200
  * @public
4201
4201
  */
4202
- ContactListName?: string;
4202
+ ContactListName?: string | undefined;
4203
4203
  /**
4204
4204
  * <p>An interest group, theme, or label within a list. A contact list can have multiple
4205
4205
  * topics.</p>
4206
4206
  * @public
4207
4207
  */
4208
- Topics?: Topic[];
4208
+ Topics?: Topic[] | undefined;
4209
4209
  /**
4210
4210
  * <p>A description of what the contact list is about.</p>
4211
4211
  * @public
4212
4212
  */
4213
- Description?: string;
4213
+ Description?: string | undefined;
4214
4214
  /**
4215
4215
  * <p>A timestamp noting when the contact list was created.</p>
4216
4216
  * @public
4217
4217
  */
4218
- CreatedTimestamp?: Date;
4218
+ CreatedTimestamp?: Date | undefined;
4219
4219
  /**
4220
4220
  * <p>A timestamp noting the last time the contact list was updated.</p>
4221
4221
  * @public
4222
4222
  */
4223
- LastUpdatedTimestamp?: Date;
4223
+ LastUpdatedTimestamp?: Date | undefined;
4224
4224
  /**
4225
4225
  * <p>The tags associated with a contact list.</p>
4226
4226
  * @public
4227
4227
  */
4228
- Tags?: Tag[];
4228
+ Tags?: Tag[] | undefined;
4229
4229
  }
4230
4230
  /**
4231
4231
  * <p>Represents a request to retrieve an existing custom verification email
@@ -4248,34 +4248,34 @@ export interface GetCustomVerificationEmailTemplateResponse {
4248
4248
  * <p>The name of the custom verification email template.</p>
4249
4249
  * @public
4250
4250
  */
4251
- TemplateName?: string;
4251
+ TemplateName?: string | undefined;
4252
4252
  /**
4253
4253
  * <p>The email address that the custom verification email is sent from.</p>
4254
4254
  * @public
4255
4255
  */
4256
- FromEmailAddress?: string;
4256
+ FromEmailAddress?: string | undefined;
4257
4257
  /**
4258
4258
  * <p>The subject line of the custom verification email.</p>
4259
4259
  * @public
4260
4260
  */
4261
- TemplateSubject?: string;
4261
+ TemplateSubject?: string | undefined;
4262
4262
  /**
4263
4263
  * <p>The content of the custom verification email.</p>
4264
4264
  * @public
4265
4265
  */
4266
- TemplateContent?: string;
4266
+ TemplateContent?: string | undefined;
4267
4267
  /**
4268
4268
  * <p>The URL that the recipient of the verification email is sent to if his or her address
4269
4269
  * is successfully verified.</p>
4270
4270
  * @public
4271
4271
  */
4272
- SuccessRedirectionURL?: string;
4272
+ SuccessRedirectionURL?: string | undefined;
4273
4273
  /**
4274
4274
  * <p>The URL that the recipient of the verification email is sent to if his or her address
4275
4275
  * is not successfully verified.</p>
4276
4276
  * @public
4277
4277
  */
4278
- FailureRedirectionURL?: string;
4278
+ FailureRedirectionURL?: string | undefined;
4279
4279
  }
4280
4280
  /**
4281
4281
  * <p>A request to obtain more information about a dedicated IP address.</p>
@@ -4298,7 +4298,7 @@ export interface GetDedicatedIpResponse {
4298
4298
  * <p>An object that contains information about a dedicated IP address.</p>
4299
4299
  * @public
4300
4300
  */
4301
- DedicatedIp?: DedicatedIp;
4301
+ DedicatedIp?: DedicatedIp | undefined;
4302
4302
  }
4303
4303
  /**
4304
4304
  * <p>A request to obtain more information about a dedicated IP pool.</p>
@@ -4320,7 +4320,7 @@ export interface GetDedicatedIpPoolResponse {
4320
4320
  * <p>An object that contains information about a dedicated IP pool.</p>
4321
4321
  * @public
4322
4322
  */
4323
- DedicatedIpPool?: DedicatedIpPool;
4323
+ DedicatedIpPool?: DedicatedIpPool | undefined;
4324
4324
  }
4325
4325
  /**
4326
4326
  * <p>A request to obtain more information about dedicated IP pools.</p>
@@ -4331,13 +4331,13 @@ export interface GetDedicatedIpsRequest {
4331
4331
  * <p>The name of the IP pool that the dedicated IP address is associated with.</p>
4332
4332
  * @public
4333
4333
  */
4334
- PoolName?: string;
4334
+ PoolName?: string | undefined;
4335
4335
  /**
4336
4336
  * <p>A token returned from a previous call to <code>GetDedicatedIps</code> to indicate the
4337
4337
  * position of the dedicated IP pool in the list of IP pools.</p>
4338
4338
  * @public
4339
4339
  */
4340
- NextToken?: string;
4340
+ NextToken?: string | undefined;
4341
4341
  /**
4342
4342
  * <p>The number of results to show in a single call to <code>GetDedicatedIpsRequest</code>.
4343
4343
  * If the number of results is larger than the number you specified in this parameter, then
@@ -4345,7 +4345,7 @@ export interface GetDedicatedIpsRequest {
4345
4345
  * additional results.</p>
4346
4346
  * @public
4347
4347
  */
4348
- PageSize?: number;
4348
+ PageSize?: number | undefined;
4349
4349
  }
4350
4350
  /**
4351
4351
  * <p>Information about the dedicated IP addresses that are associated with your Amazon Web Services
@@ -4357,14 +4357,14 @@ export interface GetDedicatedIpsResponse {
4357
4357
  * <p>A list of dedicated IP addresses that are associated with your Amazon Web Services account.</p>
4358
4358
  * @public
4359
4359
  */
4360
- DedicatedIps?: DedicatedIp[];
4360
+ DedicatedIps?: DedicatedIp[] | undefined;
4361
4361
  /**
4362
4362
  * <p>A token that indicates that there are additional dedicated IP addresses to list. To
4363
4363
  * view additional addresses, issue another request to <code>GetDedicatedIps</code>,
4364
4364
  * passing this token in the <code>NextToken</code> parameter.</p>
4365
4365
  * @public
4366
4366
  */
4367
- NextToken?: string;
4367
+ NextToken?: string | undefined;
4368
4368
  }
4369
4369
  /**
4370
4370
  * <p>Retrieve information about the status of the Deliverability dashboard for your Amazon Web Services account.
@@ -4395,28 +4395,28 @@ export interface GetDeliverabilityDashboardOptionsResponse {
4395
4395
  * due to expire at the end of the month.</p>
4396
4396
  * @public
4397
4397
  */
4398
- SubscriptionExpiryDate?: Date;
4398
+ SubscriptionExpiryDate?: Date | undefined;
4399
4399
  /**
4400
4400
  * <p>The current status of your Deliverability dashboard subscription. If this value is
4401
4401
  * <code>PENDING_EXPIRATION</code>, your subscription is scheduled to expire at the end
4402
4402
  * of the current calendar month.</p>
4403
4403
  * @public
4404
4404
  */
4405
- AccountStatus?: DeliverabilityDashboardAccountStatus;
4405
+ AccountStatus?: DeliverabilityDashboardAccountStatus | undefined;
4406
4406
  /**
4407
4407
  * <p>An array of objects, one for each verified domain that you use to send email and
4408
4408
  * currently has an active Deliverability dashboard subscription that isn’t scheduled to expire at
4409
4409
  * the end of the current calendar month.</p>
4410
4410
  * @public
4411
4411
  */
4412
- ActiveSubscribedDomains?: DomainDeliverabilityTrackingOption[];
4412
+ ActiveSubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
4413
4413
  /**
4414
4414
  * <p>An array of objects, one for each verified domain that you use to send email and
4415
4415
  * currently has an active Deliverability dashboard subscription that's scheduled to expire at the
4416
4416
  * end of the current calendar month.</p>
4417
4417
  * @public
4418
4418
  */
4419
- PendingExpirationSubscribedDomains?: DomainDeliverabilityTrackingOption[];
4419
+ PendingExpirationSubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
4420
4420
  }
4421
4421
  /**
4422
4422
  * <p>A request to retrieve the results of a predictive inbox placement test.</p>
@@ -4438,31 +4438,31 @@ export interface PlacementStatistics {
4438
4438
  * <p>The percentage of emails that arrived in recipients' inboxes during the predictive inbox placement test.</p>
4439
4439
  * @public
4440
4440
  */
4441
- InboxPercentage?: number;
4441
+ InboxPercentage?: number | undefined;
4442
4442
  /**
4443
4443
  * <p>The percentage of emails that arrived in recipients' spam or junk mail folders during
4444
4444
  * the predictive inbox placement test.</p>
4445
4445
  * @public
4446
4446
  */
4447
- SpamPercentage?: number;
4447
+ SpamPercentage?: number | undefined;
4448
4448
  /**
4449
4449
  * <p>The percentage of emails that didn't arrive in recipients' inboxes at all during the
4450
4450
  * predictive inbox placement test.</p>
4451
4451
  * @public
4452
4452
  */
4453
- MissingPercentage?: number;
4453
+ MissingPercentage?: number | undefined;
4454
4454
  /**
4455
4455
  * <p>The percentage of emails that were authenticated by using Sender Policy Framework
4456
4456
  * (SPF) during the predictive inbox placement test.</p>
4457
4457
  * @public
4458
4458
  */
4459
- SpfPercentage?: number;
4459
+ SpfPercentage?: number | undefined;
4460
4460
  /**
4461
4461
  * <p>The percentage of emails that were authenticated by using DomainKeys Identified Mail
4462
4462
  * (DKIM) during the predictive inbox placement test.</p>
4463
4463
  * @public
4464
4464
  */
4465
- DkimPercentage?: number;
4465
+ DkimPercentage?: number | undefined;
4466
4466
  }
4467
4467
  /**
4468
4468
  * <p>An object that describes how email sent during the predictive inbox placement test was handled by a certain
@@ -4474,12 +4474,12 @@ export interface IspPlacement {
4474
4474
  * <p>The name of the email provider that the inbox placement data applies to.</p>
4475
4475
  * @public
4476
4476
  */
4477
- IspName?: string;
4477
+ IspName?: string | undefined;
4478
4478
  /**
4479
4479
  * <p>An object that contains inbox placement metrics for a specific email provider.</p>
4480
4480
  * @public
4481
4481
  */
4482
- PlacementStatistics?: PlacementStatistics;
4482
+ PlacementStatistics?: PlacementStatistics | undefined;
4483
4483
  }
4484
4484
  /**
4485
4485
  * <p>The results of the predictive inbox placement test.</p>
@@ -4509,13 +4509,13 @@ export interface GetDeliverabilityTestReportResponse {
4509
4509
  * predictive inbox placement test.</p>
4510
4510
  * @public
4511
4511
  */
4512
- Message?: string;
4512
+ Message?: string | undefined;
4513
4513
  /**
4514
4514
  * <p>An array of objects that define the tags (keys and values) that are associated with
4515
4515
  * the predictive inbox placement test.</p>
4516
4516
  * @public
4517
4517
  */
4518
- Tags?: Tag[];
4518
+ Tags?: Tag[] | undefined;
4519
4519
  }
4520
4520
  /**
4521
4521
  * <p>Retrieve all the deliverability data for a specific campaign. This data is available
@@ -4580,19 +4580,19 @@ export interface OverallVolume {
4580
4580
  * recipients' inboxes and junk mail folders.</p>
4581
4581
  * @public
4582
4582
  */
4583
- VolumeStatistics?: VolumeStatistics;
4583
+ VolumeStatistics?: VolumeStatistics | undefined;
4584
4584
  /**
4585
4585
  * <p>The percentage of emails that were sent from the domain that were read by their
4586
4586
  * recipients.</p>
4587
4587
  * @public
4588
4588
  */
4589
- ReadRatePercent?: number;
4589
+ ReadRatePercent?: number | undefined;
4590
4590
  /**
4591
4591
  * <p>An object that contains inbox and junk mail placement metrics for individual email
4592
4592
  * providers.</p>
4593
4593
  * @public
4594
4594
  */
4595
- DomainIspPlacements?: DomainIspPlacement[];
4595
+ DomainIspPlacements?: DomainIspPlacement[] | undefined;
4596
4596
  }
4597
4597
  /**
4598
4598
  * <p>An object that includes statistics that are related to the domain that you
@@ -4716,17 +4716,17 @@ export interface SOARecord {
4716
4716
  * <p>Primary name server specified in the SOA record.</p>
4717
4717
  * @public
4718
4718
  */
4719
- PrimaryNameServer?: string;
4719
+ PrimaryNameServer?: string | undefined;
4720
4720
  /**
4721
4721
  * <p>Administrative contact email from the SOA record.</p>
4722
4722
  * @public
4723
4723
  */
4724
- AdminEmail?: string;
4724
+ AdminEmail?: string | undefined;
4725
4725
  /**
4726
4726
  * <p>Serial number from the SOA record.</p>
4727
4727
  * @public
4728
4728
  */
4729
- SerialNumber?: number;
4729
+ SerialNumber?: number | undefined;
4730
4730
  }
4731
4731
  /**
4732
4732
  * <p>An object that contains additional information about the verification status for the
@@ -4738,12 +4738,12 @@ export interface VerificationInfo {
4738
4738
  * <p>The last time a verification attempt was made for this identity.</p>
4739
4739
  * @public
4740
4740
  */
4741
- LastCheckedTimestamp?: Date;
4741
+ LastCheckedTimestamp?: Date | undefined;
4742
4742
  /**
4743
4743
  * <p>The last time a successful verification was made for this identity.</p>
4744
4744
  * @public
4745
4745
  */
4746
- LastSuccessTimestamp?: Date;
4746
+ LastSuccessTimestamp?: Date | undefined;
4747
4747
  /**
4748
4748
  * <p>Provides the reason for the failure describing why Amazon SES was not able to successfully
4749
4749
  * verify the identity. Below are the possible values: </p>
@@ -4779,13 +4779,13 @@ export interface VerificationInfo {
4779
4779
  * </ul>
4780
4780
  * @public
4781
4781
  */
4782
- ErrorType?: VerificationError;
4782
+ ErrorType?: VerificationError | undefined;
4783
4783
  /**
4784
4784
  * <p>An object that contains information about the start of authority (SOA) record
4785
4785
  * associated with the identity.</p>
4786
4786
  * @public
4787
4787
  */
4788
- SOARecord?: SOARecord;
4788
+ SOARecord?: SOARecord | undefined;
4789
4789
  }
4790
4790
  /**
4791
4791
  * @public
@@ -4812,7 +4812,7 @@ export interface GetEmailIdentityResponse {
4812
4812
  * supported.</p>
4813
4813
  * @public
4814
4814
  */
4815
- IdentityType?: IdentityType;
4815
+ IdentityType?: IdentityType | undefined;
4816
4816
  /**
4817
4817
  * <p>The feedback forwarding configuration for the identity.</p>
4818
4818
  * <p>If the value is <code>true</code>, you receive email notifications when bounce or
@@ -4824,41 +4824,41 @@ export interface GetEmailIdentityResponse {
4824
4824
  * occur (even if this setting is disabled).</p>
4825
4825
  * @public
4826
4826
  */
4827
- FeedbackForwardingStatus?: boolean;
4827
+ FeedbackForwardingStatus?: boolean | undefined;
4828
4828
  /**
4829
4829
  * <p>Specifies whether or not the identity is verified. You can only send email from
4830
4830
  * verified email addresses or domains. For more information about verifying identities,
4831
4831
  * see the <a href="https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-manage-verify.html">Amazon Pinpoint User Guide</a>.</p>
4832
4832
  * @public
4833
4833
  */
4834
- VerifiedForSendingStatus?: boolean;
4834
+ VerifiedForSendingStatus?: boolean | undefined;
4835
4835
  /**
4836
4836
  * <p>An object that contains information about the DKIM attributes for the identity.</p>
4837
4837
  * @public
4838
4838
  */
4839
- DkimAttributes?: DkimAttributes;
4839
+ DkimAttributes?: DkimAttributes | undefined;
4840
4840
  /**
4841
4841
  * <p>An object that contains information about the Mail-From attributes for the email
4842
4842
  * identity.</p>
4843
4843
  * @public
4844
4844
  */
4845
- MailFromAttributes?: MailFromAttributes;
4845
+ MailFromAttributes?: MailFromAttributes | undefined;
4846
4846
  /**
4847
4847
  * <p>A map of policy names to policies.</p>
4848
4848
  * @public
4849
4849
  */
4850
- Policies?: Record<string, string>;
4850
+ Policies?: Record<string, string> | undefined;
4851
4851
  /**
4852
4852
  * <p>An array of objects that define the tags (keys and values) that are associated with
4853
4853
  * the email identity.</p>
4854
4854
  * @public
4855
4855
  */
4856
- Tags?: Tag[];
4856
+ Tags?: Tag[] | undefined;
4857
4857
  /**
4858
4858
  * <p>The configuration set used by default when sending from this identity.</p>
4859
4859
  * @public
4860
4860
  */
4861
- ConfigurationSetName?: string;
4861
+ ConfigurationSetName?: string | undefined;
4862
4862
  /**
4863
4863
  * <p>The verification status of the identity. The status can be one of the following:</p>
4864
4864
  * <ul>
@@ -4889,13 +4889,13 @@ export interface GetEmailIdentityResponse {
4889
4889
  * </ul>
4890
4890
  * @public
4891
4891
  */
4892
- VerificationStatus?: VerificationStatus;
4892
+ VerificationStatus?: VerificationStatus | undefined;
4893
4893
  /**
4894
4894
  * <p>An object that contains additional information about the verification status for the
4895
4895
  * identity.</p>
4896
4896
  * @public
4897
4897
  */
4898
- VerificationInfo?: VerificationInfo;
4898
+ VerificationInfo?: VerificationInfo | undefined;
4899
4899
  }
4900
4900
  /**
4901
4901
  * <p>A request to return the policies of an email identity.</p>
@@ -4917,7 +4917,7 @@ export interface GetEmailIdentityPoliciesResponse {
4917
4917
  * <p>A map of policy names to policies.</p>
4918
4918
  * @public
4919
4919
  */
4920
- Policies?: Record<string, string>;
4920
+ Policies?: Record<string, string> | undefined;
4921
4921
  }
4922
4922
  /**
4923
4923
  * <p>Represents a request to display the template object (which includes the subject line,
@@ -4970,47 +4970,47 @@ export interface GetExportJobResponse {
4970
4970
  * <p>The export job ID.</p>
4971
4971
  * @public
4972
4972
  */
4973
- JobId?: string;
4973
+ JobId?: string | undefined;
4974
4974
  /**
4975
4975
  * <p>The type of source of the export job.</p>
4976
4976
  * @public
4977
4977
  */
4978
- ExportSourceType?: ExportSourceType;
4978
+ ExportSourceType?: ExportSourceType | undefined;
4979
4979
  /**
4980
4980
  * <p>The status of the export job.</p>
4981
4981
  * @public
4982
4982
  */
4983
- JobStatus?: JobStatus;
4983
+ JobStatus?: JobStatus | undefined;
4984
4984
  /**
4985
4985
  * <p>The destination of the export job.</p>
4986
4986
  * @public
4987
4987
  */
4988
- ExportDestination?: ExportDestination;
4988
+ ExportDestination?: ExportDestination | undefined;
4989
4989
  /**
4990
4990
  * <p>The data source of the export job.</p>
4991
4991
  * @public
4992
4992
  */
4993
- ExportDataSource?: ExportDataSource;
4993
+ ExportDataSource?: ExportDataSource | undefined;
4994
4994
  /**
4995
4995
  * <p>The timestamp of when the export job was created.</p>
4996
4996
  * @public
4997
4997
  */
4998
- CreatedTimestamp?: Date;
4998
+ CreatedTimestamp?: Date | undefined;
4999
4999
  /**
5000
5000
  * <p>The timestamp of when the export job was completed.</p>
5001
5001
  * @public
5002
5002
  */
5003
- CompletedTimestamp?: Date;
5003
+ CompletedTimestamp?: Date | undefined;
5004
5004
  /**
5005
5005
  * <p>The failure details about an export job.</p>
5006
5006
  * @public
5007
5007
  */
5008
- FailureInfo?: FailureInfo;
5008
+ FailureInfo?: FailureInfo | undefined;
5009
5009
  /**
5010
5010
  * <p>The statistics about the export job.</p>
5011
5011
  * @public
5012
5012
  */
5013
- Statistics?: ExportStatistics;
5013
+ Statistics?: ExportStatistics | undefined;
5014
5014
  }
5015
5015
  /**
5016
5016
  * <p>Represents a request for information about an import job using the import job
@@ -5034,48 +5034,48 @@ export interface GetImportJobResponse {
5034
5034
  * <p>A string that represents the import job ID.</p>
5035
5035
  * @public
5036
5036
  */
5037
- JobId?: string;
5037
+ JobId?: string | undefined;
5038
5038
  /**
5039
5039
  * <p>The destination of the import job.</p>
5040
5040
  * @public
5041
5041
  */
5042
- ImportDestination?: ImportDestination;
5042
+ ImportDestination?: ImportDestination | undefined;
5043
5043
  /**
5044
5044
  * <p>The data source of the import job.</p>
5045
5045
  * @public
5046
5046
  */
5047
- ImportDataSource?: ImportDataSource;
5047
+ ImportDataSource?: ImportDataSource | undefined;
5048
5048
  /**
5049
5049
  * <p>The failure details about an import job.</p>
5050
5050
  * @public
5051
5051
  */
5052
- FailureInfo?: FailureInfo;
5052
+ FailureInfo?: FailureInfo | undefined;
5053
5053
  /**
5054
5054
  * <p>The status of the import job.</p>
5055
5055
  * @public
5056
5056
  */
5057
- JobStatus?: JobStatus;
5057
+ JobStatus?: JobStatus | undefined;
5058
5058
  /**
5059
5059
  * <p>The time stamp of when the import job was created.</p>
5060
5060
  * @public
5061
5061
  */
5062
- CreatedTimestamp?: Date;
5062
+ CreatedTimestamp?: Date | undefined;
5063
5063
  /**
5064
5064
  * <p>The time stamp of when the import job was completed.</p>
5065
5065
  * @public
5066
5066
  */
5067
- CompletedTimestamp?: Date;
5067
+ CompletedTimestamp?: Date | undefined;
5068
5068
  /**
5069
5069
  * <p>The current number of records processed.</p>
5070
5070
  * @public
5071
5071
  */
5072
- ProcessedRecordsCount?: number;
5072
+ ProcessedRecordsCount?: number | undefined;
5073
5073
  /**
5074
5074
  * <p>The number of records that failed processing because of invalid input or other
5075
5075
  * reasons.</p>
5076
5076
  * @public
5077
5077
  */
5078
- FailedRecordsCount?: number;
5078
+ FailedRecordsCount?: number | undefined;
5079
5079
  }
5080
5080
  /**
5081
5081
  * <p>A request to return information about a message.</p>
@@ -5100,17 +5100,17 @@ export interface GetMessageInsightsResponse {
5100
5100
  * <p>A unique identifier for the message.</p>
5101
5101
  * @public
5102
5102
  */
5103
- MessageId?: string;
5103
+ MessageId?: string | undefined;
5104
5104
  /**
5105
5105
  * <p>The from address used to send the message.</p>
5106
5106
  * @public
5107
5107
  */
5108
- FromEmailAddress?: string;
5108
+ FromEmailAddress?: string | undefined;
5109
5109
  /**
5110
5110
  * <p>The subject line of the message.</p>
5111
5111
  * @public
5112
5112
  */
5113
- Subject?: string;
5113
+ Subject?: string | undefined;
5114
5114
  /**
5115
5115
  * <p>
5116
5116
  * A list of tags, in the form of name/value pairs, that were applied to the email you sent, along with Amazon SES
@@ -5118,12 +5118,12 @@ export interface GetMessageInsightsResponse {
5118
5118
  * </p>
5119
5119
  * @public
5120
5120
  */
5121
- EmailTags?: MessageTag[];
5121
+ EmailTags?: MessageTag[] | undefined;
5122
5122
  /**
5123
5123
  * <p>A set of insights associated with the message.</p>
5124
5124
  * @public
5125
5125
  */
5126
- Insights?: EmailInsights[];
5126
+ Insights?: EmailInsights[] | undefined;
5127
5127
  }
5128
5128
  /**
5129
5129
  * <p>A request to retrieve information about an email address that's on the suppression
@@ -5148,13 +5148,13 @@ export interface SuppressedDestinationAttributes {
5148
5148
  * to the suppression list for your account.</p>
5149
5149
  * @public
5150
5150
  */
5151
- MessageId?: string;
5151
+ MessageId?: string | undefined;
5152
5152
  /**
5153
5153
  * <p>A unique identifier that's generated when an email address is added to the suppression
5154
5154
  * list for your account.</p>
5155
5155
  * @public
5156
5156
  */
5157
- FeedbackId?: string;
5157
+ FeedbackId?: string | undefined;
5158
5158
  }
5159
5159
  /**
5160
5160
  * <p>An object that contains information about an email address that is on the suppression
@@ -5183,7 +5183,7 @@ export interface SuppressedDestination {
5183
5183
  * address was added to the suppression list for your account.</p>
5184
5184
  * @public
5185
5185
  */
5186
- Attributes?: SuppressedDestinationAttributes;
5186
+ Attributes?: SuppressedDestinationAttributes | undefined;
5187
5187
  }
5188
5188
  /**
5189
5189
  * <p>Information about the suppressed email address.</p>
@@ -5206,12 +5206,12 @@ export interface IdentityInfo {
5206
5206
  * for email identity types.</p>
5207
5207
  * @public
5208
5208
  */
5209
- IdentityType?: IdentityType;
5209
+ IdentityType?: IdentityType | undefined;
5210
5210
  /**
5211
5211
  * <p>The address or domain of the identity.</p>
5212
5212
  * @public
5213
5213
  */
5214
- IdentityName?: string;
5214
+ IdentityName?: string | undefined;
5215
5215
  /**
5216
5216
  * <p>Indicates whether or not you can send email from the identity.</p>
5217
5217
  * <p>An <i>identity</i> is an email address or domain that you send email
@@ -5219,7 +5219,7 @@ export interface IdentityInfo {
5219
5219
  * the identity, and that you authorize Amazon SES to send email from that identity.</p>
5220
5220
  * @public
5221
5221
  */
5222
- SendingEnabled?: boolean;
5222
+ SendingEnabled?: boolean | undefined;
5223
5223
  /**
5224
5224
  * <p>The verification status of the identity. The status can be one of the
5225
5225
  * following:</p>
@@ -5251,7 +5251,7 @@ export interface IdentityInfo {
5251
5251
  * </ul>
5252
5252
  * @public
5253
5253
  */
5254
- VerificationStatus?: VerificationStatus;
5254
+ VerificationStatus?: VerificationStatus | undefined;
5255
5255
  }
5256
5256
  /**
5257
5257
  * @public
@@ -5274,13 +5274,13 @@ export interface ImportJobSummary {
5274
5274
  * <p>A string that represents a job ID.</p>
5275
5275
  * @public
5276
5276
  */
5277
- JobId?: string;
5277
+ JobId?: string | undefined;
5278
5278
  /**
5279
5279
  * <p>An object that contains details about the resource destination the import job is going
5280
5280
  * to target.</p>
5281
5281
  * @public
5282
5282
  */
5283
- ImportDestination?: ImportDestination;
5283
+ ImportDestination?: ImportDestination | undefined;
5284
5284
  /**
5285
5285
  * <p>The status of a job.</p>
5286
5286
  * <ul>
@@ -5303,23 +5303,23 @@ export interface ImportJobSummary {
5303
5303
  * </ul>
5304
5304
  * @public
5305
5305
  */
5306
- JobStatus?: JobStatus;
5306
+ JobStatus?: JobStatus | undefined;
5307
5307
  /**
5308
5308
  * <p>The date and time when the import job was created.</p>
5309
5309
  * @public
5310
5310
  */
5311
- CreatedTimestamp?: Date;
5311
+ CreatedTimestamp?: Date | undefined;
5312
5312
  /**
5313
5313
  * <p>The current number of records processed.</p>
5314
5314
  * @public
5315
5315
  */
5316
- ProcessedRecordsCount?: number;
5316
+ ProcessedRecordsCount?: number | undefined;
5317
5317
  /**
5318
5318
  * <p>The number of records that failed processing because of invalid input or other
5319
5319
  * reasons.</p>
5320
5320
  * @public
5321
5321
  */
5322
- FailedRecordsCount?: number;
5322
+ FailedRecordsCount?: number | undefined;
5323
5323
  }
5324
5324
  /**
5325
5325
  * <p>The specified request includes an invalid or expired token.</p>
@@ -5344,7 +5344,7 @@ export interface ListConfigurationSetsRequest {
5344
5344
  * indicate the position in the list of configuration sets.</p>
5345
5345
  * @public
5346
5346
  */
5347
- NextToken?: string;
5347
+ NextToken?: string | undefined;
5348
5348
  /**
5349
5349
  * <p>The number of results to show in a single call to <code>ListConfigurationSets</code>.
5350
5350
  * If the number of results is larger than the number you specified in this parameter, then
@@ -5352,7 +5352,7 @@ export interface ListConfigurationSetsRequest {
5352
5352
  * additional results.</p>
5353
5353
  * @public
5354
5354
  */
5355
- PageSize?: number;
5355
+ PageSize?: number | undefined;
5356
5356
  }
5357
5357
  /**
5358
5358
  * <p>A list of configuration sets in your Amazon SES account in the current Amazon Web Services Region.</p>
@@ -5364,7 +5364,7 @@ export interface ListConfigurationSetsResponse {
5364
5364
  * current Amazon Web Services Region.</p>
5365
5365
  * @public
5366
5366
  */
5367
- ConfigurationSets?: string[];
5367
+ ConfigurationSets?: string[] | undefined;
5368
5368
  /**
5369
5369
  * <p>A token that indicates that there are additional configuration sets to list. To view
5370
5370
  * additional configuration sets, issue another request to
@@ -5372,7 +5372,7 @@ export interface ListConfigurationSetsResponse {
5372
5372
  * <code>NextToken</code> parameter.</p>
5373
5373
  * @public
5374
5374
  */
5375
- NextToken?: string;
5375
+ NextToken?: string | undefined;
5376
5376
  }
5377
5377
  /**
5378
5378
  * @public
@@ -5386,7 +5386,7 @@ export interface ListContactListsRequest {
5386
5386
  * lists.</p>
5387
5387
  * @public
5388
5388
  */
5389
- PageSize?: number;
5389
+ PageSize?: number | undefined;
5390
5390
  /**
5391
5391
  * <p>A string token indicating that there might be additional contact lists available to be
5392
5392
  * listed. Use the token provided in the Response to use in the subsequent call to
@@ -5394,7 +5394,7 @@ export interface ListContactListsRequest {
5394
5394
  * lists.</p>
5395
5395
  * @public
5396
5396
  */
5397
- NextToken?: string;
5397
+ NextToken?: string | undefined;
5398
5398
  }
5399
5399
  /**
5400
5400
  * @public
@@ -5404,14 +5404,14 @@ export interface ListContactListsResponse {
5404
5404
  * <p>The available contact lists.</p>
5405
5405
  * @public
5406
5406
  */
5407
- ContactLists?: ContactList[];
5407
+ ContactLists?: ContactList[] | undefined;
5408
5408
  /**
5409
5409
  * <p>A string token indicating that there might be additional contact lists available to be
5410
5410
  * listed. Copy this token to a subsequent call to <code>ListContactLists</code> with the
5411
5411
  * same parameters to retrieve the next page of contact lists.</p>
5412
5412
  * @public
5413
5413
  */
5414
- NextToken?: string;
5414
+ NextToken?: string | undefined;
5415
5415
  }
5416
5416
  /**
5417
5417
  * <p>Used for filtering by a specific topic preference.</p>
@@ -5422,13 +5422,13 @@ export interface TopicFilter {
5422
5422
  * <p>The name of a topic on which you wish to apply the filter.</p>
5423
5423
  * @public
5424
5424
  */
5425
- TopicName?: string;
5425
+ TopicName?: string | undefined;
5426
5426
  /**
5427
5427
  * <p>Notes that the default subscription status should be applied to a contact because the
5428
5428
  * contact has not noted their preference for subscribing to a topic.</p>
5429
5429
  * @public
5430
5430
  */
5431
- UseDefaultIfPreferenceUnavailable?: boolean;
5431
+ UseDefaultIfPreferenceUnavailable?: boolean | undefined;
5432
5432
  }
5433
5433
  /**
5434
5434
  * <p>A filter that can be applied to a list of contacts.</p>
@@ -5440,12 +5440,12 @@ export interface ListContactsFilter {
5440
5440
  * <code>OPT_OUT</code>.</p>
5441
5441
  * @public
5442
5442
  */
5443
- FilteredStatus?: SubscriptionStatus;
5443
+ FilteredStatus?: SubscriptionStatus | undefined;
5444
5444
  /**
5445
5445
  * <p>Used for filtering by a specific topic preference.</p>
5446
5446
  * @public
5447
5447
  */
5448
- TopicFilter?: TopicFilter;
5448
+ TopicFilter?: TopicFilter | undefined;
5449
5449
  }
5450
5450
  /**
5451
5451
  * @public
@@ -5460,7 +5460,7 @@ export interface ListContactsRequest {
5460
5460
  * <p>A filter that can be applied to a list of contacts.</p>
5461
5461
  * @public
5462
5462
  */
5463
- Filter?: ListContactsFilter;
5463
+ Filter?: ListContactsFilter | undefined;
5464
5464
  /**
5465
5465
  * <p>The number of contacts that may be returned at once, which is dependent on if there
5466
5466
  * are more or less contacts than the value of the PageSize. Use this parameter to paginate
@@ -5470,14 +5470,14 @@ export interface ListContactsRequest {
5470
5470
  * contacts.</p>
5471
5471
  * @public
5472
5472
  */
5473
- PageSize?: number;
5473
+ PageSize?: number | undefined;
5474
5474
  /**
5475
5475
  * <p>A string token indicating that there might be additional contacts available to be
5476
5476
  * listed. Use the token provided in the Response to use in the subsequent call to
5477
5477
  * ListContacts with the same parameters to retrieve the next page of contacts.</p>
5478
5478
  * @public
5479
5479
  */
5480
- NextToken?: string;
5480
+ NextToken?: string | undefined;
5481
5481
  }
5482
5482
  /**
5483
5483
  * @public
@@ -5487,14 +5487,14 @@ export interface ListContactsResponse {
5487
5487
  * <p>The contacts present in a specific contact list.</p>
5488
5488
  * @public
5489
5489
  */
5490
- Contacts?: Contact[];
5490
+ Contacts?: Contact[] | undefined;
5491
5491
  /**
5492
5492
  * <p>A string token indicating that there might be additional contacts available to be
5493
5493
  * listed. Copy this token to a subsequent call to <code>ListContacts</code> with the same
5494
5494
  * parameters to retrieve the next page of contacts.</p>
5495
5495
  * @public
5496
5496
  */
5497
- NextToken?: string;
5497
+ NextToken?: string | undefined;
5498
5498
  }
5499
5499
  /**
5500
5500
  * <p>Represents a request to list the existing custom verification email templates for your
@@ -5508,7 +5508,7 @@ export interface ListCustomVerificationEmailTemplatesRequest {
5508
5508
  * list of custom verification email templates.</p>
5509
5509
  * @public
5510
5510
  */
5511
- NextToken?: string;
5511
+ NextToken?: string | undefined;
5512
5512
  /**
5513
5513
  * <p>The number of results to show in a single call to
5514
5514
  * <code>ListCustomVerificationEmailTemplates</code>. If the number of results is
@@ -5518,7 +5518,7 @@ export interface ListCustomVerificationEmailTemplatesRequest {
5518
5518
  * <p>The value you specify has to be at least 1, and can be no more than 50.</p>
5519
5519
  * @public
5520
5520
  */
5521
- PageSize?: number;
5521
+ PageSize?: number | undefined;
5522
5522
  }
5523
5523
  /**
5524
5524
  * <p>The following elements are returned by the service.</p>
@@ -5529,7 +5529,7 @@ export interface ListCustomVerificationEmailTemplatesResponse {
5529
5529
  * <p>A list of the custom verification email templates that exist in your account.</p>
5530
5530
  * @public
5531
5531
  */
5532
- CustomVerificationEmailTemplates?: CustomVerificationEmailTemplateMetadata[];
5532
+ CustomVerificationEmailTemplates?: CustomVerificationEmailTemplateMetadata[] | undefined;
5533
5533
  /**
5534
5534
  * <p>A token indicating that there are additional custom verification email templates
5535
5535
  * available to be listed. Pass this token to a subsequent call to
@@ -5537,7 +5537,7 @@ export interface ListCustomVerificationEmailTemplatesResponse {
5537
5537
  * verification email templates.</p>
5538
5538
  * @public
5539
5539
  */
5540
- NextToken?: string;
5540
+ NextToken?: string | undefined;
5541
5541
  }
5542
5542
  /**
5543
5543
  * <p>A request to obtain a list of dedicated IP pools.</p>
@@ -5549,7 +5549,7 @@ export interface ListDedicatedIpPoolsRequest {
5549
5549
  * the position in the list of dedicated IP pools.</p>
5550
5550
  * @public
5551
5551
  */
5552
- NextToken?: string;
5552
+ NextToken?: string | undefined;
5553
5553
  /**
5554
5554
  * <p>The number of results to show in a single call to <code>ListDedicatedIpPools</code>.
5555
5555
  * If the number of results is larger than the number you specified in this parameter, then
@@ -5557,7 +5557,7 @@ export interface ListDedicatedIpPoolsRequest {
5557
5557
  * additional results.</p>
5558
5558
  * @public
5559
5559
  */
5560
- PageSize?: number;
5560
+ PageSize?: number | undefined;
5561
5561
  }
5562
5562
  /**
5563
5563
  * <p>A list of dedicated IP pools.</p>
@@ -5569,14 +5569,14 @@ export interface ListDedicatedIpPoolsResponse {
5569
5569
  * the current Region.</p>
5570
5570
  * @public
5571
5571
  */
5572
- DedicatedIpPools?: string[];
5572
+ DedicatedIpPools?: string[] | undefined;
5573
5573
  /**
5574
5574
  * <p>A token that indicates that there are additional IP pools to list. To view additional
5575
5575
  * IP pools, issue another request to <code>ListDedicatedIpPools</code>, passing this token
5576
5576
  * in the <code>NextToken</code> parameter.</p>
5577
5577
  * @public
5578
5578
  */
5579
- NextToken?: string;
5579
+ NextToken?: string | undefined;
5580
5580
  }
5581
5581
  /**
5582
5582
  * <p>A request to list all of the predictive inbox placement tests that you've performed.</p>
@@ -5588,7 +5588,7 @@ export interface ListDeliverabilityTestReportsRequest {
5588
5588
  * indicate the position in the list of predictive inbox placement tests.</p>
5589
5589
  * @public
5590
5590
  */
5591
- NextToken?: string;
5591
+ NextToken?: string | undefined;
5592
5592
  /**
5593
5593
  * <p>The number of results to show in a single call to
5594
5594
  * <code>ListDeliverabilityTestReports</code>. If the number of results is larger than
@@ -5598,7 +5598,7 @@ export interface ListDeliverabilityTestReportsRequest {
5598
5598
  * <p>The value you specify has to be at least 0, and can be no more than 1000.</p>
5599
5599
  * @public
5600
5600
  */
5601
- PageSize?: number;
5601
+ PageSize?: number | undefined;
5602
5602
  }
5603
5603
  /**
5604
5604
  * <p>A list of the predictive inbox placement test reports that are available for your account, regardless of
@@ -5617,7 +5617,7 @@ export interface ListDeliverabilityTestReportsResponse {
5617
5617
  * this token in the <code>NextToken</code> parameter.</p>
5618
5618
  * @public
5619
5619
  */
5620
- NextToken?: string;
5620
+ NextToken?: string | undefined;
5621
5621
  }
5622
5622
  /**
5623
5623
  * <p>Retrieve deliverability data for all the campaigns that used a specific domain to send
@@ -5650,7 +5650,7 @@ export interface ListDomainDeliverabilityCampaignsRequest {
5650
5650
  * position of a campaign in the list of campaigns.</p>
5651
5651
  * @public
5652
5652
  */
5653
- NextToken?: string;
5653
+ NextToken?: string | undefined;
5654
5654
  /**
5655
5655
  * <p>The maximum number of results to include in response to a single call to the
5656
5656
  * <code>ListDomainDeliverabilityCampaigns</code> operation. If the number of results
@@ -5659,7 +5659,7 @@ export interface ListDomainDeliverabilityCampaignsRequest {
5659
5659
  * results.</p>
5660
5660
  * @public
5661
5661
  */
5662
- PageSize?: number;
5662
+ PageSize?: number | undefined;
5663
5663
  }
5664
5664
  /**
5665
5665
  * <p>An array of objects that provide deliverability data for all the campaigns that used a
@@ -5680,7 +5680,7 @@ export interface ListDomainDeliverabilityCampaignsResponse {
5680
5680
  * position of the campaign in the list of campaigns.</p>
5681
5681
  * @public
5682
5682
  */
5683
- NextToken?: string;
5683
+ NextToken?: string | undefined;
5684
5684
  }
5685
5685
  /**
5686
5686
  * <p>A request to list all of the email identities associated with your Amazon Web Services account. This
@@ -5694,7 +5694,7 @@ export interface ListEmailIdentitiesRequest {
5694
5694
  * the position in the list of identities.</p>
5695
5695
  * @public
5696
5696
  */
5697
- NextToken?: string;
5697
+ NextToken?: string | undefined;
5698
5698
  /**
5699
5699
  * <p>The number of results to show in a single call to <code>ListEmailIdentities</code>. If
5700
5700
  * the number of results is larger than the number you specified in this parameter, then
@@ -5703,7 +5703,7 @@ export interface ListEmailIdentitiesRequest {
5703
5703
  * <p>The value you specify has to be at least 0, and can be no more than 1000.</p>
5704
5704
  * @public
5705
5705
  */
5706
- PageSize?: number;
5706
+ PageSize?: number | undefined;
5707
5707
  }
5708
5708
  /**
5709
5709
  * <p>A list of all of the identities that you've attempted to verify, regardless of whether
@@ -5716,7 +5716,7 @@ export interface ListEmailIdentitiesResponse {
5716
5716
  * account.</p>
5717
5717
  * @public
5718
5718
  */
5719
- EmailIdentities?: IdentityInfo[];
5719
+ EmailIdentities?: IdentityInfo[] | undefined;
5720
5720
  /**
5721
5721
  * <p>A token that indicates that there are additional configuration sets to list. To view
5722
5722
  * additional configuration sets, issue another request to
@@ -5724,7 +5724,7 @@ export interface ListEmailIdentitiesResponse {
5724
5724
  * parameter.</p>
5725
5725
  * @public
5726
5726
  */
5727
- NextToken?: string;
5727
+ NextToken?: string | undefined;
5728
5728
  }
5729
5729
  /**
5730
5730
  * <p>Represents a request to list the email templates present in your Amazon SES account in the
@@ -5738,7 +5738,7 @@ export interface ListEmailTemplatesRequest {
5738
5738
  * the position in the list of email templates.</p>
5739
5739
  * @public
5740
5740
  */
5741
- NextToken?: string;
5741
+ NextToken?: string | undefined;
5742
5742
  /**
5743
5743
  * <p>The number of results to show in a single call to <code>ListEmailTemplates</code>. If the number of
5744
5744
  * results is larger than the number you specified in this parameter, then the response
@@ -5746,7 +5746,7 @@ export interface ListEmailTemplatesRequest {
5746
5746
  * <p>The value you specify has to be at least 1, and can be no more than 100.</p>
5747
5747
  * @public
5748
5748
  */
5749
- PageSize?: number;
5749
+ PageSize?: number | undefined;
5750
5750
  }
5751
5751
  /**
5752
5752
  * <p>The following elements are returned by the service.</p>
@@ -5758,14 +5758,14 @@ export interface ListEmailTemplatesResponse {
5758
5758
  * account.</p>
5759
5759
  * @public
5760
5760
  */
5761
- TemplatesMetadata?: EmailTemplateMetadata[];
5761
+ TemplatesMetadata?: EmailTemplateMetadata[] | undefined;
5762
5762
  /**
5763
5763
  * <p>A token indicating that there are additional email templates available to be listed.
5764
5764
  * Pass this token to a subsequent <code>ListEmailTemplates</code> call to retrieve the
5765
5765
  * next 10 email templates.</p>
5766
5766
  * @public
5767
5767
  */
5768
- NextToken?: string;
5768
+ NextToken?: string | undefined;
5769
5769
  }
5770
5770
  /**
5771
5771
  * <p>Represents a request to list all export jobs with filters.</p>
@@ -5777,7 +5777,7 @@ export interface ListExportJobsRequest {
5777
5777
  * indicate the position in the list of export jobs.</p>
5778
5778
  * @public
5779
5779
  */
5780
- NextToken?: string;
5780
+ NextToken?: string | undefined;
5781
5781
  /**
5782
5782
  * <p>Maximum number of export jobs to return at once. Use this parameter to paginate
5783
5783
  * results. If additional export jobs exist beyond the specified limit, the
@@ -5786,18 +5786,18 @@ export interface ListExportJobsRequest {
5786
5786
  * retrieve additional export jobs.</p>
5787
5787
  * @public
5788
5788
  */
5789
- PageSize?: number;
5789
+ PageSize?: number | undefined;
5790
5790
  /**
5791
5791
  * <p>A value used to list export jobs that have a certain
5792
5792
  * <code>ExportSourceType</code>.</p>
5793
5793
  * @public
5794
5794
  */
5795
- ExportSourceType?: ExportSourceType;
5795
+ ExportSourceType?: ExportSourceType | undefined;
5796
5796
  /**
5797
5797
  * <p>A value used to list export jobs that have a certain <code>JobStatus</code>.</p>
5798
5798
  * @public
5799
5799
  */
5800
- JobStatus?: JobStatus;
5800
+ JobStatus?: JobStatus | undefined;
5801
5801
  }
5802
5802
  /**
5803
5803
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -5809,14 +5809,14 @@ export interface ListExportJobsResponse {
5809
5809
  * <p>A list of the export job summaries.</p>
5810
5810
  * @public
5811
5811
  */
5812
- ExportJobs?: ExportJobSummary[];
5812
+ ExportJobs?: ExportJobSummary[] | undefined;
5813
5813
  /**
5814
5814
  * <p>A string token indicating that there might be additional export jobs available to be
5815
5815
  * listed. Use this token to a subsequent call to <code>ListExportJobs</code> with the same
5816
5816
  * parameters to retrieve the next page of export jobs.</p>
5817
5817
  * @public
5818
5818
  */
5819
- NextToken?: string;
5819
+ NextToken?: string | undefined;
5820
5820
  }
5821
5821
  /**
5822
5822
  * <p>Represents a request to list all of the import jobs for a data destination within the
@@ -5829,14 +5829,14 @@ export interface ListImportJobsRequest {
5829
5829
  * certain <code>ImportDestinationType</code>.</p>
5830
5830
  * @public
5831
5831
  */
5832
- ImportDestinationType?: ImportDestinationType;
5832
+ ImportDestinationType?: ImportDestinationType | undefined;
5833
5833
  /**
5834
5834
  * <p>A string token indicating that there might be additional import jobs available to be
5835
5835
  * listed. Copy this token to a subsequent call to <code>ListImportJobs</code> with the
5836
5836
  * same parameters to retrieve the next page of import jobs.</p>
5837
5837
  * @public
5838
5838
  */
5839
- NextToken?: string;
5839
+ NextToken?: string | undefined;
5840
5840
  /**
5841
5841
  * <p>Maximum number of import jobs to return at once. Use this parameter to paginate
5842
5842
  * results. If additional import jobs exist beyond the specified limit, the
@@ -5845,7 +5845,7 @@ export interface ListImportJobsRequest {
5845
5845
  * addresses.</p>
5846
5846
  * @public
5847
5847
  */
5848
- PageSize?: number;
5848
+ PageSize?: number | undefined;
5849
5849
  }
5850
5850
  /**
5851
5851
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -5857,14 +5857,14 @@ export interface ListImportJobsResponse {
5857
5857
  * <p>A list of the import job summaries.</p>
5858
5858
  * @public
5859
5859
  */
5860
- ImportJobs?: ImportJobSummary[];
5860
+ ImportJobs?: ImportJobSummary[] | undefined;
5861
5861
  /**
5862
5862
  * <p>A string token indicating that there might be additional import jobs available to be
5863
5863
  * listed. Copy this token to a subsequent call to <code>ListImportJobs</code> with the
5864
5864
  * same parameters to retrieve the next page of import jobs.</p>
5865
5865
  * @public
5866
5866
  */
5867
- NextToken?: string;
5867
+ NextToken?: string | undefined;
5868
5868
  }
5869
5869
  /**
5870
5870
  * <p>An object used to specify a list or topic to which an email belongs, which will be
@@ -5881,7 +5881,7 @@ export interface ListManagementOptions {
5881
5881
  * <p>The name of the topic.</p>
5882
5882
  * @public
5883
5883
  */
5884
- TopicName?: string;
5884
+ TopicName?: string | undefined;
5885
5885
  }
5886
5886
  /**
5887
5887
  * @public
@@ -5909,13 +5909,13 @@ export interface ListRecommendationsRequest {
5909
5909
  * </p>
5910
5910
  * @public
5911
5911
  */
5912
- Filter?: Partial<Record<ListRecommendationsFilterKey, string>>;
5912
+ Filter?: Partial<Record<ListRecommendationsFilterKey, string>> | undefined;
5913
5913
  /**
5914
5914
  * <p>A token returned from a previous call to <code>ListRecommendations</code> to
5915
5915
  * indicate the position in the list of recommendations.</p>
5916
5916
  * @public
5917
5917
  */
5918
- NextToken?: string;
5918
+ NextToken?: string | undefined;
5919
5919
  /**
5920
5920
  * <p>The number of results to show in a single call to
5921
5921
  * <code>ListRecommendations</code>. If the number of results is larger than
@@ -5925,7 +5925,7 @@ export interface ListRecommendationsRequest {
5925
5925
  * <p>The value you specify has to be at least 1, and can be no more than 100.</p>
5926
5926
  * @public
5927
5927
  */
5928
- PageSize?: number;
5928
+ PageSize?: number | undefined;
5929
5929
  }
5930
5930
  /**
5931
5931
  * @public
@@ -5975,41 +5975,41 @@ export interface Recommendation {
5975
5975
  * with values like <code>arn:aws:ses:us-east-1:123456789012:identity/example.com</code>.</p>
5976
5976
  * @public
5977
5977
  */
5978
- ResourceArn?: string;
5978
+ ResourceArn?: string | undefined;
5979
5979
  /**
5980
5980
  * <p>The recommendation type, with values like <code>DKIM</code>,
5981
5981
  * <code>SPF</code>, <code>DMARC</code> or <code>BIMI</code>.</p>
5982
5982
  * @public
5983
5983
  */
5984
- Type?: RecommendationType;
5984
+ Type?: RecommendationType | undefined;
5985
5985
  /**
5986
5986
  * <p>The recommendation description / disambiguator - e.g. <code>DKIM1</code> and <code>DKIM2</code>
5987
5987
  * are different recommendations about your DKIM setup.</p>
5988
5988
  * @public
5989
5989
  */
5990
- Description?: string;
5990
+ Description?: string | undefined;
5991
5991
  /**
5992
5992
  * <p>The recommendation status, with values like
5993
5993
  * <code>OPEN</code> or <code>FIXED</code>.</p>
5994
5994
  * @public
5995
5995
  */
5996
- Status?: RecommendationStatus;
5996
+ Status?: RecommendationStatus | undefined;
5997
5997
  /**
5998
5998
  * <p>The first time this issue was encountered and the recommendation was generated.</p>
5999
5999
  * @public
6000
6000
  */
6001
- CreatedTimestamp?: Date;
6001
+ CreatedTimestamp?: Date | undefined;
6002
6002
  /**
6003
6003
  * <p>The last time the recommendation was updated.</p>
6004
6004
  * @public
6005
6005
  */
6006
- LastUpdatedTimestamp?: Date;
6006
+ LastUpdatedTimestamp?: Date | undefined;
6007
6007
  /**
6008
6008
  * <p>The recommendation impact, with values like
6009
6009
  * <code>HIGH</code> or <code>LOW</code>.</p>
6010
6010
  * @public
6011
6011
  */
6012
- Impact?: RecommendationImpact;
6012
+ Impact?: RecommendationImpact | undefined;
6013
6013
  }
6014
6014
  /**
6015
6015
  * <p>Contains the response to your request to retrieve the list of recommendations for your account.</p>
@@ -6020,7 +6020,7 @@ export interface ListRecommendationsResponse {
6020
6020
  * <p>The recommendations applicable to your account.</p>
6021
6021
  * @public
6022
6022
  */
6023
- Recommendations?: Recommendation[];
6023
+ Recommendations?: Recommendation[] | undefined;
6024
6024
  /**
6025
6025
  * <p>A string token indicating that there might be additional recommendations available to be
6026
6026
  * listed. Use the token provided in the <code>ListRecommendationsResponse</code> to use in the
@@ -6028,7 +6028,7 @@ export interface ListRecommendationsResponse {
6028
6028
  * next page of recommendations.</p>
6029
6029
  * @public
6030
6030
  */
6031
- NextToken?: string;
6031
+ NextToken?: string | undefined;
6032
6032
  }
6033
6033
  /**
6034
6034
  * <p>A request to obtain a list of email destinations that are on the suppression list for
@@ -6040,25 +6040,25 @@ export interface ListSuppressedDestinationsRequest {
6040
6040
  * <p>The factors that caused the email address to be added to .</p>
6041
6041
  * @public
6042
6042
  */
6043
- Reasons?: SuppressionListReason[];
6043
+ Reasons?: SuppressionListReason[] | undefined;
6044
6044
  /**
6045
6045
  * <p>Used to filter the list of suppressed email destinations so that it only includes
6046
6046
  * addresses that were added to the list after a specific date.</p>
6047
6047
  * @public
6048
6048
  */
6049
- StartDate?: Date;
6049
+ StartDate?: Date | undefined;
6050
6050
  /**
6051
6051
  * <p>Used to filter the list of suppressed email destinations so that it only includes
6052
6052
  * addresses that were added to the list before a specific date.</p>
6053
6053
  * @public
6054
6054
  */
6055
- EndDate?: Date;
6055
+ EndDate?: Date | undefined;
6056
6056
  /**
6057
6057
  * <p>A token returned from a previous call to <code>ListSuppressedDestinations</code> to
6058
6058
  * indicate the position in the list of suppressed email addresses.</p>
6059
6059
  * @public
6060
6060
  */
6061
- NextToken?: string;
6061
+ NextToken?: string | undefined;
6062
6062
  /**
6063
6063
  * <p>The number of results to show in a single call to
6064
6064
  * <code>ListSuppressedDestinations</code>. If the number of results is larger than the
@@ -6067,7 +6067,7 @@ export interface ListSuppressedDestinationsRequest {
6067
6067
  * results.</p>
6068
6068
  * @public
6069
6069
  */
6070
- PageSize?: number;
6070
+ PageSize?: number | undefined;
6071
6071
  }
6072
6072
  /**
6073
6073
  * <p>A summary that describes the suppressed email address.</p>
@@ -6101,7 +6101,7 @@ export interface ListSuppressedDestinationsResponse {
6101
6101
  * destination.</p>
6102
6102
  * @public
6103
6103
  */
6104
- SuppressedDestinationSummaries?: SuppressedDestinationSummary[];
6104
+ SuppressedDestinationSummaries?: SuppressedDestinationSummary[] | undefined;
6105
6105
  /**
6106
6106
  * <p>A token that indicates that there are additional email addresses on the suppression
6107
6107
  * list for your account. To view additional suppressed addresses, issue another request to
@@ -6109,7 +6109,7 @@ export interface ListSuppressedDestinationsResponse {
6109
6109
  * <code>NextToken</code> parameter.</p>
6110
6110
  * @public
6111
6111
  */
6112
- NextToken?: string;
6112
+ NextToken?: string | undefined;
6113
6113
  }
6114
6114
  /**
6115
6115
  * @public
@@ -6146,7 +6146,7 @@ export interface PutAccountDedicatedIpWarmupAttributesRequest {
6146
6146
  * it.</p>
6147
6147
  * @public
6148
6148
  */
6149
- AutoWarmupEnabled?: boolean;
6149
+ AutoWarmupEnabled?: boolean | undefined;
6150
6150
  }
6151
6151
  /**
6152
6152
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6175,20 +6175,20 @@ export interface PutAccountDetailsRequest {
6175
6175
  * <p>The language you would prefer to be contacted with.</p>
6176
6176
  * @public
6177
6177
  */
6178
- ContactLanguage?: ContactLanguage;
6178
+ ContactLanguage?: ContactLanguage | undefined;
6179
6179
  /**
6180
6180
  * @deprecated
6181
6181
  *
6182
6182
  * <p>A description of the types of email that you plan to send.</p>
6183
6183
  * @public
6184
6184
  */
6185
- UseCaseDescription?: string;
6185
+ UseCaseDescription?: string | undefined;
6186
6186
  /**
6187
6187
  * <p>Additional email addresses that you would like to be notified regarding Amazon SES
6188
6188
  * matters.</p>
6189
6189
  * @public
6190
6190
  */
6191
- AdditionalContactEmailAddresses?: string[];
6191
+ AdditionalContactEmailAddresses?: string[] | undefined;
6192
6192
  /**
6193
6193
  * <p>Indicates whether or not your account should have production access in the current
6194
6194
  * Amazon Web Services Region.</p>
@@ -6201,7 +6201,7 @@ export interface PutAccountDetailsRequest {
6201
6201
  * maximum sending rate for your account vary based on your specific use case.</p>
6202
6202
  * @public
6203
6203
  */
6204
- ProductionAccessEnabled?: boolean;
6204
+ ProductionAccessEnabled?: boolean | undefined;
6205
6205
  }
6206
6206
  /**
6207
6207
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6224,7 +6224,7 @@ export interface PutAccountSendingAttributesRequest {
6224
6224
  * </note>
6225
6225
  * @public
6226
6226
  */
6227
- SendingEnabled?: boolean;
6227
+ SendingEnabled?: boolean | undefined;
6228
6228
  }
6229
6229
  /**
6230
6230
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6258,7 +6258,7 @@ export interface PutAccountSuppressionAttributesRequest {
6258
6258
  * </ul>
6259
6259
  * @public
6260
6260
  */
6261
- SuppressedReasons?: SuppressionListReason[];
6261
+ SuppressedReasons?: SuppressionListReason[] | undefined;
6262
6262
  }
6263
6263
  /**
6264
6264
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6300,12 +6300,12 @@ export interface PutConfigurationSetDeliveryOptionsRequest {
6300
6300
  * messages can be delivered in plain text if a TLS connection can't be established.</p>
6301
6301
  * @public
6302
6302
  */
6303
- TlsPolicy?: TlsPolicy;
6303
+ TlsPolicy?: TlsPolicy | undefined;
6304
6304
  /**
6305
6305
  * <p>The name of the dedicated IP pool to associate with the configuration set.</p>
6306
6306
  * @public
6307
6307
  */
6308
- SendingPoolName?: string;
6308
+ SendingPoolName?: string | undefined;
6309
6309
  /**
6310
6310
  * <p>The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email.
6311
6311
  * If specified, the value must greater than or equal to 300 seconds (5 minutes)
@@ -6313,7 +6313,7 @@ export interface PutConfigurationSetDeliveryOptionsRequest {
6313
6313
  * </p>
6314
6314
  * @public
6315
6315
  */
6316
- MaxDeliverySeconds?: number;
6316
+ MaxDeliverySeconds?: number | undefined;
6317
6317
  }
6318
6318
  /**
6319
6319
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6339,7 +6339,7 @@ export interface PutConfigurationSetReputationOptionsRequest {
6339
6339
  * configuration set.</p>
6340
6340
  * @public
6341
6341
  */
6342
- ReputationMetricsEnabled?: boolean;
6342
+ ReputationMetricsEnabled?: boolean | undefined;
6343
6343
  }
6344
6344
  /**
6345
6345
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6364,7 +6364,7 @@ export interface PutConfigurationSetSendingOptionsRequest {
6364
6364
  * <code>false</code>, email sending is disabled for the configuration set.</p>
6365
6365
  * @public
6366
6366
  */
6367
- SendingEnabled?: boolean;
6367
+ SendingEnabled?: boolean | undefined;
6368
6368
  }
6369
6369
  /**
6370
6370
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6405,7 +6405,7 @@ export interface PutConfigurationSetSuppressionOptionsRequest {
6405
6405
  * </ul>
6406
6406
  * @public
6407
6407
  */
6408
- SuppressedReasons?: SuppressionListReason[];
6408
+ SuppressedReasons?: SuppressionListReason[] | undefined;
6409
6409
  }
6410
6410
  /**
6411
6411
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6429,7 +6429,7 @@ export interface PutConfigurationSetTrackingOptionsRequest {
6429
6429
  * <p>The domain to use to track open and click events.</p>
6430
6430
  * @public
6431
6431
  */
6432
- CustomRedirectDomain?: string;
6432
+ CustomRedirectDomain?: string | undefined;
6433
6433
  /**
6434
6434
  * <p>The https policy to use for tracking open and click events. If the value is OPTIONAL or HttpsPolicy is not
6435
6435
  * specified, the open trackers use HTTP and click tracker use the original protocol of the link.
@@ -6438,7 +6438,7 @@ export interface PutConfigurationSetTrackingOptionsRequest {
6438
6438
  * </p>
6439
6439
  * @public
6440
6440
  */
6441
- HttpsPolicy?: HttpsPolicy;
6441
+ HttpsPolicy?: HttpsPolicy | undefined;
6442
6442
  }
6443
6443
  /**
6444
6444
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6461,7 +6461,7 @@ export interface PutConfigurationSetVdmOptionsRequest {
6461
6461
  * <p>The VDM options to apply to the configuration set.</p>
6462
6462
  * @public
6463
6463
  */
6464
- VdmOptions?: VdmOptions;
6464
+ VdmOptions?: VdmOptions | undefined;
6465
6465
  }
6466
6466
  /**
6467
6467
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6567,7 +6567,7 @@ export interface PutDeliverabilityDashboardOptionRequest {
6567
6567
  * enabled the Deliverability dashboard for.</p>
6568
6568
  * @public
6569
6569
  */
6570
- SubscribedDomains?: DomainDeliverabilityTrackingOption[];
6570
+ SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
6571
6571
  }
6572
6572
  /**
6573
6573
  * <p>A response that indicates whether the Deliverability dashboard is enabled.</p>
@@ -6589,7 +6589,7 @@ export interface PutEmailIdentityConfigurationSetAttributesRequest {
6589
6589
  * <p>The configuration set to associate with an email identity.</p>
6590
6590
  * @public
6591
6591
  */
6592
- ConfigurationSetName?: string;
6592
+ ConfigurationSetName?: string | undefined;
6593
6593
  }
6594
6594
  /**
6595
6595
  * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
@@ -6616,7 +6616,7 @@ export interface PutEmailIdentityDkimAttributesRequest {
6616
6616
  * messages are sent without DKIM signing.</p>
6617
6617
  * @public
6618
6618
  */
6619
- SigningEnabled?: boolean;
6619
+ SigningEnabled?: boolean | undefined;
6620
6620
  }
6621
6621
  /**
6622
6622
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -6659,7 +6659,7 @@ export interface PutEmailIdentityDkimSigningAttributesRequest {
6659
6659
  * identity, or, configures the key length to be used for <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
6660
6660
  * @public
6661
6661
  */
6662
- SigningAttributes?: DkimSigningAttributes;
6662
+ SigningAttributes?: DkimSigningAttributes | undefined;
6663
6663
  }
6664
6664
  /**
6665
6665
  * @internal