@aws-sdk/client-pinpoint-email 3.686.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.
@@ -73,13 +73,13 @@ export interface DeliveryOptions {
73
73
  * messages can be delivered in plain text if a TLS connection can't be established.</p>
74
74
  * @public
75
75
  */
76
- TlsPolicy?: TlsPolicy;
76
+ TlsPolicy?: TlsPolicy | undefined;
77
77
  /**
78
78
  * <p>The name of the dedicated IP pool that you want to associate with the configuration
79
79
  * set.</p>
80
80
  * @public
81
81
  */
82
- SendingPoolName?: string;
82
+ SendingPoolName?: string | undefined;
83
83
  }
84
84
  /**
85
85
  * <p>Enable or disable collection of reputation metrics for emails that you send using this
@@ -93,14 +93,14 @@ export interface ReputationOptions {
93
93
  * configuration set.</p>
94
94
  * @public
95
95
  */
96
- ReputationMetricsEnabled?: boolean;
96
+ ReputationMetricsEnabled?: boolean | undefined;
97
97
  /**
98
98
  * <p>The date and time (in Unix time) when the reputation metrics were last given a fresh
99
99
  * start. When your account is given a fresh start, your reputation metrics are calculated
100
100
  * starting from the date of the fresh start.</p>
101
101
  * @public
102
102
  */
103
- LastFreshStart?: Date;
103
+ LastFreshStart?: Date | undefined;
104
104
  }
105
105
  /**
106
106
  * <p>Used to enable or disable email sending for messages that use this configuration set
@@ -113,7 +113,7 @@ export interface SendingOptions {
113
113
  * <code>false</code>, email sending is disabled for the configuration set.</p>
114
114
  * @public
115
115
  */
116
- SendingEnabled?: boolean;
116
+ SendingEnabled?: boolean | undefined;
117
117
  }
118
118
  /**
119
119
  * <p>An object that defines the tags that are associated with a resource.
@@ -199,31 +199,31 @@ export interface CreateConfigurationSetRequest {
199
199
  * using the configuration set.</p>
200
200
  * @public
201
201
  */
202
- TrackingOptions?: TrackingOptions;
202
+ TrackingOptions?: TrackingOptions | undefined;
203
203
  /**
204
204
  * <p>An object that defines the dedicated IP pool that is used to send emails that you send
205
205
  * using the configuration set.</p>
206
206
  * @public
207
207
  */
208
- DeliveryOptions?: DeliveryOptions;
208
+ DeliveryOptions?: DeliveryOptions | undefined;
209
209
  /**
210
210
  * <p>An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails
211
211
  * that you send that use the configuration set.</p>
212
212
  * @public
213
213
  */
214
- ReputationOptions?: ReputationOptions;
214
+ ReputationOptions?: ReputationOptions | undefined;
215
215
  /**
216
216
  * <p>An object that defines whether or not Amazon Pinpoint can send email that you send using the
217
217
  * configuration set.</p>
218
218
  * @public
219
219
  */
220
- SendingOptions?: SendingOptions;
220
+ SendingOptions?: SendingOptions | undefined;
221
221
  /**
222
222
  * <p>An array of objects that define the tags (keys and values) that you want to associate
223
223
  * with the configuration set.</p>
224
224
  * @public
225
225
  */
226
- Tags?: Tag[];
226
+ Tags?: Tag[] | undefined;
227
227
  }
228
228
  /**
229
229
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -390,7 +390,7 @@ export interface PinpointDestination {
390
390
  * events to.</p>
391
391
  * @public
392
392
  */
393
- ApplicationArn?: string;
393
+ ApplicationArn?: string | undefined;
394
394
  }
395
395
  /**
396
396
  * <p>An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to
@@ -422,38 +422,38 @@ export interface EventDestinationDefinition {
422
422
  * is disabled, events aren't sent to the specified destinations.</p>
423
423
  * @public
424
424
  */
425
- Enabled?: boolean;
425
+ Enabled?: boolean | undefined;
426
426
  /**
427
427
  * <p>An array that specifies which events Amazon Pinpoint should send to the destinations in this
428
428
  * <code>EventDestinationDefinition</code>.</p>
429
429
  * @public
430
430
  */
431
- MatchingEventTypes?: EventType[];
431
+ MatchingEventTypes?: EventType[] | undefined;
432
432
  /**
433
433
  * <p>An object that defines an Amazon Kinesis Data Firehose destination for email events. You can use Amazon Kinesis Data Firehose to
434
434
  * stream data to other services, such as Amazon S3 and Amazon Redshift.</p>
435
435
  * @public
436
436
  */
437
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
437
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
438
438
  /**
439
439
  * <p>An object that defines an Amazon CloudWatch destination for email events. You can use Amazon CloudWatch to
440
440
  * monitor and gain insights on your email sending metrics.</p>
441
441
  * @public
442
442
  */
443
- CloudWatchDestination?: CloudWatchDestination;
443
+ CloudWatchDestination?: CloudWatchDestination | undefined;
444
444
  /**
445
445
  * <p>An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to
446
446
  * send notification when certain email events occur.</p>
447
447
  * @public
448
448
  */
449
- SnsDestination?: SnsDestination;
449
+ SnsDestination?: SnsDestination | undefined;
450
450
  /**
451
451
  * <p>An object that defines a Amazon Pinpoint destination for email events. You can use Amazon Pinpoint events
452
452
  * to create attributes in Amazon Pinpoint projects. You can use these attributes to create segments
453
453
  * for your campaigns.</p>
454
454
  * @public
455
455
  */
456
- PinpointDestination?: PinpointDestination;
456
+ PinpointDestination?: PinpointDestination | undefined;
457
457
  }
458
458
  /**
459
459
  * <p>A request to add an event destination to a configuration set.</p>
@@ -498,7 +498,7 @@ export interface CreateDedicatedIpPoolRequest {
498
498
  * pool.</p>
499
499
  * @public
500
500
  */
501
- Tags?: Tag[];
501
+ Tags?: Tag[] | undefined;
502
502
  }
503
503
  /**
504
504
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -564,7 +564,7 @@ export interface Content {
564
564
  * <code>UTF-8</code>, <code>ISO-8859-1</code>, or <code>Shift_JIS</code>.</p>
565
565
  * @public
566
566
  */
567
- Charset?: string;
567
+ Charset?: string | undefined;
568
568
  }
569
569
  /**
570
570
  * <p>Represents the body of the email message.</p>
@@ -577,14 +577,14 @@ export interface Body {
577
577
  * rendering.</p>
578
578
  * @public
579
579
  */
580
- Text?: Content;
580
+ Text?: Content | undefined;
581
581
  /**
582
582
  * <p>An object that represents the version of the message that is displayed in email
583
583
  * clients that support HTML. HTML messages can include formatted text, hyperlinks, images,
584
584
  * and more. </p>
585
585
  * @public
586
586
  */
587
- Html?: Content;
587
+ Html?: Content | undefined;
588
588
  }
589
589
  /**
590
590
  * <p>Represents the email message that you're sending. The <code>Message</code> object
@@ -614,12 +614,12 @@ export interface Template {
614
614
  * <p>The Amazon Resource Name (ARN) of the template.</p>
615
615
  * @public
616
616
  */
617
- TemplateArn?: string;
617
+ TemplateArn?: string | undefined;
618
618
  /**
619
619
  * <p>An object that defines the values to use for message variables in the template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the value to use for that variable.</p>
620
620
  * @public
621
621
  */
622
- TemplateData?: string;
622
+ TemplateData?: string | undefined;
623
623
  }
624
624
  /**
625
625
  * <p>An object that defines the entire content of the email, including the message headers
@@ -634,7 +634,7 @@ export interface EmailContent {
634
634
  * <p>The simple email message. The message consists of a subject and a message body.</p>
635
635
  * @public
636
636
  */
