diff --git a/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts b/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts index cbb9409d5747..86e5859cf25a 100644 --- a/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts +++ b/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts @@ -85,6 +85,12 @@ export interface SendBulkEmailCommandOutput extends SendBulkEmailResponse, __Met * ReplacementTemplateData: "STRING_VALUE", * }, * }, + * ReplacementHeaders: [ + * { + * Name: "STRING_VALUE", // required + * Value: "STRING_VALUE", // required + * }, + * ], * }, * ], * ConfigurationSetName: "STRING_VALUE", diff --git a/clients/client-sesv2/src/models/models_0.ts b/clients/client-sesv2/src/models/models_0.ts index aac9d8432624..72924f12a851 100644 --- a/clients/client-sesv2/src/models/models_0.ts +++ b/clients/client-sesv2/src/models/models_0.ts @@ -880,6 +880,40 @@ export interface BulkEmailEntry { * @public */ ReplacementEmailContent?: ReplacementEmailContent; + + /** + *
The list of message headers associated with the BulkEmailEntry
data type.
Headers Not Present in BulkEmailEntry
: If a header is specified in
+ *
+ * Template
+ * but not in BulkEmailEntry
, the header
+ * from Template
will be added to the outgoing email.
Headers Present in BulkEmailEntry
: If a header is specified in
+ * BulkEmailEntry
, it takes precedence over any header of the same name specified
+ * in
+ * Template
+ * :
If the header is also defined within Template
,
+ * the value from BulkEmailEntry
will replace the header's
+ * value in the email.
If the header is not defined within Template
,
+ * it will simply be added to the email as specified in
+ * BulkEmailEntry
.
The ReplacementEmailContent
associated with a\n BulkEmailEntry
.
The list of message headers associated with the BulkEmailEntry
data type.
Headers Not Present in BulkEmailEntry
: If a header is specified in\n \n Template
\n but not in BulkEmailEntry
, the header\n from Template
will be added to the outgoing email.
Headers Present in BulkEmailEntry
: If a header is specified in\n BulkEmailEntry
, it takes precedence over any header of the same name specified\n in \n Template
\n :
If the header is also defined within Template
,\n the value from BulkEmailEntry
will replace the header's\n value in the email.
If the header is not defined within Template
,\n it will simply be added to the email as specified in\n BulkEmailEntry
.