@aws-sdk/client-sesv2 3.708.0 → 3.710.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.
Files changed (65) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/endpoint/endpointResolver.js +1 -1
  3. package/dist-cjs/endpoint/ruleset.js +3 -3
  4. package/dist-cjs/index.js +258 -11
  5. package/dist-es/SESv2.js +8 -0
  6. package/dist-es/commands/CreateMultiRegionEndpointCommand.js +22 -0
  7. package/dist-es/commands/DeleteMultiRegionEndpointCommand.js +22 -0
  8. package/dist-es/commands/GetMultiRegionEndpointCommand.js +22 -0
  9. package/dist-es/commands/ListMultiRegionEndpointsCommand.js +22 -0
  10. package/dist-es/commands/PutEmailIdentityDkimSigningAttributesCommand.js +1 -1
  11. package/dist-es/commands/SendBulkEmailCommand.js +4 -1
  12. package/dist-es/commands/SendEmailCommand.js +4 -1
  13. package/dist-es/commands/index.js +4 -0
  14. package/dist-es/endpoint/endpointResolver.js +1 -1
  15. package/dist-es/endpoint/ruleset.js +3 -3
  16. package/dist-es/models/models_0.js +37 -8
  17. package/dist-es/models/models_1.js +5 -1
  18. package/dist-es/pagination/ListMultiRegionEndpointsPaginator.js +4 -0
  19. package/dist-es/pagination/index.js +1 -0
  20. package/dist-es/protocols/Aws_restJson1.js +128 -0
  21. package/dist-types/SESv2.d.ts +29 -0
  22. package/dist-types/SESv2Client.d.ts +6 -2
  23. package/dist-types/commands/CreateEmailIdentityCommand.d.ts +2 -1
  24. package/dist-types/commands/CreateMultiRegionEndpointCommand.d.ts +103 -0
  25. package/dist-types/commands/DeleteMultiRegionEndpointCommand.d.ts +85 -0
  26. package/dist-types/commands/GetEmailIdentityCommand.d.ts +2 -2
  27. package/dist-types/commands/GetMultiRegionEndpointCommand.d.ts +91 -0
  28. package/dist-types/commands/ListMultiRegionEndpointsCommand.d.ts +92 -0
  29. package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
  30. package/dist-types/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
  31. package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
  32. package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
  33. package/dist-types/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
  34. package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
  35. package/dist-types/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +3 -3
  36. package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -0
  37. package/dist-types/commands/SendEmailCommand.d.ts +1 -0
  38. package/dist-types/commands/index.d.ts +4 -0
  39. package/dist-types/endpoint/EndpointParameters.d.ts +1 -0
  40. package/dist-types/models/models_0.d.ts +730 -232
  41. package/dist-types/models/models_1.d.ts +206 -1
  42. package/dist-types/pagination/ListMultiRegionEndpointsPaginator.d.ts +7 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  45. package/dist-types/ts3.4/SESv2.d.ts +69 -0
  46. package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
  47. package/dist-types/ts3.4/commands/CreateMultiRegionEndpointCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/DeleteMultiRegionEndpointCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/GetMultiRegionEndpointCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/ListMultiRegionEndpointsCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +4 -2
  58. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  59. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +92 -44
  61. package/dist-types/ts3.4/models/models_1.d.ts +44 -0
  62. package/dist-types/ts3.4/pagination/ListMultiRegionEndpointsPaginator.d.ts +11 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  65. package/package.json +36 -36
@@ -59,6 +59,10 @@ import {
59
59
  CreateImportJobCommandInput,
60
60
  CreateImportJobCommandOutput,
61
61
  } from "../commands/CreateImportJobCommand";
