@@ -72,6 +72,11 @@ import {
7272 CreateImportJobCommandInput ,
7373 CreateImportJobCommandOutput ,
7474} from "./commands/CreateImportJobCommand" ;
75+ import {
76+ CreateMultiRegionEndpointCommand ,
77+ CreateMultiRegionEndpointCommandInput ,
78+ CreateMultiRegionEndpointCommandOutput ,
79+ } from "./commands/CreateMultiRegionEndpointCommand" ;
7580import {
7681 DeleteConfigurationSetCommand ,
7782 DeleteConfigurationSetCommandInput ,
@@ -117,6 +122,11 @@ import {
117122 DeleteEmailTemplateCommandInput ,
118123 DeleteEmailTemplateCommandOutput ,
119124} from "./commands/DeleteEmailTemplateCommand" ;
125+ import {
126+ DeleteMultiRegionEndpointCommand ,
127+ DeleteMultiRegionEndpointCommandInput ,
128+ DeleteMultiRegionEndpointCommandOutput ,
129+ } from "./commands/DeleteMultiRegionEndpointCommand" ;
120130import {
121131 DeleteSuppressedDestinationCommand ,
122132 DeleteSuppressedDestinationCommandInput ,
@@ -214,6 +224,11 @@ import {
214224 GetMessageInsightsCommandInput ,
215225 GetMessageInsightsCommandOutput ,
216226} from "./commands/GetMessageInsightsCommand" ;
227+ import {
228+ GetMultiRegionEndpointCommand ,
229+ GetMultiRegionEndpointCommandInput ,
230+ GetMultiRegionEndpointCommandOutput ,
231+ } from "./commands/GetMultiRegionEndpointCommand" ;
217232import {
218233 GetSuppressedDestinationCommand ,
219234 GetSuppressedDestinationCommandInput ,
@@ -274,6 +289,11 @@ import {
274289 ListImportJobsCommandInput ,
275290 ListImportJobsCommandOutput ,
276291} from "./commands/ListImportJobsCommand" ;
292+ import {
293+ ListMultiRegionEndpointsCommand ,
294+ ListMultiRegionEndpointsCommandInput ,
295+ ListMultiRegionEndpointsCommandOutput ,
296+ } from "./commands/ListMultiRegionEndpointsCommand" ;
277297import {
278298 ListRecommendationsCommand ,
279299 ListRecommendationsCommandInput ,
@@ -463,6 +483,7 @@ const commands = {
463483 CreateEmailTemplateCommand,
464484 CreateExportJobCommand,
465485 CreateImportJobCommand,
486+ CreateMultiRegionEndpointCommand,
466487 DeleteConfigurationSetCommand,
467488 DeleteConfigurationSetEventDestinationCommand,
468489 DeleteContactCommand,
@@ -472,6 +493,7 @@ const commands = {
472493 DeleteEmailIdentityCommand,
473494 DeleteEmailIdentityPolicyCommand,
474495 DeleteEmailTemplateCommand,
496+ DeleteMultiRegionEndpointCommand,
475497 DeleteSuppressedDestinationCommand,
476498 GetAccountCommand,
477499 GetBlacklistReportsCommand,
@@ -493,6 +515,7 @@ const commands = {
493515 GetExportJobCommand,
494516 GetImportJobCommand,
495517 GetMessageInsightsCommand,
518+ GetMultiRegionEndpointCommand,
496519 GetSuppressedDestinationCommand,
497520 ListConfigurationSetsCommand,
498521 ListContactListsCommand,
@@ -505,6 +528,7 @@ const commands = {
505528 ListEmailTemplatesCommand,
506529 ListExportJobsCommand,
507530 ListImportJobsCommand,
531+ ListMultiRegionEndpointsCommand,
508532 ListRecommendationsCommand,
509533 ListSuppressedDestinationsCommand,
510534 ListTagsForResourceCommand,
@@ -767,6 +791,23 @@ export interface SESv2 {
767791 cb : ( err : any , data ?: CreateImportJobCommandOutput ) => void
768792 ) : void ;
769793
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+
770811 /**
771812 * @see {@link DeleteConfigurationSetCommand }
772813 */
@@ -914,6 +955,23 @@ export interface SESv2 {
914955 cb : ( err : any , data ?: DeleteEmailTemplateCommandOutput ) => void
915956 ) : void ;
916957
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+
917975 /**
918976 * @see {@link DeleteSuppressedDestinationCommand }
919977 */
@@ -1241,6 +1299,23 @@ export interface SESv2 {
12411299 cb : ( err : any , data ?: GetMessageInsightsCommandOutput ) => void
12421300 ) : void ;
12431301
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+
12441319 /**
12451320 * @see {@link GetSuppressedDestinationCommand }
12461321 */
@@ -1442,6 +1517,24 @@ export interface SESv2 {
14421517 cb : ( err : any , data ?: ListImportJobsCommandOutput ) => void
14431518 ) : void ;
14441519
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+
14451538 /**
14461539 * @see {@link ListRecommendationsCommand }
14471540 */
0 commit comments