637
- Simple?: Message;
637
+ Simple?: Message | undefined;
638
638
  /**
639
639
  * <p>The raw email message. The message has to meet the following criteria:</p>
640
640
  * <ul>
@@ -667,12 +667,12 @@ export interface EmailContent {
667
667
  * </ul>
668
668
  * @public
669
669
  */
670
- Raw?: RawMessage;
670
+ Raw?: RawMessage | undefined;
671
671
  /**
672
672
  * <p>The template to use for the email message.</p>
673
673
  * @public
674
674
  */
675
- Template?: Template;
675
+ Template?: Template | undefined;
676
676
  }
677
677
  /**
678
678
  * <p>A request to perform a predictive inbox placement test. Predictive inbox placement tests can help you predict how your messages will
@@ -690,7 +690,7 @@ export interface CreateDeliverabilityTestReportRequest {
690
690
  * results.</p>
691
691
  * @public
692
692
  */
693
- ReportName?: string;
693
+ ReportName?: string | undefined;
694
694
  /**
695
695
  * <p>The email address that the predictive inbox placement test email was sent from.</p>
696
696
  * @public
@@ -706,7 +706,7 @@ export interface CreateDeliverabilityTestReportRequest {
706
706
  * with the predictive inbox placement test.</p>
707
707
  * @public
708
708
  */
709
- Tags?: Tag[];
709
+ Tags?: Tag[] | undefined;
710
710
  }
711
711
  /**
712
712
  * @public
@@ -792,7 +792,7 @@ export interface CreateEmailIdentityRequest {
792
792
  * with the email identity.</p>
793
793
  * @public
794
794
  */
795
- Tags?: Tag[];
795
+ Tags?: Tag[] | undefined;
796
796
  }
797
797
  /**
798
798
  * @public
@@ -821,7 +821,7 @@ export interface DkimAttributes {
821
821
  * Amazon Pinpoint sends from the identity aren't DKIM-signed.</p>
822
822
  * @public
823
823
  */
824
- SigningEnabled?: boolean;
824
+ SigningEnabled?: boolean | undefined;
825
825
  /**
826
826
  * <p>Describes whether or not Amazon Pinpoint has successfully located the DKIM records in the DNS
827
827
  * records for the domain. The status can be one of the following:</p>
@@ -856,7 +856,7 @@ export interface DkimAttributes {
856
856
  * </ul>
857
857
  * @public
858
858
  */
859
- Status?: DkimStatus;
859
+ Status?: DkimStatus | undefined;
860
860
  /**
861
861
  * <p>A set of unique strings that you use to create a set of CNAME records that you add to
862
862
  * the DNS configuration for your domain. When Amazon Pinpoint detects these records in the DNS
@@ -865,7 +865,7 @@ export interface DkimAttributes {
865
865
  * configuration for your domain.</p>
866
866
  * @public
867
867
  */
868
- Tokens?: string[];
868
+ Tokens?: string[] | undefined;
869
869
  }
870
870
  /**
871
871
  * @public
@@ -892,21 +892,21 @@ export interface CreateEmailIdentityResponse {
892
892
  * <p>The email identity type.</p>
893
893
  * @public
894
894
  */
895
- IdentityType?: IdentityType;
895
+ IdentityType?: IdentityType | undefined;
896
896
  /**
897
897
  * <p>Specifies whether or not the identity is verified. In Amazon Pinpoint, you can only send email
898
898
  * from verified email addresses or domains. For more information about verifying
899
899
  * identities, see the <a href="https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-manage-verify.html">Amazon Pinpoint User Guide</a>.</p>
900
900
  * @public
901
901
  */
902
- VerifiedForSendingStatus?: boolean;
902
+ VerifiedForSendingStatus?: boolean | undefined;
903
903
  /**
904
904
  * <p>An object that contains information about the DKIM attributes for the identity. This
905
905
  * object includes the tokens that you use to create the CNAME records that are required to
906
906
  * complete the DKIM verification process.</p>
907
907
  * @public
908
908
  */
909
- DkimAttributes?: DkimAttributes;
909
+ DkimAttributes?: DkimAttributes | undefined;
910
910
  }
911
911
  /**
912
912
  * <p>A request to delete a configuration set.</p>
@@ -1008,20 +1008,20 @@ export interface SendQuota {
1008
1008
  * quota</i>.</p>
1009
1009
  * @public
1010
1010
  */
1011
- Max24HourSend?: number;
1011
+ Max24HourSend?: number | undefined;
1012
1012
  /**
1013
1013
  * <p>The maximum number of emails that you can send per second in the current AWS Region.
1014
1014
  * This value is also called your <i>maximum sending rate</i> or your
1015
1015
  * <i>maximum TPS (transactions per second) rate</i>.</p>
1016
1016
  * @public
1017
1017
  */
1018
- MaxSendRate?: number;
1018
+ MaxSendRate?: number | undefined;
1019
1019
  /**
1020
1020
  * <p>The number of emails sent from your Amazon Pinpoint account in the current AWS Region over the
1021
1021
  * past 24 hours.</p>
1022
1022
  * @public
1023
1023
  */
1024
- SentLast24Hours?: number;
1024
+ SentLast24Hours?: number | undefined;
1025
1025
  }
1026
1026
  /**
1027
1027
  * <p>A list of details about the email-sending capabilities of your Amazon Pinpoint account in the
@@ -1034,19 +1034,19 @@ export interface GetAccountResponse {
1034
1034
  * for your Amazon Pinpoint account in the current AWS Region.</p>
1035
1035
  * @public
1036
1036
  */
1037
- SendQuota?: SendQuota;
1037
+ SendQuota?: SendQuota | undefined;
1038
1038
  /**
1039
1039
  * <p>Indicates whether or not email sending is enabled for your Amazon Pinpoint account in the
1040
1040
  * current AWS Region.</p>
1041
1041
  * @public
1042
1042
  */
1043
- SendingEnabled?: boolean;
1043
+ SendingEnabled?: boolean | undefined;
1044
1044
  /**
1045
1045
  * <p>Indicates whether or not the automatic warm-up feature is enabled for dedicated IP
1046
1046
  * addresses that are associated with your account.</p>
1047
1047
  * @public
1048
1048
  */
1049
- DedicatedIpAutoWarmupEnabled?: boolean;
1049
+ DedicatedIpAutoWarmupEnabled?: boolean | undefined;
1050
1050
  /**
1051
1051
  * <p>The reputation status of your Amazon Pinpoint account. The status can be one of the
1052
1052
  * following:</p>
@@ -1072,7 +1072,7 @@ export interface GetAccountResponse {
1072
1072
  * </ul>
1073
1073
  * @public
1074
1074
  */
1075
- EnforcementStatus?: string;
1075
+ EnforcementStatus?: string | undefined;
1076
1076
  /**
1077
1077
  * <p>Indicates whether or not your account has production access in the current AWS
1078
1078
  * Region.</p>
@@ -1086,7 +1086,7 @@ export interface GetAccountResponse {
1086
1086
  * maximum sending rate for your account vary based on your specific use case.</p>
1087
1087
  * @public
1088
1088
  */
1089
- ProductionAccessEnabled?: boolean;
1089
+ ProductionAccessEnabled?: boolean | undefined;
1090
1090
  }
1091
1091
  /**
1092
1092
  * <p>A request to retrieve a list of the blacklists that your dedicated IP addresses appear
@@ -1112,18 +1112,18 @@ export interface BlacklistEntry {
1112
1112
  * <p>The name of the blacklist that the IP address appears on.</p>
1113
1113
  * @public
1114
1114
  */
