@aws-sdk/client-ses 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.
@@ -47,7 +47,7 @@ export declare class AlreadyExistsException extends __BaseException {
47
47
  * exists.</p>
48
48
  * @public
49
49
  */
50
- Name?: string;
50
+ Name?: string | undefined;
51
51
  /**
52
52
  * @internal
53
53
  */
@@ -82,7 +82,7 @@ export interface Content {
82
82
  * <p>The character set of the content.</p>
83
83
  * @public
84
84
  */
85
- Charset?: string;
85
+ Charset?: string | undefined;
86
86
  }
87
87
  /**
88
88
  * <p>Represents the body of the message. You can specify text, HTML, or both. If you use
@@ -96,14 +96,14 @@ export interface Body {
96
96
  * clients on high-latency networks (such as mobile devices).</p>
97
97
  * @public
98
98
  */
99
- Text?: Content;
99
+ Text?: Content | undefined;
100
100
  /**
101
101
  * <p>The content of the message, in HTML format. Use this for email clients that can
102
102
  * process HTML. You can include clickable links, formatted text, and much more in an HTML
103
103
  * message.</p>
104
104
  * @public
105
105
  */
106
- Html?: Content;
106
+ Html?: Content | undefined;
107
107
  }
108
108
  /**
109
109
  * <p>When included in a receipt rule, this action rejects the received email by returning a
@@ -121,7 +121,7 @@ export interface BounceAction {
121
121
  * <p>For more information about Amazon SNS topics, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html">Amazon SNS Developer Guide</a>.</p>
122
122
  * @public
123
123
  */
124
- TopicArn?: string;
124
+ TopicArn?: string | undefined;
125
125
  /**
126
126
  * <p>The SMTP reply code, as defined by <a href="https://tools.ietf.org/html/rfc5321">RFC 5321</a>.</p>
127
127
  * @public
@@ -131,7 +131,7 @@ export interface BounceAction {
131
131
  * <p>The SMTP enhanced status code, as defined by <a href="https://tools.ietf.org/html/rfc3463">RFC 3463</a>.</p>
132
132
  * @public
133
133
  */
134
- StatusCode?: string;
134
+ StatusCode?: string | undefined;
135
135
  /**
136
136
  * <p>Human-readable text to include in the bounce message.</p>
137
137
  * @public
@@ -217,7 +217,7 @@ export interface RecipientDsnFields {
217
217
  * </note>
218
218
  * @public
219
219
  */
220
- FinalRecipient?: string;
220
+ FinalRecipient?: string | undefined;
221
221
  /**
222
222
  * <p>The action performed by the reporting mail transfer agent (MTA) as a result of its
223
223
  * attempt to deliver the message to the recipient address. This is required by <a href="https://tools.ietf.org/html/rfc3464">RFC 3464</a>.</p>
@@ -231,7 +231,7 @@ export interface RecipientDsnFields {
231
231
  * propagating synchronous bounces.</p>
232
232
  * @public
233
233
  */
234
- RemoteMta?: string;
234
+ RemoteMta?: string | undefined;
235
235
  /**
236
236
  * <p>The status code that indicates what went wrong. This is required by <a href="https://tools.ietf.org/html/rfc3464">RFC 3464</a>.</p>
237
237
  * @public
@@ -243,17 +243,17 @@ export interface RecipientDsnFields {
243
243
  * formatting of this parameter.</p>
244
244
  * @public
245
245
  */
246
- DiagnosticCode?: string;
246
+ DiagnosticCode?: string | undefined;
247
247
  /**
248
248
  * <p>The time the final delivery attempt was made, in <a href="https://www.ietf.org/rfc/rfc0822.txt">RFC 822</a> date-time format.</p>
249
249
  * @public
250
250
  */
251
- LastAttemptDate?: Date;
251
+ LastAttemptDate?: Date | undefined;
252
252
  /**
253
253
  * <p>Additional X-headers to include in the DSN.</p>
254
254
  * @public
255
255
  */
256
- ExtensionFields?: ExtensionField[];
256
+ ExtensionFields?: ExtensionField[] | undefined;
257
257
  }
258
258
  /**
259
259
  * <p>Recipient-related information to include in the Delivery Status Notification (DSN)
@@ -275,20 +275,20 @@ export interface BouncedRecipientInfo {
275
275
  * authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
276
276
  * @public
277
277
  */
278
- RecipientArn?: string;
278
+ RecipientArn?: string | undefined;
279
279
  /**
280
280
  * <p>The reason for the bounce. You must provide either this parameter or
281
281
  * <code>RecipientDsnFields</code>.</p>
282
282
  * @public
283
283
  */
284
- BounceType?: BounceType;
284
+ BounceType?: BounceType | undefined;
285
285
  /**
286
286
  * <p>Recipient-related DSN fields, most of which would normally be filled in automatically
287
287
  * when provided with a <code>BounceType</code>. You must provide either this parameter or
288
288
  * <code>BounceType</code>.</p>
289
289
  * @public
290
290
  */
291
- RecipientDsnFields?: RecipientDsnFields;
291
+ RecipientDsnFields?: RecipientDsnFields | undefined;
292
292
  }
293
293
  /**
294
294
  * <p>Represents the destination of the message, consisting of To:, CC:, and BCC:
@@ -310,17 +310,17 @@ export interface Destination {
310
310
  * <p>The recipients to place on the To: line of the message.</p>
311
311
  * @public
312
312
  */
313
- ToAddresses?: string[];
313
+ ToAddresses?: string[] | undefined;
314
314
  /**
315
315
  * <p>The recipients to place on the CC: line of the message.</p>
316
316
  * @public
317
317
  */
318
- CcAddresses?: string[];
318
+ CcAddresses?: string[] | undefined;
319
319
  /**
320
320
  * <p>The recipients to place on the BCC: line of the message.</p>
321
321
  * @public
322
322
  */
323
- BccAddresses?: string[];
323
+ BccAddresses?: string[] | undefined;
324
324
  }
325
325
  /**
326
326
  * <p>Contains the name and value of a tag that you can provide to <code>SendEmail</code> or
@@ -388,14 +388,14 @@ export interface BulkEmailDestination {
388
388
  * email that you define, so that you can publish email sending events.</p>
389
389
  * @public
390
390
  */
391
- ReplacementTags?: MessageTag[];
391
+ ReplacementTags?: MessageTag[] | undefined;
392
392
  /**
393
393
  * <p>A list of replacement values to apply to the template. This parameter is a JSON
394
394
  * object, typically consisting of key-value pairs in which the keys correspond to
395
395
  * replacement tags in the email template.</p>
396
396
  * @public
397
397
  */
398
- ReplacementTemplateData?: string;
398
+ ReplacementTemplateData?: string | undefined;
399
399
  }
400
400
  /**
401
401
  * @public
@@ -508,19 +508,19 @@ export interface BulkEmailDestinationStatus {
508
508
  * </ul>
509
509
  * @public
510
510
  */
511
- Status?: BulkEmailStatus;
511
+ Status?: BulkEmailStatus | undefined;
512
512
  /**
513
513
  * <p>A description of an error that prevented a message being sent using the
514
514
  * <code>SendBulkTemplatedEmail</code> operation.</p>
515
515
  * @public
516
516
  */
517
- Error?: string;
517
+ Error?: string | undefined;
518
518
  /**
519
519
  * <p>The unique message identifier returned from the <code>SendBulkTemplatedEmail</code>
520
520
  * operation.</p>
521
521
  * @public
522
522
  */
523
- MessageId?: string;
523
+ MessageId?: string | undefined;
524
524
  }
525
525
  /**
526
526
  * <p>Indicates that the delete operation could not be completed.</p>
@@ -534,7 +534,7 @@ export declare class CannotDeleteException extends __BaseException {
534
534
  * name exists.</p>
535
535
  * @public
536
536
  */
537
- Name?: string;
537
+ Name?: string | undefined;
538
538
  /**
539
539
  * @internal
540
540
  */
