@aws-sdk/client-sesv2 3.568.0 → 3.572.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.
|
@@ -84,6 +84,12 @@ declare const SendBulkEmailCommand_base: {
|
|
|
84
84
|
* ReplacementTemplateData: "STRING_VALUE",
|
|
85
85
|
* },
|
|
86
86
|
* },
|
|
87
|
+
* ReplacementHeaders: [
|
|
88
|
+
* {
|
|
89
|
+
* Name: "STRING_VALUE", // required
|
|
90
|
+
* Value: "STRING_VALUE", // required
|
|
91
|
+
* },
|
|
92
|
+
* ],
|
|
87
93
|
* },
|
|
88
94
|
* ],
|
|
89
95
|
* ConfigurationSetName: "STRING_VALUE",
|
|
@@ -762,6 +762,39 @@ export interface BulkEmailEntry {
|
|
|
762
762
|
* @public
|
|
763
763
|
*/
|
|
764
764
|
ReplacementEmailContent?: ReplacementEmailContent;
|
|
765
|
+
/**
|
|
766
|
+
* <p>The list of message headers associated with the <code>BulkEmailEntry</code> data type.</p>
|
|
767
|
+
* <ul>
|
|
768
|
+
* <li>
|
|
769
|
+
* <p>Headers Not Present in <code>BulkEmailEntry</code>: If a header is specified in
|
|
770
|
+
* <a href="https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_Template.html">
|
|
771
|
+
* <code>Template</code>
|
|
772
|
+
* </a> but not in <code>BulkEmailEntry</code>, the header
|
|
773
|
+
* from <code>Template</code> will be added to the outgoing email.</p>
|
|
774
|
+
* </li>
|
|
775
|
+
* <li>
|
|
776
|
+
* <p>Headers Present in <code>BulkEmailEntry</code>: If a header is specified in
|
|
777
|
+
* <code>BulkEmailEntry</code>, it takes precedence over any header of the same name specified
|
|
778
|
+
* in <a href="https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_Template.html">
|
|
779
|
+
* <code>Template</code>
|
|
780
|
+
* </a>:</p>
|
|
781
|
+
* <ul>
|
|
782
|
+
* <li>
|
|
783
|
+
* <p>If the header is also defined within <code>Template</code>,
|
|
784
|
+
* the value from <code>BulkEmailEntry</code> will replace the header's
|
|
785
|
+
* value in the email.</p>
|
|
786
|
+
* </li>
|
|
787
|
+
* <li>
|
|
788
|
+
* <p>If the header is not defined within <code>Template</code>,
|
|
789
|
+
* it will simply be added to the email as specified in
|
|
790
|
+
* <code>BulkEmailEntry</code>.</p>
|
|
791
|
+
* </li>
|
|
792
|
+
* </ul>
|
|
793
|
+
* </li>
|
|
794
|
+
* </ul>
|
|
795
|
+
* @public
|
|
796
|
+
*/
|
|
797
|
+
ReplacementHeaders?: MessageHeader[];
|
|
765
798
|
}
|
|
766
799
|
/**
|
|
767
800
|
* @public
|
|
@@ -188,6 +188,7 @@ export interface BulkEmailEntry {
|
|
|
188
188
|
Destination: Destination | undefined;
|
|
189
189
|
ReplacementTags?: MessageTag[];
|
|
190
190
|
ReplacementEmailContent?: ReplacementEmailContent;
|
|
191
|
+
ReplacementHeaders?: MessageHeader[];
|
|
191
192
|
}
|
|
192
193
|
export declare const BulkEmailStatus: {
|
|
193
194
|
readonly ACCOUNT_DAILY_QUOTA_EXCEEDED: "ACCOUNT_DAILY_QUOTA_EXCEEDED";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sesv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.572.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sesv2",
|
|
@@ -20,15 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/
|
|
24
|
-
"@aws-sdk/
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.572.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.572.0",
|
|
25
|
+
"@aws-sdk/core": "3.572.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.572.0",
|
|
25
27
|
"@aws-sdk/middleware-host-header": "3.567.0",
|
|
26
28
|
"@aws-sdk/middleware-logger": "3.568.0",
|
|
27
29
|
"@aws-sdk/middleware-recursion-detection": "3.567.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.572.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.572.0",
|
|
30
32
|
"@aws-sdk/types": "3.567.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.572.0",
|
|
32
34
|
"@aws-sdk/util-user-agent-browser": "3.567.0",
|
|
33
35
|
"@aws-sdk/util-user-agent-node": "3.568.0",
|
|
34
36
|
"@smithy/config-resolver": "^2.2.0",
|