|
1589 | 1589 | },
|
1590 | 1590 | "documentation":"<p>Used to associate a configuration set with a MailManager archive.</p>"
|
1591 | 1591 | },
|
| 1592 | + "Attachment":{ |
| 1593 | + "type":"structure", |
| 1594 | + "required":[ |
| 1595 | + "RawContent", |
| 1596 | + "FileName" |
| 1597 | + ], |
| 1598 | + "members":{ |
| 1599 | + "RawContent":{ |
| 1600 | + "shape":"RawAttachmentData", |
| 1601 | + "documentation":"<p> The raw data of the attachment. It needs to be base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you.</p>" |
| 1602 | + }, |
| 1603 | + "ContentDisposition":{ |
| 1604 | + "shape":"AttachmentContentDisposition", |
| 1605 | + "documentation":"<p> A standard descriptor indicating how the attachment should be rendered in the email. Supported values: <code>ATTACHMENT</code> or <code>INLINE</code>.</p>" |
| 1606 | + }, |
| 1607 | + "FileName":{ |
| 1608 | + "shape":"AttachmentFileName", |
| 1609 | + "documentation":"<p>The file name for the attachment as it will appear in the email. Amazon SES restricts certain file extensions. To ensure attachments are accepted, check the <a href=\"https://docs.aws.amazon.com/ses/latest/dg/mime-types.html\">Unsupported attachment types</a> in the Amazon SES Developer Guide.</p>" |
| 1610 | + }, |
| 1611 | + "ContentDescription":{ |
| 1612 | + "shape":"AttachmentContentDescription", |
| 1613 | + "documentation":"<p> A brief description of the attachment content.</p>" |
| 1614 | + }, |
| 1615 | + "ContentId":{ |
| 1616 | + "shape":"AttachmentContentId", |
| 1617 | + "documentation":"<p> Unique identifier for the attachment, used for referencing attachments with INLINE disposition in HTML content.</p>" |
| 1618 | + }, |
| 1619 | + "ContentTransferEncoding":{ |
| 1620 | + "shape":"AttachmentContentTransferEncoding", |
| 1621 | + "documentation":"<p> Specifies how the attachment is encoded. Supported values: <code>BASE64</code>, <code>QUOTED_PRINTABLE</code>, <code>SEVEN_BIT</code>.</p>" |
| 1622 | + }, |
| 1623 | + "ContentType":{ |
| 1624 | + "shape":"AttachmentContentType", |
| 1625 | + "documentation":"<p> The MIME type of the attachment.</p> <note> <p>Example: <code>application/pdf</code>, <code>image/jpeg</code> </p> </note>" |
| 1626 | + } |
| 1627 | + }, |
| 1628 | + "documentation":"<p> Contains metadata and attachment raw content.</p>" |
| 1629 | + }, |
| 1630 | + "AttachmentContentDescription":{ |
| 1631 | + "type":"string", |
| 1632 | + "max":1000 |
| 1633 | + }, |
| 1634 | + "AttachmentContentDisposition":{ |
| 1635 | + "type":"string", |
| 1636 | + "enum":[ |
| 1637 | + "ATTACHMENT", |
| 1638 | + "INLINE" |
| 1639 | + ] |
| 1640 | + }, |
| 1641 | + "AttachmentContentId":{ |
| 1642 | + "type":"string", |
| 1643 | + "max":78, |
| 1644 | + "min":1 |
| 1645 | + }, |
| 1646 | + "AttachmentContentTransferEncoding":{ |
| 1647 | + "type":"string", |
| 1648 | + "enum":[ |
| 1649 | + "BASE64", |
| 1650 | + "QUOTED_PRINTABLE", |
| 1651 | + "SEVEN_BIT" |
| 1652 | + ] |
| 1653 | + }, |
| 1654 | + "AttachmentContentType":{ |
| 1655 | + "type":"string", |
| 1656 | + "max":78, |
| 1657 | + "min":1 |
| 1658 | + }, |
| 1659 | + "AttachmentFileName":{ |
| 1660 | + "type":"string", |
| 1661 | + "max":255 |
| 1662 | + }, |
| 1663 | + "AttachmentList":{ |
| 1664 | + "type":"list", |
| 1665 | + "member":{"shape":"Attachment"} |
| 1666 | + }, |
1592 | 1667 | "AttributesData":{"type":"string"},
|
1593 | 1668 | "BadRequestException":{
|
1594 | 1669 | "type":"structure",
|
|
3222 | 3297 | "members":{
|
3223 | 3298 | "Simple":{
|
3224 | 3299 | "shape":"Message",
|
3225 |
| - "documentation":"<p>The simple email message. The message consists of a subject and a message body.</p>" |
| 3300 | + "documentation":"<p>The simple email message. The message consists of a subject, message body and attachments list.</p>" |
3226 | 3301 | },
|
3227 | 3302 | "Raw":{
|
3228 | 3303 | "shape":"RawMessage",
|
|
3233 | 3308 | "documentation":"<p>The template to use for the email message.</p>"
|
3234 | 3309 | }
|
3235 | 3310 | },
|
3236 |
| - "documentation":"<p>An object that defines the entire content of the email, including the message headers and the body content. You can create a simple email message, in which you specify the subject and the text and HTML versions of the message body. You can also create raw messages, in which you specify a complete MIME-formatted message. Raw messages can include attachments and custom headers.</p>" |
| 3311 | + "documentation":"<p>An object that defines the entire content of the email, including the message headers, body content, and attachments. For a simple email message, you specify the subject and provide both text and HTML versions of the message body. You can also add attachments to simple and templated messages. For a raw message, you provide a complete MIME-formatted message, which can include custom headers and attachments.</p>" |
3237 | 3312 | },
|
3238 | 3313 | "EmailInsights":{
|
3239 | 3314 | "type":"structure",
|
|
5417 | 5492 | "Headers":{
|
5418 | 5493 | "shape":"MessageHeaderList",
|
5419 | 5494 | "documentation":"<p>The list of message headers that will be added to the email message.</p>"
|
| 5495 | + }, |
| 5496 | + "Attachments":{ |
| 5497 | + "shape":"AttachmentList", |
| 5498 | + "documentation":"<p> The List of attachments to include in your email. All recipients will receive the same attachments.</p>" |
5420 | 5499 | }
|
5421 | 5500 | },
|
5422 | 5501 | "documentation":"<p>Represents the email message that you're sending. The <code>Message</code> object consists of a subject line and a message body.</p>"
|
|
6379 | 6458 | "max":255,
|
6380 | 6459 | "min":1
|
6381 | 6460 | },
|
| 6461 | + "RawAttachmentData":{"type":"blob"}, |
6382 | 6462 | "RawMessage":{
|
6383 | 6463 | "type":"structure",
|
6384 | 6464 | "required":["Data"],
|
|
7028 | 7108 | "Headers":{
|
7029 | 7109 | "shape":"MessageHeaderList",
|
7030 | 7110 | "documentation":"<p>The list of message headers that will be added to the email message.</p>"
|
| 7111 | + }, |
| 7112 | + "Attachments":{ |
| 7113 | + "shape":"AttachmentList", |
| 7114 | + "documentation":"<p> The List of attachments to include in your email. All recipients will receive the same attachments.</p>" |
7031 | 7115 | }
|
7032 | 7116 | },
|
7033 | 7117 | "documentation":"<p>An object that defines the email template to use for an email message, and the values to use for any message variables in that template. An <i>email template</i> is a type of message template that contains content that you want to reuse in email messages that you send. You can specifiy the email template by providing the name or ARN of an <i>email template</i> previously saved in your Amazon SES account or by providing the full template content.</p>"
|
|
0 commit comments