Skip to content

Commit 61da3e4

Browse files
author
AWS
committed
Amazon Simple Email Service Update: This release adds support for email maximum delivery seconds that allows senders to control the time within which their emails are attempted for delivery.
1 parent 74c9fac commit 61da3e4

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Simple Email Service",
4+
"contributor": "",
5+
"description": "This release adds support for email maximum delivery seconds that allows senders to control the time within which their emails are attempted for delivery."
6+
}

services/sesv2/src/main/resources/codegen-resources/service-2.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2762,6 +2762,10 @@
27622762
"SendingPoolName":{
27632763
"shape":"PoolName",
27642764
"documentation":"<p>The name of the dedicated IP pool to associate with the configuration set.</p>"
2765+
},
2766+
"MaxDeliverySeconds":{
2767+
"shape":"MaxDeliverySeconds",
2768+
"documentation":"<p>The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email. If specified, the value must greater than or equal to 300 seconds (5 minutes) and less than or equal to 50400 seconds (840 minutes). </p>"
27652769
}
27662770
},
27672771
"documentation":"<p>Used to associate a configuration set with a dedicated IP pool.</p>"
@@ -5105,6 +5109,11 @@
51055109
]
51065110
},
51075111
"Max24HourSend":{"type":"double"},
5112+
"MaxDeliverySeconds":{
5113+
"type":"long",
5114+
"max":50400,
5115+
"min":300
5116+
},
51085117
"MaxItems":{"type":"integer"},
51095118
"MaxSendRate":{"type":"double"},
51105119
"Message":{
@@ -5619,6 +5628,10 @@
56195628
"SendingPoolName":{
56205629
"shape":"SendingPoolName",
56215630
"documentation":"<p>The name of the dedicated IP pool to associate with the configuration set.</p>"
5631+
},
5632+
"MaxDeliverySeconds":{
5633+
"shape":"MaxDeliverySeconds",
5634+
"documentation":"<p>The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email. If specified, the value must greater than or equal to 300 seconds (5 minutes) and less than or equal to 50400 seconds (840 minutes). </p>"
56225635
}
56235636
},
56245637
"documentation":"<p>A request to associate a configuration set with a dedicated IP pool.</p>"

0 commit comments

Comments
 (0)