@aws-sdk/client-sesv2 3.395.0 → 3.402.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 (96) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/SESv2.js +10 -0
  3. package/dist-cjs/commands/CancelExportJobCommand.js +46 -0
  4. package/dist-cjs/commands/CreateExportJobCommand.js +47 -0
  5. package/dist-cjs/commands/GetExportJobCommand.js +47 -0
  6. package/dist-cjs/commands/GetMessageInsightsCommand.js +47 -0
  7. package/dist-cjs/commands/ListExportJobsCommand.js +46 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/endpoint/ruleset.js +1 -1
  10. package/dist-cjs/models/index.js +1 -0
  11. package/dist-cjs/models/models_0.js +76 -8
  12. package/dist-cjs/models/models_1.js +2 -0
  13. package/dist-cjs/pagination/ListExportJobsPaginator.js +29 -0
  14. package/dist-cjs/pagination/index.js +1 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +405 -4
  16. package/dist-cjs/runtimeExtensions.js +5 -5
  17. package/dist-es/SESv2.js +10 -0
  18. package/dist-es/commands/CancelExportJobCommand.js +42 -0
  19. package/dist-es/commands/CreateExportJobCommand.js +43 -0
  20. package/dist-es/commands/GetExportJobCommand.js +43 -0
  21. package/dist-es/commands/GetMessageInsightsCommand.js +43 -0
  22. package/dist-es/commands/ListExportJobsCommand.js +42 -0
  23. package/dist-es/commands/index.js +5 -0
  24. package/dist-es/endpoint/ruleset.js +1 -1
  25. package/dist-es/models/index.js +1 -0
  26. package/dist-es/models/models_0.js +67 -6
  27. package/dist-es/models/models_1.js +1 -0
  28. package/dist-es/pagination/ListExportJobsPaginator.js +25 -0
  29. package/dist-es/pagination/index.js +1 -0
  30. package/dist-es/protocols/Aws_restJson1.js +391 -0
  31. package/dist-es/runtimeExtensions.js +5 -5
  32. package/dist-types/SESv2.d.ts +35 -0
  33. package/dist-types/SESv2Client.d.ts +7 -2
  34. package/dist-types/commands/CancelExportJobCommand.d.ts +80 -0
  35. package/dist-types/commands/CreateExportJobCommand.d.ts +152 -0
  36. package/dist-types/commands/GetExportJobCommand.d.ts +161 -0
  37. package/dist-types/commands/GetImportJobCommand.d.ts +1 -1
  38. package/dist-types/commands/GetMessageInsightsCommand.d.ts +115 -0
  39. package/dist-types/commands/ListExportJobsCommand.d.ts +91 -0
  40. package/dist-types/commands/ListImportJobsCommand.d.ts +1 -1
  41. package/dist-types/commands/PutSuppressedDestinationCommand.d.ts +2 -1
  42. package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -1
  43. package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
  44. package/dist-types/commands/SendEmailCommand.d.ts +1 -1
  45. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  46. package/dist-types/commands/TestRenderEmailTemplateCommand.d.ts +1 -1
  47. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  48. package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +1 -1
  49. package/dist-types/commands/UpdateContactCommand.d.ts +1 -1
  50. package/dist-types/commands/UpdateContactListCommand.d.ts +1 -1
  51. package/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +1 -1
  52. package/dist-types/commands/UpdateEmailIdentityPolicyCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateEmailTemplateCommand.d.ts +1 -1
  54. package/dist-types/commands/index.d.ts +5 -0
  55. package/dist-types/extensionConfiguration.d.ts +6 -0
  56. package/dist-types/models/index.d.ts +1 -0
  57. package/dist-types/models/models_0.d.ts +811 -558
  58. package/dist-types/models/models_1.d.ts +523 -0
  59. package/dist-types/pagination/ListExportJobsPaginator.d.ts +7 -0
  60. package/dist-types/pagination/index.d.ts +1 -0
  61. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  62. package/dist-types/runtimeExtensions.d.ts +2 -2
  63. package/dist-types/ts3.4/SESv2.d.ts +85 -0
  64. package/dist-types/ts3.4/SESv2Client.d.ts +30 -0
  65. package/dist-types/ts3.4/commands/CancelExportJobCommand.d.ts +38 -0
  66. package/dist-types/ts3.4/commands/CreateExportJobCommand.d.ts +38 -0
  67. package/dist-types/ts3.4/commands/GetExportJobCommand.d.ts +35 -0
  68. package/dist-types/ts3.4/commands/GetMessageInsightsCommand.d.ts +39 -0
  69. package/dist-types/ts3.4/commands/ListExportJobsCommand.d.ts +38 -0
  70. package/dist-types/ts3.4/commands/PutSuppressedDestinationCommand.d.ts +2 -4
  71. package/dist-types/ts3.4/commands/SendBulkEmailCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
  73. package/dist-types/ts3.4/commands/SendEmailCommand.d.ts +1 -1
  74. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  75. package/dist-types/ts3.4/commands/TestRenderEmailTemplateCommand.d.ts +1 -1
  76. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +1 -1
  78. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +1 -1
  79. package/dist-types/ts3.4/commands/UpdateContactListCommand.d.ts +1 -1
  80. package/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/UpdateEmailIdentityPolicyCommand.d.ts +1 -1
  82. package/dist-types/ts3.4/commands/UpdateEmailTemplateCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  84. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
  85. package/dist-types/ts3.4/models/index.d.ts +1 -0
  86. package/dist-types/ts3.4/models/models_0.d.ts +176 -102
  87. package/dist-types/ts3.4/models/models_1.d.ts +109 -0
  88. package/dist-types/ts3.4/pagination/ListExportJobsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  90. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  91. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -2
  92. package/package.json +29 -29
  93. package/dist-types/clientConfiguration.d.ts +0 -6
  94. package/dist-types/ts3.4/clientConfiguration.d.ts +0 -2
  95. /package/dist-cjs/{clientConfiguration.js → extensionConfiguration.js} +0 -0
  96. /package/dist-es/{clientConfiguration.js → extensionConfiguration.js} +0 -0