@@ -602,7 +602,7 @@ export declare class RuleSetDoesNotExistException extends __BaseException {
602
602
  * <p>Indicates that the named receipt rule set does not exist.</p>
603
603
  * @public
604
604
  */
605
- Name?: string;
605
+ Name?: string | undefined;
606
606
  /**
607
607
  * @internal
608
608
  */
@@ -724,7 +724,7 @@ export declare class ConfigurationSetAlreadyExistsException extends __BaseExcept
724
724
  * <p>Indicates that the configuration set does not exist.</p>
725
725
  * @public
726
726
  */
727
- ConfigurationSetName?: string;
727
+ ConfigurationSetName?: string | undefined;
728
728
  /**
729
729
  * @internal
730
730
  */
@@ -755,7 +755,7 @@ export declare class ConfigurationSetDoesNotExistException extends __BaseExcepti
755
755
  * <p>Indicates that the configuration set does not exist.</p>
756
756
  * @public
757
757
  */
758
- ConfigurationSetName?: string;
758
+ ConfigurationSetName?: string | undefined;
759
759
  /**
760
760
  * @internal
761
761
  */
@@ -773,7 +773,7 @@ export declare class ConfigurationSetSendingPausedException extends __BaseExcept
773
773
  * <p>The name of the configuration set for which email sending is disabled.</p>
774
774
  * @public
775
775
  */
776
- ConfigurationSetName?: string;
776
+ ConfigurationSetName?: string | undefined;
777
777
  /**
778
778
  * @internal
779
779
  */
@@ -904,7 +904,7 @@ export interface EventDestination {
904
904
  * default value is <code>false</code>.</p>
905
905
  * @public
906
906
  */
907
- Enabled?: boolean;
907
+ Enabled?: boolean | undefined;
908
908
  /**
909
909
  * <p>The type of email sending events to publish to the event destination.</p>
910
910
  * <ul>
@@ -956,19 +956,19 @@ export interface EventDestination {
956
956
  * an Amazon Kinesis Firehose event destination.</p>
957
957
  * @public
958
958
  */
959
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
959
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
960
960
  /**
961
961
  * <p>An object that contains the names, default values, and sources of the dimensions
962
962
  * associated with an Amazon CloudWatch event destination.</p>
963
963
  * @public
964
964
  */
965
- CloudWatchDestination?: CloudWatchDestination;
965
+ CloudWatchDestination?: CloudWatchDestination | undefined;
966
966
  /**
967
967
  * <p>An object that contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event
968
968
  * destination.</p>
969
969
  * @public
970
970
  */
971
- SNSDestination?: SNSDestination;
971
+ SNSDestination?: SNSDestination | undefined;
972
972
  }
973
973
  /**
974
974
  * <p>Represents a request to create a configuration set event destination. A configuration
@@ -1010,12 +1010,12 @@ export declare class EventDestinationAlreadyExistsException extends __BaseExcept
1010
1010
  * <p>Indicates that the configuration set does not exist.</p>
1011
1011
  * @public
1012
1012
  */
1013
- ConfigurationSetName?: string;
1013
+ ConfigurationSetName?: string | undefined;
1014
1014
  /**
1015
1015
  * <p>Indicates that the event destination does not exist.</p>
1016
1016
  * @public
1017
1017
  */
1018
- EventDestinationName?: string;
1018
+ EventDestinationName?: string | undefined;
1019
1019
  /**
1020
1020
  * @internal
1021
1021
  */
@@ -1033,12 +1033,12 @@ export declare class InvalidCloudWatchDestinationException extends __BaseExcepti
1033
1033
  * <p>Indicates that the configuration set does not exist.</p>
1034
1034
  * @public
1035
1035
  */
1036
- ConfigurationSetName?: string;
1036
+ ConfigurationSetName?: string | undefined;
1037
1037
  /**
1038
1038
  * <p>Indicates that the event destination does not exist.</p>
1039
1039
  * @public
1040
1040
  */
1041
- EventDestinationName?: string;
1041
+ EventDestinationName?: string | undefined;
1042
1042
  /**
1043
1043
  * @internal
1044
1044
  */
@@ -1056,12 +1056,12 @@ export declare class InvalidFirehoseDestinationException extends __BaseException
1056
1056
  * <p>Indicates that the configuration set does not exist.</p>
1057
1057
  * @public
1058
1058
  */
1059
- ConfigurationSetName?: string;
1059
+ ConfigurationSetName?: string | undefined;
1060
1060
  /**
1061
1061
  * <p>Indicates that the event destination does not exist.</p>
1062
1062
  * @public
1063
1063
  */
1064
- EventDestinationName?: string;
1064
+ EventDestinationName?: string | undefined;
1065
1065
  /**
1066
1066
  * @internal
1067
1067
  */
@@ -1079,12 +1079,12 @@ export declare class InvalidSNSDestinationException extends __BaseException {
1079
1079
  * <p>Indicates that the configuration set does not exist.</p>
1080
1080
  * @public
1081
1081
  */
1082
- ConfigurationSetName?: string;
1082
+ ConfigurationSetName?: string | undefined;
1083
1083
  /**
1084
1084
  * <p>Indicates that the event destination does not exist.</p>
1085
1085
  * @public
1086
1086
  */
1087
- EventDestinationName?: string;
1087
+ EventDestinationName?: string | undefined;
1088
1088
  /**
1089
1089
  * @internal
1090
1090
  */
@@ -1104,7 +1104,7 @@ export interface TrackingOptions {
1104
1104
  * tracking domain.</p>
1105
1105
  * @public
1106
1106
  */
1107
- CustomRedirectDomain?: string;
1107
+ CustomRedirectDomain?: string | undefined;
1108
1108
  }
1109
1109
  /**
1110
1110
  * <p>Represents a request to create an open and click tracking option object in a
@@ -1169,7 +1169,7 @@ export declare class TrackingOptionsAlreadyExistsException extends __BaseExcepti
1169
1169
  * set.</p>
1170
1170
  * @public
1171
1171
  */
1172
- ConfigurationSetName?: string;
1172
+ ConfigurationSetName?: string | undefined;
1173
1173
  /**
1174
1174
  * @internal
1175
1175
  */
@@ -1242,7 +1242,7 @@ export declare class CustomVerificationEmailTemplateAlreadyExistsException exten
1242
1242
  * template name already exists.</p>
1243
1243
  * @public
1244
1244
  */
1245
- CustomVerificationEmailTemplateName?: string;
1245
+ CustomVerificationEmailTemplateName?: string | undefined;
1246
1246
  /**
1247
1247
  * @internal
1248
1248
  */
@@ -1261,7 +1261,7 @@ export declare class FromEmailAddressNotVerifiedException extends __BaseExceptio
1261
1261
  * template is not verified.</p>
1262
1262
  * @public
1263
1263
  */
1264
- FromEmailAddress?: string;
1264
+ FromEmailAddress?: string | undefined;
1265
1265
  /**
1266
1266
  * @internal
1267
1267
  */
@@ -1387,7 +1387,7 @@ export interface LambdaAction {
1387
1387
  * <p>For more information about Amazon SNS topics, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html">Amazon SNS Developer Guide</a>.</p>
1388
1388
  * @public
1389
1389
  */
1390
- TopicArn?: string;
1390
+ TopicArn?: string | undefined;
1391
1391
  /**
1392
1392
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Lambda function. An example of an Amazon Web Services Lambda
1393
1393
  * function ARN is <code>arn:aws:lambda:us-west-2:account-id:function:MyFunction</code>.
@@ -1409,7 +1409,7 @@ export interface LambdaAction {
1409
1409
  * </important>
1410
1410
  * @public
1411
1411
  */
1412
- InvocationType?: InvocationType;
1412
+ InvocationType?: InvocationType | undefined;
1413
1413
  }
1414
1414
  /**
1415
1415
  * <p>When included in a receipt rule, this action saves the received message to an Amazon Simple Storage Service
@@ -1434,7 +1434,7 @@ export interface S3Action {
1434
1434
  * <p>For more information about Amazon SNS topics, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html">Amazon SNS Developer Guide</a>.</p>
1435
1435
  * @public
1436
1436
  */
1437
- TopicArn?: string;
1437
+ TopicArn?: string | undefined;
1438
1438
  /**
1439
1439
  * <p>The name of the Amazon S3 bucket for incoming email.</p>
1440
1440
  * @public
@@ -1445,7 +1445,7 @@ export interface S3Action {
1445
1445
  * enables you to store similar data under the same directory in a bucket.</p>
1446
1446
  * @public
1447
1447
  */
1448
- ObjectKeyPrefix?: string;
1448
+ ObjectKeyPrefix?: string | undefined;
1449
1449
  /**
1450
1450
  * <p>The customer managed key that Amazon SES should use to encrypt your emails before saving
1451
1451
  * them to the Amazon S3 bucket. You can use the default managed key or a custom managed key that
@@ -1483,7 +1483,7 @@ export interface S3Action {
1483
1483
  * </important>
1484
1484
  * @public
1485
1485
  */
1486
- KmsKeyArn?: string;
1486
+ KmsKeyArn?: string | undefined;
1487
1487
  /**
1488
1488
  * <p> The ARN of the IAM role to be used by Amazon Simple Email Service while writing to the Amazon S3 bucket,
1489
1489
  * optionally encrypting your mail via the provided customer managed key, and publishing to
@@ -1513,7 +1513,7 @@ export interface S3Action {
1513
1513
  * </note>
1514
1514
  * @public
1515
1515
  */
1516
- IamRoleArn?: string;
1516
+ IamRoleArn?: string | undefined;
1517
1517
  }
1518
1518
  /**
1519
1519
  * @public
@@ -1561,7 +1561,7 @@ export interface SNSAction {
1561
1561
  * UTF-8.</p>
1562
1562
  * @public
1563
1563
  */
1564
- Encoding?: SNSActionEncoding;
1564
+ Encoding?: SNSActionEncoding | undefined;
1565
1565
  }
1566
1566
  /**
1567
1567
  * @public
@@ -1593,7 +1593,7 @@ export interface StopAction {
1593
1593
  * <p>For more information about Amazon SNS topics, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html">Amazon SNS Developer Guide</a>.</p>
1594
1594
  * @public
1595
1595
  */
1596
- TopicArn?: string;
1596
+ TopicArn?: string | undefined;
1597
1597
  }
