@aws-sdk/client-sesv2 3.1003.0 → 3.1005.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.
|
@@ -83,6 +83,45 @@ declare const GetEmailAddressInsightsCommand_base: {
|
|
|
83
83
|
* <p>Base exception class for all service exceptions from SESv2 service.</p>
|
|
84
84
|
*
|
|
85
85
|
*
|
|
86
|
+
* @example Get Email Address Insights
|
|
87
|
+
* ```javascript
|
|
88
|
+
* // Performs email validation against an email address.
|
|
89
|
+
* const input = {
|
|
90
|
+
* EmailAddress: "hello@example.com"
|
|
91
|
+
* };
|
|
92
|
+
* const command = new GetEmailAddressInsightsCommand(input);
|
|
93
|
+
* const response = await client.send(command);
|
|
94
|
+
* /* response is
|
|
95
|
+
* {
|
|
96
|
+
* MailboxValidation: {
|
|
97
|
+
* Evaluations: {
|
|
98
|
+
* HasValidDnsRecords: {
|
|
99
|
+
* ConfidenceVerdict: "MEDIUM"
|
|
100
|
+
* },
|
|
101
|
+
* HasValidSyntax: {
|
|
102
|
+
* ConfidenceVerdict: "HIGH"
|
|
103
|
+
* },
|
|
104
|
+
* IsDisposable: {
|
|
105
|
+
* ConfidenceVerdict: "LOW"
|
|
106
|
+
* },
|
|
107
|
+
* IsRandomInput: {
|
|
108
|
+
* ConfidenceVerdict: "LOW"
|
|
109
|
+
* },
|
|
110
|
+
* IsRoleAddress: {
|
|
111
|
+
* ConfidenceVerdict: "LOW"
|
|
112
|
+
* },
|
|
113
|
+
* MailboxExists: {
|
|
114
|
+
* ConfidenceVerdict: "MEDIUM"
|
|
115
|
+
* }
|
|
116
|
+
* },
|
|
117
|
+
* IsValid: {
|
|
118
|
+
* ConfidenceVerdict: "HIGH"
|
|
119
|
+
* }
|
|
120
|
+
* }
|
|
121
|
+
* }
|
|
122
|
+
* *\/
|
|
123
|
+
* ```
|
|
124
|
+
*
|
|
86
125
|
* @public
|
|
87
126
|
*/
|
|
88
127
|
export declare class GetEmailAddressInsightsCommand extends GetEmailAddressInsightsCommand_base {
|
|
@@ -453,7 +453,10 @@ export interface MessageHeader {
|
|
|
453
453
|
* <p>Can contain any printable ASCII character.</p>
|
|
454
454
|
* </li>
|
|
455
455
|
* <li>
|
|
456
|
-
* <p>Can contain no more than
|
|
456
|
+
* <p>Can contain no more than 995 characters.</p>
|
|
457
|
+
* </li>
|
|
458
|
+
* <li>
|
|
459
|
+
* <p>The combined length of the header name and value must not exceed 996 characters.</p>
|
|
457
460
|
* </li>
|
|
458
461
|
* </ul>
|
|
459
462
|
* @public
|
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.1005.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sesv2",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.19",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.19",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.7",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.7",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.20",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.7",
|
|
31
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
31
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.7",
|
|
32
32
|
"@aws-sdk/types": "^3.973.5",
|
|
33
33
|
"@aws-sdk/util-endpoints": "^3.996.4",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "^3.972.7",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "^3.973.5",
|
|
36
36
|
"@smithy/config-resolver": "^4.4.10",
|
|
37
|
-
"@smithy/core": "^3.23.
|
|
37
|
+
"@smithy/core": "^3.23.9",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.13",
|
|
39
39
|
"@smithy/hash-node": "^4.2.11",
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.11",
|
|
41
41
|
"@smithy/middleware-content-length": "^4.2.11",
|
|
42
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
43
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.4.23",
|
|
43
|
+
"@smithy/middleware-retry": "^4.4.40",
|
|
44
44
|
"@smithy/middleware-serde": "^4.2.12",
|
|
45
45
|
"@smithy/middleware-stack": "^4.2.11",
|
|
46
46
|
"@smithy/node-config-provider": "^4.3.11",
|
|
47
47
|
"@smithy/node-http-handler": "^4.4.14",
|
|
48
48
|
"@smithy/protocol-http": "^5.3.11",
|
|
49
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
+
"@smithy/smithy-client": "^4.12.3",
|
|
50
50
|
"@smithy/types": "^4.13.0",
|
|
51
51
|
"@smithy/url-parser": "^4.2.11",
|
|
52
52
|
"@smithy/util-base64": "^4.3.2",
|
|
53
53
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
54
54
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.3.39",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.2.42",
|
|
57
57
|
"@smithy/util-endpoints": "^3.3.2",
|
|
58
58
|
"@smithy/util-middleware": "^4.2.11",
|
|
59
59
|
"@smithy/util-retry": "^4.2.11",
|