@aws-sdk/client-sesv2 3.287.0 → 3.288.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.
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/SESv2.d.ts +70 -81
- package/dist-types/SESv2Client.d.ts +2 -3
- package/dist-types/commands/BatchGetMetricDataCommand.d.ts +1 -1
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +1 -1
- package/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +2 -2
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +5 -5
- package/dist-types/commands/CreateEmailIdentityPolicyCommand.d.ts +4 -5
- package/dist-types/commands/CreateEmailTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +2 -2
- package/dist-types/commands/DeleteEmailIdentityPolicyCommand.d.ts +4 -5
- package/dist-types/commands/DeleteEmailTemplateCommand.d.ts +1 -2
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +1 -1
- package/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +2 -2
- package/dist-types/commands/GetDeliverabilityDashboardOptionsCommand.d.ts +1 -2
- package/dist-types/commands/GetEmailIdentityPoliciesCommand.d.ts +4 -4
- package/dist-types/commands/GetEmailTemplateCommand.d.ts +1 -2
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +2 -2
- package/dist-types/commands/ListEmailTemplatesCommand.d.ts +1 -2
- package/dist-types/commands/ListRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/PutAccountVdmAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutConfigurationSetVdmOptionsCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +2 -3
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -2
- package/dist-types/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +7 -7
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +2 -2
- package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +2 -2
- package/dist-types/commands/SendEmailCommand.d.ts +4 -4
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/TestRenderEmailTemplateCommand.d.ts +1 -2
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +2 -2
- package/dist-types/commands/UpdateEmailIdentityPolicyCommand.d.ts +4 -5
- package/dist-types/commands/UpdateEmailTemplateCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +307 -231
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +4 -4
|
@@ -19,27 +19,27 @@ export interface CreateEmailIdentityCommandOutput extends CreateEmailIdentityRes
|
|
|
19
19
|
* identity to send email, you first have to verify it. By verifying an identity, you
|
|
20
20
|
* demonstrate that you're the owner of the identity, and that you've given Amazon SES API v2
|
|
21
21
|
* permission to send email from the identity.</p>
|
|
22
|
-
*
|
|
22
|
+
* <p>When you verify an email address, Amazon SES sends an email to the address. Your email
|
|
23
23
|
* address is verified as soon as you follow the link in the verification email.
|
|
24
24
|
*
|
|
25
25
|
* </p>
|
|
26
|
-
*
|
|
26
|
+
* <p>When you verify a domain without specifying the <code>DkimSigningAttributes</code>
|
|
27
27
|
* object, this operation provides a set of DKIM tokens. You can convert these tokens into
|
|
28
28
|
* CNAME records, which you then add to the DNS configuration for your domain. Your domain
|
|
29
29
|
* is verified when Amazon SES detects these records in the DNS configuration for your domain.
|
|
30
30
|
* This verification method is known as <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
|
|
31
|
-
*
|
|
31
|
+
* <p>Alternatively, you can perform the verification process by providing your own
|
|
32
32
|
* public-private key pair. This verification method is known as Bring Your Own DKIM
|
|
33
33
|
* (BYODKIM). To use BYODKIM, your call to the <code>CreateEmailIdentity</code> operation
|
|
34
34
|
* has to include the <code>DkimSigningAttributes</code> object. When you specify this
|
|
35
35
|
* object, you provide a selector (a component of the DNS record name that identifies the
|
|
36
36
|
* public key to use for DKIM authentication) and a private key.</p>
|
|
37
|
-
*
|
|
37
|
+
* <p>When you verify a domain, this operation provides a set of DKIM tokens, which you can
|
|
38
38
|
* convert into CNAME tokens. You add these CNAME tokens to the DNS configuration for your
|
|
39
39
|
* domain. Your domain is verified when Amazon SES detects these records in the DNS
|
|
40
40
|
* configuration for your domain. For some DNS providers, it can take 72 hours or more to
|
|
41
41
|
* complete the domain verification process.</p>
|
|
42
|
-
*
|
|
42
|
+
* <p>Additionally, you can associate an existing configuration set with the email identity that you're verifying.</p>
|
|
43
43
|
* @example
|
|
44
44
|
* Use a bare-bones client and the command you need to make an API call.
|
|
45
45
|
* ```javascript
|
|
@@ -16,16 +16,15 @@ export interface CreateEmailIdentityPolicyCommandOutput extends CreateEmailIdent
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Creates the specified sending authorization policy for the given identity (an email
|
|
18
18
|
* address or a domain).</p>
|
|
19
|
-
*
|
|
19
|
+
* <note>
|
|
20
20
|
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
21
21
|
* this API will return an error.</p>
|
|
22
|
-
*
|
|
23
|
-
*
|
|
22
|
+
* </note>
|
|
23
|
+
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
24
24
|
* senders to use its identities. For information about using sending authorization, see
|
|
25
25
|
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
26
26
|
* Guide</a>.</p>
|
|
27
|
-
*
|
|
28
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
27
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
29
28
|
* @example
|
|
30
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
30
|
* ```javascript
|
|
@@ -17,7 +17,7 @@ export interface CreateEmailTemplateCommandOutput extends CreateEmailTemplateRes
|
|
|
17
17
|
* <p>Creates an email template. Email templates enable you to send personalized email to
|
|
18
18
|
* one or more destinations in a single API operation. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
|
|
19
19
|
* Guide</a>.</p>
|
|
20
|
-
*
|
|
20
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
21
21
|
* @example
|
|
22
22
|
* Use a bare-bones client and the command you need to make an API call.
|
|
23
23
|
* ```javascript
|
|
@@ -15,7 +15,7 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Delete an existing configuration set.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>
|
|
19
19
|
* <i>Configuration sets</i> are groups of rules that you can apply to the
|
|
20
20
|
* emails you send. You apply a configuration set to an email by including a reference to
|
|
21
21
|
* the configuration set in the headers of the email. When you apply a configuration set to
|
|
@@ -15,7 +15,7 @@ export interface DeleteConfigurationSetEventDestinationCommandOutput extends Del
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Delete an event destination.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>
|
|
19
19
|
* <i>Events</i> include message sends, deliveries, opens, clicks, bounces,
|
|
20
20
|
* and complaints. <i>Event destinations</i> are places that you can send
|
|
21
21
|
* information about these events to. For example, you can send event data to Amazon SNS to
|
|
@@ -15,10 +15,10 @@ export interface DeleteCustomVerificationEmailTemplateCommandOutput extends Dele
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Deletes an existing custom verification email template.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
19
19
|
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
20
20
|
* Guide</i>.</p>
|
|
21
|
-
*
|
|
21
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
22
22
|
* @example
|
|
23
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
24
24
|
* ```javascript
|
|
@@ -17,16 +17,15 @@ export interface DeleteEmailIdentityPolicyCommandOutput extends DeleteEmailIdent
|
|
|
17
17
|
* <p>Deletes the specified sending authorization policy for the given identity (an email
|
|
18
18
|
* address or a domain). This API returns successfully even if a policy with the specified
|
|
19
19
|
* name does not exist.</p>
|
|
20
|
-
*
|
|
20
|
+
* <note>
|
|
21
21
|
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
22
22
|
* this API will return an error.</p>
|
|
23
|
-
*
|
|
24
|
-
*
|
|
23
|
+
* </note>
|
|
24
|
+
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
25
25
|
* senders to use its identities. For information about using sending authorization, see
|
|
26
26
|
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
27
27
|
* Guide</a>.</p>
|
|
28
|
-
*
|
|
29
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
28
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
30
29
|
* @example
|
|
31
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
31
|
* ```javascript
|
|
@@ -15,8 +15,7 @@ export interface DeleteEmailTemplateCommandOutput extends DeleteEmailTemplateRes
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Deletes an email template.</p>
|
|
18
|
-
*
|
|
19
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
18
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
20
19
|
* @example
|
|
21
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
22
21
|
* ```javascript
|
|
@@ -17,7 +17,7 @@ export interface GetConfigurationSetCommandOutput extends GetConfigurationSetRes
|
|
|
17
17
|
* <p>Get information about an existing configuration set, including the dedicated IP pool
|
|
18
18
|
* that it's associated with, whether or not it's enabled for sending email, and
|
|
19
19
|
* more.</p>
|
|
20
|
-
*
|
|
20
|
+
* <p>
|
|
21
21
|
* <i>Configuration sets</i> are groups of rules that you can apply to the
|
|
22
22
|
* emails you send. You apply a configuration set to an email by including a reference to
|
|
23
23
|
* the configuration set in the headers of the email. When you apply a configuration set to
|
|
@@ -16,7 +16,7 @@ export interface GetConfigurationSetEventDestinationsCommandOutput extends GetCo
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Retrieve a list of event destinations that are associated with a configuration
|
|
18
18
|
* set.</p>
|
|
19
|
-
*
|
|
19
|
+
* <p>
|
|
20
20
|
* <i>Events</i> include message sends, deliveries, opens, clicks, bounces,
|
|
21
21
|
* and complaints. <i>Event destinations</i> are places that you can send
|
|
22
22
|
* information about these events to. For example, you can send event data to Amazon SNS to
|
|
@@ -16,10 +16,10 @@ export interface GetCustomVerificationEmailTemplateCommandOutput extends GetCust
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Returns the custom email verification template for the template name you
|
|
18
18
|
* specify.</p>
|
|
19
|
-
*
|
|
19
|
+
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
20
20
|
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
21
21
|
* Guide</i>.</p>
|
|
22
|
-
*
|
|
22
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -18,8 +18,7 @@ export interface GetDeliverabilityDashboardOptionsCommandOutput extends GetDeliv
|
|
|
18
18
|
* the Deliverability dashboard is enabled, you gain access to reputation, deliverability, and other
|
|
19
19
|
* metrics for the domains that you use to send email. You also gain the ability to perform
|
|
20
20
|
* predictive inbox placement tests.</p>
|
|
21
|
-
*
|
|
22
|
-
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
21
|
+
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
23
22
|
* to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
|
|
24
23
|
* information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/ses/pricing/">Amazon SES Pricing</a>.</p>
|
|
25
24
|
* @example
|
|
@@ -17,15 +17,15 @@ export interface GetEmailIdentityPoliciesCommandOutput extends GetEmailIdentityP
|
|
|
17
17
|
* <p>Returns the requested sending authorization policies for the given identity (an email
|
|
18
18
|
* address or a domain). The policies are returned as a map of policy names to policy
|
|
19
19
|
* contents. You can retrieve a maximum of 20 policies at a time.</p>
|
|
20
|
-
*
|
|
20
|
+
* <note>
|
|
21
21
|
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
22
22
|
* this API will return an error.</p>
|
|
23
|
-
*
|
|
24
|
-
*
|
|
23
|
+
* </note>
|
|
24
|
+
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
25
25
|
* senders to use its identities. For information about using sending authorization, see
|
|
26
26
|
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
27
27
|
* Guide</a>.</p>
|
|
28
|
-
*
|
|
28
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
29
29
|
* @example
|
|
30
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
31
|
* ```javascript
|
|
@@ -16,8 +16,7 @@ export interface GetEmailTemplateCommandOutput extends GetEmailTemplateResponse,
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Displays the template object (which includes the subject line, HTML part and text
|
|
18
18
|
* part) for the template you specify.</p>
|
|
19
|
-
*
|
|
20
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
19
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
21
20
|
* @example
|
|
22
21
|
* Use a bare-bones client and the command you need to make an API call.
|
|
23
22
|
* ```javascript
|
|
@@ -16,7 +16,7 @@ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSet
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>List all of the configuration sets associated with your account in the current
|
|
18
18
|
* region.</p>
|
|
19
|
-
*
|
|
19
|
+
* <p>
|
|
20
20
|
* <i>Configuration sets</i> are groups of rules that you can apply to the
|
|
21
21
|
* emails you send. You apply a configuration set to an email by including a reference to
|
|
22
22
|
* the configuration set in the headers of the email. When you apply a configuration set to
|
|
@@ -16,10 +16,10 @@ export interface ListCustomVerificationEmailTemplatesCommandOutput extends ListC
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Lists the existing custom verification email templates for your account in the current
|
|
18
18
|
* Amazon Web Services Region.</p>
|
|
19
|
-
*
|
|
19
|
+
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
20
20
|
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
21
21
|
* Guide</i>.</p>
|
|
22
|
-
*
|
|
22
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -16,8 +16,7 @@ export interface ListEmailTemplatesCommandOutput extends ListEmailTemplatesRespo
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Lists the email templates present in your Amazon SES account in the current Amazon Web Services
|
|
18
18
|
* Region.</p>
|
|
19
|
-
*
|
|
20
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
19
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
21
20
|
* @example
|
|
22
21
|
* Use a bare-bones client and the command you need to make an API call.
|
|
23
22
|
* ```javascript
|
|
@@ -15,7 +15,7 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Lists the recommendations present in your Amazon SES account in the current Amazon Web Services Region.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
21
21
|
* ```javascript
|
|
@@ -15,7 +15,7 @@ export interface PutAccountVdmAttributesCommandOutput extends PutAccountVdmAttri
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Update your Amazon SES account VDM attributes.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
21
21
|
* ```javascript
|
|
@@ -15,7 +15,7 @@ export interface PutConfigurationSetVdmOptionsCommandOutput extends PutConfigura
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Specify VDM preferences for email that you send using the configuration set.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
21
21
|
* ```javascript
|
|
@@ -15,15 +15,14 @@ export interface PutDedicatedIpInPoolCommandOutput extends PutDedicatedIpInPoolR
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Move a dedicated IP address to an existing dedicated IP pool.</p>
|
|
18
|
-
*
|
|
18
|
+
* <note>
|
|
19
19
|
* <p>The dedicated IP address that you specify must already exist, and must be
|
|
20
20
|
* associated with your Amazon Web Services account.
|
|
21
21
|
*
|
|
22
22
|
* </p>
|
|
23
23
|
* <p>The dedicated IP pool you specify must already exist. You can create a new pool by
|
|
24
24
|
* using the <code>CreateDedicatedIpPool</code> operation.</p>
|
|
25
|
-
*
|
|
26
|
-
* </note>
|
|
25
|
+
* </note>
|
|
27
26
|
* @example
|
|
28
27
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
28
|
* ```javascript
|
|
@@ -17,8 +17,7 @@ export interface PutDeliverabilityDashboardOptionCommandOutput extends PutDelive
|
|
|
17
17
|
* <p>Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain
|
|
18
18
|
* access to reputation, deliverability, and other metrics for the domains that you use to
|
|
19
19
|
* send email. You also gain the ability to perform predictive inbox placement tests.</p>
|
|
20
|
-
*
|
|
21
|
-
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
20
|
+
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
22
21
|
* to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
|
|
23
22
|
* information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/ses/pricing/">Amazon SES Pricing</a>.</p>
|
|
24
23
|
* @example
|
|
@@ -16,25 +16,25 @@ export interface PutEmailIdentityDkimSigningAttributesCommandOutput extends PutE
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Used to configure or change the DKIM authentication settings for an email domain
|
|
18
18
|
* identity. You can use this operation to do any of the following:</p>
|
|
19
|
-
*
|
|
19
|
+
* <ul>
|
|
20
20
|
* <li>
|
|
21
|
-
*
|
|
21
|
+
* <p>Update the signing attributes for an identity that uses Bring Your Own DKIM
|
|
22
22
|
* (BYODKIM).</p>
|
|
23
23
|
* </li>
|
|
24
24
|
* <li>
|
|
25
|
-
*
|
|
25
|
+
* <p>Update the key length that should be used for Easy DKIM.</p>
|
|
26
26
|
* </li>
|
|
27
27
|
* <li>
|
|
28
|
-
*
|
|
28
|
+
* <p>Change from using no DKIM authentication to using Easy DKIM.</p>
|
|
29
29
|
* </li>
|
|
30
30
|
* <li>
|
|
31
|
-
*
|
|
31
|
+
* <p>Change from using no DKIM authentication to using BYODKIM.</p>
|
|
32
32
|
* </li>
|
|
33
33
|
* <li>
|
|
34
|
-
*
|
|
34
|
+
* <p>Change from using Easy DKIM to using BYODKIM.</p>
|
|
35
35
|
* </li>
|
|
36
36
|
* <li>
|
|
37
|
-
*
|
|
37
|
+
* <p>Change from using BYODKIM to using Easy DKIM.</p>
|
|
38
38
|
* </li>
|
|
39
39
|
* </ul>
|
|
40
40
|
* @example
|
|
@@ -17,10 +17,10 @@ export interface PutEmailIdentityFeedbackAttributesCommandOutput extends PutEmai
|
|
|
17
17
|
* <p>Used to enable or disable feedback forwarding for an identity. This setting determines
|
|
18
18
|
* what happens when an identity is used to send an email that results in a bounce or
|
|
19
19
|
* complaint event.</p>
|
|
20
|
-
*
|
|
20
|
+
* <p>If the value is <code>true</code>, you receive email notifications when bounce or
|
|
21
21
|
* complaint events occur. These notifications are sent to the address that you specified
|
|
22
22
|
* in the <code>Return-Path</code> header of the original email.</p>
|
|
23
|
-
*
|
|
23
|
+
* <p>You're required to have a method of tracking bounces and complaints. If you haven't
|
|
24
24
|
* set up another mechanism for receiving bounce or complaint notifications (for example,
|
|
25
25
|
* by setting up an event destination), you receive an email notification when these events
|
|
26
26
|
* occur (even if this setting is disabled).</p>
|
|
@@ -17,12 +17,12 @@ export interface SendCustomVerificationEmailCommandOutput extends SendCustomVeri
|
|
|
17
17
|
* <p>Adds an email address to the list of identities for your Amazon SES account in the current
|
|
18
18
|
* Amazon Web Services Region and attempts to verify it. As a result of executing this
|
|
19
19
|
* operation, a customized verification email is sent to the specified address.</p>
|
|
20
|
-
*
|
|
20
|
+
* <p>To use this operation, you must first create a custom verification email template. For
|
|
21
21
|
* more information about creating and using custom verification email templates, see
|
|
22
22
|
* <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
23
23
|
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
24
24
|
* Guide</i>.</p>
|
|
25
|
-
*
|
|
25
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
26
26
|
* @example
|
|
27
27
|
* Use a bare-bones client and the command you need to make an API call.
|
|
28
28
|
* ```javascript
|
|
@@ -16,15 +16,15 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Sends an email message. You can use the Amazon SES API v2 to send the following types of
|
|
18
18
|
* messages:</p>
|
|
19
|
-
*
|
|
19
|
+
* <ul>
|
|
20
20
|
* <li>
|
|
21
|
-
*
|
|
21
|
+
* <p>
|
|
22
22
|
* <b>Simple</b> – A standard email message. When
|
|
23
23
|
* you create this type of message, you specify the sender, the recipient, and the
|
|
24
24
|
* message body, and Amazon SES assembles the message for you.</p>
|
|
25
25
|
* </li>
|
|
26
26
|
* <li>
|
|
27
|
-
*
|
|
27
|
+
* <p>
|
|
28
28
|
* <b>Raw</b> – A raw, MIME-formatted email
|
|
29
29
|
* message. When you send this type of email, you have to specify all of the
|
|
30
30
|
* message headers, as well as the message body. You can use this message type to
|
|
@@ -32,7 +32,7 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea
|
|
|
32
32
|
* valid MIME message.</p>
|
|
33
33
|
* </li>
|
|
34
34
|
* <li>
|
|
35
|
-
*
|
|
35
|
+
* <p>
|
|
36
36
|
* <b>Templated</b> – A message that contains
|
|
37
37
|
* personalization tags. When you send this type of email, Amazon SES API v2 automatically
|
|
38
38
|
* replaces the tags with values that you specify.</p>
|
|
@@ -19,7 +19,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
19
19
|
* resource. Tags can help you categorize and manage resources in different ways, such as
|
|
20
20
|
* by purpose, owner, environment, or other criteria. A resource can have as many as 50
|
|
21
21
|
* tags.</p>
|
|
22
|
-
*
|
|
22
|
+
* <p>Each tag consists of a required <i>tag key</i> and an
|
|
23
23
|
* associated <i>tag value</i>, both of which you define. A tag key is a
|
|
24
24
|
* general label that acts as a category for more specific tag values. A tag value acts as
|
|
25
25
|
* a descriptor within a tag key.</p>
|
|
@@ -16,8 +16,7 @@ export interface TestRenderEmailTemplateCommandOutput extends TestRenderEmailTem
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Creates a preview of the MIME content of an email when provided with a template and a
|
|
18
18
|
* set of replacement data.</p>
|
|
19
|
-
*
|
|
20
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
19
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
21
20
|
* @example
|
|
22
21
|
* Use a bare-bones client and the command you need to make an API call.
|
|
23
22
|
* ```javascript
|
|
@@ -15,7 +15,7 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput extends Upd
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Update the configuration of an event destination for a configuration set.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>
|
|
19
19
|
* <i>Events</i> include message sends, deliveries, opens, clicks, bounces,
|
|
20
20
|
* and complaints. <i>Event destinations</i> are places that you can send
|
|
21
21
|
* information about these events to. For example, you can send event data to Amazon SNS to
|
|
@@ -15,10 +15,10 @@ export interface UpdateCustomVerificationEmailTemplateCommandOutput extends Upda
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Updates an existing custom verification email template.</p>
|
|
18
|
-
*
|
|
18
|
+
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom">Using
|
|
19
19
|
* custom verification email templates</a> in the <i>Amazon SES Developer
|
|
20
20
|
* Guide</i>.</p>
|
|
21
|
-
*
|
|
21
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
22
22
|
* @example
|
|
23
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
24
24
|
* ```javascript
|
|
@@ -17,16 +17,15 @@ export interface UpdateEmailIdentityPolicyCommandOutput extends UpdateEmailIdent
|
|
|
17
17
|
* <p>Updates the specified sending authorization policy for the given identity (an email
|
|
18
18
|
* address or a domain). This API returns successfully even if a policy with the specified
|
|
19
19
|
* name does not exist.</p>
|
|
20
|
-
*
|
|
20
|
+
* <note>
|
|
21
21
|
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
22
22
|
* this API will return an error.</p>
|
|
23
|
-
*
|
|
24
|
-
*
|
|
23
|
+
* </note>
|
|
24
|
+
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
25
25
|
* senders to use its identities. For information about using sending authorization, see
|
|
26
26
|
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
27
27
|
* Guide</a>.</p>
|
|
28
|
-
*
|
|
29
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
28
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
30
29
|
* @example
|
|
31
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
31
|
* ```javascript
|
|
@@ -17,7 +17,7 @@ export interface UpdateEmailTemplateCommandOutput extends UpdateEmailTemplateRes
|
|
|
17
17
|
* <p>Updates an email template. Email templates enable you to send personalized email to
|
|
18
18
|
* one or more destinations in a single API operation. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
|
|
19
19
|
* Guide</a>.</p>
|
|
20
|
-
*
|
|
20
|
+
* <p>You can execute this operation no more than once per second.</p>
|
|
21
21
|
* @example
|
|
22
22
|
* Use a bare-bones client and the command you need to make an API call.
|
|
23
23
|
* ```javascript
|