1598
1598
  /**
1599
1599
  * <p>When included in a receipt rule, this action calls Amazon WorkMail and, optionally,
@@ -1612,7 +1612,7 @@ export interface WorkmailAction {
1612
1612
  * <p>For more information about Amazon SNS topics, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html">Amazon SNS Developer Guide</a>.</p>
1613
1613
  * @public
1614
1614
  */
1615
- TopicArn?: string;
1615
+ TopicArn?: string | undefined;
1616
1616
  /**
1617
1617
  * <p>The Amazon Resource Name (ARN) of the Amazon WorkMail organization. Amazon WorkMail
1618
1618
  * ARNs use the following format:</p>
@@ -1641,40 +1641,40 @@ export interface ReceiptAction {
1641
1641
  * notification to Amazon SNS.</p>
1642
1642
  * @public
1643
1643
  */
1644
- S3Action?: S3Action;
1644
+ S3Action?: S3Action | undefined;
1645
1645
  /**
1646
1646
  * <p>Rejects the received email by returning a bounce response to the sender and,
1647
1647
  * optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).</p>
1648
1648
  * @public
1649
1649
  */
1650
- BounceAction?: BounceAction;
1650
+ BounceAction?: BounceAction | undefined;
1651
1651
  /**
1652
1652
  * <p>Calls Amazon WorkMail and, optionally, publishes a notification to Amazon
1653
1653
  * Amazon SNS.</p>
1654
1654
  * @public
1655
1655
  */
1656
- WorkmailAction?: WorkmailAction;
1656
+ WorkmailAction?: WorkmailAction | undefined;
1657
1657
  /**
1658
1658
  * <p>Calls an Amazon Web Services Lambda function, and optionally, publishes a notification to Amazon SNS.</p>
1659
1659
  * @public
1660
1660
  */
1661
- LambdaAction?: LambdaAction;
1661
+ LambdaAction?: LambdaAction | undefined;
1662
1662
  /**
1663
1663
  * <p>Terminates the evaluation of the receipt rule set and optionally publishes a
1664
1664
  * notification to Amazon SNS.</p>
1665
1665
  * @public
1666
1666
  */
1667
- StopAction?: StopAction;
1667
+ StopAction?: StopAction | undefined;
1668
1668
  /**
1669
1669
  * <p>Adds a header to the received email.</p>
1670
1670
  * @public
1671
1671
  */
1672
- AddHeaderAction?: AddHeaderAction;
1672
+ AddHeaderAction?: AddHeaderAction | undefined;
1673
1673
  /**
1674
1674
  * <p>Publishes the email content within a notification to Amazon SNS.</p>
1675
1675
  * @public
1676
1676
  */
1677
- SNSAction?: SNSAction;
1677
+ SNSAction?: SNSAction | undefined;
1678
1678
  }
1679
1679
  /**
1680
1680
  * @public
@@ -1721,7 +1721,7 @@ export interface ReceiptRule {
1721
1721
  * <code>false</code>.</p>
1722
1722
  * @public
1723
1723
  */
1724
- Enabled?: boolean;
1724
+ Enabled?: boolean | undefined;
1725
1725
  /**
1726
1726
  * <p>Specifies whether Amazon SES should require that incoming email is delivered over a
1727
1727
  * connection encrypted with Transport Layer Security (TLS). If this parameter is set to
@@ -1729,25 +1729,25 @@ export interface ReceiptRule {
1729
1729
  * default is <code>Optional</code>.</p>
1730
1730
  * @public
1731
1731
  */
1732
- TlsPolicy?: TlsPolicy;
1732
+ TlsPolicy?: TlsPolicy | undefined;
1733
1733
  /**
1734
1734
  * <p>The recipient domains and email addresses that the receipt rule applies to. If this
1735
1735
  * field is not specified, this rule matches all recipients on all verified domains.</p>
1736
1736
  * @public
1737
1737
  */
1738
- Recipients?: string[];
1738
+ Recipients?: string[] | undefined;
1739
1739
  /**
1740
1740
  * <p>An ordered list of actions to perform on messages that match at least one of the
1741
1741
  * recipient email addresses or domains specified in the receipt rule.</p>
1742
1742
  * @public
1743
1743
  */
1744
- Actions?: ReceiptAction[];
1744
+ Actions?: ReceiptAction[] | undefined;
1745
1745
  /**
1746
1746
  * <p>If <code>true</code>, then messages that this receipt rule applies to are scanned for
1747
1747
  * spam and viruses. The default value is <code>false</code>.</p>
1748
1748
  * @public
1749
1749
  */
1750
- ScanEnabled?: boolean;
1750
+ ScanEnabled?: boolean | undefined;
1751
1751
  }
1752
1752
  /**
1753
1753
  * <p>Represents a request to create a receipt rule. You use receipt rules to receive email
@@ -1766,7 +1766,7 @@ export interface CreateReceiptRuleRequest {
1766
1766
  * null, the new rule is inserted at the beginning of the rule list.</p>
1767
1767
  * @public
1768
1768
  */
1769
- After?: string;
1769
+ After?: string | undefined;
1770
1770
  /**
1771
1771
  * <p>A data structure that contains the specified rule's name, actions, recipients,
1772
1772
  * domains, enabled status, scan status, and TLS policy.</p>
@@ -1794,7 +1794,7 @@ export declare class InvalidLambdaFunctionException extends __BaseException {
1794
1794
  * <p>Indicates that the ARN of the function was not found.</p>
1795
1795
  * @public
1796
1796
  */
1797
- FunctionArn?: string;
1797
+ FunctionArn?: string | undefined;
1798
1798
  /**
1799
1799
  * @internal
1800
1800
  */