1115
- RblName?: string;
1115
+ RblName?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>The time when the blacklisting event occurred, shown in Unix time format.</p>
1118
1118
  * @public
1119
1119
  */
1120
- ListingTime?: Date;
1120
+ ListingTime?: Date | undefined;
1121
1121
  /**
1122
1122
  * <p>Additional information about the blacklisting event, as provided by the blacklist
1123
1123
  * maintainer.</p>
1124
1124
  * @public
1125
1125
  */
1126
- Description?: string;
1126
+ Description?: string | undefined;
1127
1127
  }
1128
1128
  /**
1129
1129
  * <p>An object that contains information about blacklist events.</p>
@@ -1158,37 +1158,37 @@ export interface GetConfigurationSetResponse {
1158
1158
  * <p>The name of the configuration set.</p>
1159
1159
  * @public
1160
1160
  */
1161
- ConfigurationSetName?: string;
1161
+ ConfigurationSetName?: string | undefined;
1162
1162
  /**
1163
1163
  * <p>An object that defines the open and click tracking options for emails that you send
1164
1164
  * using the configuration set.</p>
1165
1165
  * @public
1166
1166
  */
1167
- TrackingOptions?: TrackingOptions;
1167
+ TrackingOptions?: TrackingOptions | undefined;
1168
1168
  /**
1169
1169
  * <p>An object that defines the dedicated IP pool that is used to send emails that you send
1170
1170
  * using the configuration set.</p>
1171
1171
  * @public
1172
1172
  */
1173
- DeliveryOptions?: DeliveryOptions;
1173
+ DeliveryOptions?: DeliveryOptions | undefined;
1174
1174
  /**
1175
1175
  * <p>An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails
1176
1176
  * that you send that use the configuration set.</p>
1177
1177
  * @public
1178
1178
  */
1179
- ReputationOptions?: ReputationOptions;
1179
+ ReputationOptions?: ReputationOptions | undefined;
1180
1180
  /**
1181
1181
  * <p>An object that defines whether or not Amazon Pinpoint can send email that you send using the
1182
1182
  * configuration set.</p>
1183
1183
  * @public
1184
1184
  */
1185
- SendingOptions?: SendingOptions;
1185
+ SendingOptions?: SendingOptions | undefined;
1186
1186
  /**
1187
1187
  * <p>An array of objects that define the tags (keys and values) that are associated with
1188
1188
  * the configuration set.</p>
1189
1189
  * @public
1190
1190
  */
1191
- Tags?: Tag[];
1191
+ Tags?: Tag[] | undefined;
1192
1192
  }
1193
1193
  /**
1194
1194
  * <p>A request to obtain information about the event destinations for a configuration
@@ -1224,7 +1224,7 @@ export interface EventDestination {
1224
1224
  * is disabled, events aren't sent to the specified destinations.</p>
1225
1225
  * @public
1226
1226
  */
1227
- Enabled?: boolean;
1227
+ Enabled?: boolean | undefined;
1228
1228
  /**
1229
1229
  * <p>The types of events that Amazon Pinpoint sends to the specified event destinations.</p>
1230
1230
  * @public
@@ -1235,26 +1235,26 @@ export interface EventDestination {
1235
1235
  * stream data to other services, such as Amazon S3 and Amazon Redshift.</p>
1236
1236
  * @public
1237
1237
  */
1238
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
1238
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
1239
1239
  /**
1240
1240
  * <p>An object that defines an Amazon CloudWatch destination for email events. You can use Amazon CloudWatch to
1241
1241
  * monitor and gain insights on your email sending metrics.</p>
1242
1242
  * @public
1243
1243
  */
1244
- CloudWatchDestination?: CloudWatchDestination;
1244
+ CloudWatchDestination?: CloudWatchDestination | undefined;
1245
1245
  /**
1246
1246
  * <p>An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to
1247
1247
  * send notification when certain email events occur.</p>
1248
1248
  * @public
1249
1249
  */
1250
- SnsDestination?: SnsDestination;
1250
+ SnsDestination?: SnsDestination | undefined;
1251
1251
  /**
1252
1252
  * <p>An object that defines a Amazon Pinpoint destination for email events. You can use Amazon Pinpoint events
1253
1253
  * to create attributes in Amazon Pinpoint projects. You can use these attributes to create segments
1254
1254
  * for your campaigns.</p>
1255
1255
  * @public
1256
1256
  */
1257
- PinpointDestination?: PinpointDestination;
1257
+ PinpointDestination?: PinpointDestination | undefined;
1258
1258
  }
1259
1259
  /**
1260
1260
  * <p>Information about an event destination for a configuration set.</p>
@@ -1266,7 +1266,7 @@ export interface GetConfigurationSetEventDestinationsResponse {
1266
1266
  * the configuration set.</p>
1267
1267
  * @public
1268
1268
  */
1269
- EventDestinations?: EventDestination[];
1269
+ EventDestinations?: EventDestination[] | undefined;
1270
1270
  }
1271
1271
  /**
1272
1272
  * <p>A request to obtain more information about a dedicated IP address.</p>
@@ -1332,7 +1332,7 @@ export interface DedicatedIp {
1332
1332
  * <p>The name of the dedicated IP pool that the IP address is associated with.</p>
1333
1333
  * @public
1334
1334
  */
1335
- PoolName?: string;
1335
+ PoolName?: string | undefined;
1336
1336
  }
1337
1337
  /**
1338
1338
  * <p>Information about a dedicated IP address.</p>
@@ -1343,7 +1343,7 @@ export interface GetDedicatedIpResponse {
1343
1343
  * <p>An object that contains information about a dedicated IP address.</p>
1344
1344
  * @public
1345
1345
  */
1346
- DedicatedIp?: DedicatedIp;
1346
+ DedicatedIp?: DedicatedIp | undefined;
1347
1347
  }
1348
1348
  /**
1349
1349
  * <p>A request to obtain more information about dedicated IP pools.</p>
@@ -1354,13 +1354,13 @@ export interface GetDedicatedIpsRequest {
1354
1354
  * <p>The name of the IP pool that the dedicated IP address is associated with.</p>
1355
1355
  * @public
1356
1356
  */
1357
- PoolName?: string;
1357
+ PoolName?: string | undefined;
1358
1358
  /**
1359
1359
  * <p>A token returned from a previous call to <code>GetDedicatedIps</code> to indicate the
1360
1360
  * position of the dedicated IP pool in the list of IP pools.</p>
1361
1361
  * @public
1362
1362
  */
1363
- NextToken?: string;
1363
+ NextToken?: string | undefined;
1364
1364
  /**
1365
1365
  * <p>The number of results to show in a single call to <code>GetDedicatedIpsRequest</code>.
1366
1366
  * If the number of results is larger than the number you specified in this parameter, then
@@ -1368,7 +1368,7 @@ export interface GetDedicatedIpsRequest {
1368
1368
  * additional results.</p>
1369
1369
  * @public
1370
1370
  */
1371
- PageSize?: number;
1371
+ PageSize?: number | undefined;
1372
1372
  }
1373
1373
  /**
1374
1374
  * <p>Information about the dedicated IP addresses that are associated with your Amazon Pinpoint
@@ -1381,14 +1381,14 @@ export interface GetDedicatedIpsResponse {
1381
1381
  * account.</p>
1382
1382
  * @public
1383
1383
  */
1384
- DedicatedIps?: DedicatedIp[];
1384
+ DedicatedIps?: DedicatedIp[] | undefined;
1385
1385
  /**
1386
1386
  * <p>A token that indicates that there are additional dedicated IP addresses to list. To
1387
1387
  * view additional addresses, issue another request to <code>GetDedicatedIps</code>,
1388
1388
  * passing this token in the <code>NextToken</code> parameter.</p>
1389
1389
  * @public
1390
1390
  */