62
+ import {
63
+ CreateMultiRegionEndpointCommandInput,
64
+ CreateMultiRegionEndpointCommandOutput,
65
+ } from "../commands/CreateMultiRegionEndpointCommand";
62
66
  import {
63
67
  DeleteConfigurationSetCommandInput,
64
68
  DeleteConfigurationSetCommandOutput,
@@ -95,6 +99,10 @@ import {
95
99
  DeleteEmailTemplateCommandInput,
96
100
  DeleteEmailTemplateCommandOutput,
97
101
  } from "../commands/DeleteEmailTemplateCommand";
102
+ import {
103
+ DeleteMultiRegionEndpointCommandInput,
104
+ DeleteMultiRegionEndpointCommandOutput,
105
+ } from "../commands/DeleteMultiRegionEndpointCommand";
98
106
  import {
99
107
  DeleteSuppressedDestinationCommandInput,
100
108
  DeleteSuppressedDestinationCommandOutput,
@@ -179,6 +187,10 @@ import {
179
187
  GetMessageInsightsCommandInput,
180
188
  GetMessageInsightsCommandOutput,
181
189
  } from "../commands/GetMessageInsightsCommand";
190
+ import {
191
+ GetMultiRegionEndpointCommandInput,
192
+ GetMultiRegionEndpointCommandOutput,
193
+ } from "../commands/GetMultiRegionEndpointCommand";
182
194
  import {
183
195
  GetSuppressedDestinationCommandInput,
184
196
  GetSuppressedDestinationCommandOutput,
@@ -227,6 +239,10 @@ import {
227
239
  ListImportJobsCommandInput,
228
240
  ListImportJobsCommandOutput,
229
241
  } from "../commands/ListImportJobsCommand";
242
+ import {
243
+ ListMultiRegionEndpointsCommandInput,
244
+ ListMultiRegionEndpointsCommandOutput,
245
+ } from "../commands/ListMultiRegionEndpointsCommand";
230
246
  import {
231
247
  ListRecommendationsCommandInput,
232
248
  ListRecommendationsCommandOutput,
@@ -427,6 +443,10 @@ export declare const se_CreateImportJobCommand: (
427
443
  input: CreateImportJobCommandInput,
428
444
  context: __SerdeContext
429
445
  ) => Promise<__HttpRequest>;
446
+ export declare const se_CreateMultiRegionEndpointCommand: (
447
+ input: CreateMultiRegionEndpointCommandInput,
448
+ context: __SerdeContext
449
+ ) => Promise<__HttpRequest>;
430
450
  export declare const se_DeleteConfigurationSetCommand: (
431
451
  input: DeleteConfigurationSetCommandInput,
432
452
  context: __SerdeContext
@@ -463,6 +483,10 @@ export declare const se_DeleteEmailTemplateCommand: (
463
483
  input: DeleteEmailTemplateCommandInput,
464
484
  context: __SerdeContext
465
485
  ) => Promise<__HttpRequest>;
486
+ export declare const se_DeleteMultiRegionEndpointCommand: (
487
+ input: DeleteMultiRegionEndpointCommandInput,
488
+ context: __SerdeContext
489
+ ) => Promise<__HttpRequest>;
466
490
  export declare const se_DeleteSuppressedDestinationCommand: (
467
491
  input: DeleteSuppressedDestinationCommandInput,
468
492
  context: __SerdeContext
@@ -547,6 +571,10 @@ export declare const se_GetMessageInsightsCommand: (
547
571
  input: GetMessageInsightsCommandInput,
548
572
  context: __SerdeContext
549
573
  ) => Promise<__HttpRequest>;
574
+ export declare const se_GetMultiRegionEndpointCommand: (
575
+ input: GetMultiRegionEndpointCommandInput,
576
+ context: __SerdeContext
577
+ ) => Promise<__HttpRequest>;
550
578
  export declare const se_GetSuppressedDestinationCommand: (
551
579
  input: GetSuppressedDestinationCommandInput,
552
580
  context: __SerdeContext
@@ -595,6 +623,10 @@ export declare const se_ListImportJobsCommand: (
595
623
  input: ListImportJobsCommandInput,
596
624
  context: __SerdeContext
597
625
  ) => Promise<__HttpRequest>;
626
+ export declare const se_ListMultiRegionEndpointsCommand: (
627
+ input: ListMultiRegionEndpointsCommandInput,
628
+ context: __SerdeContext
629
+ ) => Promise<__HttpRequest>;
598
630
  export declare const se_ListRecommendationsCommand: (
599
631
  input: ListRecommendationsCommandInput,
600
632
  context: __SerdeContext
@@ -795,6 +827,10 @@ export declare const de_CreateImportJobCommand: (
795
827
  output: __HttpResponse,
796
828
  context: __SerdeContext
797
829
  ) => Promise<CreateImportJobCommandOutput>;
830
+ export declare const de_CreateMultiRegionEndpointCommand: (
831
+ output: __HttpResponse,
832
+ context: __SerdeContext
833
+ ) => Promise<CreateMultiRegionEndpointCommandOutput>;
798
834
  export declare const de_DeleteConfigurationSetCommand: (
799
835
  output: __HttpResponse,
800
836
  context: __SerdeContext
@@ -831,6 +867,10 @@ export declare const de_DeleteEmailTemplateCommand: (
831
867
  output: __HttpResponse,
832
868
  context: __SerdeContext
833
869
  ) => Promise<DeleteEmailTemplateCommandOutput>;
870
+ export declare const de_DeleteMultiRegionEndpointCommand: (
871
+ output: __HttpResponse,
872
+ context: __SerdeContext
873
+ ) => Promise<DeleteMultiRegionEndpointCommandOutput>;
834
874
  export declare const de_DeleteSuppressedDestinationCommand: (
835
875
  output: __HttpResponse,
836
876
  context: __SerdeContext
@@ -915,6 +955,10 @@ export declare const de_GetMessageInsightsCommand: (
915
955
  output: __HttpResponse,
916
956
  context: __SerdeContext
917
957
  ) => Promise<GetMessageInsightsCommandOutput>;
958
+ export declare const de_GetMultiRegionEndpointCommand: (
959
+ output: __HttpResponse,
960
+ context: __SerdeContext
961
+ ) => Promise<GetMultiRegionEndpointCommandOutput>;
918
962
  export declare const de_GetSuppressedDestinationCommand: (
919
963
  output: __HttpResponse,
920
964
  context: __SerdeContext
@@ -963,6 +1007,10 @@ export declare const de_ListImportJobsCommand: (
963
1007
  output: __HttpResponse,
964
1008
  context: __SerdeContext
965
1009
  ) => Promise<ListImportJobsCommandOutput>;
1010
+ export declare const de_ListMultiRegionEndpointsCommand: (
1011
+ output: __HttpResponse,
1012
+ context: __SerdeContext
1013
+ ) => Promise<ListMultiRegionEndpointsCommandOutput>;
966
1014
  export declare const de_ListRecommendationsCommand: (
967
1015
  output: __HttpResponse,
968
1016
  context: __SerdeContext
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.708.0",
4
+ "version": "3.710.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,44 +20,44 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.699.0",
24
- "@aws-sdk/client-sts": "3.699.0",
25
- "@aws-sdk/core": "3.696.0",
26
- "@aws-sdk/credential-provider-node": "3.699.0",
27
- "@aws-sdk/middleware-host-header": "3.696.0",
28
- "@aws-sdk/middleware-logger": "3.696.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
- "@aws-sdk/middleware-user-agent": "3.696.0",
31
- "@aws-sdk/region-config-resolver": "3.696.0",
32
- "@aws-sdk/signature-v4-multi-region": "3.696.0",
33
- "@aws-sdk/types": "3.696.0",
34
- "@aws-sdk/util-endpoints": "3.696.0",
35
- "@aws-sdk/util-user-agent-browser": "3.696.0",
36
- "@aws-sdk/util-user-agent-node": "3.696.0",
37
- "@smithy/config-resolver": "^3.0.12",
38
- "@smithy/core": "^2.5.3",
39
- "@smithy/fetch-http-handler": "^4.1.1",
40
- "@smithy/hash-node": "^3.0.10",
41
- "@smithy/invalid-dependency": "^3.0.10",
42
- "@smithy/middleware-content-length": "^3.0.12",
43
- "@smithy/middleware-endpoint": "^3.2.3",
44
- "@smithy/middleware-retry": "^3.0.27",
45
- "@smithy/middleware-serde": "^3.0.10",
46
- "@smithy/middleware-stack": "^3.0.10",
47
- "@smithy/node-config-provider": "^3.1.11",
48
- "@smithy/node-http-handler": "^3.3.1",
49
- "@smithy/protocol-http": "^4.1.7",
50
- "@smithy/smithy-client": "^3.4.4",
51
- "@smithy/types": "^3.7.1",
52
- "@smithy/url-parser": "^3.0.10",
23
+ "@aws-sdk/client-sso-oidc": "3.709.0",
24
+ "@aws-sdk/client-sts": "3.709.0",
25
+ "@aws-sdk/core": "3.709.0",
26
+ "@aws-sdk/credential-provider-node": "3.709.0",
27
+ "@aws-sdk/middleware-host-header": "3.709.0",
28
+ "@aws-sdk/middleware-logger": "3.709.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
30
+ "@aws-sdk/middleware-user-agent": "3.709.0",
31
+ "@aws-sdk/region-config-resolver": "3.709.0",
32
+ "@aws-sdk/signature-v4-multi-region": "3.709.0",
33
+ "@aws-sdk/types": "3.709.0",
34
+ "@aws-sdk/util-endpoints": "3.709.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
36
+ "@aws-sdk/util-user-agent-node": "3.709.0",
37
+ "@smithy/config-resolver": "^3.0.13",
38
+ "@smithy/core": "^2.5.5",
39
+ "@smithy/fetch-http-handler": "^4.1.2",
40
+ "@smithy/hash-node": "^3.0.11",
41
+ "@smithy/invalid-dependency": "^3.0.11",
42
+ "@smithy/middleware-content-length": "^3.0.13",
43
+ "@smithy/middleware-endpoint": "^3.2.5",
44
+ "@smithy/middleware-retry": "^3.0.30",
45
+ "@smithy/middleware-serde": "^3.0.11",
46
+ "@smithy/middleware-stack": "^3.0.11",
47
+ "@smithy/node-config-provider": "^3.1.12",
48
+ "@smithy/node-http-handler": "^3.3.2",
49
+ "@smithy/protocol-http": "^4.1.8",
50
+ "@smithy/smithy-client": "^3.5.0",
51
+ "@smithy/types": "^3.7.2",
52
+ "@smithy/url-parser": "^3.0.11",
53
53
  "@smithy/util-base64": "^3.0.0",
54
54
  "@smithy/util-body-length-browser": "^3.0.0",
55
55
  "@smithy/util-body-length-node": "^3.0.0",
56
- "@smithy/util-defaults-mode-browser": "^3.0.27",
57
- "@smithy/util-defaults-mode-node": "^3.0.27",
58
- "@smithy/util-endpoints": "^2.1.6",
59
- "@smithy/util-middleware": "^3.0.10",
60
- "@smithy/util-retry": "^3.0.10",
56
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
57
+ "@smithy/util-defaults-mode-node": "^3.0.30",
58
+ "@smithy/util-endpoints": "^2.1.7",
59
+ "@smithy/util-middleware": "^3.0.11",
60
+ "@smithy/util-retry": "^3.0.11",
61
61
  "@smithy/util-utf8": "^3.0.0",
62
62
  "tslib": "^2.6.2"
63
63
  },