@@ -1814,7 +1814,7 @@ export declare class InvalidS3ConfigurationException extends __BaseException {
1814
1814
  * <p>Indicated that the S3 Bucket was not found.</p>
1815
1815
  * @public
1816
1816
  */
1817
- Bucket?: string;
1817
+ Bucket?: string | undefined;
1818
1818
  /**
1819
1819
  * @internal
1820
1820
  */
@@ -1834,7 +1834,7 @@ export declare class InvalidSnsTopicException extends __BaseException {
1834
1834
  * <p>Indicates that the topic does not exist.</p>
1835
1835
  * @public
1836
1836
  */
1837
- Topic?: string;
1837
+ Topic?: string | undefined;
1838
1838
  /**
1839
1839
  * @internal
1840
1840
  */
@@ -1851,7 +1851,7 @@ export declare class RuleDoesNotExistException extends __BaseException {
1851
1851
  * <p>Indicates that the named receipt rule does not exist.</p>
1852
1852
  * @public
1853
1853
  */
1854
- Name?: string;
1854
+ Name?: string | undefined;
1855
1855
  /**
1856
1856
  * @internal
1857
1857
  */
@@ -1906,18 +1906,18 @@ export interface Template {
1906
1906
  * <p>The subject line of the email.</p>
1907
1907
  * @public
1908
1908
  */
1909
- SubjectPart?: string;
1909
+ SubjectPart?: string | undefined;
1910
1910
  /**
1911
1911
  * <p>The email body that is visible to recipients whose email clients do not display HTML
1912
1912
  * content.</p>
1913
1913
  * @public
1914
1914
  */
1915
- TextPart?: string;
1915
+ TextPart?: string | undefined;
1916
1916
  /**
1917
1917
  * <p>The HTML body of the email.</p>
1918
1918
  * @public
1919
1919
  */
1920
- HtmlPart?: string;
1920
+ HtmlPart?: string | undefined;
1921
1921
  }
1922
1922
  /**
1923
1923
  * <p>Represents a request to create an email template. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/send-personalized-email-api.html">Amazon SES
@@ -1945,7 +1945,7 @@ export interface CreateTemplateResponse {
1945
1945
  export declare class InvalidTemplateException extends __BaseException {
1946
1946
  readonly name: "InvalidTemplateException";
1947
1947
  readonly $fault: "client";
1948
- TemplateName?: string;
1948
+ TemplateName?: string | undefined;
1949
1949
  /**
1950
1950
  * @internal
1951
1951
  */
@@ -1974,29 +1974,29 @@ export interface CustomVerificationEmailTemplate {
1974
1974
  * <p>The name of the custom verification email template.</p>
1975
1975
  * @public
1976
1976
  */
1977
- TemplateName?: string;
1977
+ TemplateName?: string | undefined;
1978
1978
  /**
1979
1979
  * <p>The email address that the custom verification email is sent from.</p>
1980
1980
  * @public
1981
1981
  */
1982
- FromEmailAddress?: string;
1982
+ FromEmailAddress?: string | undefined;
1983
1983
  /**
1984
1984
  * <p>The subject line of the custom verification email.</p>
1985
1985
  * @public
1986
1986
  */
1987
- TemplateSubject?: string;
1987
+ TemplateSubject?: string | undefined;
1988
1988
  /**
1989
1989
  * <p>The URL that the recipient of the verification email is sent to if his or her address
1990
1990
  * is successfully verified.</p>
1991
1991
  * @public
1992
1992
  */
1993
- SuccessRedirectionURL?: string;
1993
+ SuccessRedirectionURL?: string | undefined;
1994
1994
  /**
1995
1995
  * <p>The URL that the recipient of the verification email is sent to if his or her address
1996
1996
  * is not successfully verified.</p>
1997
1997
  * @public
1998
1998
  */
1999
- FailureRedirectionURL?: string;
1999
+ FailureRedirectionURL?: string | undefined;
2000
2000
  }
2001
2001
  /**
2002
2002
  * <p>Indicates that a custom verification email template with the name you specified does
@@ -2010,7 +2010,7 @@ export declare class CustomVerificationEmailTemplateDoesNotExistException extend
2010
2010
  * <p>Indicates that the provided custom verification email template does not exist.</p>
2011
2011
  * @public
2012
2012
  */
2013
- CustomVerificationEmailTemplateName?: string;
2013
+ CustomVerificationEmailTemplateName?: string | undefined;
2014
2014
  /**
2015
2015
  * @internal
2016
2016
  */
@@ -2073,12 +2073,12 @@ export declare class EventDestinationDoesNotExistException extends __BaseExcepti
2073
2073
  * <p>Indicates that the configuration set does not exist.</p>
2074
2074
  * @public
2075
2075
  */
2076
- ConfigurationSetName?: string;
2076
+ ConfigurationSetName?: string | undefined;
2077
2077
  /**
2078
2078
  * <p>Indicates that the event destination does not exist.</p>
2079
2079
  * @public
2080
2080
  */
2081
- EventDestinationName?: string;
2081
+ EventDestinationName?: string | undefined;
2082
2082
  /**
2083
2083
  * @internal
2084
2084
  */
@@ -2114,7 +2114,7 @@ export declare class TrackingOptionsDoesNotExistException extends __BaseExceptio
2114
2114
  * set.</p>
2115
2115
  * @public
2116
2116
  */
2117
- ConfigurationSetName?: string;
2117
+ ConfigurationSetName?: string | undefined;
2118
2118
  /**
2119
2119
  * @internal
2120
2120
  */
@@ -2281,7 +2281,7 @@ export interface DeliveryOptions {
2281
2281
  * messages can be delivered in plain text if a TLS connection can't be established.</p>
2282
2282
  * @public
2283
2283
  */
2284
- TlsPolicy?: TlsPolicy;
2284
+ TlsPolicy?: TlsPolicy | undefined;
2285
2285
  }
2286
2286
  /**
2287
2287
  * <p>Represents a request to return the metadata and receipt rules for the receipt rule set
@@ -2317,12 +2317,12 @@ export interface ReceiptRuleSetMetadata {
2317
2317
  * </ul>
2318
2318
  * @public
2319
2319
  */
2320
- Name?: string;
2320
+ Name?: string | undefined;
2321
2321
  /**
2322
2322
  * <p>The date and time the receipt rule set was created.</p>
2323
2323
  * @public
2324
2324
  */
2325
- CreatedTimestamp?: Date;
2325
+ CreatedTimestamp?: Date | undefined;
2326
2326
  }
2327
2327
  /**
2328
2328
  * <p>Represents the metadata and receipt rules for the receipt rule set that is currently
@@ -2335,12 +2335,12 @@ export interface DescribeActiveReceiptRuleSetResponse {
2335
2335
  * rule set name and a timestamp of when the rule set was created.</p>
2336
2336
  * @public
2337
2337
  */
2338
- Metadata?: ReceiptRuleSetMetadata;
2338
+ Metadata?: ReceiptRuleSetMetadata | undefined;
2339
2339
  /**
2340
2340
  * <p>The receipt rules that belong to the active rule set.</p>
2341
2341
  * @public
2342
2342
  */
2343
- Rules?: ReceiptRule[];
2343
+ Rules?: ReceiptRule[] | undefined;
2344
2344
  }
2345
2345
  /**
2346
2346
  * <p>Represents a request to return the details of a configuration set. Configuration sets
@@ -2359,7 +2359,7 @@ export interface DescribeConfigurationSetRequest {
2359
2359
  * <p>A list of configuration set attributes to return.</p>
2360
2360
  * @public
2361
2361
  */
2362
- ConfigurationSetAttributeNames?: ConfigurationSetAttribute[];
2362
+ ConfigurationSetAttributeNames?: ConfigurationSetAttribute[] | undefined;
2363
2363
  }
2364
2364
  /**
2365
2365
  * <p>Contains information about the reputation settings for a configuration set.</p>
@@ -2374,7 +2374,7 @@ export interface ReputationOptions {
2374
2374
  * using <a>UpdateConfigurationSetSendingEnabled</a>.</p>
2375
2375
  * @public
2376
2376
  */
2377
- SendingEnabled?: boolean;
2377
+ SendingEnabled?: boolean | undefined;
2378
2378
  /**
2379
2379
  * <p>Describes whether or not Amazon SES publishes reputation metrics for the configuration set,
2380
2380
  * such as bounce and complaint rates, to Amazon CloudWatch.</p>
@@ -2383,7 +2383,7 @@ export interface ReputationOptions {
2383
2383
  * <code>false</code>.</p>
2384
2384
  * @public
2385
2385
  */
2386
- ReputationMetricsEnabled?: boolean;
2386
+ ReputationMetricsEnabled?: boolean | undefined;
2387
2387
  /**
2388
2388
  * <p>The date and time at which the reputation metrics for the configuration set were last
2389
2389
  * reset. Resetting these metrics is known as a <i>fresh start</i>.</p>
@@ -2394,7 +2394,7 @@ export interface ReputationOptions {
2394
2394
  * re-enabled, the value of this attribute is <code>null</code>.</p>
2395
2395
  * @public
2396
2396
  */
2397
- LastFreshStart?: Date;
2397
+ LastFreshStart?: Date | undefined;
2398
2398
  }
2399
2399
  /**
2400
2400
  * <p>Represents the details of a configuration set. Configuration sets enable you to
@@ -2408,29 +2408,29 @@ export interface DescribeConfigurationSetResponse {
2408
2408
  * <p>The configuration set object associated with the specified configuration set.</p>
2409
2409
  * @public
2410
2410
  */
2411
- ConfigurationSet?: ConfigurationSet;
2411
+ ConfigurationSet?: ConfigurationSet | undefined;
2412
2412
  /**
2413
2413
  * <p>A list of event destinations associated with the configuration set. </p>
2414
2414
  * @public
2415
2415
  */
2416
- EventDestinations?: EventDestination[];
2416
+ EventDestinations?: EventDestination[] | undefined;
2417
2417
  /**
2418
2418
  * <p>The name of the custom open and click tracking domain associated with the
2419
2419
  * configuration set.</p>
2420
2420
  * @public
2421
2421
  */
2422
- TrackingOptions?: TrackingOptions;
2422
+ TrackingOptions?: TrackingOptions | undefined;
2423
2423
  /**
2424
2424
  * <p>Specifies whether messages that use the configuration set are required to use
2425
2425
  * Transport Layer Security (TLS).</p>
2426
2426
  * @public
2427
2427
  */
2428
- DeliveryOptions?: DeliveryOptions;
2428
+ DeliveryOptions?: DeliveryOptions | undefined;
2429
2429
  /**
2430
2430
  * <p>An object that represents the reputation settings for the configuration set. </p>
2431
2431
  * @public
2432
2432
  */
2433
- ReputationOptions?: ReputationOptions;
2433
+ ReputationOptions?: ReputationOptions | undefined;
2434
2434
  }
2435
2435
  /**
2436
2436
  * <p>Represents a request to return the details of a receipt rule. You use receipt rules to
@@ -2460,7 +2460,7 @@ export interface DescribeReceiptRuleResponse {
2460
2460
  * domains, enabled status, scan status, and Transport Layer Security (TLS) policy.</p>
2461
2461
  * @public
2462
2462
  */
2463
- Rule?: ReceiptRule;
2463
+ Rule?: ReceiptRule | undefined;
2464
2464
  }
2465
2465
  /**
2466
2466
  * <p>Represents a request to return the details of a receipt rule set. You use receipt rule
@@ -2485,12 +2485,12 @@ export interface DescribeReceiptRuleSetResponse {
2485
2485
  * timestamp of when the rule set was created.</p>
2486
2486
  * @public
2487
2487
  */
2488
- Metadata?: ReceiptRuleSetMetadata;
2488
+ Metadata?: ReceiptRuleSetMetadata | undefined;
2489
2489
  /**
2490
2490
  * <p>A list of the receipt rules that belong to the specified receipt rule set.</p>
2491
2491
  * @public
2492
2492
  */
2493
- Rules?: ReceiptRule[];
2493
+ Rules?: ReceiptRule[] | undefined;
2494
2494
  }
2495
2495
  /**
2496
2496
  * @public
@@ -2535,7 +2535,7 @@ export interface IdentityDkimAttributes {
2535
2535
  * <p>For more information about creating DNS records using DKIM tokens, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy.html">Amazon SES Developer Guide</a>.</p>
2536
2536
  * @public
2537
2537
  */
2538
- DkimTokens?: string[];
2538
+ DkimTokens?: string[] | undefined;
2539
2539
  }
2540
2540
  /**
2541
2541
  * <p>Represents a request to return the email sending status for your Amazon SES account in the
@@ -2548,7 +2548,7 @@ export interface GetAccountSendingEnabledResponse {
2548
2548
  * current Amazon Web Services Region.</p>
2549
2549
  * @public
2550
2550
  */