@@ -1,9 +1,9 @@
1
- import { SESv2ClientConfiguration } from "./clientConfiguration";
1
+ import { SESv2ExtensionConfiguration } from "./extensionConfiguration";
2
2
  /**
3
3
  * @public
4
4
  */
5
5
  export interface RuntimeExtension {
6
- configureClient(clientConfiguration: SESv2ClientConfiguration): void;
6
+ configure(clientConfiguration: SESv2ExtensionConfiguration): void;
7
7
  }
8
8
  /**
9
9
  * @public
@@ -3,6 +3,10 @@ import {
3
3
  BatchGetMetricDataCommandInput,
4
4
  BatchGetMetricDataCommandOutput,
5
5
  } from "./commands/BatchGetMetricDataCommand";
6
+ import {
7
+ CancelExportJobCommandInput,
8
+ CancelExportJobCommandOutput,
9
+ } from "./commands/CancelExportJobCommand";
6
10
  import {
7
11
  CreateConfigurationSetCommandInput,
8
12
  CreateConfigurationSetCommandOutput,
@@ -43,6 +47,10 @@ import {
43
47
  CreateEmailTemplateCommandInput,
44
48
  CreateEmailTemplateCommandOutput,
45
49
  } from "./commands/CreateEmailTemplateCommand";
50
+ import {
51
+ CreateExportJobCommandInput,
52
+ CreateExportJobCommandOutput,
53
+ } from "./commands/CreateExportJobCommand";
46
54
  import {
47
55
  CreateImportJobCommandInput,
48
56
  CreateImportJobCommandOutput,
@@ -155,10 +163,18 @@ import {
155
163
  GetEmailTemplateCommandInput,
156
164
  GetEmailTemplateCommandOutput,
157
165
  } from "./commands/GetEmailTemplateCommand";
166
+ import {
167
+ GetExportJobCommandInput,
168
+ GetExportJobCommandOutput,
169
+ } from "./commands/GetExportJobCommand";
158
170
  import {
159
171
  GetImportJobCommandInput,
160
172
  GetImportJobCommandOutput,
161
173
  } from "./commands/GetImportJobCommand";
174
+ import {
175
+ GetMessageInsightsCommandInput,
176
+ GetMessageInsightsCommandOutput,
177
+ } from "./commands/GetMessageInsightsCommand";
162
178
  import {
163
179
  GetSuppressedDestinationCommandInput,
164
180
  GetSuppressedDestinationCommandOutput,
@@ -199,6 +215,10 @@ import {
199
215
  ListEmailTemplatesCommandInput,
200
216
  ListEmailTemplatesCommandOutput,
201
217
  } from "./commands/ListEmailTemplatesCommand";
218
+ import {
219
+ ListExportJobsCommandInput,
220
+ ListExportJobsCommandOutput,
221
+ } from "./commands/ListExportJobsCommand";
202
222
  import {
203
223
  ListImportJobsCommandInput,
204
224
  ListImportJobsCommandOutput,
@@ -362,6 +382,19 @@ export interface SESv2 {
362
382
  options: __HttpHandlerOptions,
363
383
  cb: (err: any, data?: BatchGetMetricDataCommandOutput) => void
364
384
  ): void;
385
+ cancelExportJob(
386
+ args: CancelExportJobCommandInput,
387
+ options?: __HttpHandlerOptions
388
+ ): Promise<CancelExportJobCommandOutput>;
389
+ cancelExportJob(
390
+ args: CancelExportJobCommandInput,
391
+ cb: (err: any, data?: CancelExportJobCommandOutput) => void
392
+ ): void;
393
+ cancelExportJob(
394
+ args: CancelExportJobCommandInput,
395
+ options: __HttpHandlerOptions,
396
+ cb: (err: any, data?: CancelExportJobCommandOutput) => void
397
+ ): void;
365
398
  createConfigurationSet(
366
399
  args: CreateConfigurationSetCommandInput,
367
400
  options?: __HttpHandlerOptions
@@ -504,6 +537,19 @@ export interface SESv2 {
504
537
  options: __HttpHandlerOptions,
505
538
  cb: (err: any, data?: CreateEmailTemplateCommandOutput) => void
506
539
  ): void;
540
+ createExportJob(
541
+ args: CreateExportJobCommandInput,
542
+ options?: __HttpHandlerOptions
543
+ ): Promise<CreateExportJobCommandOutput>;
544
+ createExportJob(
545
+ args: CreateExportJobCommandInput,
546
+ cb: (err: any, data?: CreateExportJobCommandOutput) => void
547
+ ): void;
548
+ createExportJob(
549
+ args: CreateExportJobCommandInput,
550
+ options: __HttpHandlerOptions,
551
+ cb: (err: any, data?: CreateExportJobCommandOutput) => void
552
+ ): void;
507
553
  createImportJob(
508
554
  args: CreateImportJobCommandInput,
509
555
  options?: __HttpHandlerOptions
@@ -898,6 +944,19 @@ export interface SESv2 {
898
944
  options: __HttpHandlerOptions,
899
945
  cb: (err: any, data?: GetEmailTemplateCommandOutput) => void
900
946
  ): void;
947
+ getExportJob(
948
+ args: GetExportJobCommandInput,
949
+ options?: __HttpHandlerOptions
950
+ ): Promise<GetExportJobCommandOutput>;
951
+ getExportJob(
952
+ args: GetExportJobCommandInput,
953
+ cb: (err: any, data?: GetExportJobCommandOutput) => void
954
+ ): void;
955
+ getExportJob(
956
+ args: GetExportJobCommandInput,
957
+ options: __HttpHandlerOptions,
958
+ cb: (err: any, data?: GetExportJobCommandOutput) => void
959
+ ): void;
901
960
  getImportJob(
902
961
  args: GetImportJobCommandInput,
903
962
  options?: __HttpHandlerOptions
@@ -911,6 +970,19 @@ export interface SESv2 {
911
970
  options: __HttpHandlerOptions,
912
971
  cb: (err: any, data?: GetImportJobCommandOutput) => void
913
972
  ): void;
973
+ getMessageInsights(
974
+ args: GetMessageInsightsCommandInput,
975
+ options?: __HttpHandlerOptions
976
+ ): Promise<GetMessageInsightsCommandOutput>;
977
+ getMessageInsights(
978
+ args: GetMessageInsightsCommandInput,
979
+ cb: (err: any, data?: GetMessageInsightsCommandOutput) => void
980
+ ): void;
981
+ getMessageInsights(
982
+ args: GetMessageInsightsCommandInput,
983
+ options: __HttpHandlerOptions,
984
+ cb: (err: any, data?: GetMessageInsightsCommandOutput) => void
985
+ ): void;
914
986
  getSuppressedDestination(
915
987
  args: GetSuppressedDestinationCommandInput,
916
988
  options?: __HttpHandlerOptions
@@ -1053,6 +1125,19 @@ export interface SESv2 {
1053
1125
  options: __HttpHandlerOptions,
1054
1126
  cb: (err: any, data?: ListEmailTemplatesCommandOutput) => void
1055
1127
  ): void;
1128
+ listExportJobs(
1129
+ args: ListExportJobsCommandInput,
1130
+ options?: __HttpHandlerOptions
1131
+ ): Promise<ListExportJobsCommandOutput>;
1132
+ listExportJobs(
1133
+ args: ListExportJobsCommandInput,
1134
+ cb: (err: any, data?: ListExportJobsCommandOutput) => void
1135
+ ): void;
1136
+ listExportJobs(
1137
+ args: ListExportJobsCommandInput,
1138
+ options: __HttpHandlerOptions,
1139
+ cb: (err: any, data?: ListExportJobsCommandOutput) => void
1140
+ ): void;
1056
1141
  listImportJobs(
1057
1142
  args: ListImportJobsCommandInput,
1058
1143
  options?: __HttpHandlerOptions
@@ -49,6 +49,10 @@ import {
49
49
  BatchGetMetricDataCommandInput,
50
50
  BatchGetMetricDataCommandOutput,
51
51
  } from "./commands/BatchGetMetricDataCommand";
52
+ import {
53
+ CancelExportJobCommandInput,
54
+ CancelExportJobCommandOutput,
55
+ } from "./commands/CancelExportJobCommand";
52
56
  import {
53
57
  CreateConfigurationSetCommandInput,
54
58
  CreateConfigurationSetCommandOutput,
@@ -89,6 +93,10 @@ import {
89
93
  CreateEmailTemplateCommandInput,
90
94
  CreateEmailTemplateCommandOutput,
91
95
  } from "./commands/CreateEmailTemplateCommand";
96
+ import {
97
+ CreateExportJobCommandInput,
98
+ CreateExportJobCommandOutput,
99
+ } from "./commands/CreateExportJobCommand";
92
100
  import {
93
101
  CreateImportJobCommandInput,
94
102
  CreateImportJobCommandOutput,
@@ -201,10 +209,18 @@ import {
201
209
  GetEmailTemplateCommandInput,
202
210
  GetEmailTemplateCommandOutput,
203
211
  } from "./commands/GetEmailTemplateCommand";
212
+ import {
213
+ GetExportJobCommandInput,
214
+ GetExportJobCommandOutput,
215
+ } from "./commands/GetExportJobCommand";
204
216
  import {
205
217
  GetImportJobCommandInput,
206
218
  GetImportJobCommandOutput,
207
219
  } from "./commands/GetImportJobCommand";
220
+ import {
221
+ GetMessageInsightsCommandInput,
222
+ GetMessageInsightsCommandOutput,
223
+ } from "./commands/GetMessageInsightsCommand";
208
224
  import {
209
225
  GetSuppressedDestinationCommandInput,
210
226
  GetSuppressedDestinationCommandOutput,
@@ -245,6 +261,10 @@ import {
245
261
  ListEmailTemplatesCommandInput,
246
262
  ListEmailTemplatesCommandOutput,
247
263
  } from "./commands/ListEmailTemplatesCommand";
264
+ import {
265
+ ListExportJobsCommandInput,
266
+ ListExportJobsCommandOutput,
267
+ } from "./commands/ListExportJobsCommand";
248
268
  import {
249
269
  ListImportJobsCommandInput,
250
270
  ListImportJobsCommandOutput,
@@ -402,6 +422,7 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
402
422
  export { __Client };
403
423
  export type ServiceInputTypes =
404
424
  | BatchGetMetricDataCommandInput
425
+ | CancelExportJobCommandInput
405
426
  | CreateConfigurationSetCommandInput
406
427
  | CreateConfigurationSetEventDestinationCommandInput
407
428
  | CreateContactCommandInput
@@ -412,6 +433,7 @@ export type ServiceInputTypes =
412
433
  | CreateEmailIdentityCommandInput
413
434
  | CreateEmailIdentityPolicyCommandInput
414
435
  | CreateEmailTemplateCommandInput
436
+ | CreateExportJobCommandInput
415
437
  | CreateImportJobCommandInput
416
438
  | DeleteConfigurationSetCommandInput
417
439
  | DeleteConfigurationSetEventDestinationCommandInput
@@ -440,7 +462,9 @@ export type ServiceInputTypes =
440
462
  | GetEmailIdentityCommandInput
441
463
  | GetEmailIdentityPoliciesCommandInput
442
464
  | GetEmailTemplateCommandInput
465
+ | GetExportJobCommandInput
443
466
  | GetImportJobCommandInput
467
+ | GetMessageInsightsCommandInput
444
468
  | GetSuppressedDestinationCommandInput
445
469
  | ListConfigurationSetsCommandInput
446
470
  | ListContactListsCommandInput
@@ -451,6 +475,7 @@ export type ServiceInputTypes =
451
475
  | ListDomainDeliverabilityCampaignsCommandInput
452
476
  | ListEmailIdentitiesCommandInput
453
477
  | ListEmailTemplatesCommandInput
478
+ | ListExportJobsCommandInput
454
479
  | ListImportJobsCommandInput
455
480
  | ListRecommendationsCommandInput
456
481
  | ListSuppressedDestinationsCommandInput
@@ -490,6 +515,7 @@ export type ServiceInputTypes =
490
515
  | UpdateEmailTemplateCommandInput;
491
516
  export type ServiceOutputTypes =
492
517
  | BatchGetMetricDataCommandOutput
518
+ | CancelExportJobCommandOutput
493
519
  | CreateConfigurationSetCommandOutput
494
520
  | CreateConfigurationSetEventDestinationCommandOutput
495
521
  | CreateContactCommandOutput
@@ -500,6 +526,7 @@ export type ServiceOutputTypes =
500
526
  | CreateEmailIdentityCommandOutput
501
527
  | CreateEmailIdentityPolicyCommandOutput
502
528
  | CreateEmailTemplateCommandOutput
529
+ | CreateExportJobCommandOutput
503
530
  | CreateImportJobCommandOutput
504
531
  | DeleteConfigurationSetCommandOutput
505
532
  | DeleteConfigurationSetEventDestinationCommandOutput
@@ -528,7 +555,9 @@ export type ServiceOutputTypes =
528
555
  | GetEmailIdentityCommandOutput
529
556
  | GetEmailIdentityPoliciesCommandOutput
530
557
  | GetEmailTemplateCommandOutput
558
+ | GetExportJobCommandOutput
531
559
  | GetImportJobCommandOutput
560
+ | GetMessageInsightsCommandOutput
532
561
  | GetSuppressedDestinationCommandOutput
533
562
  | ListConfigurationSetsCommandOutput
534
563
  | ListContactListsCommandOutput
@@ -539,6 +568,7 @@ export type ServiceOutputTypes =
539
568
  | ListDomainDeliverabilityCampaignsCommandOutput
540
569
  | ListEmailIdentitiesCommandOutput
541
570
  | ListEmailTemplatesCommandOutput
571
+ | ListExportJobsCommandOutput
542
572
  | ListImportJobsCommandOutput
543
573
  | ListRecommendationsCommandOutput
544
574
  | ListSuppressedDestinationsCommandOutput
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CancelExportJobRequest,
11
+ CancelExportJobResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SESv2ClientResolvedConfig,
17
+ } from "../SESv2Client";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CancelExportJobCommandInput extends CancelExportJobRequest {}
20
+ export interface CancelExportJobCommandOutput
21
+ extends CancelExportJobResponse,
22
+ __MetadataBearer {}
23
+ export declare class CancelExportJobCommand extends $Command<
24
+ CancelExportJobCommandInput,
25
+ CancelExportJobCommandOutput,
26
+ SESv2ClientResolvedConfig
27
+ > {
28
+ readonly input: CancelExportJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CancelExportJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SESv2ClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CancelExportJobCommandInput, CancelExportJobCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateExportJobRequest,
11
+ CreateExportJobResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SESv2ClientResolvedConfig,
17
+ } from "../SESv2Client";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateExportJobCommandInput extends CreateExportJobRequest {}
20
+ export interface CreateExportJobCommandOutput
21
+ extends CreateExportJobResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateExportJobCommand extends $Command<
24
+ CreateExportJobCommandInput,
25
+ CreateExportJobCommandOutput,
26
+ SESv2ClientResolvedConfig
27
+ > {
28
+ readonly input: CreateExportJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateExportJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SESv2ClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateExportJobCommandInput, CreateExportJobCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { GetExportJobRequest, GetExportJobResponse } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SESv2ClientResolvedConfig,
14
+ } from "../SESv2Client";
15
+ export { __MetadataBearer, $Command };
16
+ export interface GetExportJobCommandInput extends GetExportJobRequest {}
17
+ export interface GetExportJobCommandOutput
18
+ extends GetExportJobResponse,
19
+ __MetadataBearer {}
20
+ export declare class GetExportJobCommand extends $Command<
21
+ GetExportJobCommandInput,
22
+ GetExportJobCommandOutput,
23
+ SESv2ClientResolvedConfig
24
+ > {
25
+ readonly input: GetExportJobCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: GetExportJobCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SESv2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetExportJobCommandInput, GetExportJobCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GetMessageInsightsRequest,
11
+ GetMessageInsightsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SESv2ClientResolvedConfig,
17
+ } from "../SESv2Client";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetMessageInsightsCommandInput
20
+ extends GetMessageInsightsRequest {}
21
+ export interface GetMessageInsightsCommandOutput
22
+ extends GetMessageInsightsResponse,
23
+ __MetadataBearer {}
24
+ export declare class GetMessageInsightsCommand extends $Command<
25
+ GetMessageInsightsCommandInput,
26
+ GetMessageInsightsCommandOutput,
27
+ SESv2ClientResolvedConfig
28
+ > {
29
+ readonly input: GetMessageInsightsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetMessageInsightsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: SESv2ClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<GetMessageInsightsCommandInput, GetMessageInsightsCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListExportJobsRequest,
11
+ ListExportJobsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SESv2ClientResolvedConfig,
17
+ } from "../SESv2Client";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListExportJobsCommandInput extends ListExportJobsRequest {}
20
+ export interface ListExportJobsCommandOutput
21
+ extends ListExportJobsResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListExportJobsCommand extends $Command<
24
+ ListExportJobsCommandInput,
25
+ ListExportJobsCommandOutput,
26
+ SESv2ClientResolvedConfig
27
+ > {
28
+ readonly input: ListExportJobsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListExportJobsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SESv2ClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListExportJobsCommandInput, ListExportJobsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -6,10 +6,8 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import {
10
- PutSuppressedDestinationRequest,
11
- PutSuppressedDestinationResponse,
12
- } from "../models/models_0";
9
+ import { PutSuppressedDestinationRequest } from "../models/models_0";
10
+ import { PutSuppressedDestinationResponse } from "../models/models_1";
13
11
  import {
14
12
  ServiceInputTypes,
15
13
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  SendBulkEmailRequest,
11
11
  SendBulkEmailResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  SendCustomVerificationEmailRequest,
11
11
  SendCustomVerificationEmailResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { SendEmailRequest, SendEmailResponse } from "../models/models_0";
9
+ import { SendEmailRequest, SendEmailResponse } from "../models/models_1";
10
10
  import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
10
10
  import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  TestRenderEmailTemplateRequest,
11
11
  TestRenderEmailTemplateResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UntagResourceRequest,
11
11
  UntagResourceResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateConfigurationSetEventDestinationRequest,
11
11
  UpdateConfigurationSetEventDestinationResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateContactRequest,
11
11
  UpdateContactResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateContactListRequest,
11
11
  UpdateContactListResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateCustomVerificationEmailTemplateRequest,
11
11
  UpdateCustomVerificationEmailTemplateResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateEmailIdentityPolicyRequest,
11
11
  UpdateEmailIdentityPolicyResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateEmailTemplateRequest,
11
11
  UpdateEmailTemplateResponse,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  ServiceInputTypes,
15
15
  ServiceOutputTypes,
@@ -1,4 +1,5 @@
1
1
  export * from "./BatchGetMetricDataCommand";
2
+ export * from "./CancelExportJobCommand";
2
3
  export * from "./CreateConfigurationSetCommand";
3
4
  export * from "./CreateConfigurationSetEventDestinationCommand";
4
5
  export * from "./CreateContactCommand";
@@ -9,6 +10,7 @@ export * from "./CreateDeliverabilityTestReportCommand";
9
10
  export * from "./CreateEmailIdentityCommand";
10
11
  export * from "./CreateEmailIdentityPolicyCommand";
11
12
  export * from "./CreateEmailTemplateCommand";
13
+ export * from "./CreateExportJobCommand";
12
14
  export * from "./CreateImportJobCommand";
13
15
  export * from "./DeleteConfigurationSetCommand";
14
16
  export * from "./DeleteConfigurationSetEventDestinationCommand";
@@ -37,7 +39,9 @@ export * from "./GetDomainStatisticsReportCommand";
37
39
  export * from "./GetEmailIdentityCommand";
38
40
  export * from "./GetEmailIdentityPoliciesCommand";
39
41
  export * from "./GetEmailTemplateCommand";
42
+ export * from "./GetExportJobCommand";
40
43
  export * from "./GetImportJobCommand";
44
+ export * from "./GetMessageInsightsCommand";
41
45
  export * from "./GetSuppressedDestinationCommand";
42
46
  export * from "./ListConfigurationSetsCommand";
43
47
  export * from "./ListContactListsCommand";
@@ -48,6 +52,7 @@ export * from "./ListDeliverabilityTestReportsCommand";
48
52
  export * from "./ListDomainDeliverabilityCampaignsCommand";
49
53
  export * from "./ListEmailIdentitiesCommand";
50
54
  export * from "./ListEmailTemplatesCommand";
55
+ export * from "./ListExportJobsCommand";
51
56
  export * from "./ListImportJobsCommand";
52
57
  export * from "./ListRecommendationsCommand";
53
58
  export * from "./ListSuppressedDestinationsCommand";
@@ -0,0 +1,3 @@
1
+ import { DefaultExtensionConfiguration } from "@smithy/types";
2
+ export interface SESv2ExtensionConfiguration
3
+ extends DefaultExtensionConfiguration {}
@@ -1 +1,2 @@
1
1
  export * from "./models_0";
2
+ export * from "./models_1";