1391
- NextToken?: string;
1391
+ NextToken?: string | undefined;
1392
1392
  }
1393
1393
  /**
1394
1394
  * <p>Retrieve information about the status of the Deliverability dashboard for your Amazon Pinpoint account.
@@ -1427,13 +1427,13 @@ export interface InboxPlacementTrackingOption {
1427
1427
  * <p>Specifies whether inbox placement data is being tracked for the domain.</p>
1428
1428
  * @public
1429
1429
  */
1430
- Global?: boolean;
1430
+ Global?: boolean | undefined;
1431
1431
  /**
1432
1432
  * <p>An array of strings, one for each major email provider that the inbox placement data
1433
1433
  * applies to.</p>
1434
1434
  * @public
1435
1435
  */
1436
- TrackedIsps?: string[];
1436
+ TrackedIsps?: string[] | undefined;
1437
1437
  }
1438
1438
  /**
1439
1439
  * <p>An object that contains information about the Deliverability dashboard subscription for a
@@ -1448,19 +1448,19 @@ export interface DomainDeliverabilityTrackingOption {
1448
1448
  * active Deliverability dashboard subscription.</p>
1449
1449
  * @public
1450
1450
  */
1451
- Domain?: string;
1451
+ Domain?: string | undefined;
1452
1452
  /**
1453
1453
  * <p>The date, in Unix time format, when you enabled the Deliverability dashboard for the
1454
1454
  * domain.</p>
1455
1455
  * @public
1456
1456
  */
1457
- SubscriptionStartDate?: Date;
1457
+ SubscriptionStartDate?: Date | undefined;
1458
1458
  /**
1459
1459
  * <p>An object that contains information about the inbox placement data settings for the
1460
1460
  * domain.</p>
1461
1461
  * @public
1462
1462
  */
1463
- InboxPlacementTrackingOption?: InboxPlacementTrackingOption;
1463
+ InboxPlacementTrackingOption?: InboxPlacementTrackingOption | undefined;
1464
1464
  }
1465
1465
  /**
1466
1466
  * <p>An object that shows the status of the Deliverability dashboard for your Amazon Pinpoint account.</p>
@@ -1480,28 +1480,28 @@ export interface GetDeliverabilityDashboardOptionsResponse {
1480
1480
  * due to expire at the end of the month.</p>
1481
1481
  * @public
1482
1482
  */
1483
- SubscriptionExpiryDate?: Date;
1483
+ SubscriptionExpiryDate?: Date | undefined;
1484
1484
  /**
1485
1485
  * <p>The current status of your Deliverability dashboard subscription. If this value is
1486
1486
  * <code>PENDING_EXPIRATION</code>, your subscription is scheduled to expire at the end
1487
1487
  * of the current calendar month.</p>
1488
1488
  * @public
1489
1489
  */
1490
- AccountStatus?: DeliverabilityDashboardAccountStatus;
1490
+ AccountStatus?: DeliverabilityDashboardAccountStatus | undefined;
1491
1491
  /**
1492
1492
  * <p>An array of objects, one for each verified domain that you use to send email and
1493
1493
  * currently has an active Deliverability dashboard subscription that isn’t scheduled to expire at
1494
1494
  * the end of the current calendar month.</p>
1495
1495
  * @public
1496
1496
  */
1497
- ActiveSubscribedDomains?: DomainDeliverabilityTrackingOption[];
1497
+ ActiveSubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
1498
1498
  /**
1499
1499
  * <p>An array of objects, one for each verified domain that you use to send email and
1500
1500
  * currently has an active Deliverability dashboard subscription that's scheduled to expire at the
1501
1501
  * end of the current calendar month.</p>
1502
1502
  * @public
1503
1503
  */
1504
- PendingExpirationSubscribedDomains?: DomainDeliverabilityTrackingOption[];
1504
+ PendingExpirationSubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
1505
1505
  }
1506
1506
  /**
1507
1507
  * <p>A request to retrieve the results of a predictive inbox placement test.</p>
@@ -1523,27 +1523,27 @@ export interface DeliverabilityTestReport {
1523
1523
  * <p>A unique string that identifies the predictive inbox placement test.</p>
1524
1524
  * @public
1525
1525
  */
1526
- ReportId?: string;
1526
+ ReportId?: string | undefined;
1527
1527
  /**
1528
1528
  * <p>A name that helps you identify a predictive inbox placement test report.</p>
1529
1529
  * @public
1530
1530
  */
1531
- ReportName?: string;
1531
+ ReportName?: string | undefined;
1532
1532
  /**
1533
1533
  * <p>The subject line for an email that you submitted in a predictive inbox placement test.</p>
1534
1534
  * @public
1535
1535
  */
1536
- Subject?: string;
1536
+ Subject?: string | undefined;
1537
1537
  /**
1538
1538
  * <p>The sender address that you specified for the predictive inbox placement test.</p>
1539
1539
  * @public
1540
1540
  */
1541
- FromEmailAddress?: string;
1541
+ FromEmailAddress?: string | undefined;
1542
1542
  /**
1543
1543
  * <p>The date and time when the predictive inbox placement test was created, in Unix time format.</p>
1544
1544
  * @public
1545
1545
  */
1546
- CreateDate?: Date;
1546
+ CreateDate?: Date | undefined;
1547
1547
  /**
1548
1548
  * <p>The status of the predictive inbox placement test. If the status is <code>IN_PROGRESS</code>, then the predictive inbox placement test
1549
1549
  * is currently running. Predictive inbox placement tests are usually complete within 24 hours of creating the
@@ -1551,7 +1551,7 @@ export interface DeliverabilityTestReport {
1551
1551
  * the <code>GetDeliverabilityTestReport</code> to view the results of the test.</p>
1552
1552
  * @public
1553
1553
  */
1554
- DeliverabilityTestStatus?: DeliverabilityTestStatus;
1554
+ DeliverabilityTestStatus?: DeliverabilityTestStatus | undefined;
1555
1555
  }
1556
1556
  /**
1557
1557
  * <p>An object that contains inbox placement data for an email provider.</p>
@@ -1562,31 +1562,31 @@ export interface PlacementStatistics {
1562
1562
  * <p>The percentage of emails that arrived in recipients' inboxes during the predictive inbox placement test.</p>
1563
1563
  * @public
1564
1564
  */
1565
- InboxPercentage?: number;
1565
+ InboxPercentage?: number | undefined;
1566
1566
  /**
1567
1567
  * <p>The percentage of emails that arrived in recipients' spam or junk mail folders during
1568
1568
  * the predictive inbox placement test.</p>
1569
1569
  * @public
1570
1570
  */
1571
- SpamPercentage?: number;
1571
+ SpamPercentage?: number | undefined;
1572
1572
  /**
1573
1573
  * <p>The percentage of emails that didn't arrive in recipients' inboxes at all during the
1574
1574
  * predictive inbox placement test.</p>
1575
1575
  * @public
1576
1576
  */
1577
- MissingPercentage?: number;
1577
+ MissingPercentage?: number | undefined;
1578
1578
  /**
1579
1579
  * <p>The percentage of emails that were authenticated by using Sender Policy Framework
1580
1580
  * (SPF) during the predictive inbox placement test.</p>
1581
1581
  * @public
1582
1582
  */
1583
- SpfPercentage?: number;
1583
+ SpfPercentage?: number | undefined;
1584
1584
  /**
1585
1585
  * <p>The percentage of emails that were authenticated by using DomainKeys Identified Mail
1586
1586
  * (DKIM) during the predictive inbox placement test.</p>
1587
1587
  * @public
1588
1588
  */