2551
- Enabled?: boolean;
2551
+ Enabled?: boolean | undefined;
2552
2552
  }
2553
2553
  /**
2554
2554
  * <p>Represents a request to retrieve an existing custom verification email
@@ -2571,34 +2571,34 @@ export interface GetCustomVerificationEmailTemplateResponse {
2571
2571
  * <p>The name of the custom verification email template.</p>
2572
2572
  * @public
2573
2573
  */
2574
- TemplateName?: string;
2574
+ TemplateName?: string | undefined;
2575
2575
  /**
2576
2576
  * <p>The email address that the custom verification email is sent from.</p>
2577
2577
  * @public
2578
2578
  */
2579
- FromEmailAddress?: string;
2579
+ FromEmailAddress?: string | undefined;
2580
2580
  /**
2581
2581
  * <p>The subject line of the custom verification email.</p>
2582
2582
  * @public
2583
2583
  */
2584
- TemplateSubject?: string;
2584
+ TemplateSubject?: string | undefined;
2585
2585
  /**
2586
2586
  * <p>The content of the custom verification email.</p>
2587
2587
  * @public
2588
2588
  */
2589
- TemplateContent?: string;
2589
+ TemplateContent?: string | undefined;
2590
2590
  /**
2591
2591
  * <p>The URL that the recipient of the verification email is sent to if his or her address
2592
2592
  * is successfully verified.</p>
2593
2593
  * @public
2594
2594
  */
2595
- SuccessRedirectionURL?: string;
2595
+ SuccessRedirectionURL?: string | undefined;
2596
2596
  /**
2597
2597
  * <p>The URL that the recipient of the verification email is sent to if his or her address
2598
2598
  * is not successfully verified.</p>
2599
2599
  * @public
2600
2600
  */
2601
- FailureRedirectionURL?: string;
2601
+ FailureRedirectionURL?: string | undefined;
2602
2602
  }
2603
2603
  /**
2604
2604
  * <p>Represents a request for the status of Amazon SES Easy DKIM signing for an identity. For
@@ -2743,7 +2743,7 @@ export interface IdentityNotificationAttributes {
2743
2743
  * does not include headers in bounce notifications.</p>
2744
2744
  * @public
2745
2745
  */
2746
- HeadersInBounceNotificationsEnabled?: boolean;
2746
+ HeadersInBounceNotificationsEnabled?: boolean | undefined;
2747
2747
  /**
2748
2748
  * <p>Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of
2749
2749
  * type <code>Complaint</code>. A value of <code>true</code> specifies that Amazon SES includes
@@ -2751,7 +2751,7 @@ export interface IdentityNotificationAttributes {
2751
2751
  * Amazon SES does not include headers in complaint notifications.</p>
2752
2752
  * @public
2753
2753
  */
2754
- HeadersInComplaintNotificationsEnabled?: boolean;
2754
+ HeadersInComplaintNotificationsEnabled?: boolean | undefined;
2755
2755
  /**
2756
2756
  * <p>Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of
2757
2757
  * type <code>Delivery</code>. A value of <code>true</code> specifies that Amazon SES includes
@@ -2759,7 +2759,7 @@ export interface IdentityNotificationAttributes {
2759
2759
  * Amazon SES does not include headers in delivery notifications.</p>
2760
2760
  * @public
2761
2761
  */
2762
- HeadersInDeliveryNotificationsEnabled?: boolean;
2762
+ HeadersInDeliveryNotificationsEnabled?: boolean | undefined;
2763
2763
  }
2764
2764
  /**
2765
2765
  * <p>Represents the notification attributes for a list of identities.</p>
@@ -2836,7 +2836,7 @@ export interface IdentityVerificationAttributes {
2836
2836
  * identities.</p>
2837
2837
  * @public
2838
2838
  */
2839
- VerificationToken?: string;
2839
+ VerificationToken?: string | undefined;
2840
2840
  }
2841
2841
  /**
2842
2842
  * <p>The Amazon SES verification status of a list of identities. For domain identities, this
@@ -2861,7 +2861,7 @@ export interface GetSendQuotaResponse {
2861
2861
  * value of -1 signifies an unlimited quota.</p>
2862
2862
  * @public
2863
2863
  */
2864
- Max24HourSend?: number;
2864
+ Max24HourSend?: number | undefined;
2865
2865
  /**
2866
2866
  * <p>The maximum number of emails that Amazon SES can accept from the user's account per
2867
2867
  * second.</p>
@@ -2871,12 +2871,12 @@ export interface GetSendQuotaResponse {
2871
2871
  * </note>
2872
2872
  * @public
2873
2873
  */
2874
- MaxSendRate?: number;
2874
+ MaxSendRate?: number | undefined;
2875
2875
  /**
2876
2876
  * <p>The number of emails sent during the previous 24 hours.</p>
2877
2877
  * @public
2878
2878
  */
2879
- SentLast24Hours?: number;
2879
+ SentLast24Hours?: number | undefined;
2880
2880
  }
2881
2881
  /**
2882
2882
  * <p>Represents sending statistics data. Each <code>SendDataPoint</code> contains
@@ -2888,27 +2888,27 @@ export interface SendDataPoint {
2888
2888
  * <p>Time of the data point.</p>
2889
2889
  * @public
2890
2890
  */
2891
- Timestamp?: Date;
2891
+ Timestamp?: Date | undefined;
2892
2892
  /**
2893
2893
  * <p>Number of emails that have been sent.</p>
2894
2894
  * @public
2895
2895
  */
2896
- DeliveryAttempts?: number;
2896
+ DeliveryAttempts?: number | undefined;
2897
2897
  /**
2898
2898
  * <p>Number of emails that have bounced.</p>
2899
2899
  * @public
2900
2900
  */
2901
- Bounces?: number;
2901
+ Bounces?: number | undefined;
2902
2902
  /**
2903
2903
  * <p>Number of unwanted emails that were rejected by recipients.</p>
2904
2904
  * @public
2905
2905
  */
2906
- Complaints?: number;
2906
+ Complaints?: number | undefined;
2907
2907
  /**
2908
2908
  * <p>Number of emails rejected by Amazon SES.</p>
2909
2909
  * @public
2910
2910
  */
2911
- Rejects?: number;
2911
+ Rejects?: number | undefined;
2912
2912
  }
2913
2913
  /**
2914
2914
  * <p>Represents a list of data points. This list contains aggregated data from the previous
@@ -2920,7 +2920,7 @@ export interface GetSendStatisticsResponse {
2920
2920
  * <p>A list of data points, each of which represents 15 minutes of activity.</p>
2921
2921
  * @public
2922
2922
  */
2923
- SendDataPoints?: SendDataPoint[];
2923
+ SendDataPoints?: SendDataPoint[] | undefined;
2924
2924
  }
2925
2925
  /**
2926
2926
  * @public
@@ -2941,7 +2941,7 @@ export interface GetTemplateResponse {
2941
2941
  * text-only part.</p>
2942
2942
  * @public
2943
2943
  */
2944
- Template?: Template;
2944
+ Template?: Template | undefined;
2945
2945
  }
2946
2946
  /**
2947
2947
  * <p>Indicates that the Template object you specified does not exist in your Amazon SES
@@ -2951,7 +2951,7 @@ export interface GetTemplateResponse {
2951
2951
  export declare class TemplateDoesNotExistException extends __BaseException {
2952
2952
  readonly name: "TemplateDoesNotExistException";
2953
2953
  readonly $fault: "client";
2954
- TemplateName?: string;
2954
+ TemplateName?: string | undefined;
2955
2955
  /**
2956
2956
  * @internal
2957
2957
  */
@@ -3002,7 +3002,7 @@ export declare class InvalidPolicyException extends __BaseException {
3002
3002
  export declare class InvalidRenderingParameterException extends __BaseException {
3003
3003
  readonly name: "InvalidRenderingParameterException";
3004
3004
  readonly $fault: "client";
3005
- TemplateName?: string;
3005
+ TemplateName?: string | undefined;
3006
3006
  /**
3007
3007
  * @internal
3008
3008
  */
@@ -3021,12 +3021,12 @@ export interface ListConfigurationSetsRequest {
3021
3021
  * indicate the position of the configuration set in the configuration set list.</p>
3022
3022
  * @public
3023
3023
  */
3024
- NextToken?: string;
3024
+ NextToken?: string | undefined;
3025
3025
  /**
3026
3026
  * <p>The number of configuration sets to return.</p>
3027
3027
  * @public
3028
3028
  */
3029
- MaxItems?: number;
3029
+ MaxItems?: number | undefined;
3030
3030
  }
3031
3031
  /**
3032
3032
  * <p>A list of configuration sets associated with your Amazon Web Services account. Configuration sets
@@ -3040,14 +3040,14 @@ export interface ListConfigurationSetsResponse {
3040
3040
  * <p>A list of configuration sets.</p>
3041
3041
  * @public
3042
3042
  */
3043
- ConfigurationSets?: ConfigurationSet[];
3043
+ ConfigurationSets?: ConfigurationSet[] | undefined;
3044
3044
  /**
3045
3045
  * <p>A token indicating that there are additional configuration sets available to be
3046
3046
  * listed. Pass this token to successive calls of <code>ListConfigurationSets</code>.
3047
3047
  * </p>
3048
3048
  * @public
3049
3049
  */
3050
- NextToken?: string;
3050
+ NextToken?: string | undefined;
3051
3051
  }
3052
3052
  /**
3053
3053
  * <p>Represents a request to list the existing custom verification email templates for your
@@ -3063,7 +3063,7 @@ export interface ListCustomVerificationEmailTemplatesRequest {
3063
3063
  * account.</p>
3064
3064
  * @public
3065
3065
  */
3066
- NextToken?: string;
3066
+ NextToken?: string | undefined;
3067
3067
  /**
3068
3068
  * <p>The maximum number of custom verification email templates to return. This value must
3069
3069
  * be at least 1 and less than or equal to 50. If you do not specify a value, or if you
@@ -3071,7 +3071,7 @@ export interface ListCustomVerificationEmailTemplatesRequest {
3071
3071
  * results.</p>
3072
3072
  * @public
3073
3073
  */
3074
- MaxResults?: number;
3074
+ MaxResults?: number | undefined;
3075
3075
  }
