@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.
- package/README.md +32 -0
- package/dist-cjs/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/index.js +258 -11
- package/dist-es/SESv2.js +8 -0
- package/dist-es/commands/CreateMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/DeleteMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/GetMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/ListMultiRegionEndpointsCommand.js +22 -0
- package/dist-es/commands/PutEmailIdentityDkimSigningAttributesCommand.js +1 -1
- package/dist-es/commands/SendBulkEmailCommand.js +4 -1
- package/dist-es/commands/SendEmailCommand.js +4 -1
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +37 -8
- package/dist-es/models/models_1.js +5 -1
- package/dist-es/pagination/ListMultiRegionEndpointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +128 -0
- package/dist-types/SESv2.d.ts +29 -0
- package/dist-types/SESv2Client.d.ts +6 -2
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +2 -1
- package/dist-types/commands/CreateMultiRegionEndpointCommand.d.ts +103 -0
- package/dist-types/commands/DeleteMultiRegionEndpointCommand.d.ts +85 -0
- package/dist-types/commands/GetEmailIdentityCommand.d.ts +2 -2
- package/dist-types/commands/GetMultiRegionEndpointCommand.d.ts +91 -0
- package/dist-types/commands/ListMultiRegionEndpointsCommand.d.ts +92 -0
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +3 -3
- package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -0
- package/dist-types/commands/SendEmailCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +730 -232
- package/dist-types/models/models_1.d.ts +206 -1
- package/dist-types/pagination/ListMultiRegionEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/SESv2.d.ts +69 -0
- package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMultiRegionEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -44
- package/dist-types/ts3.4/models/models_1.d.ts +44 -0
- package/dist-types/ts3.4/pagination/ListMultiRegionEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +36 -36
|
@@ -1,4 +1,195 @@
|
|
|
1
|
-
import { BehaviorOnMxFailure, BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, Destination, DkimStatus, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, SuppressionListReason, Tag, Topic, TopicPreference } from "./models_0";
|
|
1
|
+
import { BehaviorOnMxFailure, BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, Destination, DkimSigningAttributes, DkimSigningAttributesOrigin, DkimStatus, DomainDeliverabilityTrackingOption, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, ScalingMode, SuppressionListReason, Tag, Topic, TopicPreference } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* <p>A request to move a dedicated IP address to a dedicated IP pool.</p>
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface PutDedicatedIpInPoolRequest {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The IP address that you want to move to the dedicated IP pool. The value you specify
|
|
9
|
+
* has to be a dedicated IP address that's associated with your Amazon Web Services account.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
Ip: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The name of the IP pool that you want to add the dedicated IP address to. You have to
|
|
15
|
+
* specify an IP pool that already exists.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
DestinationPoolName: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
22
|
+
* fails.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export interface PutDedicatedIpInPoolResponse {
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>A request to convert a dedicated IP pool to a different scaling mode.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface PutDedicatedIpPoolScalingAttributesRequest {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The name of the dedicated IP pool.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
PoolName: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The scaling mode to apply to the dedicated IP pool.</p>
|
|
39
|
+
* <note>
|
|
40
|
+
* <p>Changing the scaling mode from <code>MANAGED</code> to <code>STANDARD</code> is not supported.</p>
|
|
41
|
+
* </note>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
ScalingMode: ScalingMode | undefined;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
48
|
+
* fails.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export interface PutDedicatedIpPoolScalingAttributesResponse {
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* <p>A request to change the warm-up attributes for a dedicated IP address. This operation
|
|
55
|
+
* is useful when you want to resume the warm-up process for an existing IP address.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export interface PutDedicatedIpWarmupAttributesRequest {
|
|
59
|
+
/**
|
|
60
|
+
* <p>The dedicated IP address that you want to update the warm-up attributes for.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Ip: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The warm-up percentage that you want to associate with the dedicated IP
|
|
66
|
+
* address.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
WarmupPercentage: number | undefined;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
73
|
+
* fails.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export interface PutDedicatedIpWarmupAttributesResponse {
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* <p>Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain
|
|
80
|
+
* access to reputation, deliverability, and other metrics for the domains that you use to
|
|
81
|
+
* send email using Amazon SES API v2. You also gain the ability to perform predictive inbox placement tests.</p>
|
|
82
|
+
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
83
|
+
* to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
|
|
84
|
+
* information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/pinpoint/pricing/">Amazon Pinpoint Pricing</a>.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export interface PutDeliverabilityDashboardOptionRequest {
|
|
88
|
+
/**
|
|
89
|
+
* <p>Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this
|
|
90
|
+
* value to <code>true</code>.</p>
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
DashboardEnabled: boolean | undefined;
|
|
94
|
+
/**
|
|
95
|
+
* <p>An array of objects, one for each verified domain that you use to send email and
|
|
96
|
+
* enabled the Deliverability dashboard for.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p>A response that indicates whether the Deliverability dashboard is enabled.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export interface PutDeliverabilityDashboardOptionResponse {
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>A request to associate a configuration set with an email identity.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface PutEmailIdentityConfigurationSetAttributesRequest {
|
|
112
|
+
/**
|
|
113
|
+
* <p>The email address or domain to associate with a configuration set.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
EmailIdentity: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The configuration set to associate with an email identity.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
ConfigurationSetName?: string | undefined;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty
|
|
125
|
+
* HTTP body.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export interface PutEmailIdentityConfigurationSetAttributesResponse {
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* <p>A request to enable or disable DKIM signing of email that you send from an email
|
|
132
|
+
* identity.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
export interface PutEmailIdentityDkimAttributesRequest {
|
|
136
|
+
/**
|
|
137
|
+
* <p>The email identity.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
EmailIdentity: string | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>Sets the DKIM signing configuration for the identity.</p>
|
|
143
|
+
* <p>When you set this value <code>true</code>, then the messages that are sent from the
|
|
144
|
+
* identity are signed using DKIM. If you set this value to <code>false</code>, your
|
|
145
|
+
* messages are sent without DKIM signing.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
SigningEnabled?: boolean | undefined;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
152
|
+
* fails.</p>
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
export interface PutEmailIdentityDkimAttributesResponse {
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* <p>A request to change the DKIM attributes for an email identity.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
162
|
+
/**
|
|
163
|
+
* <p>The email identity.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
EmailIdentity: string | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* <p>The method to use to configure DKIM for the identity. There are the following possible
|
|
169
|
+
* values:</p>
|
|
170
|
+
* <ul>
|
|
171
|
+
* <li>
|
|
172
|
+
* <p>
|
|
173
|
+
* <code>AWS_SES</code> – Configure DKIM for the identity by using <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
|
|
174
|
+
* DKIM</a>.</p>
|
|
175
|
+
* </li>
|
|
176
|
+
* <li>
|
|
177
|
+
* <p>
|
|
178
|
+
* <code>EXTERNAL</code> – Configure DKIM for the identity by using Bring
|
|
179
|
+
* Your Own DKIM (BYODKIM).</p>
|
|
180
|
+
* </li>
|
|
181
|
+
* </ul>
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* <p>An object that contains information about the private key and selector that you want
|
|
187
|
+
* to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the
|
|
188
|
+
* identity, or, configures the key length to be used for <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
192
|
+
}
|
|
2
193
|
/**
|
|
3
194
|
* <p>If the action is successful, the service sends back an HTTP 200 response.</p>
|
|
4
195
|
* <p>The following data is returned in JSON format by the service.</p>
|
|
@@ -245,6 +436,11 @@ export interface SendBulkEmailRequest {
|
|
|
245
436
|
* @public
|
|
246
437
|
*/
|
|
247
438
|
ConfigurationSetName?: string | undefined;
|
|
439
|
+
/**
|
|
440
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
EndpointId?: string | undefined;
|
|
248
444
|
}
|
|
249
445
|
/**
|
|
250
446
|
* <p>The following data is returned in JSON format by the service.</p>
|
|
@@ -375,6 +571,11 @@ export interface SendEmailRequest {
|
|
|
375
571
|
* @public
|
|
376
572
|
*/
|
|
377
573
|
ConfigurationSetName?: string | undefined;
|
|
574
|
+
/**
|
|
575
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
578
|
+
EndpointId?: string | undefined;
|
|
378
579
|
/**
|
|
379
580
|
* <p>An object used to specify a list or topic to which an email belongs, which will be
|
|
380
581
|
* used when a contact chooses to unsubscribe.</p>
|
|
@@ -682,3 +883,7 @@ export interface UpdateEmailTemplateRequest {
|
|
|
682
883
|
*/
|
|
683
884
|
export interface UpdateEmailTemplateResponse {
|
|
684
885
|
}
|
|
886
|
+
/**
|
|
887
|
+
* @internal
|
|
888
|
+
*/
|
|
889
|
+
export declare const PutEmailIdentityDkimSigningAttributesRequestFilterSensitiveLog: (obj: PutEmailIdentityDkimSigningAttributesRequest) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMultiRegionEndpointsCommandInput, ListMultiRegionEndpointsCommandOutput } from "../commands/ListMultiRegionEndpointsCommand";
|
|
3
|
+
import { SESv2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListMultiRegionEndpoints: (config: SESv2PaginationConfiguration, input: ListMultiRegionEndpointsCommandInput, ...rest: any[]) => Paginator<ListMultiRegionEndpointsCommandOutput>;
|
|
@@ -11,5 +11,6 @@ export * from "./ListEmailIdentitiesPaginator";
|
|
|
11
11
|
export * from "./ListEmailTemplatesPaginator";
|
|
12
12
|
export * from "./ListExportJobsPaginator";
|
|
13
13
|
export * from "./ListImportJobsPaginator";
|
|
14
|
+
export * from "./ListMultiRegionEndpointsPaginator";
|
|
14
15
|
export * from "./ListRecommendationsPaginator";
|
|
15
16
|
export * from "./ListSuppressedDestinationsPaginator";
|
|
@@ -14,6 +14,7 @@ import { CreateEmailIdentityPolicyCommandInput, CreateEmailIdentityPolicyCommand
|
|
|
14
14
|
import { CreateEmailTemplateCommandInput, CreateEmailTemplateCommandOutput } from "../commands/CreateEmailTemplateCommand";
|
|
15
15
|
import { CreateExportJobCommandInput, CreateExportJobCommandOutput } from "../commands/CreateExportJobCommand";
|
|
16
16
|
import { CreateImportJobCommandInput, CreateImportJobCommandOutput } from "../commands/CreateImportJobCommand";
|
|
17
|
+
import { CreateMultiRegionEndpointCommandInput, CreateMultiRegionEndpointCommandOutput } from "../commands/CreateMultiRegionEndpointCommand";
|
|
17
18
|
import { DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput } from "../commands/DeleteConfigurationSetCommand";
|
|
18
19
|
import { DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput } from "../commands/DeleteConfigurationSetEventDestinationCommand";
|
|
19
20
|
import { DeleteContactCommandInput, DeleteContactCommandOutput } from "../commands/DeleteContactCommand";
|
|
@@ -23,6 +24,7 @@ import { DeleteDedicatedIpPoolCommandInput, DeleteDedicatedIpPoolCommandOutput }
|
|
|
23
24
|
import { DeleteEmailIdentityCommandInput, DeleteEmailIdentityCommandOutput } from "../commands/DeleteEmailIdentityCommand";
|
|
24
25
|
import { DeleteEmailIdentityPolicyCommandInput, DeleteEmailIdentityPolicyCommandOutput } from "../commands/DeleteEmailIdentityPolicyCommand";
|
|
25
26
|
import { DeleteEmailTemplateCommandInput, DeleteEmailTemplateCommandOutput } from "../commands/DeleteEmailTemplateCommand";
|
|
27
|
+
import { DeleteMultiRegionEndpointCommandInput, DeleteMultiRegionEndpointCommandOutput } from "../commands/DeleteMultiRegionEndpointCommand";
|
|
26
28
|
import { DeleteSuppressedDestinationCommandInput, DeleteSuppressedDestinationCommandOutput } from "../commands/DeleteSuppressedDestinationCommand";
|
|
27
29
|
import { GetAccountCommandInput, GetAccountCommandOutput } from "../commands/GetAccountCommand";
|
|
28
30
|
import { GetBlacklistReportsCommandInput, GetBlacklistReportsCommandOutput } from "../commands/GetBlacklistReportsCommand";
|
|
@@ -44,6 +46,7 @@ import { GetEmailTemplateCommandInput, GetEmailTemplateCommandOutput } from "../
|
|
|
44
46
|
import { GetExportJobCommandInput, GetExportJobCommandOutput } from "../commands/GetExportJobCommand";
|
|
45
47
|
import { GetImportJobCommandInput, GetImportJobCommandOutput } from "../commands/GetImportJobCommand";
|
|
46
48
|
import { GetMessageInsightsCommandInput, GetMessageInsightsCommandOutput } from "../commands/GetMessageInsightsCommand";
|
|
49
|
+
import { GetMultiRegionEndpointCommandInput, GetMultiRegionEndpointCommandOutput } from "../commands/GetMultiRegionEndpointCommand";
|
|
47
50
|
import { GetSuppressedDestinationCommandInput, GetSuppressedDestinationCommandOutput } from "../commands/GetSuppressedDestinationCommand";
|
|
48
51
|
import { ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput } from "../commands/ListConfigurationSetsCommand";
|
|
49
52
|
import { ListContactListsCommandInput, ListContactListsCommandOutput } from "../commands/ListContactListsCommand";
|
|
@@ -56,6 +59,7 @@ import { ListEmailIdentitiesCommandInput, ListEmailIdentitiesCommandOutput } fro
|
|
|
56
59
|
import { ListEmailTemplatesCommandInput, ListEmailTemplatesCommandOutput } from "../commands/ListEmailTemplatesCommand";
|
|
57
60
|
import { ListExportJobsCommandInput, ListExportJobsCommandOutput } from "../commands/ListExportJobsCommand";
|
|
58
61
|
import { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "../commands/ListImportJobsCommand";
|
|
62
|
+
import { ListMultiRegionEndpointsCommandInput, ListMultiRegionEndpointsCommandOutput } from "../commands/ListMultiRegionEndpointsCommand";
|
|
59
63
|
import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "../commands/ListRecommendationsCommand";
|
|
60
64
|
import { ListSuppressedDestinationsCommandInput, ListSuppressedDestinationsCommandOutput } from "../commands/ListSuppressedDestinationsCommand";
|
|
61
65
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -148,6 +152,10 @@ export declare const se_CreateExportJobCommand: (input: CreateExportJobCommandIn
|
|
|
148
152
|
* serializeAws_restJson1CreateImportJobCommand
|
|
149
153
|
*/
|
|
150
154
|
export declare const se_CreateImportJobCommand: (input: CreateImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
155
|
+
/**
|
|
156
|
+
* serializeAws_restJson1CreateMultiRegionEndpointCommand
|
|
157
|
+
*/
|
|
158
|
+
export declare const se_CreateMultiRegionEndpointCommand: (input: CreateMultiRegionEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
151
159
|
/**
|
|
152
160
|
* serializeAws_restJson1DeleteConfigurationSetCommand
|
|
153
161
|
*/
|
|
@@ -184,6 +192,10 @@ export declare const se_DeleteEmailIdentityPolicyCommand: (input: DeleteEmailIde
|
|
|
184
192
|
* serializeAws_restJson1DeleteEmailTemplateCommand
|
|
185
193
|
*/
|
|
186
194
|
export declare const se_DeleteEmailTemplateCommand: (input: DeleteEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
195
|
+
/**
|
|
196
|
+
* serializeAws_restJson1DeleteMultiRegionEndpointCommand
|
|
197
|
+
*/
|
|
198
|
+
export declare const se_DeleteMultiRegionEndpointCommand: (input: DeleteMultiRegionEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
187
199
|
/**
|
|
188
200
|
* serializeAws_restJson1DeleteSuppressedDestinationCommand
|
|
189
201
|
*/
|
|
@@ -268,6 +280,10 @@ export declare const se_GetImportJobCommand: (input: GetImportJobCommandInput, c
|
|
|
268
280
|
* serializeAws_restJson1GetMessageInsightsCommand
|
|
269
281
|
*/
|
|
270
282
|
export declare const se_GetMessageInsightsCommand: (input: GetMessageInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
283
|
+
/**
|
|
284
|
+
* serializeAws_restJson1GetMultiRegionEndpointCommand
|
|
285
|
+
*/
|
|
286
|
+
export declare const se_GetMultiRegionEndpointCommand: (input: GetMultiRegionEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
271
287
|
/**
|
|
272
288
|
* serializeAws_restJson1GetSuppressedDestinationCommand
|
|
273
289
|
*/
|
|
@@ -316,6 +332,10 @@ export declare const se_ListExportJobsCommand: (input: ListExportJobsCommandInpu
|
|
|
316
332
|
* serializeAws_restJson1ListImportJobsCommand
|
|
317
333
|
*/
|
|
318
334
|
export declare const se_ListImportJobsCommand: (input: ListImportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
335
|
+
/**
|
|
336
|
+
* serializeAws_restJson1ListMultiRegionEndpointsCommand
|
|
337
|
+
*/
|
|
338
|
+
export declare const se_ListMultiRegionEndpointsCommand: (input: ListMultiRegionEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
319
339
|
/**
|
|
320
340
|
* serializeAws_restJson1ListRecommendationsCommand
|
|
321
341
|
*/
|
|
@@ -516,6 +536,10 @@ export declare const de_CreateExportJobCommand: (output: __HttpResponse, context
|
|
|
516
536
|
* deserializeAws_restJson1CreateImportJobCommand
|
|
517
537
|
*/
|
|
518
538
|
export declare const de_CreateImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateImportJobCommandOutput>;
|
|
539
|
+
/**
|
|
540
|
+
* deserializeAws_restJson1CreateMultiRegionEndpointCommand
|
|
541
|
+
*/
|
|
542
|
+
export declare const de_CreateMultiRegionEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMultiRegionEndpointCommandOutput>;
|
|
519
543
|
/**
|
|
520
544
|
* deserializeAws_restJson1DeleteConfigurationSetCommand
|
|
521
545
|
*/
|
|
@@ -552,6 +576,10 @@ export declare const de_DeleteEmailIdentityPolicyCommand: (output: __HttpRespons
|
|
|
552
576
|
* deserializeAws_restJson1DeleteEmailTemplateCommand
|
|
553
577
|
*/
|
|
554
578
|
export declare const de_DeleteEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEmailTemplateCommandOutput>;
|
|
579
|
+
/**
|
|
580
|
+
* deserializeAws_restJson1DeleteMultiRegionEndpointCommand
|
|
581
|
+
*/
|
|
582
|
+
export declare const de_DeleteMultiRegionEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMultiRegionEndpointCommandOutput>;
|
|
555
583
|
/**
|
|
556
584
|
* deserializeAws_restJson1DeleteSuppressedDestinationCommand
|
|
557
585
|
*/
|
|
@@ -636,6 +664,10 @@ export declare const de_GetImportJobCommand: (output: __HttpResponse, context: _
|
|
|
636
664
|
* deserializeAws_restJson1GetMessageInsightsCommand
|
|
637
665
|
*/
|
|
638
666
|
export declare const de_GetMessageInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMessageInsightsCommandOutput>;
|
|
667
|
+
/**
|
|
668
|
+
* deserializeAws_restJson1GetMultiRegionEndpointCommand
|
|
669
|
+
*/
|
|
670
|
+
export declare const de_GetMultiRegionEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMultiRegionEndpointCommandOutput>;
|
|
639
671
|
/**
|
|
640
672
|
* deserializeAws_restJson1GetSuppressedDestinationCommand
|
|
641
673
|
*/
|
|
@@ -684,6 +716,10 @@ export declare const de_ListExportJobsCommand: (output: __HttpResponse, context:
|
|
|
684
716
|
* deserializeAws_restJson1ListImportJobsCommand
|
|
685
717
|
*/
|
|
686
718
|
export declare const de_ListImportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportJobsCommandOutput>;
|
|
719
|
+
/**
|
|
720
|
+
* deserializeAws_restJson1ListMultiRegionEndpointsCommand
|
|
721
|
+
*/
|
|
722
|
+
export declare const de_ListMultiRegionEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMultiRegionEndpointsCommandOutput>;
|
|
687
723
|
/**
|
|
688
724
|
* deserializeAws_restJson1ListRecommendationsCommand
|
|
689
725
|
*/
|
|
@@ -55,6 +55,10 @@ import {
|
|
|
55
55
|
CreateImportJobCommandInput,
|
|
56
56
|
CreateImportJobCommandOutput,
|
|
57
57
|
} from "./commands/CreateImportJobCommand";
|
|
58
|
+
import {
|
|
59
|
+
CreateMultiRegionEndpointCommandInput,
|
|
60
|
+
CreateMultiRegionEndpointCommandOutput,
|
|
61
|
+
} from "./commands/CreateMultiRegionEndpointCommand";
|
|
58
62
|
import {
|
|
59
63
|
DeleteConfigurationSetCommandInput,
|
|
60
64
|
DeleteConfigurationSetCommandOutput,
|
|
@@ -91,6 +95,10 @@ import {
|
|
|
91
95
|
DeleteEmailTemplateCommandInput,
|
|
92
96
|
DeleteEmailTemplateCommandOutput,
|
|
93
97
|
} from "./commands/DeleteEmailTemplateCommand";
|
|
98
|
+
import {
|
|
99
|
+
DeleteMultiRegionEndpointCommandInput,
|
|
100
|
+
DeleteMultiRegionEndpointCommandOutput,
|
|
101
|
+
} from "./commands/DeleteMultiRegionEndpointCommand";
|
|
94
102
|
import {
|
|
95
103
|
DeleteSuppressedDestinationCommandInput,
|
|
96
104
|
DeleteSuppressedDestinationCommandOutput,
|
|
@@ -175,6 +183,10 @@ import {
|
|
|
175
183
|
GetMessageInsightsCommandInput,
|
|
176
184
|
GetMessageInsightsCommandOutput,
|
|
177
185
|
} from "./commands/GetMessageInsightsCommand";
|
|
186
|
+
import {
|
|
187
|
+
GetMultiRegionEndpointCommandInput,
|
|
188
|
+
GetMultiRegionEndpointCommandOutput,
|
|
189
|
+
} from "./commands/GetMultiRegionEndpointCommand";
|
|
178
190
|
import {
|
|
179
191
|
GetSuppressedDestinationCommandInput,
|
|
180
192
|
GetSuppressedDestinationCommandOutput,
|
|
@@ -223,6 +235,10 @@ import {
|
|
|
223
235
|
ListImportJobsCommandInput,
|
|
224
236
|
ListImportJobsCommandOutput,
|
|
225
237
|
} from "./commands/ListImportJobsCommand";
|
|
238
|
+
import {
|
|
239
|
+
ListMultiRegionEndpointsCommandInput,
|
|
240
|
+
ListMultiRegionEndpointsCommandOutput,
|
|
241
|
+
} from "./commands/ListMultiRegionEndpointsCommand";
|
|
226
242
|
import {
|
|
227
243
|
ListRecommendationsCommandInput,
|
|
228
244
|
ListRecommendationsCommandOutput,
|
|
@@ -563,6 +579,19 @@ export interface SESv2 {
|
|
|
563
579
|
options: __HttpHandlerOptions,
|
|
564
580
|
cb: (err: any, data?: CreateImportJobCommandOutput) => void
|
|
565
581
|
): void;
|
|
582
|
+
createMultiRegionEndpoint(
|
|
583
|
+
args: CreateMultiRegionEndpointCommandInput,
|
|
584
|
+
options?: __HttpHandlerOptions
|
|
585
|
+
): Promise<CreateMultiRegionEndpointCommandOutput>;
|
|
586
|
+
createMultiRegionEndpoint(
|
|
587
|
+
args: CreateMultiRegionEndpointCommandInput,
|
|
588
|
+
cb: (err: any, data?: CreateMultiRegionEndpointCommandOutput) => void
|
|
589
|
+
): void;
|
|
590
|
+
createMultiRegionEndpoint(
|
|
591
|
+
args: CreateMultiRegionEndpointCommandInput,
|
|
592
|
+
options: __HttpHandlerOptions,
|
|
593
|
+
cb: (err: any, data?: CreateMultiRegionEndpointCommandOutput) => void
|
|
594
|
+
): void;
|
|
566
595
|
deleteConfigurationSet(
|
|
567
596
|
args: DeleteConfigurationSetCommandInput,
|
|
568
597
|
options?: __HttpHandlerOptions
|
|
@@ -692,6 +721,19 @@ export interface SESv2 {
|
|
|
692
721
|
options: __HttpHandlerOptions,
|
|
693
722
|
cb: (err: any, data?: DeleteEmailTemplateCommandOutput) => void
|
|
694
723
|
): void;
|
|
724
|
+
deleteMultiRegionEndpoint(
|
|
725
|
+
args: DeleteMultiRegionEndpointCommandInput,
|
|
726
|
+
options?: __HttpHandlerOptions
|
|
727
|
+
): Promise<DeleteMultiRegionEndpointCommandOutput>;
|
|
728
|
+
deleteMultiRegionEndpoint(
|
|
729
|
+
args: DeleteMultiRegionEndpointCommandInput,
|
|
730
|
+
cb: (err: any, data?: DeleteMultiRegionEndpointCommandOutput) => void
|
|
731
|
+
): void;
|
|
732
|
+
deleteMultiRegionEndpoint(
|
|
733
|
+
args: DeleteMultiRegionEndpointCommandInput,
|
|
734
|
+
options: __HttpHandlerOptions,
|
|
735
|
+
cb: (err: any, data?: DeleteMultiRegionEndpointCommandOutput) => void
|
|
736
|
+
): void;
|
|
695
737
|
deleteSuppressedDestination(
|
|
696
738
|
args: DeleteSuppressedDestinationCommandInput,
|
|
697
739
|
options?: __HttpHandlerOptions
|
|
@@ -986,6 +1028,19 @@ export interface SESv2 {
|
|
|
986
1028
|
options: __HttpHandlerOptions,
|
|
987
1029
|
cb: (err: any, data?: GetMessageInsightsCommandOutput) => void
|
|
988
1030
|
): void;
|
|
1031
|
+
getMultiRegionEndpoint(
|
|
1032
|
+
args: GetMultiRegionEndpointCommandInput,
|
|
1033
|
+
options?: __HttpHandlerOptions
|
|
1034
|
+
): Promise<GetMultiRegionEndpointCommandOutput>;
|
|
1035
|
+
getMultiRegionEndpoint(
|
|
1036
|
+
args: GetMultiRegionEndpointCommandInput,
|
|
1037
|
+
cb: (err: any, data?: GetMultiRegionEndpointCommandOutput) => void
|
|
1038
|
+
): void;
|
|
1039
|
+
getMultiRegionEndpoint(
|
|
1040
|
+
args: GetMultiRegionEndpointCommandInput,
|
|
1041
|
+
options: __HttpHandlerOptions,
|
|
1042
|
+
cb: (err: any, data?: GetMultiRegionEndpointCommandOutput) => void
|
|
1043
|
+
): void;
|
|
989
1044
|
getSuppressedDestination(
|
|
990
1045
|
args: GetSuppressedDestinationCommandInput,
|
|
991
1046
|
options?: __HttpHandlerOptions
|
|
@@ -1163,6 +1218,20 @@ export interface SESv2 {
|
|
|
1163
1218
|
options: __HttpHandlerOptions,
|
|
1164
1219
|
cb: (err: any, data?: ListImportJobsCommandOutput) => void
|
|
1165
1220
|
): void;
|
|
1221
|
+
listMultiRegionEndpoints(): Promise<ListMultiRegionEndpointsCommandOutput>;
|
|
1222
|
+
listMultiRegionEndpoints(
|
|
1223
|
+
args: ListMultiRegionEndpointsCommandInput,
|
|
1224
|
+
options?: __HttpHandlerOptions
|
|
1225
|
+
): Promise<ListMultiRegionEndpointsCommandOutput>;
|
|
1226
|
+
listMultiRegionEndpoints(
|
|
1227
|
+
args: ListMultiRegionEndpointsCommandInput,
|
|
1228
|
+
cb: (err: any, data?: ListMultiRegionEndpointsCommandOutput) => void
|
|
1229
|
+
): void;
|
|
1230
|
+
listMultiRegionEndpoints(
|
|
1231
|
+
args: ListMultiRegionEndpointsCommandInput,
|
|
1232
|
+
options: __HttpHandlerOptions,
|
|
1233
|
+
cb: (err: any, data?: ListMultiRegionEndpointsCommandOutput) => void
|
|
1234
|
+
): void;
|
|
1166
1235
|
listRecommendations(): Promise<ListRecommendationsCommandOutput>;
|
|
1167
1236
|
listRecommendations(
|
|
1168
1237
|
args: ListRecommendationsCommandInput,
|
|
@@ -101,6 +101,10 @@ import {
|
|
|
101
101
|
CreateImportJobCommandInput,
|
|
102
102
|
CreateImportJobCommandOutput,
|
|
103
103
|
} from "./commands/CreateImportJobCommand";
|
|
104
|
+
import {
|
|
105
|
+
CreateMultiRegionEndpointCommandInput,
|
|
106
|
+
CreateMultiRegionEndpointCommandOutput,
|
|
107
|
+
} from "./commands/CreateMultiRegionEndpointCommand";
|
|
104
108
|
import {
|
|
105
109
|
DeleteConfigurationSetCommandInput,
|
|
106
110
|
DeleteConfigurationSetCommandOutput,
|
|
@@ -137,6 +141,10 @@ import {
|
|
|
137
141
|
DeleteEmailTemplateCommandInput,
|
|
138
142
|
DeleteEmailTemplateCommandOutput,
|
|
139
143
|
} from "./commands/DeleteEmailTemplateCommand";
|
|
144
|
+
import {
|
|
145
|
+
DeleteMultiRegionEndpointCommandInput,
|
|
146
|
+
DeleteMultiRegionEndpointCommandOutput,
|
|
147
|
+
} from "./commands/DeleteMultiRegionEndpointCommand";
|
|
140
148
|
import {
|
|
141
149
|
DeleteSuppressedDestinationCommandInput,
|
|
142
150
|
DeleteSuppressedDestinationCommandOutput,
|
|
@@ -221,6 +229,10 @@ import {
|
|
|
221
229
|
GetMessageInsightsCommandInput,
|
|
222
230
|
GetMessageInsightsCommandOutput,
|
|
223
231
|
} from "./commands/GetMessageInsightsCommand";
|
|
232
|
+
import {
|
|
233
|
+
GetMultiRegionEndpointCommandInput,
|
|
234
|
+
GetMultiRegionEndpointCommandOutput,
|
|
235
|
+
} from "./commands/GetMultiRegionEndpointCommand";
|
|
224
236
|
import {
|
|
225
237
|
GetSuppressedDestinationCommandInput,
|
|
226
238
|
GetSuppressedDestinationCommandOutput,
|
|
@@ -269,6 +281,10 @@ import {
|
|
|
269
281
|
ListImportJobsCommandInput,
|
|
270
282
|
ListImportJobsCommandOutput,
|
|
271
283
|
} from "./commands/ListImportJobsCommand";
|
|
284
|
+
import {
|
|
285
|
+
ListMultiRegionEndpointsCommandInput,
|
|
286
|
+
ListMultiRegionEndpointsCommandOutput,
|
|
287
|
+
} from "./commands/ListMultiRegionEndpointsCommand";
|
|
272
288
|
import {
|
|
273
289
|
ListRecommendationsCommandInput,
|
|
274
290
|
ListRecommendationsCommandOutput,
|
|
@@ -435,6 +451,7 @@ export type ServiceInputTypes =
|
|
|
435
451
|
| CreateEmailTemplateCommandInput
|
|
436
452
|
| CreateExportJobCommandInput
|
|
437
453
|
| CreateImportJobCommandInput
|
|
454
|
+
| CreateMultiRegionEndpointCommandInput
|
|
438
455
|
| DeleteConfigurationSetCommandInput
|
|
439
456
|
| DeleteConfigurationSetEventDestinationCommandInput
|
|
440
457
|
| DeleteContactCommandInput
|
|
@@ -444,6 +461,7 @@ export type ServiceInputTypes =
|
|
|
444
461
|
| DeleteEmailIdentityCommandInput
|
|
445
462
|
| DeleteEmailIdentityPolicyCommandInput
|
|
446
463
|
| DeleteEmailTemplateCommandInput
|
|
464
|
+
| DeleteMultiRegionEndpointCommandInput
|
|
447
465
|
| DeleteSuppressedDestinationCommandInput
|
|
448
466
|
| GetAccountCommandInput
|
|
449
467
|
| GetBlacklistReportsCommandInput
|
|
@@ -465,6 +483,7 @@ export type ServiceInputTypes =
|
|
|
465
483
|
| GetExportJobCommandInput
|
|
466
484
|
| GetImportJobCommandInput
|
|
467
485
|
| GetMessageInsightsCommandInput
|
|
486
|
+
| GetMultiRegionEndpointCommandInput
|
|
468
487
|
| GetSuppressedDestinationCommandInput
|
|
469
488
|
| ListConfigurationSetsCommandInput
|
|
470
489
|
| ListContactListsCommandInput
|
|
@@ -477,6 +496,7 @@ export type ServiceInputTypes =
|
|
|
477
496
|
| ListEmailTemplatesCommandInput
|
|
478
497
|
| ListExportJobsCommandInput
|
|
479
498
|
| ListImportJobsCommandInput
|
|
499
|
+
| ListMultiRegionEndpointsCommandInput
|
|
480
500
|
| ListRecommendationsCommandInput
|
|
481
501
|
| ListSuppressedDestinationsCommandInput
|
|
482
502
|
| ListTagsForResourceCommandInput
|
|
@@ -528,6 +548,7 @@ export type ServiceOutputTypes =
|
|
|
528
548
|
| CreateEmailTemplateCommandOutput
|
|
529
549
|
| CreateExportJobCommandOutput
|
|
530
550
|
| CreateImportJobCommandOutput
|
|
551
|
+
| CreateMultiRegionEndpointCommandOutput
|
|
531
552
|
| DeleteConfigurationSetCommandOutput
|
|
532
553
|
| DeleteConfigurationSetEventDestinationCommandOutput
|
|
533
554
|
| DeleteContactCommandOutput
|
|
@@ -537,6 +558,7 @@ export type ServiceOutputTypes =
|
|
|
537
558
|
| DeleteEmailIdentityCommandOutput
|
|
538
559
|
| DeleteEmailIdentityPolicyCommandOutput
|
|
539
560
|
| DeleteEmailTemplateCommandOutput
|
|
561
|
+
| DeleteMultiRegionEndpointCommandOutput
|
|
540
562
|
| DeleteSuppressedDestinationCommandOutput
|
|
541
563
|
| GetAccountCommandOutput
|
|
542
564
|
| GetBlacklistReportsCommandOutput
|
|
@@ -558,6 +580,7 @@ export type ServiceOutputTypes =
|
|
|
558
580
|
| GetExportJobCommandOutput
|
|
559
581
|
| GetImportJobCommandOutput
|
|
560
582
|
| GetMessageInsightsCommandOutput
|
|
583
|
+
| GetMultiRegionEndpointCommandOutput
|
|
561
584
|
| GetSuppressedDestinationCommandOutput
|
|
562
585
|
| ListConfigurationSetsCommandOutput
|
|
563
586
|
| ListContactListsCommandOutput
|
|
@@ -570,6 +593,7 @@ export type ServiceOutputTypes =
|
|
|
570
593
|
| ListEmailTemplatesCommandOutput
|
|
571
594
|
| ListExportJobsCommandOutput
|
|
572
595
|
| ListImportJobsCommandOutput
|
|
596
|
+
| ListMultiRegionEndpointsCommandOutput
|
|
573
597
|
| ListRecommendationsCommandOutput
|
|
574
598
|
| ListSuppressedDestinationsCommandOutput
|
|
575
599
|
| ListTagsForResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateMultiRegionEndpointRequest,
|
|
5
|
+
CreateMultiRegionEndpointResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SESv2ClientResolvedConfig,
|
|
11
|
+
} from "../SESv2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateMultiRegionEndpointCommandInput
|
|
15
|
+
extends CreateMultiRegionEndpointRequest {}
|
|
16
|
+
export interface CreateMultiRegionEndpointCommandOutput
|
|
17
|
+
extends CreateMultiRegionEndpointResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateMultiRegionEndpointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateMultiRegionEndpointCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateMultiRegionEndpointCommandInput,
|
|
24
|
+
CreateMultiRegionEndpointCommandOutput,
|
|
25
|
+
SESv2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateMultiRegionEndpointCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateMultiRegionEndpointCommandInput,
|
|
33
|
+
CreateMultiRegionEndpointCommandOutput,
|
|
34
|
+
SESv2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateMultiRegionEndpointCommand extends CreateMultiRegionEndpointCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateMultiRegionEndpointRequest;
|
|
44
|
+
output: CreateMultiRegionEndpointResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateMultiRegionEndpointCommandInput;
|
|
48
|
+
output: CreateMultiRegionEndpointCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|