1589
- DkimPercentage?: number;
1589
+ DkimPercentage?: number | undefined;
1590
1590
  }
1591
1591
  /**
1592
1592
  * <p>An object that describes how email sent during the predictive inbox placement test was handled by a certain
@@ -1598,12 +1598,12 @@ export interface IspPlacement {
1598
1598
  * <p>The name of the email provider that the inbox placement data applies to.</p>
1599
1599
  * @public
1600
1600
  */
1601
- IspName?: string;
1601
+ IspName?: string | undefined;
1602
1602
  /**
1603
1603
  * <p>An object that contains inbox placement metrics for a specific email provider.</p>
1604
1604
  * @public
1605
1605
  */
1606
- PlacementStatistics?: PlacementStatistics;
1606
+ PlacementStatistics?: PlacementStatistics | undefined;
1607
1607
  }
1608
1608
  /**
1609
1609
  * <p>The results of the predictive inbox placement test.</p>
@@ -1633,13 +1633,13 @@ export interface GetDeliverabilityTestReportResponse {
1633
1633
  * predictive inbox placement test.</p>
1634
1634
  * @public
1635
1635
  */
1636
- Message?: string;
1636
+ Message?: string | undefined;
1637
1637
  /**
1638
1638
  * <p>An array of objects that define the tags (keys and values) that are associated with
1639
1639
  * the predictive inbox placement test.</p>
1640
1640
  * @public
1641
1641
  */
1642
- Tags?: Tag[];
1642
+ Tags?: Tag[] | undefined;
1643
1643
  }
1644
1644
  /**
1645
1645
  * <p>Retrieve all the deliverability data for a specific campaign. This data is available
@@ -1673,84 +1673,84 @@ export interface DomainDeliverabilityCampaign {
1673
1673
  * Amazon Pinpoint console.</p>
1674
1674
  * @public
1675
1675
  */
1676
- CampaignId?: string;
1676
+ CampaignId?: string | undefined;
1677
1677
  /**
1678
1678
  * <p>The URL of an image that contains a snapshot of the email message that was
1679
1679
  * sent.</p>
1680
1680
  * @public
1681
1681
  */
1682
- ImageUrl?: string;
1682
+ ImageUrl?: string | undefined;
1683
1683
  /**
1684
1684
  * <p>The subject line, or title, of the email message.</p>
1685
1685
  * @public
1686
1686
  */
1687
- Subject?: string;
1687
+ Subject?: string | undefined;
1688
1688
  /**
1689
1689
  * <p>The verified email address that the email message was sent from.</p>
1690
1690
  * @public
1691
1691
  */
1692
- FromAddress?: string;
1692
+ FromAddress?: string | undefined;
1693
1693
  /**
1694
1694
  * <p>The IP addresses that were used to send the email message.</p>
1695
1695
  * @public
1696
1696
  */
1697
- SendingIps?: string[];
1697
+ SendingIps?: string[] | undefined;
1698
1698
  /**
1699
1699
  * <p>The first time, in Unix time format, when the email message was delivered to any
1700
1700
  * recipient's inbox. This value can help you determine how long it took for a campaign to
1701
1701
  * deliver an email message.</p>
1702
1702
  * @public
1703
1703
  */
1704
- FirstSeenDateTime?: Date;
1704
+ FirstSeenDateTime?: Date | undefined;
1705
1705
  /**
1706
1706
  * <p>The last time, in Unix time format, when the email message was delivered to any
1707
1707
  * recipient's inbox. This value can help you determine how long it took for a campaign to
1708
1708
  * deliver an email message.</p>
1709
1709
  * @public
1710
1710
  */
1711
- LastSeenDateTime?: Date;
1711
+ LastSeenDateTime?: Date | undefined;
1712
1712
  /**
1713
1713
  * <p>The number of email messages that were delivered to recipients’ inboxes.</p>
1714
1714
  * @public
1715
1715
  */
1716
- InboxCount?: number;
1716
+ InboxCount?: number | undefined;
1717
1717
  /**
1718
1718
  * <p>The number of email messages that were delivered to recipients' spam or junk mail
1719
1719
  * folders.</p>
1720
1720
  * @public
1721
1721
  */
1722
- SpamCount?: number;
1722
+ SpamCount?: number | undefined;
1723
1723
  /**
1724
1724
  * <p>The percentage of email messages that were opened by recipients. Due to technical
1725
1725
  * limitations, this value only includes recipients who opened the message by using an
1726
1726
  * email client that supports images.</p>
1727
1727
  * @public
1728
1728
  */
1729
- ReadRate?: number;
1729
+ ReadRate?: number | undefined;
1730
1730
  /**
1731
1731
  * <p>The percentage of email messages that were deleted by recipients, without being opened
1732
1732
  * first. Due to technical limitations, this value only includes recipients who opened the
1733
1733
  * message by using an email client that supports images.</p>
1734
1734
  * @public
1735
1735
  */
1736
- DeleteRate?: number;
1736
+ DeleteRate?: number | undefined;
1737
1737
  /**
1738
1738
  * <p>The percentage of email messages that were opened and then deleted by recipients. Due
1739
1739
  * to technical limitations, this value only includes recipients who opened the message by
1740
1740
  * using an email client that supports images.</p>
1741
1741
  * @public
1742
1742
  */
1743
- ReadDeleteRate?: number;
1743
+ ReadDeleteRate?: number | undefined;
1744
1744
  /**
1745
1745
  * <p>The projected number of recipients that the email message was sent to.</p>
1746
1746
  * @public
1747
1747
  */
1748
- ProjectedVolume?: number;
1748
+ ProjectedVolume?: number | undefined;
1749
1749
  /**
1750
1750
  * <p>The major email providers who handled the email message.</p>
1751
1751
  * @public
1752
1752
  */
1753
- Esps?: string[];
1753
+ Esps?: string[] | undefined;
1754
1754
  }
1755
1755
  /**
1756
1756
  * <p>An object that contains all the deliverability data for a specific campaign. This data
@@ -1800,31 +1800,31 @@ export interface DomainIspPlacement {
1800
1800
  * <p>The name of the email provider that the inbox placement data applies to.</p>
1801
1801
  * @public
1802
1802
  */
1803
- IspName?: string;
1803
+ IspName?: string | undefined;
1804
1804
  /**
1805
1805
  * <p>The total number of messages that were sent from the selected domain to the specified
1806
1806
  * email provider that arrived in recipients' inboxes.</p>
1807
1807
  * @public
1808
1808
  */
1809
- InboxRawCount?: number;
1809
+ InboxRawCount?: number | undefined;
1810
1810
  /**
1811
1811
  * <p>The total number of messages that were sent from the selected domain to the specified
1812
1812
  * email provider that arrived in recipients' spam or junk mail folders.</p>
1813
1813
  * @public
1814
1814
  */
1815
- SpamRawCount?: number;
1815
+ SpamRawCount?: number | undefined;
1816
1816
  /**
1817
1817
  * <p>The percentage of messages that were sent from the selected domain to the specified
1818
1818
  * email provider that arrived in recipients' inboxes.</p>
1819
1819
  * @public
1820
1820
  */
1821
- InboxPercentage?: number;
1821
+ InboxPercentage?: number | undefined;
1822
1822
  /**
1823
1823
  * <p>The percentage of messages that were sent from the selected domain to the specified
1824
1824
  * email provider that arrived in recipients' spam or junk mail folders.</p>
1825
1825
  * @public
1826
1826
  */
1827
- SpamPercentage?: number;
1827
+ SpamPercentage?: number | undefined;
1828
1828
  }