3076
3076
  /**
3077
3077
  * <p>A paginated list of custom verification email templates.</p>
@@ -3082,7 +3082,7 @@ export interface ListCustomVerificationEmailTemplatesResponse {
3082
3082
  * <p>A list of the custom verification email templates that exist in your account.</p>
3083
3083
  * @public
3084
3084
  */
3085
- CustomVerificationEmailTemplates?: CustomVerificationEmailTemplate[];
3085
+ CustomVerificationEmailTemplates?: CustomVerificationEmailTemplate[] | undefined;
3086
3086
  /**
3087
3087
  * <p>A token indicating that there are additional custom verification email templates
3088
3088
  * available to be listed. Pass this token to a subsequent call to
@@ -3090,7 +3090,7 @@ export interface ListCustomVerificationEmailTemplatesResponse {
3090
3090
  * templates.</p>
3091
3091
  * @public
3092
3092
  */
3093
- NextToken?: string;
3093
+ NextToken?: string | undefined;
3094
3094
  }
3095
3095
  /**
3096
3096
  * <p>Represents a request to return a list of all identities (email addresses and domains)
@@ -3104,18 +3104,18 @@ export interface ListIdentitiesRequest {
3104
3104
  * If this parameter is omitted, then all identities are listed.</p>
3105
3105
  * @public
3106
3106
  */
3107
- IdentityType?: IdentityType;
3107
+ IdentityType?: IdentityType | undefined;
3108
3108
  /**
3109
3109
  * <p>The token to use for pagination.</p>
3110
3110
  * @public
3111
3111
  */
3112
- NextToken?: string;
3112
+ NextToken?: string | undefined;
3113
3113
  /**
3114
3114
  * <p>The maximum number of identities per page. Possible values are 1-1000
3115
3115
  * inclusive.</p>
3116
3116
  * @public
3117
3117
  */
3118
- MaxItems?: number;
3118
+ MaxItems?: number | undefined;
3119
3119
  }
3120
3120
  /**
3121
3121
  * <p>A list of all identities that you have attempted to verify under your Amazon Web Services account,
@@ -3132,7 +3132,7 @@ export interface ListIdentitiesResponse {
3132
3132
  * <p>The token used for pagination.</p>
3133
3133
  * @public
3134
3134
  */
3135
- NextToken?: string;
3135
+ NextToken?: string | undefined;
3136
3136
  }
3137
3137
  /**
3138
3138
  * <p>Represents a request to return a list of sending authorization policies that are
@@ -3182,7 +3182,7 @@ export interface ListReceiptFiltersResponse {
3182
3182
  * address range, and whether to allow or block mail from it.</p>
3183
3183
  * @public
3184
3184
  */
3185
- Filters?: ReceiptFilter[];
3185
+ Filters?: ReceiptFilter[] | undefined;
3186
3186
  }
3187
3187
  /**
3188
3188
  * <p>Represents a request to list the receipt rule sets that exist under your
@@ -3197,7 +3197,7 @@ export interface ListReceiptRuleSetsRequest {
3197
3197
  * the position in the receipt rule set list.</p>
3198
3198
  * @public
3199
3199
  */
3200
- NextToken?: string;
3200
+ NextToken?: string | undefined;
3201
3201
  }
3202
3202
  /**
3203
3203
  * <p>A list of receipt rule sets that exist under your Amazon Web Services account.</p>
@@ -3209,14 +3209,14 @@ export interface ListReceiptRuleSetsResponse {
3209
3209
  * rule set name and the timestamp of when the rule set was created.</p>
3210
3210
  * @public
3211
3211
  */
3212
- RuleSets?: ReceiptRuleSetMetadata[];
3212
+ RuleSets?: ReceiptRuleSetMetadata[] | undefined;
3213
3213
  /**
3214
3214
  * <p>A token indicating that there are additional receipt rule sets available to be listed.
3215
3215
  * Pass this token to successive calls of <code>ListReceiptRuleSets</code> to retrieve up
3216
3216
  * to 100 receipt rule sets at a time.</p>
3217
3217
  * @public
3218
3218
  */
3219
- NextToken?: string;
3219
+ NextToken?: string | undefined;
3220
3220
  }
3221
3221
  /**
3222
3222
  * @public
@@ -3227,14 +3227,14 @@ export interface ListTemplatesRequest {
3227
3227
  * position in the list of email templates.</p>
3228
3228
  * @public
3229
3229
  */
3230
- NextToken?: string;
3230
+ NextToken?: string | undefined;
3231
3231
  /**
3232
3232
  * <p>The maximum number of templates to return. This value must be at least 1 and less than
3233
3233
  * or equal to 100. If more than 100 items are requested, the page size will automatically
3234
3234
  * set to 100. If you do not specify a value, 10 is the default page size. </p>
3235
3235
  * @public
3236
3236
  */
3237
- MaxItems?: number;
3237
+ MaxItems?: number | undefined;
3238
3238
  }
3239
3239
  /**
3240
3240
  * <p>Contains information about an email template.</p>
@@ -3245,12 +3245,12 @@ export interface TemplateMetadata {
3245
3245
  * <p>The name of the template.</p>
3246
3246
  * @public
3247
3247
  */
3248
- Name?: string;
3248
+ Name?: string | undefined;
3249
3249
  /**
3250
3250
  * <p>The time and date the template was created.</p>
3251
3251
  * @public
3252
3252
  */
3253
- CreatedTimestamp?: Date;
3253
+ CreatedTimestamp?: Date | undefined;
3254
3254
  }
3255
3255
  /**
3256
3256
  * @public
@@ -3261,14 +3261,14 @@ export interface ListTemplatesResponse {
3261
3261
  * account.</p>
3262
3262
  * @public
3263
3263
  */
3264
- TemplatesMetadata?: TemplateMetadata[];
3264
+ TemplatesMetadata?: TemplateMetadata[] | undefined;
3265
3265
  /**
3266
3266
  * <p>A token indicating that there are additional email templates available to be listed.
3267
3267
  * Pass this token to a subsequent call to <code>ListTemplates</code> to retrieve the next
3268
3268
  * set of email templates within your page size.</p>
3269
3269
  * @public
3270
3270
  */
3271
- NextToken?: string;
3271
+ NextToken?: string | undefined;
3272
3272
  }
3273
3273
  /**
3274
3274
  * <p>A list of email addresses that you have verified with Amazon SES under your
@@ -3280,7 +3280,7 @@ export interface ListVerifiedEmailAddressesResponse {
3280
3280
  * <p>A list of email addresses that have been verified.</p>
3281
3281
  * @public
3282
3282
  */
3283
- VerifiedEmailAddresses?: string[];
3283
+ VerifiedEmailAddresses?: string[] | undefined;
3284
3284
  }
3285
3285
  /**
3286
3286
  * <p> Indicates that the message could not be sent because Amazon SES could not read the MX
@@ -3334,12 +3334,12 @@ export interface MessageDsn {
3334
3334
  * <p>When the message was received by the reporting mail transfer agent (MTA), in <a href="https://www.ietf.org/rfc/rfc0822.txt">RFC 822</a> date-time format.</p>
3335
3335
  * @public
3336
3336
  */
3337
- ArrivalDate?: Date;
3337
+ ArrivalDate?: Date | undefined;
3338
3338
  /**
3339
3339
  * <p>Additional X-headers to include in the DSN.</p>
3340
3340
  * @public
3341
3341
  */
3342
- ExtensionFields?: ExtensionField[];
3342
+ ExtensionFields?: ExtensionField[] | undefined;
3343
3343
  }
3344
3344
  /**
3345
3345
  * <p>Indicates that the action failed, and the message could not be sent. Check the error
@@ -3363,7 +3363,7 @@ export declare class MessageRejected extends __BaseException {
3363
3363
  export declare class MissingRenderingAttributeException extends __BaseException {
3364
3364
  readonly name: "MissingRenderingAttributeException";
3365
3365
  readonly $fault: "client";
3366
- TemplateName?: string;
3366
+ TemplateName?: string | undefined;
3367
3367
  /**
3368
3368
  * @internal
3369
3369
  */
