Skip to content

Commit 21806bb

Browse files
Update generated code (#1588)
update generated code
1 parent ec53fa3 commit 21806bb

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.283.3"
3+
"${LATEST}": "3.283.4"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Ses/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Changed
1010

1111
- Allow passing explicit null values for optional fields of input objects
12+
- AWS enhancement: Documentation updates.
1213

1314
## 1.6.0
1415

src/Service/Ses/src/ValueObject/EmailContent.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ final class EmailContent
2424
* - All of the required header fields must be present in the message.
2525
* - Each part of a multipart MIME message must be formatted properly.
2626
* - If you include attachments, they must be in a file format that the Amazon SES API v2 supports.
27-
* - The entire message must be Base64 encoded.
27+
* - The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS
28+
* interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base
29+
* 64-encoding for you.
2830
* - If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you
2931
* should encode that content to ensure that recipients' email clients render the message properly.
3032
* - The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in

src/Service/Ses/src/ValueObject/RawMessage.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ final class RawMessage
1616
* - All of the required header fields must be present in the message.
1717
* - Each part of a multipart MIME message must be formatted properly.
1818
* - Attachments must be in a file format that the Amazon SES supports.
19-
* - The entire message must be Base64 encoded.
19+
* - The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS
20+
* interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base
21+
* 64-encoding for you.
2022
* - If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you
2123
* should encode that content to ensure that recipients' email clients render the message properly.
2224
* - The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in

0 commit comments

Comments
 (0)