1829
1829
  /**
1830
1830
  * <p>An object that contains information about the amount of email that was delivered to
@@ -1836,25 +1836,25 @@ export interface VolumeStatistics {
1836
1836
  * <p>The total number of emails that arrived in recipients' inboxes.</p>
1837
1837
  * @public
1838
1838
  */
1839
- InboxRawCount?: number;
1839
+ InboxRawCount?: number | undefined;
1840
1840
  /**
1841
1841
  * <p>The total number of emails that arrived in recipients' spam or junk mail
1842
1842
  * folders.</p>
1843
1843
  * @public
1844
1844
  */
1845
- SpamRawCount?: number;
1845
+ SpamRawCount?: number | undefined;
1846
1846
  /**
1847
1847
  * <p>An estimate of the percentage of emails sent from the current domain that will arrive
1848
1848
  * in recipients' inboxes.</p>
1849
1849
  * @public
1850
1850
  */
1851
- ProjectedInbox?: number;
1851
+ ProjectedInbox?: number | undefined;
1852
1852
  /**
1853
1853
  * <p>An estimate of the percentage of emails sent from the current domain that will arrive
1854
1854
  * in recipients' spam or junk mail folders.</p>
1855
1855
  * @public
1856
1856
  */
1857
- ProjectedSpam?: number;
1857
+ ProjectedSpam?: number | undefined;
1858
1858
  }
1859
1859
  /**
1860
1860
  * <p>An object that contains information about the volume of email sent on each day of the
@@ -1866,19 +1866,19 @@ export interface DailyVolume {
1866
1866
  * <p>The date that the DailyVolume metrics apply to, in Unix time.</p>
1867
1867
  * @public
1868
1868
  */
1869
- StartDate?: Date;
1869
+ StartDate?: Date | undefined;
1870
1870
  /**
1871
1871
  * <p>An object that contains inbox placement metrics for a specific day in the analysis
1872
1872
  * period.</p>
1873
1873
  * @public
1874
1874
  */
1875
- VolumeStatistics?: VolumeStatistics;
1875
+ VolumeStatistics?: VolumeStatistics | undefined;
1876
1876
  /**
1877
1877
  * <p>An object that contains inbox placement metrics for a specified day in the analysis
1878
1878
  * period, broken out by the recipient's email provider.</p>
1879
1879
  * @public
1880
1880
  */
1881
- DomainIspPlacements?: DomainIspPlacement[];
1881
+ DomainIspPlacements?: DomainIspPlacement[] | undefined;
1882
1882
  }
1883
1883
  /**
1884
1884
  * <p>An object that contains information about email that was sent from the selected
@@ -1891,19 +1891,19 @@ export interface OverallVolume {
1891
1891
  * recipients' inboxes and junk mail folders.</p>
1892
1892
  * @public
1893
1893
  */
1894
- VolumeStatistics?: VolumeStatistics;
1894
+ VolumeStatistics?: VolumeStatistics | undefined;
1895
1895
  /**
1896
1896
  * <p>The percentage of emails that were sent from the domain that were read by their
1897
1897
  * recipients.</p>
1898
1898
  * @public
1899
1899
  */
1900
- ReadRatePercent?: number;
1900
+ ReadRatePercent?: number | undefined;
1901
1901
  /**
1902
1902
  * <p>An object that contains inbox and junk mail placement metrics for individual email
1903
1903
  * providers.</p>
1904
1904
  * @public
1905
1905
  */
1906
- DomainIspPlacements?: DomainIspPlacement[];
1906
+ DomainIspPlacements?: DomainIspPlacement[] | undefined;
1907
1907
  }
1908
1908
  /**
1909
1909
  * <p>An object that includes statistics that are related to the domain that you
@@ -2022,7 +2022,7 @@ export interface GetEmailIdentityResponse {
2022
2022
  * <p>The email identity type.</p>
2023
2023
  * @public
2024
2024
  */
2025
- IdentityType?: IdentityType;
2025
+ IdentityType?: IdentityType | undefined;
2026
2026
  /**
2027
2027
  * <p>The feedback forwarding configuration for the identity.</p>
2028
2028
  * <p>If the value is <code>true</code>, Amazon Pinpoint sends you email notifications when bounce or
@@ -2035,33 +2035,33 @@ export interface GetEmailIdentityResponse {
2035
2035
  * notification when these events occur (even if this setting is disabled).</p>
2036
2036
  * @public
2037
2037
  */
2038
- FeedbackForwardingStatus?: boolean;
2038
+ FeedbackForwardingStatus?: boolean | undefined;
2039
2039
  /**
2040
2040
  * <p>Specifies whether or not the identity is verified. In Amazon Pinpoint, you can only send email
2041
2041
  * from verified email addresses or domains. For more information about verifying
2042
2042
  * identities, see the <a href="https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-manage-verify.html">Amazon Pinpoint User Guide</a>.</p>
2043
2043
  * @public
2044
2044
  */
2045
- VerifiedForSendingStatus?: boolean;
2045
+ VerifiedForSendingStatus?: boolean | undefined;
2046
2046
  /**
2047
2047
  * <p>An object that contains information about the DKIM attributes for the identity. This
2048
2048
  * object includes the tokens that you use to create the CNAME records that are required to
2049
2049
  * complete the DKIM verification process.</p>
2050
2050
  * @public
2051
2051
  */
2052
- DkimAttributes?: DkimAttributes;
2052
+ DkimAttributes?: DkimAttributes | undefined;
2053
2053
  /**
2054
2054
  * <p>An object that contains information about the Mail-From attributes for the email
2055
2055
  * identity.</p>
2056
2056
  * @public
2057
2057
  */
2058
- MailFromAttributes?: MailFromAttributes;
2058
+ MailFromAttributes?: MailFromAttributes | undefined;
2059
2059
  /**
2060
2060
  * <p>An array of objects that define the tags (keys and values) that are associated with
2061
2061
  * the email identity.</p>
2062
2062
  * @public
2063
2063
  */
2064
- Tags?: Tag[];
2064
+ Tags?: Tag[] | undefined;
2065
2065
  }
2066
2066
  /**
2067
2067
  * <p>A request to obtain a list of configuration sets for your Amazon Pinpoint account in the current
@@ -2074,7 +2074,7 @@ export interface ListConfigurationSetsRequest {
2074
2074
  * indicate the position in the list of configuration sets.</p>
2075
2075
  * @public
2076
2076
  */
2077
- NextToken?: string;
2077
+ NextToken?: string | undefined;
2078
2078
  /**
2079
2079
  * <p>The number of results to show in a single call to <code>ListConfigurationSets</code>.
2080
2080
  * If the number of results is larger than the number you specified in this parameter, then
@@ -2082,7 +2082,7 @@ export interface ListConfigurationSetsRequest {
2082
2082
  * additional results.</p>
2083
2083
  * @public
2084
2084
  */
2085
- PageSize?: number;
2085
+ PageSize?: number | undefined;
2086
2086
  }
2087
2087
  /**
2088
2088
  * <p>A list of configuration sets in your Amazon Pinpoint account in the current AWS Region.</p>
@@ -2094,7 +2094,7 @@ export interface ListConfigurationSetsResponse {
2094
2094
  * current AWS Region.</p>
2095
2095
  * @public
2096
2096
  */
2097
- ConfigurationSets?: string[];
2097
+ ConfigurationSets?: string[] | undefined;
2098
2098
  /**
2099
2099
  * <p>A token that indicates that there are additional configuration sets to list. To view
2100
2100
  * additional configuration sets, issue another request to
@@ -2102,7 +2102,7 @@ export interface ListConfigurationSetsResponse {
2102
2102
  * <code>NextToken</code> parameter.</p>
2103
2103
  * @public
2104
2104
  */
2105
- NextToken?: string;
2105
+ NextToken?: string | undefined;
2106
2106
  }