@@ -3409,7 +3409,7 @@ export interface PutConfigurationSetDeliveryOptionsRequest {
3409
3409
  * Transport Layer Security (TLS).</p>
3410
3410
  * @public
3411
3411
  */
3412
- DeliveryOptions?: DeliveryOptions;
3412
+ DeliveryOptions?: DeliveryOptions | undefined;
3413
3413
  }
3414
3414
  /**
3415
3415
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -3525,12 +3525,12 @@ export interface SendBounceRequest {
3525
3525
  * the text is auto-generated based on the bounced recipient information.</p>
3526
3526
  * @public
3527
3527
  */
3528
- Explanation?: string;
3528
+ Explanation?: string | undefined;
3529
3529
  /**
3530
3530
  * <p>Message-related DSN fields. If not specified, Amazon SES chooses the values.</p>
3531
3531
  * @public
3532
3532
  */
3533
- MessageDsn?: MessageDsn;
3533
+ MessageDsn?: MessageDsn | undefined;
3534
3534
  /**
3535
3535
  * <p>A list of recipients of the bounced message, including the information required to
3536
3536
  * create the Delivery Status Notifications (DSNs) for the recipients. You must specify at
@@ -3545,7 +3545,7 @@ export interface SendBounceRequest {
3545
3545
  * authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
3546
3546
  * @public
3547
3547
  */
3548
- BounceSenderArn?: string;
3548
+ BounceSenderArn?: string | undefined;
3549
3549
  }
3550
3550
  /**
3551
3551
  * <p>Represents a unique message ID.</p>
@@ -3556,7 +3556,7 @@ export interface SendBounceResponse {
3556
3556
  * <p>The message ID of the bounce message.</p>
3557
3557
  * @public
3558
3558
  */
3559
- MessageId?: string;
3559
+ MessageId?: string | undefined;
3560
3560
  }
3561
3561
  /**
3562
3562
  * <p>Represents a request to send a templated email to multiple destinations using Amazon SES.
@@ -3599,13 +3599,13 @@ export interface SendBulkTemplatedEmailRequest {
3599
3599
  * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
3600
3600
  * @public
3601
3601
  */
3602
- SourceArn?: string;
3602
+ SourceArn?: string | undefined;
3603
3603
  /**
3604
3604
  * <p>The reply-to email address(es) for the message. If the recipient replies to the
3605
3605
  * message, each reply-to address receives the reply.</p>
3606
3606
  * @public
3607
3607
  */
3608
- ReplyToAddresses?: string[];
3608
+ ReplyToAddresses?: string[] | undefined;
3609
3609
  /**
3610
3610
  * <p>The email address that bounces and complaints are forwarded to when feedback
3611
3611
  * forwarding is enabled. If the message cannot be delivered to the recipient, then an
@@ -3616,7 +3616,7 @@ export interface SendBulkTemplatedEmailRequest {
3616
3616
  * Amazon SES. </p>
3617
3617
  * @public
3618
3618
  */
3619
- ReturnPath?: string;
3619
+ ReturnPath?: string | undefined;
3620
3620
  /**
3621
3621
  * <p>This parameter is used only for sending authorization. It is the ARN of the identity
3622
3622
  * that is associated with the sending authorization policy that permits you to use the
@@ -3630,19 +3630,19 @@ export interface SendBulkTemplatedEmailRequest {
3630
3630
  * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
3631
3631
  * @public
3632
3632
  */
3633
- ReturnPathArn?: string;
3633
+ ReturnPathArn?: string | undefined;
3634
3634
  /**
3635
3635
  * <p>The name of the configuration set to use when you send an email using
3636
3636
  * <code>SendBulkTemplatedEmail</code>.</p>
3637
3637
  * @public
3638
3638
  */
3639
- ConfigurationSetName?: string;
3639
+ ConfigurationSetName?: string | undefined;
3640
3640
  /**
3641
3641
  * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send to
3642
3642
  * a destination using <code>SendBulkTemplatedEmail</code>.</p>
3643
3643
  * @public
3644
3644
  */
3645
- DefaultTags?: MessageTag[];
3645
+ DefaultTags?: MessageTag[] | undefined;
3646
3646
  /**
3647
3647
  * <p>The template to use when sending this email.</p>
3648
3648
  * @public
@@ -3652,7 +3652,7 @@ export interface SendBulkTemplatedEmailRequest {
3652
3652
  * <p>The ARN of the template to use when sending this email.</p>
3653
3653
  * @public
3654
3654
  */
3655
- TemplateArn?: string;
3655
+ TemplateArn?: string | undefined;
3656
3656
  /**
3657
3657
  * <p>A list of replacement values to apply to the template when replacement data is not
3658
3658
  * specified in a Destination object. These values act as a default or fallback option when
@@ -3703,7 +3703,7 @@ export interface SendCustomVerificationEmailRequest {
3703
3703
  * <p>Name of a configuration set to use when sending the verification email.</p>
3704
3704
  * @public
3705
3705
  */
3706
- ConfigurationSetName?: string;
3706
+ ConfigurationSetName?: string | undefined;
3707
3707
  }
3708
3708
  /**
3709
3709
  * <p>The response received when attempting to send the custom verification email.</p>
@@ -3715,7 +3715,7 @@ export interface SendCustomVerificationEmailResponse {
3715
3715
  * <code>SendCustomVerificationEmail</code> operation.</p>
3716
3716
  * @public
3717
3717
  */
3718
- MessageId?: string;
3718
+ MessageId?: string | undefined;
3719
3719
  }
3720
3720
  /**
3721
3721
  * <p>Represents a request to send a single formatted email using Amazon SES. For more
@@ -3759,7 +3759,7 @@ export interface SendEmailRequest {
3759
3759
  * message, each reply-to address receives the reply.</p>
3760
3760
  * @public
3761
3761
  */
3762
- ReplyToAddresses?: string[];
3762
+ ReplyToAddresses?: string[] | undefined;
3763
3763
  /**
3764
3764
  * <p>The email address that bounces and complaints are forwarded to when feedback
3765
3765
  * forwarding is enabled. If the message cannot be delivered to the recipient, then an
@@ -3770,7 +3770,7 @@ export interface SendEmailRequest {
3770
3770
  * Amazon SES. </p>
3771
3771
  * @public
3772
3772
  */
3773
- ReturnPath?: string;
3773
+ ReturnPath?: string | undefined;
3774
3774
  /**
3775
3775
  * <p>This parameter is used only for sending authorization. It is the ARN of the identity
3776
3776
  * that is associated with the sending authorization policy that permits you to send for
@@ -3784,7 +3784,7 @@ export interface SendEmailRequest {
3784
3784
  * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
3785
3785
  * @public
3786
3786
  */
3787
- SourceArn?: string;
3787
+ SourceArn?: string | undefined;
3788
3788
  /**
3789
3789
  * <p>This parameter is used only for sending authorization. It is the ARN of the identity
3790
3790
  * that is associated with the sending authorization policy that permits you to use the
@@ -3798,20 +3798,20 @@ export interface SendEmailRequest {
3798
3798
  * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
3799
3799
  * @public
3800
3800
  */
3801
- ReturnPathArn?: string;
3801
+ ReturnPathArn?: string | undefined;
3802
3802
  /**
3803
3803
  * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send
3804
3804
  * using <code>SendEmail</code>. Tags correspond to characteristics of the email that you
3805
3805
  * define, so that you can publish email sending events.</p>
3806
3806
  * @public
3807
3807
  */
3808
- Tags?: MessageTag[];
3808
+ Tags?: MessageTag[] | undefined;
3809
3809
  /**
3810
3810
  * <p>The name of the configuration set to use when you send an email using
3811
3811
  * <code>SendEmail</code>.</p>
3812
3812
  * @public
3813
3813
  */
3814
- ConfigurationSetName?: string;
3814
+ ConfigurationSetName?: string | undefined;
3815
3815
  }
3816
3816
  /**
3817
3817
  * <p>Represents a unique message ID.</p>
@@ -3850,13 +3850,13 @@ export interface SendRawEmailRequest {
3850
3850
  * any Return-Path header that you might include in the raw text of the message.</p>
3851
3851
  * @public
3852
3852
  */
3853
- Source?: string;
3853
+ Source?: string | undefined;
3854
3854
  /**
3855
3855
  * <p>A list of destinations for the message, consisting of To:, CC:, and BCC:
3856
3856
  * addresses.</p>
3857
3857
  * @public
3858
3858
  */
3859
- Destinations?: string[];
3859
+ Destinations?: string[] | undefined;
3860
3860
  /**
3861
3861
  * <p>The raw email message itself. The message has to meet the following criteria:</p>
3862
3862
  * <ul>
@@ -3908,7 +3908,7 @@ export interface SendRawEmailRequest {
3908
3908
  * </note>
3909
3909
  * @public
3910
3910
  */
3911
- FromArn?: string;
3911
+ FromArn?: string | undefined;
3912
3912
  /**
3913
3913
  * <p>This parameter is used only for sending authorization. It is the ARN of the identity
3914
3914
  * that is associated with the sending authorization policy that permits you to send for
@@ -3930,7 +3930,7 @@ export interface SendRawEmailRequest {
3930
3930
  * </note>
3931
3931
  * @public
3932
3932
  */
