@@ -72,6 +72,11 @@ import {
72
72
CreateImportJobCommandInput ,
73
73
CreateImportJobCommandOutput ,
74
74
} from "./commands/CreateImportJobCommand" ;
75
+ import {
76
+ CreateMultiRegionEndpointCommand ,
77
+ CreateMultiRegionEndpointCommandInput ,
78
+ CreateMultiRegionEndpointCommandOutput ,
79
+ } from "./commands/CreateMultiRegionEndpointCommand" ;
75
80
import {
76
81
DeleteConfigurationSetCommand ,
77
82
DeleteConfigurationSetCommandInput ,
@@ -117,6 +122,11 @@ import {
117
122
DeleteEmailTemplateCommandInput ,
118
123
DeleteEmailTemplateCommandOutput ,
119
124
} from "./commands/DeleteEmailTemplateCommand" ;
125
+ import {
126
+ DeleteMultiRegionEndpointCommand ,
127
+ DeleteMultiRegionEndpointCommandInput ,
128
+ DeleteMultiRegionEndpointCommandOutput ,
129
+ } from "./commands/DeleteMultiRegionEndpointCommand" ;
120
130
import {
121
131
DeleteSuppressedDestinationCommand ,
122
132
DeleteSuppressedDestinationCommandInput ,
@@ -214,6 +224,11 @@ import {
214
224
GetMessageInsightsCommandInput ,
215
225
GetMessageInsightsCommandOutput ,
216
226
} from "./commands/GetMessageInsightsCommand" ;
227
+ import {
228
+ GetMultiRegionEndpointCommand ,
229
+ GetMultiRegionEndpointCommandInput ,
230
+ GetMultiRegionEndpointCommandOutput ,
231
+ } from "./commands/GetMultiRegionEndpointCommand" ;
217
232
import {
218
233
GetSuppressedDestinationCommand ,
219
234
GetSuppressedDestinationCommandInput ,
@@ -274,6 +289,11 @@ import {
274
289
ListImportJobsCommandInput ,
275
290
ListImportJobsCommandOutput ,
276
291
} from "./commands/ListImportJobsCommand" ;
292
+ import {
293
+ ListMultiRegionEndpointsCommand ,
294
+ ListMultiRegionEndpointsCommandInput ,
295
+ ListMultiRegionEndpointsCommandOutput ,
296
+ } from "./commands/ListMultiRegionEndpointsCommand" ;
277
297
import {
278
298
ListRecommendationsCommand ,
279
299
ListRecommendationsCommandInput ,
@@ -463,6 +483,7 @@ const commands = {
463
483
CreateEmailTemplateCommand,
464
484
CreateExportJobCommand,
465
485
CreateImportJobCommand,
486
+ CreateMultiRegionEndpointCommand,
466
487
DeleteConfigurationSetCommand,
467
488
DeleteConfigurationSetEventDestinationCommand,
468
489
DeleteContactCommand,
@@ -472,6 +493,7 @@ const commands = {
472
493
DeleteEmailIdentityCommand,
473
494
DeleteEmailIdentityPolicyCommand,
474
495
DeleteEmailTemplateCommand,
496
+ DeleteMultiRegionEndpointCommand,
475
497
DeleteSuppressedDestinationCommand,
476
498
GetAccountCommand,
477
499
GetBlacklistReportsCommand,
@@ -493,6 +515,7 @@ const commands = {
493
515
GetExportJobCommand,
494
516
GetImportJobCommand,
495
517
GetMessageInsightsCommand,
518
+ GetMultiRegionEndpointCommand,
496
519
GetSuppressedDestinationCommand,
497
520
ListConfigurationSetsCommand,
498
521
ListContactListsCommand,
@@ -505,6 +528,7 @@ const commands = {
505
528
ListEmailTemplatesCommand,
506
529
ListExportJobsCommand,
507
530
ListImportJobsCommand,
531
+ ListMultiRegionEndpointsCommand,
508
532
ListRecommendationsCommand,
509
533
ListSuppressedDestinationsCommand,
510
534
ListTagsForResourceCommand,
@@ -767,6 +791,23 @@ export interface SESv2 {
767
791
cb : ( err : any , data ?: CreateImportJobCommandOutput ) => void
768
792
) : void ;
769
793
794
+ /**
795
+ * @see {@link CreateMultiRegionEndpointCommand }
796
+ */
797
+ createMultiRegionEndpoint (
798
+ args : CreateMultiRegionEndpointCommandInput ,
799
+ options ?: __HttpHandlerOptions
800
+ ) : Promise < CreateMultiRegionEndpointCommandOutput > ;
801
+ createMultiRegionEndpoint (
802
+ args : CreateMultiRegionEndpointCommandInput ,
803
+ cb : ( err : any , data ?: CreateMultiRegionEndpointCommandOutput ) => void
804
+ ) : void ;
805
+ createMultiRegionEndpoint (
806
+ args : CreateMultiRegionEndpointCommandInput ,
807
+ options : __HttpHandlerOptions ,
808
+ cb : ( err : any , data ?: CreateMultiRegionEndpointCommandOutput ) => void
809
+ ) : void ;
810
+
770
811
/**
771
812
* @see {@link DeleteConfigurationSetCommand }
772
813
*/
@@ -914,6 +955,23 @@ export interface SESv2 {
914
955
cb : ( err : any , data ?: DeleteEmailTemplateCommandOutput ) => void
915
956
) : void ;
916
957
958
+ /**
959
+ * @see {@link DeleteMultiRegionEndpointCommand }
960
+ */
961
+ deleteMultiRegionEndpoint (
962
+ args : DeleteMultiRegionEndpointCommandInput ,
963
+ options ?: __HttpHandlerOptions
964
+ ) : Promise < DeleteMultiRegionEndpointCommandOutput > ;
965
+ deleteMultiRegionEndpoint (
966
+ args : DeleteMultiRegionEndpointCommandInput ,
967
+ cb : ( err : any , data ?: DeleteMultiRegionEndpointCommandOutput ) => void
968
+ ) : void ;
969
+ deleteMultiRegionEndpoint (
970
+ args : DeleteMultiRegionEndpointCommandInput ,
971
+ options : __HttpHandlerOptions ,
972
+ cb : ( err : any , data ?: DeleteMultiRegionEndpointCommandOutput ) => void
973
+ ) : void ;
974
+
917
975
/**
918
976
* @see {@link DeleteSuppressedDestinationCommand }
919
977
*/
@@ -1241,6 +1299,23 @@ export interface SESv2 {
1241
1299
cb : ( err : any , data ?: GetMessageInsightsCommandOutput ) => void
1242
1300
) : void ;
1243
1301
1302
+ /**
1303
+ * @see {@link GetMultiRegionEndpointCommand }
1304
+ */
1305
+ getMultiRegionEndpoint (
1306
+ args : GetMultiRegionEndpointCommandInput ,
1307
+ options ?: __HttpHandlerOptions
1308
+ ) : Promise < GetMultiRegionEndpointCommandOutput > ;
1309
+ getMultiRegionEndpoint (
1310
+ args : GetMultiRegionEndpointCommandInput ,
1311
+ cb : ( err : any , data ?: GetMultiRegionEndpointCommandOutput ) => void
1312
+ ) : void ;
1313
+ getMultiRegionEndpoint (
1314
+ args : GetMultiRegionEndpointCommandInput ,
1315
+ options : __HttpHandlerOptions ,
1316
+ cb : ( err : any , data ?: GetMultiRegionEndpointCommandOutput ) => void
1317
+ ) : void ;
1318
+
1244
1319
/**
1245
1320
* @see {@link GetSuppressedDestinationCommand }
1246
1321
*/
@@ -1442,6 +1517,24 @@ export interface SESv2 {
1442
1517
cb : ( err : any , data ?: ListImportJobsCommandOutput ) => void
1443
1518
) : void ;
1444
1519
1520
+ /**
1521
+ * @see {@link ListMultiRegionEndpointsCommand }
1522
+ */
1523
+ listMultiRegionEndpoints ( ) : Promise < ListMultiRegionEndpointsCommandOutput > ;
1524
+ listMultiRegionEndpoints (
1525
+ args : ListMultiRegionEndpointsCommandInput ,
1526
+ options ?: __HttpHandlerOptions
1527
+ ) : Promise < ListMultiRegionEndpointsCommandOutput > ;
1528
+ listMultiRegionEndpoints (
1529
+ args : ListMultiRegionEndpointsCommandInput ,
1530
+ cb : ( err : any , data ?: ListMultiRegionEndpointsCommandOutput ) => void
1531
+ ) : void ;
1532
+ listMultiRegionEndpoints (
1533
+ args : ListMultiRegionEndpointsCommandInput ,
1534
+ options : __HttpHandlerOptions ,
1535
+ cb : ( err : any , data ?: ListMultiRegionEndpointsCommandOutput ) => void
1536
+ ) : void ;
1537
+
1445
1538
/**
1446
1539
* @see {@link ListRecommendationsCommand }
1447
1540
*/
0 commit comments