2107
2107
  /**
2108
2108
  * <p>A request to obtain a list of dedicated IP pools.</p>
@@ -2114,7 +2114,7 @@ export interface ListDedicatedIpPoolsRequest {
2114
2114
  * the position in the list of dedicated IP pools.</p>
2115
2115
  * @public
2116
2116
  */
2117
- NextToken?: string;
2117
+ NextToken?: string | undefined;
2118
2118
  /**
2119
2119
  * <p>The number of results to show in a single call to <code>ListDedicatedIpPools</code>.
2120
2120
  * If the number of results is larger than the number you specified in this parameter, then
@@ -2122,7 +2122,7 @@ export interface ListDedicatedIpPoolsRequest {
2122
2122
  * additional results.</p>
2123
2123
  * @public
2124
2124
  */
2125
- PageSize?: number;
2125
+ PageSize?: number | undefined;
2126
2126
  }
2127
2127
  /**
2128
2128
  * <p>A list of dedicated IP pools.</p>
@@ -2134,14 +2134,14 @@ export interface ListDedicatedIpPoolsResponse {
2134
2134
  * account.</p>
2135
2135
  * @public
2136
2136
  */
2137
- DedicatedIpPools?: string[];
2137
+ DedicatedIpPools?: string[] | undefined;
2138
2138
  /**
2139
2139
  * <p>A token that indicates that there are additional IP pools to list. To view additional
2140
2140
  * IP pools, issue another request to <code>ListDedicatedIpPools</code>, passing this token
2141
2141
  * in the <code>NextToken</code> parameter.</p>
2142
2142
  * @public
2143
2143
  */
2144
- NextToken?: string;
2144
+ NextToken?: string | undefined;
2145
2145
  }
2146
2146
  /**
2147
2147
  * <p>A request to list all of the predictive inbox placement tests that you've performed.</p>
@@ -2153,7 +2153,7 @@ export interface ListDeliverabilityTestReportsRequest {
2153
2153
  * indicate the position in the list of predictive inbox placement tests.</p>
2154
2154
  * @public
2155
2155
  */
2156
- NextToken?: string;
2156
+ NextToken?: string | undefined;
2157
2157
  /**
2158
2158
  * <p>The number of results to show in a single call to
2159
2159
  * <code>ListDeliverabilityTestReports</code>. If the number of results is larger than
@@ -2163,7 +2163,7 @@ export interface ListDeliverabilityTestReportsRequest {
2163
2163
  * <p>The value you specify has to be at least 0, and can be no more than 1000.</p>
2164
2164
  * @public
2165
2165
  */
2166
- PageSize?: number;
2166
+ PageSize?: number | undefined;
2167
2167
  }
2168
2168
  /**
2169
2169
  * <p>A list of the predictive inbox placement test reports that are available for your account, regardless of
@@ -2182,7 +2182,7 @@ export interface ListDeliverabilityTestReportsResponse {
2182
2182
  * this token in the <code>NextToken</code> parameter.</p>
2183
2183
  * @public
2184
2184
  */
2185
- NextToken?: string;
2185
+ NextToken?: string | undefined;
2186
2186
  }
2187
2187
  /**
2188
2188
  * <p>Retrieve deliverability data for all the campaigns that used a specific domain to send
@@ -2216,7 +2216,7 @@ export interface ListDomainDeliverabilityCampaignsRequest {
2216
2216
  * position of a campaign in the list of campaigns.</p>
2217
2217
  * @public
2218
2218
  */
2219
- NextToken?: string;
2219
+ NextToken?: string | undefined;
2220
2220
  /**
2221
2221
  * <p>The maximum number of results to include in response to a single call to the
2222
2222
  * <code>ListDomainDeliverabilityCampaigns</code> operation. If the number of results
@@ -2225,7 +2225,7 @@ export interface ListDomainDeliverabilityCampaignsRequest {
2225
2225
  * results.</p>
2226
2226
  * @public
2227
2227
  */
2228
- PageSize?: number;
2228
+ PageSize?: number | undefined;
2229
2229
  }
2230
2230
  /**
2231
2231
  * <p>An array of objects that provide deliverability data for all the campaigns that used a
@@ -2247,7 +2247,7 @@ export interface ListDomainDeliverabilityCampaignsResponse {
2247
2247
  * position of the campaign in the list of campaigns.</p>
2248
2248
  * @public
2249
2249
  */
2250
- NextToken?: string;
2250
+ NextToken?: string | undefined;
2251
2251
  }
2252
2252
  /**
2253
2253
  * <p>A request to list all of the email identities associated with your Amazon Pinpoint account. This
@@ -2261,7 +2261,7 @@ export interface ListEmailIdentitiesRequest {
2261
2261
  * the position in the list of identities.</p>
2262
2262
  * @public
2263
2263
  */
2264
- NextToken?: string;
2264
+ NextToken?: string | undefined;
2265
2265
  /**
2266
2266
  * <p>The number of results to show in a single call to <code>ListEmailIdentities</code>. If
2267
2267
  * the number of results is larger than the number you specified in this parameter, then
@@ -2270,7 +2270,7 @@ export interface ListEmailIdentitiesRequest {
2270
2270
  * <p>The value you specify has to be at least 0, and can be no more than 1000.</p>
2271
2271
  * @public
2272
2272
  */
2273
- PageSize?: number;
2273
+ PageSize?: number | undefined;
2274
2274
  }
2275
2275
  /**
2276
2276
  * <p>Information about an email identity.</p>
@@ -2296,12 +2296,12 @@ export interface IdentityInfo {
2296
2296
  * </ul>
2297
2297
  * @public
2298
2298
  */
2299
- IdentityType?: IdentityType;
2299
+ IdentityType?: IdentityType | undefined;
2300
2300
  /**
2301
2301
  * <p>The address or domain of the identity.</p>
2302
2302
  * @public
2303
2303
  */
2304
- IdentityName?: string;
2304
+ IdentityName?: string | undefined;
2305
2305
  /**
2306
2306
  * <p>Indicates whether or not you can send email from the identity.</p>
2307
2307
  * <p>In Amazon Pinpoint, an identity is an email address or domain that you send email from. Before
@@ -2309,7 +2309,7 @@ export interface IdentityInfo {
2309
2309
  * and that you authorize Amazon Pinpoint to send email from that identity.</p>
2310
2310
  * @public
2311
2311
  */
2312
- SendingEnabled?: boolean;
2312
+ SendingEnabled?: boolean | undefined;
2313
2313
  }
2314
2314
  /**
2315
2315
  * <p>A list of all of the identities that you've attempted to verify for use with Amazon Pinpoint,
@@ -2322,7 +2322,7 @@ export interface ListEmailIdentitiesResponse {
2322
2322
  * account.</p>
2323
2323
  * @public
2324
2324
  */
2325
- EmailIdentities?: IdentityInfo[];
2325
+ EmailIdentities?: IdentityInfo[] | undefined;
2326
2326
  /**
2327
2327
  * <p>A token that indicates that there are additional configuration sets to list. To view
2328
2328
  * additional configuration sets, issue another request to
@@ -2330,7 +2330,7 @@ export interface ListEmailIdentitiesResponse {
2330
2330
  * parameter.</p>
2331
2331
  * @public
2332
2332
  */
2333
- NextToken?: string;
2333
+ NextToken?: string | undefined;
2334
2334
  }
2335
2335
  /**
2336
2336
  * @public
@@ -2367,7 +2367,7 @@ export interface PutAccountDedicatedIpWarmupAttributesRequest {
2367
2367
  * it.</p>
2368
2368
  * @public
2369
2369
  */
2370
- AutoWarmupEnabled?: boolean;
2370
+ AutoWarmupEnabled?: boolean | undefined;
2371
2371
  }