3933
- SourceArn?: string;
3933
+ SourceArn?: string | undefined;
3934
3934
  /**
3935
3935
  * <p>This parameter is used only for sending authorization. It is the ARN of the identity
3936
3936
  * that is associated with the sending authorization policy that permits you to use the
@@ -3952,20 +3952,20 @@ export interface SendRawEmailRequest {
3952
3952
  * </note>
3953
3953
  * @public
3954
3954
  */
3955
- ReturnPathArn?: string;
3955
+ ReturnPathArn?: string | undefined;
3956
3956
  /**
3957
3957
  * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send
3958
3958
  * using <code>SendRawEmail</code>. Tags correspond to characteristics of the email that
3959
3959
  * you define, so that you can publish email sending events.</p>
3960
3960
  * @public
3961
3961
  */
3962
- Tags?: MessageTag[];
3962
+ Tags?: MessageTag[] | undefined;
3963
3963
  /**
3964
3964
  * <p>The name of the configuration set to use when you send an email using
3965
3965
  * <code>SendRawEmail</code>.</p>
3966
3966
  * @public
3967
3967
  */
3968
- ConfigurationSetName?: string;
3968
+ ConfigurationSetName?: string | undefined;
3969
3969
  }
3970
3970
  /**
3971
3971
  * <p>Represents a unique message ID.</p>
@@ -4017,7 +4017,7 @@ export interface SendTemplatedEmailRequest {
4017
4017
  * message, each reply-to address receives the reply.</p>
4018
4018
  * @public
4019
4019
  */
4020
- ReplyToAddresses?: string[];
4020
+ ReplyToAddresses?: string[] | undefined;
4021
4021
  /**
4022
4022
  * <p>The email address that bounces and complaints are forwarded to when feedback
4023
4023
  * forwarding is enabled. If the message cannot be delivered to the recipient, then an
@@ -4028,7 +4028,7 @@ export interface SendTemplatedEmailRequest {
4028
4028
  * Amazon SES. </p>
4029
4029
  * @public
4030
4030
  */
4031
- ReturnPath?: string;
4031
+ ReturnPath?: string | undefined;
4032
4032
  /**
4033
4033
  * <p>This parameter is used only for sending authorization. It is the ARN of the identity
4034
4034
  * that is associated with the sending authorization policy that permits you to send for
@@ -4042,7 +4042,7 @@ export interface SendTemplatedEmailRequest {
4042
4042
  * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
4043
4043
  * @public
4044
4044
  */
4045
- SourceArn?: string;
4045
+ SourceArn?: string | undefined;
4046
4046
  /**
4047
4047
  * <p>This parameter is used only for sending authorization. It is the ARN of the identity
4048
4048
  * that is associated with the sending authorization policy that permits you to use the
@@ -4056,20 +4056,20 @@ export interface SendTemplatedEmailRequest {
4056
4056
  * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html">Amazon SES Developer Guide</a>.</p>
4057
4057
  * @public
4058
4058
  */
4059
- ReturnPathArn?: string;
4059
+ ReturnPathArn?: string | undefined;
4060
4060
  /**
4061
4061
  * <p>A list of tags, in the form of name/value pairs, to apply to an email that you send
4062
4062
  * using <code>SendTemplatedEmail</code>. Tags correspond to characteristics of the email
4063
4063
  * that you define, so that you can publish email sending events.</p>
4064
4064
  * @public
4065
4065
  */
4066
- Tags?: MessageTag[];
4066
+ Tags?: MessageTag[] | undefined;
4067
4067
  /**
4068
4068
  * <p>The name of the configuration set to use when you send an email using
4069
4069
  * <code>SendTemplatedEmail</code>.</p>
4070
4070
  * @public
4071
4071
  */
4072
- ConfigurationSetName?: string;
4072
+ ConfigurationSetName?: string | undefined;
4073
4073
  /**
4074
4074
  * <p>The template to use when sending this email.</p>
4075
4075
  * @public
@@ -4079,7 +4079,7 @@ export interface SendTemplatedEmailRequest {
4079
4079
  * <p>The ARN of the template to use when sending this email.</p>
4080
4080
  * @public
4081
4081
  */
4082
- TemplateArn?: string;
4082
+ TemplateArn?: string | undefined;
4083
4083
  /**
4084
4084
  * <p>A list of replacement values to apply to the template. This parameter is a JSON
4085
4085
  * object, typically consisting of key-value pairs in which the keys correspond to
@@ -4111,7 +4111,7 @@ export interface SetActiveReceiptRuleSetRequest {
4111
4111
  * all email receiving.</p>
4112
4112
  * @public
4113
4113
  */
4114
- RuleSetName?: string;
4114
+ RuleSetName?: string | undefined;
4115
4115
  }
4116
4116
  /**
4117
4117
  * <p>An empty element returned on a successful request.</p>
@@ -4233,7 +4233,7 @@ export interface SetIdentityMailFromDomainRequest {
4233
4233
  * <code>null</code> disables the custom MAIL FROM setting for the identity.</p>
4234
4234
  * @public
4235
4235
  */
4236
- MailFromDomain?: string;
4236
+ MailFromDomain?: string | undefined;
4237
4237
  /**
4238
4238
  * <p>The action for Amazon SES to take if it cannot successfully read the required MX record
4239
4239
  * when you send an email. If you choose <code>UseDefaultValue</code>, Amazon SES uses
@@ -4245,7 +4245,7 @@ export interface SetIdentityMailFromDomainRequest {
4245
4245
  * <code>TemporaryFailure</code> states.</p>
4246
4246
  * @public
4247
4247
  */
4248
- BehaviorOnMXFailure?: BehaviorOnMXFailure;
4248
+ BehaviorOnMXFailure?: BehaviorOnMXFailure | undefined;
4249
4249
  }
4250
4250
  /**
4251
4251
  * <p>An empty element returned on a successful request.</p>
@@ -4284,7 +4284,7 @@ export interface SetIdentityNotificationTopicRequest {
4284
4284
  * is disabled.</p>
4285
4285
  * @public
4286
4286
  */
4287
- SnsTopic?: string;
4287
+ SnsTopic?: string | undefined;
4288
4288
  }
4289
4289
  /**
4290
4290
  * <p>An empty element returned on a successful request.</p>
@@ -4313,7 +4313,7 @@ export interface SetReceiptRulePositionRequest {
4313
4313
  * <p>The name of the receipt rule after which to place the specified receipt rule.</p>
4314
4314
  * @public
4315
4315
  */
4316
- After?: string;
4316
+ After?: string | undefined;
4317
4317
  }
4318
4318
  /**
4319
4319
  * <p>An empty element returned on a successful request.</p>
@@ -4347,7 +4347,7 @@ export interface TestRenderTemplateResponse {
4347
4347
  * to the template specified in the TemplateName parameter.</p>
4348
4348
  * @public
4349
4349
  */
4350
- RenderedTemplate?: string;
4350
+ RenderedTemplate?: string | undefined;
4351
4351
  }
4352
4352
  /**
4353
4353
  * <p>Represents a request to enable or disable the email sending capabilities for your
@@ -4360,7 +4360,7 @@ export interface UpdateAccountSendingEnabledRequest {
4360
4360
  * current Amazon Web Services Region.</p>
4361
4361
  * @public
4362
4362
  */
4363
- Enabled?: boolean;
4363
+ Enabled?: boolean | undefined;
4364
4364
  }
4365
4365
  /**
4366
4366
  * <p>Represents a request to update the event destination of a configuration set.
@@ -4463,12 +4463,12 @@ export interface UpdateCustomVerificationEmailTemplateRequest {
4463
4463
  * <p>The email address that the custom verification email is sent from.</p>
4464
4464
  * @public
4465
4465
  */
4466
- FromEmailAddress?: string;
4466
+ FromEmailAddress?: string | undefined;
4467
4467
  /**
4468
4468
  * <p>The subject line of the custom verification email.</p>
4469
4469
  * @public
4470
4470
  */
4471
- TemplateSubject?: string;
4471
+ TemplateSubject?: string | undefined;
4472
4472
  /**
4473
4473
  * <p>The content of the custom verification email. The total size of the email must be less
4474
4474
  * than 10 MB. The message body may contain HTML, with some limitations. For more
@@ -4477,19 +4477,19 @@ export interface UpdateCustomVerificationEmailTemplateRequest {
4477
4477
  * Developer Guide</i>.</p>
4478
4478
  * @public
4479
4479
  */
4480
- TemplateContent?: string;
4480
+ TemplateContent?: string | undefined;
4481
4481
  /**
4482
4482
  * <p>The URL that the recipient of the verification email is sent to if his or her address
4483
4483
  * is successfully verified.</p>
4484
4484
  * @public
4485
4485
  */
4486
- SuccessRedirectionURL?: string;
4486
+ SuccessRedirectionURL?: string | undefined;
4487
4487
  /**
4488
4488
  * <p>The URL that the recipient of the verification email is sent to if his or her address
4489
4489
  * is not successfully verified.</p>
4490
4490
  * @public
4491
4491
  */
4492
- FailureRedirectionURL?: string;
4492
+ FailureRedirectionURL?: string | undefined;
4493
4493
  }
4494
4494
  /**
4495
4495
  * <p>Represents a request to update a receipt rule. You use receipt rules to receive email