2372
2372
  /**
2373
2373
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2390,7 +2390,7 @@ export interface PutAccountSendingAttributesRequest {
2390
2390
  * </note>
2391
2391
  * @public
2392
2392
  */
2393
- SendingEnabled?: boolean;
2393
+ SendingEnabled?: boolean | undefined;
2394
2394
  }
2395
2395
  /**
2396
2396
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2417,13 +2417,13 @@ export interface PutConfigurationSetDeliveryOptionsRequest {
2417
2417
  * messages can be delivered in plain text if a TLS connection can't be established.</p>
2418
2418
  * @public
2419
2419
  */
2420
- TlsPolicy?: TlsPolicy;
2420
+ TlsPolicy?: TlsPolicy | undefined;
2421
2421
  /**
2422
2422
  * <p>The name of the dedicated IP pool that you want to associate with the configuration
2423
2423
  * set.</p>
2424
2424
  * @public
2425
2425
  */
2426
- SendingPoolName?: string;
2426
+ SendingPoolName?: string | undefined;
2427
2427
  }
2428
2428
  /**
2429
2429
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2450,7 +2450,7 @@ export interface PutConfigurationSetReputationOptionsRequest {
2450
2450
  * configuration set.</p>
2451
2451
  * @public
2452
2452
  */
2453
- ReputationMetricsEnabled?: boolean;
2453
+ ReputationMetricsEnabled?: boolean | undefined;
2454
2454
  }
2455
2455
  /**
2456
2456
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2476,7 +2476,7 @@ export interface PutConfigurationSetSendingOptionsRequest {
2476
2476
  * <code>false</code>, email sending is disabled for the configuration set.</p>
2477
2477
  * @public
2478
2478
  */
2479
- SendingEnabled?: boolean;
2479
+ SendingEnabled?: boolean | undefined;
2480
2480
  }
2481
2481
  /**
2482
2482
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2501,7 +2501,7 @@ export interface PutConfigurationSetTrackingOptionsRequest {
2501
2501
  * <p>The domain that you want to use to track open and click events.</p>
2502
2502
  * @public
2503
2503
  */
2504
- CustomRedirectDomain?: string;
2504
+ CustomRedirectDomain?: string | undefined;
2505
2505
  }
2506
2506
  /**
2507
2507
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2582,7 +2582,7 @@ export interface PutDeliverabilityDashboardOptionRequest {
2582
2582
  * enabled the Deliverability dashboard for.</p>
2583
2583
  * @public
2584
2584
  */
2585
- SubscribedDomains?: DomainDeliverabilityTrackingOption[];
2585
+ SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
2586
2586
  }
2587
2587
  /**
2588
2588
  * <p>A response that indicates whether the Deliverability dashboard is enabled for your Amazon Pinpoint
@@ -2609,7 +2609,7 @@ export interface PutEmailIdentityDkimAttributesRequest {
2609
2609
  * messages that Amazon Pinpoint sends from the identity aren't DKIM-signed.</p>
2610
2610
  * @public
2611
2611
  */
2612
- SigningEnabled?: boolean;
2612
+ SigningEnabled?: boolean | undefined;
2613
2613
  }
2614
2614
  /**
2615
2615
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2642,7 +2642,7 @@ export interface PutEmailIdentityFeedbackAttributesRequest {
2642
2642
  * notification when these events occur (even if this setting is disabled).</p>
2643
2643
  * @public
2644
2644
  */
2645
- EmailForwardingEnabled?: boolean;
2645
+ EmailForwardingEnabled?: boolean | undefined;
2646
2646
  }
2647
2647
  /**
2648
2648
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2679,7 +2679,7 @@ export interface PutEmailIdentityMailFromAttributesRequest {
2679
2679
  * </ul>
2680
2680
  * @public
2681
2681
  */
2682
- MailFromDomain?: string;
2682
+ MailFromDomain?: string | undefined;
2683
2683
  /**
2684
2684
  * <p>The action that you want Amazon Pinpoint to take if it can't read the required MX record when
2685
2685
  * you send an email. When you set this value to <code>UseDefaultValue</code>, Amazon Pinpoint uses
@@ -2691,7 +2691,7 @@ export interface PutEmailIdentityMailFromAttributesRequest {
2691
2691
  * states.</p>
2692
2692
  * @public
2693
2693
  */
2694
- BehaviorOnMxFailure?: BehaviorOnMxFailure;
2694
+ BehaviorOnMxFailure?: BehaviorOnMxFailure | undefined;
2695
2695
  }
2696
2696
  /**
2697
2697
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2710,19 +2710,19 @@ export interface Destination {
2710
2710
  * email.</p>
2711
2711
  * @public
2712
2712
  */
2713
- ToAddresses?: string[];
2713
+ ToAddresses?: string[] | undefined;
2714
2714
  /**
2715
2715
  * <p>An array that contains the email addresses of the "CC" (carbon copy) recipients for
2716
2716
  * the email.</p>
2717
2717
  * @public
2718
2718
  */
2719
- CcAddresses?: string[];
2719
+ CcAddresses?: string[] | undefined;
2720
2720
  /**
2721
2721
  * <p>An array that contains the email addresses of the "BCC" (blind carbon copy) recipients
2722
2722
  * for the email.</p>
2723
2723
  * @public
2724
2724
  */
2725
- BccAddresses?: string[];
2725
+ BccAddresses?: string[] | undefined;
2726
2726
  }
2727
2727
  /**
2728
2728
  * <p>Contains the name and value of a tag that you apply to an email. You can use message
@@ -2773,7 +2773,7 @@ export interface SendEmailRequest {
2773
2773
  * </p>
2774
2774
  * @public
2775
2775
  */
2776
- FromEmailAddress?: string;
2776
+ FromEmailAddress?: string | undefined;
2777
2777
  /**
2778
2778
  * <p>An object that contains the recipients of the email message.</p>
2779
2779
  * @public
@@ -2784,12 +2784,12 @@ export interface SendEmailRequest {
2784
2784
  * message, each Reply-to address receives the reply.</p>
2785
2785
  * @public
2786
2786
  */
2787
- ReplyToAddresses?: string[];
2787
+ ReplyToAddresses?: string[] | undefined;
2788
2788
  /**
2789
2789
  * <p>The address that Amazon Pinpoint should send bounce and complaint notifications to.</p>
2790
2790
  * @public
2791
2791
  */
2792
- FeedbackForwardingEmailAddress?: string;
2792
+ FeedbackForwardingEmailAddress?: string | undefined;
2793
2793
  /**
2794
2794
  * <p>An object that contains the body of the message. You can send either a Simple message
2795
2795
  * or a Raw message.</p>
@@ -2802,12 +2802,12 @@ export interface SendEmailRequest {
2802
2802
  * email that you define, so that you can publish email sending events. </p>
2803
2803
  * @public
2804
2804
  */
2805
- EmailTags?: MessageTag[];
2805
+ EmailTags?: MessageTag[] | undefined;
2806
2806
  /**
2807
2807
  * <p>The name of the configuration set that you want to use when sending the email.</p>
2808
2808
  * @public
2809
2809
  */
2810
- ConfigurationSetName?: string;
2810
+ ConfigurationSetName?: string | undefined;
2811
2811
  }
2812
2812
  /**
2813
2813
  * <p>A unique message ID that you receive when Amazon Pinpoint accepts an email for sending.</p>
@@ -2825,7 +2825,7 @@ export interface SendEmailResponse {
2825
2825
  * </note>
2826
2826
  * @public
2827
2827
  */
2828
- MessageId?: string;
2828
+ MessageId?: string | undefined;
2829
2829
  }
2830
2830
  /**
2831
2831
  * @public