@aws-sdk/client-sesv2 3.1067.0 → 3.1069.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/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +392 -412
- package/dist-cjs/models/SESv2ServiceException.js +4 -8
- package/dist-cjs/models/errors.js +27 -43
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +31 -35
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +23 -27
- package/dist-cjs/schemas/schemas_0.js +938 -601
- package/package.json +9 -9
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultSESv2HttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { BatchGetMetricData$, CancelExportJob$, CreateConfigurationSet$, CreateConfigurationSetEventDestination$, CreateContact$, CreateContactList$, CreateCustomVerificationEmailTemplate$, CreateDedicatedIpPool$, CreateDeliverabilityTestReport$, CreateEmailIdentity$, CreateEmailIdentityPolicy$, CreateEmailTemplate$, CreateExportJob$, CreateImportJob$, CreateMultiRegionEndpoint$, CreateTenant$, CreateTenantResourceAssociation$, DeleteConfigurationSet$, DeleteConfigurationSetEventDestination$, DeleteContact$, DeleteContactList$, DeleteCustomVerificationEmailTemplate$, DeleteDedicatedIpPool$, DeleteEmailIdentity$, DeleteEmailIdentityPolicy$, DeleteEmailTemplate$, DeleteMultiRegionEndpoint$, DeleteSuppressedDestination$, DeleteTenant$, DeleteTenantResourceAssociation$, GetAccount$, GetBlacklistReports$, GetConfigurationSet$, GetConfigurationSetEventDestinations$, GetContact$, GetContactList$, GetCustomVerificationEmailTemplate$, GetDedicatedIp$, GetDedicatedIpPool$, GetDedicatedIps$, GetDeliverabilityDashboardOptions$, GetDeliverabilityTestReport$, GetDomainDeliverabilityCampaign$, GetDomainStatisticsReport$, GetEmailAddressInsights$, GetEmailIdentity$, GetEmailIdentityPolicies$, GetEmailTemplate$, GetExportJob$, GetImportJob$, GetMessageInsights$, GetMultiRegionEndpoint$, GetReputationEntity$, GetSuppressedDestination$, GetTenant$, ListConfigurationSets$, ListContactLists$, ListContacts$, ListCustomVerificationEmailTemplates$, ListDedicatedIpPools$, ListDeliverabilityTestReports$, ListDomainDeliverabilityCampaigns$, ListEmailIdentities$, ListEmailTemplates$, ListExportJobs$, ListImportJobs$, ListMultiRegionEndpoints$, ListRecommendations$, ListReputationEntities$, ListResourceTenants$, ListSuppressedDestinations$, ListTagsForResource$, ListTenantResources$, ListTenants$, PutAccountDedicatedIpWarmupAttributes$, PutAccountDetails$, PutAccountSendingAttributes$, PutAccountSuppressionAttributes$, PutAccountVdmAttributes$, PutConfigurationSetArchivingOptions$, PutConfigurationSetDeliveryOptions$, PutConfigurationSetReputationOptions$, PutConfigurationSetSendingOptions$, PutConfigurationSetSuppressionOptions$, PutConfigurationSetTrackingOptions$, PutConfigurationSetVdmOptions$, PutDedicatedIpInPool$, PutDedicatedIpPoolScalingAttributes$, PutDedicatedIpWarmupAttributes$, PutDeliverabilityDashboardOption$, PutEmailIdentityConfigurationSetAttributes$, PutEmailIdentityDkimAttributes$, PutEmailIdentityDkimSigningAttributes$, PutEmailIdentityFeedbackAttributes$, PutEmailIdentityMailFromAttributes$, PutSuppressedDestination$, PutTenantSuppressionAttributes$, SendBulkEmail$, SendCustomVerificationEmail$, SendEmail$, TagResource$, TestRenderEmailTemplate$, UntagResource$, UpdateConfigurationSetEventDestination$, UpdateContact$, UpdateContactList$, UpdateCustomVerificationEmailTemplate$, UpdateEmailIdentityPolicy$, UpdateEmailTemplate$, UpdateReputationEntityCustomerManagedStatus$, UpdateReputationEntityPolicy$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { SESv2ServiceException } = require("./models/SESv2ServiceException");
|
|
18
|
+
exports.SESv2ServiceException = SESv2ServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,1422 +71,1422 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class SESv2Client extends
|
|
79
|
+
class SESv2Client extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultSESv2HttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
"aws.auth#sigv4a": config.credentials,
|
|
103
106
|
}),
|
|
104
107
|
}));
|
|
105
|
-
this.middlewareStack.use(
|
|
108
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
106
109
|
}
|
|
107
110
|
destroy() {
|
|
108
111
|
super.destroy();
|
|
109
112
|
}
|
|
110
113
|
}
|
|
111
114
|
|
|
112
|
-
class BatchGetMetricDataCommand extends
|
|
115
|
+
class BatchGetMetricDataCommand extends Command
|
|
113
116
|
.classBuilder()
|
|
114
117
|
.ep(commonParams)
|
|
115
118
|
.m(function (Command, cs, config, o) {
|
|
116
|
-
return [
|
|
119
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
117
120
|
})
|
|
118
121
|
.s("SimpleEmailService_v2", "BatchGetMetricData", {})
|
|
119
122
|
.n("SESv2Client", "BatchGetMetricDataCommand")
|
|
120
|
-
.sc(
|
|
123
|
+
.sc(BatchGetMetricData$)
|
|
121
124
|
.build() {
|
|
122
125
|
}
|
|
123
126
|
|
|
124
|
-
class CancelExportJobCommand extends
|
|
127
|
+
class CancelExportJobCommand extends Command
|
|
125
128
|
.classBuilder()
|
|
126
129
|
.ep(commonParams)
|
|
127
130
|
.m(function (Command, cs, config, o) {
|
|
128
|
-
return [
|
|
131
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
129
132
|
})
|
|
130
133
|
.s("SimpleEmailService_v2", "CancelExportJob", {})
|
|
131
134
|
.n("SESv2Client", "CancelExportJobCommand")
|
|
132
|
-
.sc(
|
|
135
|
+
.sc(CancelExportJob$)
|
|
133
136
|
.build() {
|
|
134
137
|
}
|
|
135
138
|
|
|
136
|
-
class CreateConfigurationSetCommand extends
|
|
139
|
+
class CreateConfigurationSetCommand extends Command
|
|
137
140
|
.classBuilder()
|
|
138
141
|
.ep(commonParams)
|
|
139
142
|
.m(function (Command, cs, config, o) {
|
|
140
|
-
return [
|
|
143
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
141
144
|
})
|
|
142
145
|
.s("SimpleEmailService_v2", "CreateConfigurationSet", {})
|
|
143
146
|
.n("SESv2Client", "CreateConfigurationSetCommand")
|
|
144
|
-
.sc(
|
|
147
|
+
.sc(CreateConfigurationSet$)
|
|
145
148
|
.build() {
|
|
146
149
|
}
|
|
147
150
|
|
|
148
|
-
class CreateConfigurationSetEventDestinationCommand extends
|
|
151
|
+
class CreateConfigurationSetEventDestinationCommand extends Command
|
|
149
152
|
.classBuilder()
|
|
150
153
|
.ep(commonParams)
|
|
151
154
|
.m(function (Command, cs, config, o) {
|
|
152
|
-
return [
|
|
155
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
153
156
|
})
|
|
154
157
|
.s("SimpleEmailService_v2", "CreateConfigurationSetEventDestination", {})
|
|
155
158
|
.n("SESv2Client", "CreateConfigurationSetEventDestinationCommand")
|
|
156
|
-
.sc(
|
|
159
|
+
.sc(CreateConfigurationSetEventDestination$)
|
|
157
160
|
.build() {
|
|
158
161
|
}
|
|
159
162
|
|
|
160
|
-
class CreateContactCommand extends
|
|
163
|
+
class CreateContactCommand extends Command
|
|
161
164
|
.classBuilder()
|
|
162
165
|
.ep(commonParams)
|
|
163
166
|
.m(function (Command, cs, config, o) {
|
|
164
|
-
return [
|
|
167
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
165
168
|
})
|
|
166
169
|
.s("SimpleEmailService_v2", "CreateContact", {})
|
|
167
170
|
.n("SESv2Client", "CreateContactCommand")
|
|
168
|
-
.sc(
|
|
171
|
+
.sc(CreateContact$)
|
|
169
172
|
.build() {
|
|
170
173
|
}
|
|
171
174
|
|
|
172
|
-
class CreateContactListCommand extends
|
|
175
|
+
class CreateContactListCommand extends Command
|
|
173
176
|
.classBuilder()
|
|
174
177
|
.ep(commonParams)
|
|
175
178
|
.m(function (Command, cs, config, o) {
|
|
176
|
-
return [
|
|
179
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
177
180
|
})
|
|
178
181
|
.s("SimpleEmailService_v2", "CreateContactList", {})
|
|
179
182
|
.n("SESv2Client", "CreateContactListCommand")
|
|
180
|
-
.sc(
|
|
183
|
+
.sc(CreateContactList$)
|
|
181
184
|
.build() {
|
|
182
185
|
}
|
|
183
186
|
|
|
184
|
-
class CreateCustomVerificationEmailTemplateCommand extends
|
|
187
|
+
class CreateCustomVerificationEmailTemplateCommand extends Command
|
|
185
188
|
.classBuilder()
|
|
186
189
|
.ep(commonParams)
|
|
187
190
|
.m(function (Command, cs, config, o) {
|
|
188
|
-
return [
|
|
191
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
189
192
|
})
|
|
190
193
|
.s("SimpleEmailService_v2", "CreateCustomVerificationEmailTemplate", {})
|
|
191
194
|
.n("SESv2Client", "CreateCustomVerificationEmailTemplateCommand")
|
|
192
|
-
.sc(
|
|
195
|
+
.sc(CreateCustomVerificationEmailTemplate$)
|
|
193
196
|
.build() {
|
|
194
197
|
}
|
|
195
198
|
|
|
196
|
-
class CreateDedicatedIpPoolCommand extends
|
|
199
|
+
class CreateDedicatedIpPoolCommand extends Command
|
|
197
200
|
.classBuilder()
|
|
198
201
|
.ep(commonParams)
|
|
199
202
|
.m(function (Command, cs, config, o) {
|
|
200
|
-
return [
|
|
203
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
201
204
|
})
|
|
202
205
|
.s("SimpleEmailService_v2", "CreateDedicatedIpPool", {})
|
|
203
206
|
.n("SESv2Client", "CreateDedicatedIpPoolCommand")
|
|
204
|
-
.sc(
|
|
207
|
+
.sc(CreateDedicatedIpPool$)
|
|
205
208
|
.build() {
|
|
206
209
|
}
|
|
207
210
|
|
|
208
|
-
class CreateDeliverabilityTestReportCommand extends
|
|
211
|
+
class CreateDeliverabilityTestReportCommand extends Command
|
|
209
212
|
.classBuilder()
|
|
210
213
|
.ep(commonParams)
|
|
211
214
|
.m(function (Command, cs, config, o) {
|
|
212
|
-
return [
|
|
215
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
213
216
|
})
|
|
214
217
|
.s("SimpleEmailService_v2", "CreateDeliverabilityTestReport", {})
|
|
215
218
|
.n("SESv2Client", "CreateDeliverabilityTestReportCommand")
|
|
216
|
-
.sc(
|
|
219
|
+
.sc(CreateDeliverabilityTestReport$)
|
|
217
220
|
.build() {
|
|
218
221
|
}
|
|
219
222
|
|
|
220
|
-
class CreateEmailIdentityCommand extends
|
|
223
|
+
class CreateEmailIdentityCommand extends Command
|
|
221
224
|
.classBuilder()
|
|
222
225
|
.ep(commonParams)
|
|
223
226
|
.m(function (Command, cs, config, o) {
|
|
224
|
-
return [
|
|
227
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
225
228
|
})
|
|
226
229
|
.s("SimpleEmailService_v2", "CreateEmailIdentity", {})
|
|
227
230
|
.n("SESv2Client", "CreateEmailIdentityCommand")
|
|
228
|
-
.sc(
|
|
231
|
+
.sc(CreateEmailIdentity$)
|
|
229
232
|
.build() {
|
|
230
233
|
}
|
|
231
234
|
|
|
232
|
-
class CreateEmailIdentityPolicyCommand extends
|
|
235
|
+
class CreateEmailIdentityPolicyCommand extends Command
|
|
233
236
|
.classBuilder()
|
|
234
237
|
.ep(commonParams)
|
|
235
238
|
.m(function (Command, cs, config, o) {
|
|
236
|
-
return [
|
|
239
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
237
240
|
})
|
|
238
241
|
.s("SimpleEmailService_v2", "CreateEmailIdentityPolicy", {})
|
|
239
242
|
.n("SESv2Client", "CreateEmailIdentityPolicyCommand")
|
|
240
|
-
.sc(
|
|
243
|
+
.sc(CreateEmailIdentityPolicy$)
|
|
241
244
|
.build() {
|
|
242
245
|
}
|
|
243
246
|
|
|
244
|
-
class CreateEmailTemplateCommand extends
|
|
247
|
+
class CreateEmailTemplateCommand extends Command
|
|
245
248
|
.classBuilder()
|
|
246
249
|
.ep(commonParams)
|
|
247
250
|
.m(function (Command, cs, config, o) {
|
|
248
|
-
return [
|
|
251
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
249
252
|
})
|
|
250
253
|
.s("SimpleEmailService_v2", "CreateEmailTemplate", {})
|
|
251
254
|
.n("SESv2Client", "CreateEmailTemplateCommand")
|
|
252
|
-
.sc(
|
|
255
|
+
.sc(CreateEmailTemplate$)
|
|
253
256
|
.build() {
|
|
254
257
|
}
|
|
255
258
|
|
|
256
|
-
class CreateExportJobCommand extends
|
|
259
|
+
class CreateExportJobCommand extends Command
|
|
257
260
|
.classBuilder()
|
|
258
261
|
.ep(commonParams)
|
|
259
262
|
.m(function (Command, cs, config, o) {
|
|
260
|
-
return [
|
|
263
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
261
264
|
})
|
|
262
265
|
.s("SimpleEmailService_v2", "CreateExportJob", {})
|
|
263
266
|
.n("SESv2Client", "CreateExportJobCommand")
|
|
264
|
-
.sc(
|
|
267
|
+
.sc(CreateExportJob$)
|
|
265
268
|
.build() {
|
|
266
269
|
}
|
|
267
270
|
|
|
268
|
-
class CreateImportJobCommand extends
|
|
271
|
+
class CreateImportJobCommand extends Command
|
|
269
272
|
.classBuilder()
|
|
270
273
|
.ep(commonParams)
|
|
271
274
|
.m(function (Command, cs, config, o) {
|
|
272
|
-
return [
|
|
275
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
273
276
|
})
|
|
274
277
|
.s("SimpleEmailService_v2", "CreateImportJob", {})
|
|
275
278
|
.n("SESv2Client", "CreateImportJobCommand")
|
|
276
|
-
.sc(
|
|
279
|
+
.sc(CreateImportJob$)
|
|
277
280
|
.build() {
|
|
278
281
|
}
|
|
279
282
|
|
|
280
|
-
class CreateMultiRegionEndpointCommand extends
|
|
283
|
+
class CreateMultiRegionEndpointCommand extends Command
|
|
281
284
|
.classBuilder()
|
|
282
285
|
.ep(commonParams)
|
|
283
286
|
.m(function (Command, cs, config, o) {
|
|
284
|
-
return [
|
|
287
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
285
288
|
})
|
|
286
289
|
.s("SimpleEmailService_v2", "CreateMultiRegionEndpoint", {})
|
|
287
290
|
.n("SESv2Client", "CreateMultiRegionEndpointCommand")
|
|
288
|
-
.sc(
|
|
291
|
+
.sc(CreateMultiRegionEndpoint$)
|
|
289
292
|
.build() {
|
|
290
293
|
}
|
|
291
294
|
|
|
292
|
-
class CreateTenantCommand extends
|
|
295
|
+
class CreateTenantCommand extends Command
|
|
293
296
|
.classBuilder()
|
|
294
297
|
.ep(commonParams)
|
|
295
298
|
.m(function (Command, cs, config, o) {
|
|
296
|
-
return [
|
|
299
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
297
300
|
})
|
|
298
301
|
.s("SimpleEmailService_v2", "CreateTenant", {})
|
|
299
302
|
.n("SESv2Client", "CreateTenantCommand")
|
|
300
|
-
.sc(
|
|
303
|
+
.sc(CreateTenant$)
|
|
301
304
|
.build() {
|
|
302
305
|
}
|
|
303
306
|
|
|
304
|
-
class CreateTenantResourceAssociationCommand extends
|
|
307
|
+
class CreateTenantResourceAssociationCommand extends Command
|
|
305
308
|
.classBuilder()
|
|
306
309
|
.ep(commonParams)
|
|
307
310
|
.m(function (Command, cs, config, o) {
|
|
308
|
-
return [
|
|
311
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
309
312
|
})
|
|
310
313
|
.s("SimpleEmailService_v2", "CreateTenantResourceAssociation", {})
|
|
311
314
|
.n("SESv2Client", "CreateTenantResourceAssociationCommand")
|
|
312
|
-
.sc(
|
|
315
|
+
.sc(CreateTenantResourceAssociation$)
|
|
313
316
|
.build() {
|
|
314
317
|
}
|
|
315
318
|
|
|
316
|
-
class DeleteConfigurationSetCommand extends
|
|
319
|
+
class DeleteConfigurationSetCommand extends Command
|
|
317
320
|
.classBuilder()
|
|
318
321
|
.ep(commonParams)
|
|
319
322
|
.m(function (Command, cs, config, o) {
|
|
320
|
-
return [
|
|
323
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
321
324
|
})
|
|
322
325
|
.s("SimpleEmailService_v2", "DeleteConfigurationSet", {})
|
|
323
326
|
.n("SESv2Client", "DeleteConfigurationSetCommand")
|
|
324
|
-
.sc(
|
|
327
|
+
.sc(DeleteConfigurationSet$)
|
|
325
328
|
.build() {
|
|
326
329
|
}
|
|
327
330
|
|
|
328
|
-
class DeleteConfigurationSetEventDestinationCommand extends
|
|
331
|
+
class DeleteConfigurationSetEventDestinationCommand extends Command
|
|
329
332
|
.classBuilder()
|
|
330
333
|
.ep(commonParams)
|
|
331
334
|
.m(function (Command, cs, config, o) {
|
|
332
|
-
return [
|
|
335
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
333
336
|
})
|
|
334
337
|
.s("SimpleEmailService_v2", "DeleteConfigurationSetEventDestination", {})
|
|
335
338
|
.n("SESv2Client", "DeleteConfigurationSetEventDestinationCommand")
|
|
336
|
-
.sc(
|
|
339
|
+
.sc(DeleteConfigurationSetEventDestination$)
|
|
337
340
|
.build() {
|
|
338
341
|
}
|
|
339
342
|
|
|
340
|
-
class DeleteContactCommand extends
|
|
343
|
+
class DeleteContactCommand extends Command
|
|
341
344
|
.classBuilder()
|
|
342
345
|
.ep(commonParams)
|
|
343
346
|
.m(function (Command, cs, config, o) {
|
|
344
|
-
return [
|
|
347
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
345
348
|
})
|
|
346
349
|
.s("SimpleEmailService_v2", "DeleteContact", {})
|
|
347
350
|
.n("SESv2Client", "DeleteContactCommand")
|
|
348
|
-
.sc(
|
|
351
|
+
.sc(DeleteContact$)
|
|
349
352
|
.build() {
|
|
350
353
|
}
|
|
351
354
|
|
|
352
|
-
class DeleteContactListCommand extends
|
|
355
|
+
class DeleteContactListCommand extends Command
|
|
353
356
|
.classBuilder()
|
|
354
357
|
.ep(commonParams)
|
|
355
358
|
.m(function (Command, cs, config, o) {
|
|
356
|
-
return [
|
|
359
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
357
360
|
})
|
|
358
361
|
.s("SimpleEmailService_v2", "DeleteContactList", {})
|
|
359
362
|
.n("SESv2Client", "DeleteContactListCommand")
|
|
360
|
-
.sc(
|
|
363
|
+
.sc(DeleteContactList$)
|
|
361
364
|
.build() {
|
|
362
365
|
}
|
|
363
366
|
|
|
364
|
-
class DeleteCustomVerificationEmailTemplateCommand extends
|
|
367
|
+
class DeleteCustomVerificationEmailTemplateCommand extends Command
|
|
365
368
|
.classBuilder()
|
|
366
369
|
.ep(commonParams)
|
|
367
370
|
.m(function (Command, cs, config, o) {
|
|
368
|
-
return [
|
|
371
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
369
372
|
})
|
|
370
373
|
.s("SimpleEmailService_v2", "DeleteCustomVerificationEmailTemplate", {})
|
|
371
374
|
.n("SESv2Client", "DeleteCustomVerificationEmailTemplateCommand")
|
|
372
|
-
.sc(
|
|
375
|
+
.sc(DeleteCustomVerificationEmailTemplate$)
|
|
373
376
|
.build() {
|
|
374
377
|
}
|
|
375
378
|
|
|
376
|
-
class DeleteDedicatedIpPoolCommand extends
|
|
379
|
+
class DeleteDedicatedIpPoolCommand extends Command
|
|
377
380
|
.classBuilder()
|
|
378
381
|
.ep(commonParams)
|
|
379
382
|
.m(function (Command, cs, config, o) {
|
|
380
|
-
return [
|
|
383
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
381
384
|
})
|
|
382
385
|
.s("SimpleEmailService_v2", "DeleteDedicatedIpPool", {})
|
|
383
386
|
.n("SESv2Client", "DeleteDedicatedIpPoolCommand")
|
|
384
|
-
.sc(
|
|
387
|
+
.sc(DeleteDedicatedIpPool$)
|
|
385
388
|
.build() {
|
|
386
389
|
}
|
|
387
390
|
|
|
388
|
-
class DeleteEmailIdentityCommand extends
|
|
391
|
+
class DeleteEmailIdentityCommand extends Command
|
|
389
392
|
.classBuilder()
|
|
390
393
|
.ep(commonParams)
|
|
391
394
|
.m(function (Command, cs, config, o) {
|
|
392
|
-
return [
|
|
395
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
393
396
|
})
|
|
394
397
|
.s("SimpleEmailService_v2", "DeleteEmailIdentity", {})
|
|
395
398
|
.n("SESv2Client", "DeleteEmailIdentityCommand")
|
|
396
|
-
.sc(
|
|
399
|
+
.sc(DeleteEmailIdentity$)
|
|
397
400
|
.build() {
|
|
398
401
|
}
|
|
399
402
|
|
|
400
|
-
class DeleteEmailIdentityPolicyCommand extends
|
|
403
|
+
class DeleteEmailIdentityPolicyCommand extends Command
|
|
401
404
|
.classBuilder()
|
|
402
405
|
.ep(commonParams)
|
|
403
406
|
.m(function (Command, cs, config, o) {
|
|
404
|
-
return [
|
|
407
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
405
408
|
})
|
|
406
409
|
.s("SimpleEmailService_v2", "DeleteEmailIdentityPolicy", {})
|
|
407
410
|
.n("SESv2Client", "DeleteEmailIdentityPolicyCommand")
|
|
408
|
-
.sc(
|
|
411
|
+
.sc(DeleteEmailIdentityPolicy$)
|
|
409
412
|
.build() {
|
|
410
413
|
}
|
|
411
414
|
|
|
412
|
-
class DeleteEmailTemplateCommand extends
|
|
415
|
+
class DeleteEmailTemplateCommand extends Command
|
|
413
416
|
.classBuilder()
|
|
414
417
|
.ep(commonParams)
|
|
415
418
|
.m(function (Command, cs, config, o) {
|
|
416
|
-
return [
|
|
419
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
417
420
|
})
|
|
418
421
|
.s("SimpleEmailService_v2", "DeleteEmailTemplate", {})
|
|
419
422
|
.n("SESv2Client", "DeleteEmailTemplateCommand")
|
|
420
|
-
.sc(
|
|
423
|
+
.sc(DeleteEmailTemplate$)
|
|
421
424
|
.build() {
|
|
422
425
|
}
|
|
423
426
|
|
|
424
|
-
class DeleteMultiRegionEndpointCommand extends
|
|
427
|
+
class DeleteMultiRegionEndpointCommand extends Command
|
|
425
428
|
.classBuilder()
|
|
426
429
|
.ep(commonParams)
|
|
427
430
|
.m(function (Command, cs, config, o) {
|
|
428
|
-
return [
|
|
431
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
429
432
|
})
|
|
430
433
|
.s("SimpleEmailService_v2", "DeleteMultiRegionEndpoint", {})
|
|
431
434
|
.n("SESv2Client", "DeleteMultiRegionEndpointCommand")
|
|
432
|
-
.sc(
|
|
435
|
+
.sc(DeleteMultiRegionEndpoint$)
|
|
433
436
|
.build() {
|
|
434
437
|
}
|
|
435
438
|
|
|
436
|
-
class DeleteSuppressedDestinationCommand extends
|
|
439
|
+
class DeleteSuppressedDestinationCommand extends Command
|
|
437
440
|
.classBuilder()
|
|
438
441
|
.ep(commonParams)
|
|
439
442
|
.m(function (Command, cs, config, o) {
|
|
440
|
-
return [
|
|
443
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
441
444
|
})
|
|
442
445
|
.s("SimpleEmailService_v2", "DeleteSuppressedDestination", {})
|
|
443
446
|
.n("SESv2Client", "DeleteSuppressedDestinationCommand")
|
|
444
|
-
.sc(
|
|
447
|
+
.sc(DeleteSuppressedDestination$)
|
|
445
448
|
.build() {
|
|
446
449
|
}
|
|
447
450
|
|
|
448
|
-
class DeleteTenantCommand extends
|
|
451
|
+
class DeleteTenantCommand extends Command
|
|
449
452
|
.classBuilder()
|
|
450
453
|
.ep(commonParams)
|
|
451
454
|
.m(function (Command, cs, config, o) {
|
|
452
|
-
return [
|
|
455
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
453
456
|
})
|
|
454
457
|
.s("SimpleEmailService_v2", "DeleteTenant", {})
|
|
455
458
|
.n("SESv2Client", "DeleteTenantCommand")
|
|
456
|
-
.sc(
|
|
459
|
+
.sc(DeleteTenant$)
|
|
457
460
|
.build() {
|
|
458
461
|
}
|
|
459
462
|
|
|
460
|
-
class DeleteTenantResourceAssociationCommand extends
|
|
463
|
+
class DeleteTenantResourceAssociationCommand extends Command
|
|
461
464
|
.classBuilder()
|
|
462
465
|
.ep(commonParams)
|
|
463
466
|
.m(function (Command, cs, config, o) {
|
|
464
|
-
return [
|
|
467
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
465
468
|
})
|
|
466
469
|
.s("SimpleEmailService_v2", "DeleteTenantResourceAssociation", {})
|
|
467
470
|
.n("SESv2Client", "DeleteTenantResourceAssociationCommand")
|
|
468
|
-
.sc(
|
|
471
|
+
.sc(DeleteTenantResourceAssociation$)
|
|
469
472
|
.build() {
|
|
470
473
|
}
|
|
471
474
|
|
|
472
|
-
class GetAccountCommand extends
|
|
475
|
+
class GetAccountCommand extends Command
|
|
473
476
|
.classBuilder()
|
|
474
477
|
.ep(commonParams)
|
|
475
478
|
.m(function (Command, cs, config, o) {
|
|
476
|
-
return [
|
|
479
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
477
480
|
})
|
|
478
481
|
.s("SimpleEmailService_v2", "GetAccount", {})
|
|
479
482
|
.n("SESv2Client", "GetAccountCommand")
|
|
480
|
-
.sc(
|
|
483
|
+
.sc(GetAccount$)
|
|
481
484
|
.build() {
|
|
482
485
|
}
|
|
483
486
|
|
|
484
|
-
class GetBlacklistReportsCommand extends
|
|
487
|
+
class GetBlacklistReportsCommand extends Command
|
|
485
488
|
.classBuilder()
|
|
486
489
|
.ep(commonParams)
|
|
487
490
|
.m(function (Command, cs, config, o) {
|
|
488
|
-
return [
|
|
491
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
489
492
|
})
|
|
490
493
|
.s("SimpleEmailService_v2", "GetBlacklistReports", {})
|
|
491
494
|
.n("SESv2Client", "GetBlacklistReportsCommand")
|
|
492
|
-
.sc(
|
|
495
|
+
.sc(GetBlacklistReports$)
|
|
493
496
|
.build() {
|
|
494
497
|
}
|
|
495
498
|
|
|
496
|
-
class GetConfigurationSetCommand extends
|
|
499
|
+
class GetConfigurationSetCommand extends Command
|
|
497
500
|
.classBuilder()
|
|
498
501
|
.ep(commonParams)
|
|
499
502
|
.m(function (Command, cs, config, o) {
|
|
500
|
-
return [
|
|
503
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
501
504
|
})
|
|
502
505
|
.s("SimpleEmailService_v2", "GetConfigurationSet", {})
|
|
503
506
|
.n("SESv2Client", "GetConfigurationSetCommand")
|
|
504
|
-
.sc(
|
|
507
|
+
.sc(GetConfigurationSet$)
|
|
505
508
|
.build() {
|
|
506
509
|
}
|
|
507
510
|
|
|
508
|
-
class GetConfigurationSetEventDestinationsCommand extends
|
|
511
|
+
class GetConfigurationSetEventDestinationsCommand extends Command
|
|
509
512
|
.classBuilder()
|
|
510
513
|
.ep(commonParams)
|
|
511
514
|
.m(function (Command, cs, config, o) {
|
|
512
|
-
return [
|
|
515
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
513
516
|
})
|
|
514
517
|
.s("SimpleEmailService_v2", "GetConfigurationSetEventDestinations", {})
|
|
515
518
|
.n("SESv2Client", "GetConfigurationSetEventDestinationsCommand")
|
|
516
|
-
.sc(
|
|
519
|
+
.sc(GetConfigurationSetEventDestinations$)
|
|
517
520
|
.build() {
|
|
518
521
|
}
|
|
519
522
|
|
|
520
|
-
class GetContactCommand extends
|
|
523
|
+
class GetContactCommand extends Command
|
|
521
524
|
.classBuilder()
|
|
522
525
|
.ep(commonParams)
|
|
523
526
|
.m(function (Command, cs, config, o) {
|
|
524
|
-
return [
|
|
527
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
525
528
|
})
|
|
526
529
|
.s("SimpleEmailService_v2", "GetContact", {})
|
|
527
530
|
.n("SESv2Client", "GetContactCommand")
|
|
528
|
-
.sc(
|
|
531
|
+
.sc(GetContact$)
|
|
529
532
|
.build() {
|
|
530
533
|
}
|
|
531
534
|
|
|
532
|
-
class GetContactListCommand extends
|
|
535
|
+
class GetContactListCommand extends Command
|
|
533
536
|
.classBuilder()
|
|
534
537
|
.ep(commonParams)
|
|
535
538
|
.m(function (Command, cs, config, o) {
|
|
536
|
-
return [
|
|
539
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
537
540
|
})
|
|
538
541
|
.s("SimpleEmailService_v2", "GetContactList", {})
|
|
539
542
|
.n("SESv2Client", "GetContactListCommand")
|
|
540
|
-
.sc(
|
|
543
|
+
.sc(GetContactList$)
|
|
541
544
|
.build() {
|
|
542
545
|
}
|
|
543
546
|
|
|
544
|
-
class GetCustomVerificationEmailTemplateCommand extends
|
|
547
|
+
class GetCustomVerificationEmailTemplateCommand extends Command
|
|
545
548
|
.classBuilder()
|
|
546
549
|
.ep(commonParams)
|
|
547
550
|
.m(function (Command, cs, config, o) {
|
|
548
|
-
return [
|
|
551
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
549
552
|
})
|
|
550
553
|
.s("SimpleEmailService_v2", "GetCustomVerificationEmailTemplate", {})
|
|
551
554
|
.n("SESv2Client", "GetCustomVerificationEmailTemplateCommand")
|
|
552
|
-
.sc(
|
|
555
|
+
.sc(GetCustomVerificationEmailTemplate$)
|
|
553
556
|
.build() {
|
|
554
557
|
}
|
|
555
558
|
|
|
556
|
-
class GetDedicatedIpCommand extends
|
|
559
|
+
class GetDedicatedIpCommand extends Command
|
|
557
560
|
.classBuilder()
|
|
558
561
|
.ep(commonParams)
|
|
559
562
|
.m(function (Command, cs, config, o) {
|
|
560
|
-
return [
|
|
563
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
561
564
|
})
|
|
562
565
|
.s("SimpleEmailService_v2", "GetDedicatedIp", {})
|
|
563
566
|
.n("SESv2Client", "GetDedicatedIpCommand")
|
|
564
|
-
.sc(
|
|
567
|
+
.sc(GetDedicatedIp$)
|
|
565
568
|
.build() {
|
|
566
569
|
}
|
|
567
570
|
|
|
568
|
-
class GetDedicatedIpPoolCommand extends
|
|
571
|
+
class GetDedicatedIpPoolCommand extends Command
|
|
569
572
|
.classBuilder()
|
|
570
573
|
.ep(commonParams)
|
|
571
574
|
.m(function (Command, cs, config, o) {
|
|
572
|
-
return [
|
|
575
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
573
576
|
})
|
|
574
577
|
.s("SimpleEmailService_v2", "GetDedicatedIpPool", {})
|
|
575
578
|
.n("SESv2Client", "GetDedicatedIpPoolCommand")
|
|
576
|
-
.sc(
|
|
579
|
+
.sc(GetDedicatedIpPool$)
|
|
577
580
|
.build() {
|
|
578
581
|
}
|
|
579
582
|
|
|
580
|
-
class GetDedicatedIpsCommand extends
|
|
583
|
+
class GetDedicatedIpsCommand extends Command
|
|
581
584
|
.classBuilder()
|
|
582
585
|
.ep(commonParams)
|
|
583
586
|
.m(function (Command, cs, config, o) {
|
|
584
|
-
return [
|
|
587
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
585
588
|
})
|
|
586
589
|
.s("SimpleEmailService_v2", "GetDedicatedIps", {})
|
|
587
590
|
.n("SESv2Client", "GetDedicatedIpsCommand")
|
|
588
|
-
.sc(
|
|
591
|
+
.sc(GetDedicatedIps$)
|
|
589
592
|
.build() {
|
|
590
593
|
}
|
|
591
594
|
|
|
592
|
-
class GetDeliverabilityDashboardOptionsCommand extends
|
|
595
|
+
class GetDeliverabilityDashboardOptionsCommand extends Command
|
|
593
596
|
.classBuilder()
|
|
594
597
|
.ep(commonParams)
|
|
595
598
|
.m(function (Command, cs, config, o) {
|
|
596
|
-
return [
|
|
599
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
597
600
|
})
|
|
598
601
|
.s("SimpleEmailService_v2", "GetDeliverabilityDashboardOptions", {})
|
|
599
602
|
.n("SESv2Client", "GetDeliverabilityDashboardOptionsCommand")
|
|
600
|
-
.sc(
|
|
603
|
+
.sc(GetDeliverabilityDashboardOptions$)
|
|
601
604
|
.build() {
|
|
602
605
|
}
|
|
603
606
|
|
|
604
|
-
class GetDeliverabilityTestReportCommand extends
|
|
607
|
+
class GetDeliverabilityTestReportCommand extends Command
|
|
605
608
|
.classBuilder()
|
|
606
609
|
.ep(commonParams)
|
|
607
610
|
.m(function (Command, cs, config, o) {
|
|
608
|
-
return [
|
|
611
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
609
612
|
})
|
|
610
613
|
.s("SimpleEmailService_v2", "GetDeliverabilityTestReport", {})
|
|
611
614
|
.n("SESv2Client", "GetDeliverabilityTestReportCommand")
|
|
612
|
-
.sc(
|
|
615
|
+
.sc(GetDeliverabilityTestReport$)
|
|
613
616
|
.build() {
|
|
614
617
|
}
|
|
615
618
|
|
|
616
|
-
class GetDomainDeliverabilityCampaignCommand extends
|
|
619
|
+
class GetDomainDeliverabilityCampaignCommand extends Command
|
|
617
620
|
.classBuilder()
|
|
618
621
|
.ep(commonParams)
|
|
619
622
|
.m(function (Command, cs, config, o) {
|
|
620
|
-
return [
|
|
623
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
621
624
|
})
|
|
622
625
|
.s("SimpleEmailService_v2", "GetDomainDeliverabilityCampaign", {})
|
|
623
626
|
.n("SESv2Client", "GetDomainDeliverabilityCampaignCommand")
|
|
624
|
-
.sc(
|
|
627
|
+
.sc(GetDomainDeliverabilityCampaign$)
|
|
625
628
|
.build() {
|
|
626
629
|
}
|
|
627
630
|
|
|
628
|
-
class GetDomainStatisticsReportCommand extends
|
|
631
|
+
class GetDomainStatisticsReportCommand extends Command
|
|
629
632
|
.classBuilder()
|
|
630
633
|
.ep(commonParams)
|
|
631
634
|
.m(function (Command, cs, config, o) {
|
|
632
|
-
return [
|
|
635
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
633
636
|
})
|
|
634
637
|
.s("SimpleEmailService_v2", "GetDomainStatisticsReport", {})
|
|
635
638
|
.n("SESv2Client", "GetDomainStatisticsReportCommand")
|
|
636
|
-
.sc(
|
|
639
|
+
.sc(GetDomainStatisticsReport$)
|
|
637
640
|
.build() {
|
|
638
641
|
}
|
|
639
642
|
|
|
640
|
-
class GetEmailAddressInsightsCommand extends
|
|
643
|
+
class GetEmailAddressInsightsCommand extends Command
|
|
641
644
|
.classBuilder()
|
|
642
645
|
.ep(commonParams)
|
|
643
646
|
.m(function (Command, cs, config, o) {
|
|
644
|
-
return [
|
|
647
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
645
648
|
})
|
|
646
649
|
.s("SimpleEmailService_v2", "GetEmailAddressInsights", {})
|
|
647
650
|
.n("SESv2Client", "GetEmailAddressInsightsCommand")
|
|
648
|
-
.sc(
|
|
651
|
+
.sc(GetEmailAddressInsights$)
|
|
649
652
|
.build() {
|
|
650
653
|
}
|
|
651
654
|
|
|
652
|
-
class GetEmailIdentityCommand extends
|
|
655
|
+
class GetEmailIdentityCommand extends Command
|
|
653
656
|
.classBuilder()
|
|
654
657
|
.ep(commonParams)
|
|
655
658
|
.m(function (Command, cs, config, o) {
|
|
656
|
-
return [
|
|
659
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
657
660
|
})
|
|
658
661
|
.s("SimpleEmailService_v2", "GetEmailIdentity", {})
|
|
659
662
|
.n("SESv2Client", "GetEmailIdentityCommand")
|
|
660
|
-
.sc(
|
|
663
|
+
.sc(GetEmailIdentity$)
|
|
661
664
|
.build() {
|
|
662
665
|
}
|
|
663
666
|
|
|
664
|
-
class GetEmailIdentityPoliciesCommand extends
|
|
667
|
+
class GetEmailIdentityPoliciesCommand extends Command
|
|
665
668
|
.classBuilder()
|
|
666
669
|
.ep(commonParams)
|
|
667
670
|
.m(function (Command, cs, config, o) {
|
|
668
|
-
return [
|
|
671
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
669
672
|
})
|
|
670
673
|
.s("SimpleEmailService_v2", "GetEmailIdentityPolicies", {})
|
|
671
674
|
.n("SESv2Client", "GetEmailIdentityPoliciesCommand")
|
|
672
|
-
.sc(
|
|
675
|
+
.sc(GetEmailIdentityPolicies$)
|
|
673
676
|
.build() {
|
|
674
677
|
}
|
|
675
678
|
|
|
676
|
-
class GetEmailTemplateCommand extends
|
|
679
|
+
class GetEmailTemplateCommand extends Command
|
|
677
680
|
.classBuilder()
|
|
678
681
|
.ep(commonParams)
|
|
679
682
|
.m(function (Command, cs, config, o) {
|
|
680
|
-
return [
|
|
683
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
681
684
|
})
|
|
682
685
|
.s("SimpleEmailService_v2", "GetEmailTemplate", {})
|
|
683
686
|
.n("SESv2Client", "GetEmailTemplateCommand")
|
|
684
|
-
.sc(
|
|
687
|
+
.sc(GetEmailTemplate$)
|
|
685
688
|
.build() {
|
|
686
689
|
}
|
|
687
690
|
|
|
688
|
-
class GetExportJobCommand extends
|
|
691
|
+
class GetExportJobCommand extends Command
|
|
689
692
|
.classBuilder()
|
|
690
693
|
.ep(commonParams)
|
|
691
694
|
.m(function (Command, cs, config, o) {
|
|
692
|
-
return [
|
|
695
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
693
696
|
})
|
|
694
697
|
.s("SimpleEmailService_v2", "GetExportJob", {})
|
|
695
698
|
.n("SESv2Client", "GetExportJobCommand")
|
|
696
|
-
.sc(
|
|
699
|
+
.sc(GetExportJob$)
|
|
697
700
|
.build() {
|
|
698
701
|
}
|
|
699
702
|
|
|
700
|
-
class GetImportJobCommand extends
|
|
703
|
+
class GetImportJobCommand extends Command
|
|
701
704
|
.classBuilder()
|
|
702
705
|
.ep(commonParams)
|
|
703
706
|
.m(function (Command, cs, config, o) {
|
|
704
|
-
return [
|
|
707
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
705
708
|
})
|
|
706
709
|
.s("SimpleEmailService_v2", "GetImportJob", {})
|
|
707
710
|
.n("SESv2Client", "GetImportJobCommand")
|
|
708
|
-
.sc(
|
|
711
|
+
.sc(GetImportJob$)
|
|
709
712
|
.build() {
|
|
710
713
|
}
|
|
711
714
|
|
|
712
|
-
class GetMessageInsightsCommand extends
|
|
715
|
+
class GetMessageInsightsCommand extends Command
|
|
713
716
|
.classBuilder()
|
|
714
717
|
.ep(commonParams)
|
|
715
718
|
.m(function (Command, cs, config, o) {
|
|
716
|
-
return [
|
|
719
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
717
720
|
})
|
|
718
721
|
.s("SimpleEmailService_v2", "GetMessageInsights", {})
|
|
719
722
|
.n("SESv2Client", "GetMessageInsightsCommand")
|
|
720
|
-
.sc(
|
|
723
|
+
.sc(GetMessageInsights$)
|
|
721
724
|
.build() {
|
|
722
725
|
}
|
|
723
726
|
|
|
724
|
-
class GetMultiRegionEndpointCommand extends
|
|
727
|
+
class GetMultiRegionEndpointCommand extends Command
|
|
725
728
|
.classBuilder()
|
|
726
729
|
.ep(commonParams)
|
|
727
730
|
.m(function (Command, cs, config, o) {
|
|
728
|
-
return [
|
|
731
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
729
732
|
})
|
|
730
733
|
.s("SimpleEmailService_v2", "GetMultiRegionEndpoint", {})
|
|
731
734
|
.n("SESv2Client", "GetMultiRegionEndpointCommand")
|
|
732
|
-
.sc(
|
|
735
|
+
.sc(GetMultiRegionEndpoint$)
|
|
733
736
|
.build() {
|
|
734
737
|
}
|
|
735
738
|
|
|
736
|
-
class GetReputationEntityCommand extends
|
|
739
|
+
class GetReputationEntityCommand extends Command
|
|
737
740
|
.classBuilder()
|
|
738
741
|
.ep(commonParams)
|
|
739
742
|
.m(function (Command, cs, config, o) {
|
|
740
|
-
return [
|
|
743
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
741
744
|
})
|
|
742
745
|
.s("SimpleEmailService_v2", "GetReputationEntity", {})
|
|
743
746
|
.n("SESv2Client", "GetReputationEntityCommand")
|
|
744
|
-
.sc(
|
|
747
|
+
.sc(GetReputationEntity$)
|
|
745
748
|
.build() {
|
|
746
749
|
}
|
|
747
750
|
|
|
748
|
-
class GetSuppressedDestinationCommand extends
|
|
751
|
+
class GetSuppressedDestinationCommand extends Command
|
|
749
752
|
.classBuilder()
|
|
750
753
|
.ep(commonParams)
|
|
751
754
|
.m(function (Command, cs, config, o) {
|
|
752
|
-
return [
|
|
755
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
753
756
|
})
|
|
754
757
|
.s("SimpleEmailService_v2", "GetSuppressedDestination", {})
|
|
755
758
|
.n("SESv2Client", "GetSuppressedDestinationCommand")
|
|
756
|
-
.sc(
|
|
759
|
+
.sc(GetSuppressedDestination$)
|
|
757
760
|
.build() {
|
|
758
761
|
}
|
|
759
762
|
|
|
760
|
-
class GetTenantCommand extends
|
|
763
|
+
class GetTenantCommand extends Command
|
|
761
764
|
.classBuilder()
|
|
762
765
|
.ep(commonParams)
|
|
763
766
|
.m(function (Command, cs, config, o) {
|
|
764
|
-
return [
|
|
767
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
765
768
|
})
|
|
766
769
|
.s("SimpleEmailService_v2", "GetTenant", {})
|
|
767
770
|
.n("SESv2Client", "GetTenantCommand")
|
|
768
|
-
.sc(
|
|
771
|
+
.sc(GetTenant$)
|
|
769
772
|
.build() {
|
|
770
773
|
}
|
|
771
774
|
|
|
772
|
-
class ListConfigurationSetsCommand extends
|
|
775
|
+
class ListConfigurationSetsCommand extends Command
|
|
773
776
|
.classBuilder()
|
|
774
777
|
.ep(commonParams)
|
|
775
778
|
.m(function (Command, cs, config, o) {
|
|
776
|
-
return [
|
|
779
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
777
780
|
})
|
|
778
781
|
.s("SimpleEmailService_v2", "ListConfigurationSets", {})
|
|
779
782
|
.n("SESv2Client", "ListConfigurationSetsCommand")
|
|
780
|
-
.sc(
|
|
783
|
+
.sc(ListConfigurationSets$)
|
|
781
784
|
.build() {
|
|
782
785
|
}
|
|
783
786
|
|
|
784
|
-
class ListContactListsCommand extends
|
|
787
|
+
class ListContactListsCommand extends Command
|
|
785
788
|
.classBuilder()
|
|
786
789
|
.ep(commonParams)
|
|
787
790
|
.m(function (Command, cs, config, o) {
|
|
788
|
-
return [
|
|
791
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
789
792
|
})
|
|
790
793
|
.s("SimpleEmailService_v2", "ListContactLists", {})
|
|
791
794
|
.n("SESv2Client", "ListContactListsCommand")
|
|
792
|
-
.sc(
|
|
795
|
+
.sc(ListContactLists$)
|
|
793
796
|
.build() {
|
|
794
797
|
}
|
|
795
798
|
|
|
796
|
-
class ListContactsCommand extends
|
|
799
|
+
class ListContactsCommand extends Command
|
|
797
800
|
.classBuilder()
|
|
798
801
|
.ep(commonParams)
|
|
799
802
|
.m(function (Command, cs, config, o) {
|
|
800
|
-
return [
|
|
803
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
801
804
|
})
|
|
802
805
|
.s("SimpleEmailService_v2", "ListContacts", {})
|
|
803
806
|
.n("SESv2Client", "ListContactsCommand")
|
|
804
|
-
.sc(
|
|
807
|
+
.sc(ListContacts$)
|
|
805
808
|
.build() {
|
|
806
809
|
}
|
|
807
810
|
|
|
808
|
-
class ListCustomVerificationEmailTemplatesCommand extends
|
|
811
|
+
class ListCustomVerificationEmailTemplatesCommand extends Command
|
|
809
812
|
.classBuilder()
|
|
810
813
|
.ep(commonParams)
|
|
811
814
|
.m(function (Command, cs, config, o) {
|
|
812
|
-
return [
|
|
815
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
813
816
|
})
|
|
814
817
|
.s("SimpleEmailService_v2", "ListCustomVerificationEmailTemplates", {})
|
|
815
818
|
.n("SESv2Client", "ListCustomVerificationEmailTemplatesCommand")
|
|
816
|
-
.sc(
|
|
819
|
+
.sc(ListCustomVerificationEmailTemplates$)
|
|
817
820
|
.build() {
|
|
818
821
|
}
|
|
819
822
|
|
|
820
|
-
class ListDedicatedIpPoolsCommand extends
|
|
823
|
+
class ListDedicatedIpPoolsCommand extends Command
|
|
821
824
|
.classBuilder()
|
|
822
825
|
.ep(commonParams)
|
|
823
826
|
.m(function (Command, cs, config, o) {
|
|
824
|
-
return [
|
|
827
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
825
828
|
})
|
|
826
829
|
.s("SimpleEmailService_v2", "ListDedicatedIpPools", {})
|
|
827
830
|
.n("SESv2Client", "ListDedicatedIpPoolsCommand")
|
|
828
|
-
.sc(
|
|
831
|
+
.sc(ListDedicatedIpPools$)
|
|
829
832
|
.build() {
|
|
830
833
|
}
|
|
831
834
|
|
|
832
|
-
class ListDeliverabilityTestReportsCommand extends
|
|
835
|
+
class ListDeliverabilityTestReportsCommand extends Command
|
|
833
836
|
.classBuilder()
|
|
834
837
|
.ep(commonParams)
|
|
835
838
|
.m(function (Command, cs, config, o) {
|
|
836
|
-
return [
|
|
839
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
837
840
|
})
|
|
838
841
|
.s("SimpleEmailService_v2", "ListDeliverabilityTestReports", {})
|
|
839
842
|
.n("SESv2Client", "ListDeliverabilityTestReportsCommand")
|
|
840
|
-
.sc(
|
|
843
|
+
.sc(ListDeliverabilityTestReports$)
|
|
841
844
|
.build() {
|
|
842
845
|
}
|
|
843
846
|
|
|
844
|
-
class ListDomainDeliverabilityCampaignsCommand extends
|
|
847
|
+
class ListDomainDeliverabilityCampaignsCommand extends Command
|
|
845
848
|
.classBuilder()
|
|
846
849
|
.ep(commonParams)
|
|
847
850
|
.m(function (Command, cs, config, o) {
|
|
848
|
-
return [
|
|
851
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
849
852
|
})
|
|
850
853
|
.s("SimpleEmailService_v2", "ListDomainDeliverabilityCampaigns", {})
|
|
851
854
|
.n("SESv2Client", "ListDomainDeliverabilityCampaignsCommand")
|
|
852
|
-
.sc(
|
|
855
|
+
.sc(ListDomainDeliverabilityCampaigns$)
|
|
853
856
|
.build() {
|
|
854
857
|
}
|
|
855
858
|
|
|
856
|
-
class ListEmailIdentitiesCommand extends
|
|
859
|
+
class ListEmailIdentitiesCommand extends Command
|
|
857
860
|
.classBuilder()
|
|
858
861
|
.ep(commonParams)
|
|
859
862
|
.m(function (Command, cs, config, o) {
|
|
860
|
-
return [
|
|
863
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
861
864
|
})
|
|
862
865
|
.s("SimpleEmailService_v2", "ListEmailIdentities", {})
|
|
863
866
|
.n("SESv2Client", "ListEmailIdentitiesCommand")
|
|
864
|
-
.sc(
|
|
867
|
+
.sc(ListEmailIdentities$)
|
|
865
868
|
.build() {
|
|
866
869
|
}
|
|
867
870
|
|
|
868
|
-
class ListEmailTemplatesCommand extends
|
|
871
|
+
class ListEmailTemplatesCommand extends Command
|
|
869
872
|
.classBuilder()
|
|
870
873
|
.ep(commonParams)
|
|
871
874
|
.m(function (Command, cs, config, o) {
|
|
872
|
-
return [
|
|
875
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
873
876
|
})
|
|
874
877
|
.s("SimpleEmailService_v2", "ListEmailTemplates", {})
|
|
875
878
|
.n("SESv2Client", "ListEmailTemplatesCommand")
|
|
876
|
-
.sc(
|
|
879
|
+
.sc(ListEmailTemplates$)
|
|
877
880
|
.build() {
|
|
878
881
|
}
|
|
879
882
|
|
|
880
|
-
class ListExportJobsCommand extends
|
|
883
|
+
class ListExportJobsCommand extends Command
|
|
881
884
|
.classBuilder()
|
|
882
885
|
.ep(commonParams)
|
|
883
886
|
.m(function (Command, cs, config, o) {
|
|
884
|
-
return [
|
|
887
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
885
888
|
})
|
|
886
889
|
.s("SimpleEmailService_v2", "ListExportJobs", {})
|
|
887
890
|
.n("SESv2Client", "ListExportJobsCommand")
|
|
888
|
-
.sc(
|
|
891
|
+
.sc(ListExportJobs$)
|
|
889
892
|
.build() {
|
|
890
893
|
}
|
|
891
894
|
|
|
892
|
-
class ListImportJobsCommand extends
|
|
895
|
+
class ListImportJobsCommand extends Command
|
|
893
896
|
.classBuilder()
|
|
894
897
|
.ep(commonParams)
|
|
895
898
|
.m(function (Command, cs, config, o) {
|
|
896
|
-
return [
|
|
899
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
897
900
|
})
|
|
898
901
|
.s("SimpleEmailService_v2", "ListImportJobs", {})
|
|
899
902
|
.n("SESv2Client", "ListImportJobsCommand")
|
|
900
|
-
.sc(
|
|
903
|
+
.sc(ListImportJobs$)
|
|
901
904
|
.build() {
|
|
902
905
|
}
|
|
903
906
|
|
|
904
|
-
class ListMultiRegionEndpointsCommand extends
|
|
907
|
+
class ListMultiRegionEndpointsCommand extends Command
|
|
905
908
|
.classBuilder()
|
|
906
909
|
.ep(commonParams)
|
|
907
910
|
.m(function (Command, cs, config, o) {
|
|
908
|
-
return [
|
|
911
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
909
912
|
})
|
|
910
913
|
.s("SimpleEmailService_v2", "ListMultiRegionEndpoints", {})
|
|
911
914
|
.n("SESv2Client", "ListMultiRegionEndpointsCommand")
|
|
912
|
-
.sc(
|
|
915
|
+
.sc(ListMultiRegionEndpoints$)
|
|
913
916
|
.build() {
|
|
914
917
|
}
|
|
915
918
|
|
|
916
|
-
class ListRecommendationsCommand extends
|
|
919
|
+
class ListRecommendationsCommand extends Command
|
|
917
920
|
.classBuilder()
|
|
918
921
|
.ep(commonParams)
|
|
919
922
|
.m(function (Command, cs, config, o) {
|
|
920
|
-
return [
|
|
923
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
921
924
|
})
|
|
922
925
|
.s("SimpleEmailService_v2", "ListRecommendations", {})
|
|
923
926
|
.n("SESv2Client", "ListRecommendationsCommand")
|
|
924
|
-
.sc(
|
|
927
|
+
.sc(ListRecommendations$)
|
|
925
928
|
.build() {
|
|
926
929
|
}
|
|
927
930
|
|
|
928
|
-
class ListReputationEntitiesCommand extends
|
|
931
|
+
class ListReputationEntitiesCommand extends Command
|
|
929
932
|
.classBuilder()
|
|
930
933
|
.ep(commonParams)
|
|
931
934
|
.m(function (Command, cs, config, o) {
|
|
932
|
-
return [
|
|
935
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
933
936
|
})
|
|
934
937
|
.s("SimpleEmailService_v2", "ListReputationEntities", {})
|
|
935
938
|
.n("SESv2Client", "ListReputationEntitiesCommand")
|
|
936
|
-
.sc(
|
|
939
|
+
.sc(ListReputationEntities$)
|
|
937
940
|
.build() {
|
|
938
941
|
}
|
|
939
942
|
|
|
940
|
-
class ListResourceTenantsCommand extends
|
|
943
|
+
class ListResourceTenantsCommand extends Command
|
|
941
944
|
.classBuilder()
|
|
942
945
|
.ep(commonParams)
|
|
943
946
|
.m(function (Command, cs, config, o) {
|
|
944
|
-
return [
|
|
947
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
945
948
|
})
|
|
946
949
|
.s("SimpleEmailService_v2", "ListResourceTenants", {})
|
|
947
950
|
.n("SESv2Client", "ListResourceTenantsCommand")
|
|
948
|
-
.sc(
|
|
951
|
+
.sc(ListResourceTenants$)
|
|
949
952
|
.build() {
|
|
950
953
|
}
|
|
951
954
|
|
|
952
|
-
class ListSuppressedDestinationsCommand extends
|
|
955
|
+
class ListSuppressedDestinationsCommand extends Command
|
|
953
956
|
.classBuilder()
|
|
954
957
|
.ep(commonParams)
|
|
955
958
|
.m(function (Command, cs, config, o) {
|
|
956
|
-
return [
|
|
959
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
957
960
|
})
|
|
958
961
|
.s("SimpleEmailService_v2", "ListSuppressedDestinations", {})
|
|
959
962
|
.n("SESv2Client", "ListSuppressedDestinationsCommand")
|
|
960
|
-
.sc(
|
|
963
|
+
.sc(ListSuppressedDestinations$)
|
|
961
964
|
.build() {
|
|
962
965
|
}
|
|
963
966
|
|
|
964
|
-
class ListTagsForResourceCommand extends
|
|
967
|
+
class ListTagsForResourceCommand extends Command
|
|
965
968
|
.classBuilder()
|
|
966
969
|
.ep(commonParams)
|
|
967
970
|
.m(function (Command, cs, config, o) {
|
|
968
|
-
return [
|
|
971
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
969
972
|
})
|
|
970
973
|
.s("SimpleEmailService_v2", "ListTagsForResource", {})
|
|
971
974
|
.n("SESv2Client", "ListTagsForResourceCommand")
|
|
972
|
-
.sc(
|
|
975
|
+
.sc(ListTagsForResource$)
|
|
973
976
|
.build() {
|
|
974
977
|
}
|
|
975
978
|
|
|
976
|
-
class ListTenantResourcesCommand extends
|
|
979
|
+
class ListTenantResourcesCommand extends Command
|
|
977
980
|
.classBuilder()
|
|
978
981
|
.ep(commonParams)
|
|
979
982
|
.m(function (Command, cs, config, o) {
|
|
980
|
-
return [
|
|
983
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
981
984
|
})
|
|
982
985
|
.s("SimpleEmailService_v2", "ListTenantResources", {})
|
|
983
986
|
.n("SESv2Client", "ListTenantResourcesCommand")
|
|
984
|
-
.sc(
|
|
987
|
+
.sc(ListTenantResources$)
|
|
985
988
|
.build() {
|
|
986
989
|
}
|
|
987
990
|
|
|
988
|
-
class ListTenantsCommand extends
|
|
991
|
+
class ListTenantsCommand extends Command
|
|
989
992
|
.classBuilder()
|
|
990
993
|
.ep(commonParams)
|
|
991
994
|
.m(function (Command, cs, config, o) {
|
|
992
|
-
return [
|
|
995
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
993
996
|
})
|
|
994
997
|
.s("SimpleEmailService_v2", "ListTenants", {})
|
|
995
998
|
.n("SESv2Client", "ListTenantsCommand")
|
|
996
|
-
.sc(
|
|
999
|
+
.sc(ListTenants$)
|
|
997
1000
|
.build() {
|
|
998
1001
|
}
|
|
999
1002
|
|
|
1000
|
-
class PutAccountDedicatedIpWarmupAttributesCommand extends
|
|
1003
|
+
class PutAccountDedicatedIpWarmupAttributesCommand extends Command
|
|
1001
1004
|
.classBuilder()
|
|
1002
1005
|
.ep(commonParams)
|
|
1003
1006
|
.m(function (Command, cs, config, o) {
|
|
1004
|
-
return [
|
|
1007
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1005
1008
|
})
|
|
1006
1009
|
.s("SimpleEmailService_v2", "PutAccountDedicatedIpWarmupAttributes", {})
|
|
1007
1010
|
.n("SESv2Client", "PutAccountDedicatedIpWarmupAttributesCommand")
|
|
1008
|
-
.sc(
|
|
1011
|
+
.sc(PutAccountDedicatedIpWarmupAttributes$)
|
|
1009
1012
|
.build() {
|
|
1010
1013
|
}
|
|
1011
1014
|
|
|
1012
|
-
class PutAccountDetailsCommand extends
|
|
1015
|
+
class PutAccountDetailsCommand extends Command
|
|
1013
1016
|
.classBuilder()
|
|
1014
1017
|
.ep(commonParams)
|
|
1015
1018
|
.m(function (Command, cs, config, o) {
|
|
1016
|
-
return [
|
|
1019
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1017
1020
|
})
|
|
1018
1021
|
.s("SimpleEmailService_v2", "PutAccountDetails", {})
|
|
1019
1022
|
.n("SESv2Client", "PutAccountDetailsCommand")
|
|
1020
|
-
.sc(
|
|
1023
|
+
.sc(PutAccountDetails$)
|
|
1021
1024
|
.build() {
|
|
1022
1025
|
}
|
|
1023
1026
|
|
|
1024
|
-
class PutAccountSendingAttributesCommand extends
|
|
1027
|
+
class PutAccountSendingAttributesCommand extends Command
|
|
1025
1028
|
.classBuilder()
|
|
1026
1029
|
.ep(commonParams)
|
|
1027
1030
|
.m(function (Command, cs, config, o) {
|
|
1028
|
-
return [
|
|
1031
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1029
1032
|
})
|
|
1030
1033
|
.s("SimpleEmailService_v2", "PutAccountSendingAttributes", {})
|
|
1031
1034
|
.n("SESv2Client", "PutAccountSendingAttributesCommand")
|
|
1032
|
-
.sc(
|
|
1035
|
+
.sc(PutAccountSendingAttributes$)
|
|
1033
1036
|
.build() {
|
|
1034
1037
|
}
|
|
1035
1038
|
|
|
1036
|
-
class PutAccountSuppressionAttributesCommand extends
|
|
1039
|
+
class PutAccountSuppressionAttributesCommand extends Command
|
|
1037
1040
|
.classBuilder()
|
|
1038
1041
|
.ep(commonParams)
|
|
1039
1042
|
.m(function (Command, cs, config, o) {
|
|
1040
|
-
return [
|
|
1043
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1041
1044
|
})
|
|
1042
1045
|
.s("SimpleEmailService_v2", "PutAccountSuppressionAttributes", {})
|
|
1043
1046
|
.n("SESv2Client", "PutAccountSuppressionAttributesCommand")
|
|
1044
|
-
.sc(
|
|
1047
|
+
.sc(PutAccountSuppressionAttributes$)
|
|
1045
1048
|
.build() {
|
|
1046
1049
|
}
|
|
1047
1050
|
|
|
1048
|
-
class PutAccountVdmAttributesCommand extends
|
|
1051
|
+
class PutAccountVdmAttributesCommand extends Command
|
|
1049
1052
|
.classBuilder()
|
|
1050
1053
|
.ep(commonParams)
|
|
1051
1054
|
.m(function (Command, cs, config, o) {
|
|
1052
|
-
return [
|
|
1055
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1053
1056
|
})
|
|
1054
1057
|
.s("SimpleEmailService_v2", "PutAccountVdmAttributes", {})
|
|
1055
1058
|
.n("SESv2Client", "PutAccountVdmAttributesCommand")
|
|
1056
|
-
.sc(
|
|
1059
|
+
.sc(PutAccountVdmAttributes$)
|
|
1057
1060
|
.build() {
|
|
1058
1061
|
}
|
|
1059
1062
|
|
|
1060
|
-
class PutConfigurationSetArchivingOptionsCommand extends
|
|
1063
|
+
class PutConfigurationSetArchivingOptionsCommand extends Command
|
|
1061
1064
|
.classBuilder()
|
|
1062
1065
|
.ep(commonParams)
|
|
1063
1066
|
.m(function (Command, cs, config, o) {
|
|
1064
|
-
return [
|
|
1067
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1065
1068
|
})
|
|
1066
1069
|
.s("SimpleEmailService_v2", "PutConfigurationSetArchivingOptions", {})
|
|
1067
1070
|
.n("SESv2Client", "PutConfigurationSetArchivingOptionsCommand")
|
|
1068
|
-
.sc(
|
|
1071
|
+
.sc(PutConfigurationSetArchivingOptions$)
|
|
1069
1072
|
.build() {
|
|
1070
1073
|
}
|
|
1071
1074
|
|
|
1072
|
-
class PutConfigurationSetDeliveryOptionsCommand extends
|
|
1075
|
+
class PutConfigurationSetDeliveryOptionsCommand extends Command
|
|
1073
1076
|
.classBuilder()
|
|
1074
1077
|
.ep(commonParams)
|
|
1075
1078
|
.m(function (Command, cs, config, o) {
|
|
1076
|
-
return [
|
|
1079
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1077
1080
|
})
|
|
1078
1081
|
.s("SimpleEmailService_v2", "PutConfigurationSetDeliveryOptions", {})
|
|
1079
1082
|
.n("SESv2Client", "PutConfigurationSetDeliveryOptionsCommand")
|
|
1080
|
-
.sc(
|
|
1083
|
+
.sc(PutConfigurationSetDeliveryOptions$)
|
|
1081
1084
|
.build() {
|
|
1082
1085
|
}
|
|
1083
1086
|
|
|
1084
|
-
class PutConfigurationSetReputationOptionsCommand extends
|
|
1087
|
+
class PutConfigurationSetReputationOptionsCommand extends Command
|
|
1085
1088
|
.classBuilder()
|
|
1086
1089
|
.ep(commonParams)
|
|
1087
1090
|
.m(function (Command, cs, config, o) {
|
|
1088
|
-
return [
|
|
1091
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1089
1092
|
})
|
|
1090
1093
|
.s("SimpleEmailService_v2", "PutConfigurationSetReputationOptions", {})
|
|
1091
1094
|
.n("SESv2Client", "PutConfigurationSetReputationOptionsCommand")
|
|
1092
|
-
.sc(
|
|
1095
|
+
.sc(PutConfigurationSetReputationOptions$)
|
|
1093
1096
|
.build() {
|
|
1094
1097
|
}
|
|
1095
1098
|
|
|
1096
|
-
class PutConfigurationSetSendingOptionsCommand extends
|
|
1099
|
+
class PutConfigurationSetSendingOptionsCommand extends Command
|
|
1097
1100
|
.classBuilder()
|
|
1098
1101
|
.ep(commonParams)
|
|
1099
1102
|
.m(function (Command, cs, config, o) {
|
|
1100
|
-
return [
|
|
1103
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1101
1104
|
})
|
|
1102
1105
|
.s("SimpleEmailService_v2", "PutConfigurationSetSendingOptions", {})
|
|
1103
1106
|
.n("SESv2Client", "PutConfigurationSetSendingOptionsCommand")
|
|
1104
|
-
.sc(
|
|
1107
|
+
.sc(PutConfigurationSetSendingOptions$)
|
|
1105
1108
|
.build() {
|
|
1106
1109
|
}
|
|
1107
1110
|
|
|
1108
|
-
class PutConfigurationSetSuppressionOptionsCommand extends
|
|
1111
|
+
class PutConfigurationSetSuppressionOptionsCommand extends Command
|
|
1109
1112
|
.classBuilder()
|
|
1110
1113
|
.ep(commonParams)
|
|
1111
1114
|
.m(function (Command, cs, config, o) {
|
|
1112
|
-
return [
|
|
1115
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1113
1116
|
})
|
|
1114
1117
|
.s("SimpleEmailService_v2", "PutConfigurationSetSuppressionOptions", {})
|
|
1115
1118
|
.n("SESv2Client", "PutConfigurationSetSuppressionOptionsCommand")
|
|
1116
|
-
.sc(
|
|
1119
|
+
.sc(PutConfigurationSetSuppressionOptions$)
|
|
1117
1120
|
.build() {
|
|
1118
1121
|
}
|
|
1119
1122
|
|
|
1120
|
-
class PutConfigurationSetTrackingOptionsCommand extends
|
|
1123
|
+
class PutConfigurationSetTrackingOptionsCommand extends Command
|
|
1121
1124
|
.classBuilder()
|
|
1122
1125
|
.ep(commonParams)
|
|
1123
1126
|
.m(function (Command, cs, config, o) {
|
|
1124
|
-
return [
|
|
1127
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1125
1128
|
})
|
|
1126
1129
|
.s("SimpleEmailService_v2", "PutConfigurationSetTrackingOptions", {})
|
|
1127
1130
|
.n("SESv2Client", "PutConfigurationSetTrackingOptionsCommand")
|
|
1128
|
-
.sc(
|
|
1131
|
+
.sc(PutConfigurationSetTrackingOptions$)
|
|
1129
1132
|
.build() {
|
|
1130
1133
|
}
|
|
1131
1134
|
|
|
1132
|
-
class PutConfigurationSetVdmOptionsCommand extends
|
|
1135
|
+
class PutConfigurationSetVdmOptionsCommand extends Command
|
|
1133
1136
|
.classBuilder()
|
|
1134
1137
|
.ep(commonParams)
|
|
1135
1138
|
.m(function (Command, cs, config, o) {
|
|
1136
|
-
return [
|
|
1139
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1137
1140
|
})
|
|
1138
1141
|
.s("SimpleEmailService_v2", "PutConfigurationSetVdmOptions", {})
|
|
1139
1142
|
.n("SESv2Client", "PutConfigurationSetVdmOptionsCommand")
|
|
1140
|
-
.sc(
|
|
1143
|
+
.sc(PutConfigurationSetVdmOptions$)
|
|
1141
1144
|
.build() {
|
|
1142
1145
|
}
|
|
1143
1146
|
|
|
1144
|
-
class PutDedicatedIpInPoolCommand extends
|
|
1147
|
+
class PutDedicatedIpInPoolCommand extends Command
|
|
1145
1148
|
.classBuilder()
|
|
1146
1149
|
.ep(commonParams)
|
|
1147
1150
|
.m(function (Command, cs, config, o) {
|
|
1148
|
-
return [
|
|
1151
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1149
1152
|
})
|
|
1150
1153
|
.s("SimpleEmailService_v2", "PutDedicatedIpInPool", {})
|
|
1151
1154
|
.n("SESv2Client", "PutDedicatedIpInPoolCommand")
|
|
1152
|
-
.sc(
|
|
1155
|
+
.sc(PutDedicatedIpInPool$)
|
|
1153
1156
|
.build() {
|
|
1154
1157
|
}
|
|
1155
1158
|
|
|
1156
|
-
class PutDedicatedIpPoolScalingAttributesCommand extends
|
|
1159
|
+
class PutDedicatedIpPoolScalingAttributesCommand extends Command
|
|
1157
1160
|
.classBuilder()
|
|
1158
1161
|
.ep(commonParams)
|
|
1159
1162
|
.m(function (Command, cs, config, o) {
|
|
1160
|
-
return [
|
|
1163
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1161
1164
|
})
|
|
1162
1165
|
.s("SimpleEmailService_v2", "PutDedicatedIpPoolScalingAttributes", {})
|
|
1163
1166
|
.n("SESv2Client", "PutDedicatedIpPoolScalingAttributesCommand")
|
|
1164
|
-
.sc(
|
|
1167
|
+
.sc(PutDedicatedIpPoolScalingAttributes$)
|
|
1165
1168
|
.build() {
|
|
1166
1169
|
}
|
|
1167
1170
|
|
|
1168
|
-
class PutDedicatedIpWarmupAttributesCommand extends
|
|
1171
|
+
class PutDedicatedIpWarmupAttributesCommand extends Command
|
|
1169
1172
|
.classBuilder()
|
|
1170
1173
|
.ep(commonParams)
|
|
1171
1174
|
.m(function (Command, cs, config, o) {
|
|
1172
|
-
return [
|
|
1175
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1173
1176
|
})
|
|
1174
1177
|
.s("SimpleEmailService_v2", "PutDedicatedIpWarmupAttributes", {})
|
|
1175
1178
|
.n("SESv2Client", "PutDedicatedIpWarmupAttributesCommand")
|
|
1176
|
-
.sc(
|
|
1179
|
+
.sc(PutDedicatedIpWarmupAttributes$)
|
|
1177
1180
|
.build() {
|
|
1178
1181
|
}
|
|
1179
1182
|
|
|
1180
|
-
class PutDeliverabilityDashboardOptionCommand extends
|
|
1183
|
+
class PutDeliverabilityDashboardOptionCommand extends Command
|
|
1181
1184
|
.classBuilder()
|
|
1182
1185
|
.ep(commonParams)
|
|
1183
1186
|
.m(function (Command, cs, config, o) {
|
|
1184
|
-
return [
|
|
1187
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1185
1188
|
})
|
|
1186
1189
|
.s("SimpleEmailService_v2", "PutDeliverabilityDashboardOption", {})
|
|
1187
1190
|
.n("SESv2Client", "PutDeliverabilityDashboardOptionCommand")
|
|
1188
|
-
.sc(
|
|
1191
|
+
.sc(PutDeliverabilityDashboardOption$)
|
|
1189
1192
|
.build() {
|
|
1190
1193
|
}
|
|
1191
1194
|
|
|
1192
|
-
class PutEmailIdentityConfigurationSetAttributesCommand extends
|
|
1195
|
+
class PutEmailIdentityConfigurationSetAttributesCommand extends Command
|
|
1193
1196
|
.classBuilder()
|
|
1194
1197
|
.ep(commonParams)
|
|
1195
1198
|
.m(function (Command, cs, config, o) {
|
|
1196
|
-
return [
|
|
1199
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1197
1200
|
})
|
|
1198
1201
|
.s("SimpleEmailService_v2", "PutEmailIdentityConfigurationSetAttributes", {})
|
|
1199
1202
|
.n("SESv2Client", "PutEmailIdentityConfigurationSetAttributesCommand")
|
|
1200
|
-
.sc(
|
|
1203
|
+
.sc(PutEmailIdentityConfigurationSetAttributes$)
|
|
1201
1204
|
.build() {
|
|
1202
1205
|
}
|
|
1203
1206
|
|
|
1204
|
-
class PutEmailIdentityDkimAttributesCommand extends
|
|
1207
|
+
class PutEmailIdentityDkimAttributesCommand extends Command
|
|
1205
1208
|
.classBuilder()
|
|
1206
1209
|
.ep(commonParams)
|
|
1207
1210
|
.m(function (Command, cs, config, o) {
|
|
1208
|
-
return [
|
|
1211
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1209
1212
|
})
|
|
1210
1213
|
.s("SimpleEmailService_v2", "PutEmailIdentityDkimAttributes", {})
|
|
1211
1214
|
.n("SESv2Client", "PutEmailIdentityDkimAttributesCommand")
|
|
1212
|
-
.sc(
|
|
1215
|
+
.sc(PutEmailIdentityDkimAttributes$)
|
|
1213
1216
|
.build() {
|
|
1214
1217
|
}
|
|
1215
1218
|
|
|
1216
|
-
class PutEmailIdentityDkimSigningAttributesCommand extends
|
|
1219
|
+
class PutEmailIdentityDkimSigningAttributesCommand extends Command
|
|
1217
1220
|
.classBuilder()
|
|
1218
1221
|
.ep(commonParams)
|
|
1219
1222
|
.m(function (Command, cs, config, o) {
|
|
1220
|
-
return [
|
|
1223
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1221
1224
|
})
|
|
1222
1225
|
.s("SimpleEmailService_v2", "PutEmailIdentityDkimSigningAttributes", {})
|
|
1223
1226
|
.n("SESv2Client", "PutEmailIdentityDkimSigningAttributesCommand")
|
|
1224
|
-
.sc(
|
|
1227
|
+
.sc(PutEmailIdentityDkimSigningAttributes$)
|
|
1225
1228
|
.build() {
|
|
1226
1229
|
}
|
|
1227
1230
|
|
|
1228
|
-
class PutEmailIdentityFeedbackAttributesCommand extends
|
|
1231
|
+
class PutEmailIdentityFeedbackAttributesCommand extends Command
|
|
1229
1232
|
.classBuilder()
|
|
1230
1233
|
.ep(commonParams)
|
|
1231
1234
|
.m(function (Command, cs, config, o) {
|
|
1232
|
-
return [
|
|
1235
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1233
1236
|
})
|
|
1234
1237
|
.s("SimpleEmailService_v2", "PutEmailIdentityFeedbackAttributes", {})
|
|
1235
1238
|
.n("SESv2Client", "PutEmailIdentityFeedbackAttributesCommand")
|
|
1236
|
-
.sc(
|
|
1239
|
+
.sc(PutEmailIdentityFeedbackAttributes$)
|
|
1237
1240
|
.build() {
|
|
1238
1241
|
}
|
|
1239
1242
|
|
|
1240
|
-
class PutEmailIdentityMailFromAttributesCommand extends
|
|
1243
|
+
class PutEmailIdentityMailFromAttributesCommand extends Command
|
|
1241
1244
|
.classBuilder()
|
|
1242
1245
|
.ep(commonParams)
|
|
1243
1246
|
.m(function (Command, cs, config, o) {
|
|
1244
|
-
return [
|
|
1247
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1245
1248
|
})
|
|
1246
1249
|
.s("SimpleEmailService_v2", "PutEmailIdentityMailFromAttributes", {})
|
|
1247
1250
|
.n("SESv2Client", "PutEmailIdentityMailFromAttributesCommand")
|
|
1248
|
-
.sc(
|
|
1251
|
+
.sc(PutEmailIdentityMailFromAttributes$)
|
|
1249
1252
|
.build() {
|
|
1250
1253
|
}
|
|
1251
1254
|
|
|
1252
|
-
class PutSuppressedDestinationCommand extends
|
|
1255
|
+
class PutSuppressedDestinationCommand extends Command
|
|
1253
1256
|
.classBuilder()
|
|
1254
1257
|
.ep(commonParams)
|
|
1255
1258
|
.m(function (Command, cs, config, o) {
|
|
1256
|
-
return [
|
|
1259
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1257
1260
|
})
|
|
1258
1261
|
.s("SimpleEmailService_v2", "PutSuppressedDestination", {})
|
|
1259
1262
|
.n("SESv2Client", "PutSuppressedDestinationCommand")
|
|
1260
|
-
.sc(
|
|
1263
|
+
.sc(PutSuppressedDestination$)
|
|
1261
1264
|
.build() {
|
|
1262
1265
|
}
|
|
1263
1266
|
|
|
1264
|
-
class PutTenantSuppressionAttributesCommand extends
|
|
1267
|
+
class PutTenantSuppressionAttributesCommand extends Command
|
|
1265
1268
|
.classBuilder()
|
|
1266
1269
|
.ep(commonParams)
|
|
1267
1270
|
.m(function (Command, cs, config, o) {
|
|
1268
|
-
return [
|
|
1271
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1269
1272
|
})
|
|
1270
1273
|
.s("SimpleEmailService_v2", "PutTenantSuppressionAttributes", {})
|
|
1271
1274
|
.n("SESv2Client", "PutTenantSuppressionAttributesCommand")
|
|
1272
|
-
.sc(
|
|
1275
|
+
.sc(PutTenantSuppressionAttributes$)
|
|
1273
1276
|
.build() {
|
|
1274
1277
|
}
|
|
1275
1278
|
|
|
1276
|
-
class SendBulkEmailCommand extends
|
|
1279
|
+
class SendBulkEmailCommand extends Command
|
|
1277
1280
|
.classBuilder()
|
|
1278
1281
|
.ep({
|
|
1279
1282
|
...commonParams,
|
|
1280
1283
|
EndpointId: { type: "contextParams", name: "EndpointId" },
|
|
1281
1284
|
})
|
|
1282
1285
|
.m(function (Command, cs, config, o) {
|
|
1283
|
-
return [
|
|
1286
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1284
1287
|
})
|
|
1285
1288
|
.s("SimpleEmailService_v2", "SendBulkEmail", {})
|
|
1286
1289
|
.n("SESv2Client", "SendBulkEmailCommand")
|
|
1287
|
-
.sc(
|
|
1290
|
+
.sc(SendBulkEmail$)
|
|
1288
1291
|
.build() {
|
|
1289
1292
|
}
|
|
1290
1293
|
|
|
1291
|
-
class SendCustomVerificationEmailCommand extends
|
|
1294
|
+
class SendCustomVerificationEmailCommand extends Command
|
|
1292
1295
|
.classBuilder()
|
|
1293
1296
|
.ep(commonParams)
|
|
1294
1297
|
.m(function (Command, cs, config, o) {
|
|
1295
|
-
return [
|
|
1298
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1296
1299
|
})
|
|
1297
1300
|
.s("SimpleEmailService_v2", "SendCustomVerificationEmail", {})
|
|
1298
1301
|
.n("SESv2Client", "SendCustomVerificationEmailCommand")
|
|
1299
|
-
.sc(
|
|
1302
|
+
.sc(SendCustomVerificationEmail$)
|
|
1300
1303
|
.build() {
|
|
1301
1304
|
}
|
|
1302
1305
|
|
|
1303
|
-
class SendEmailCommand extends
|
|
1306
|
+
class SendEmailCommand extends Command
|
|
1304
1307
|
.classBuilder()
|
|
1305
1308
|
.ep({
|
|
1306
1309
|
...commonParams,
|
|
1307
1310
|
EndpointId: { type: "contextParams", name: "EndpointId" },
|
|
1308
1311
|
})
|
|
1309
1312
|
.m(function (Command, cs, config, o) {
|
|
1310
|
-
return [
|
|
1313
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1311
1314
|
})
|
|
1312
1315
|
.s("SimpleEmailService_v2", "SendEmail", {})
|
|
1313
1316
|
.n("SESv2Client", "SendEmailCommand")
|
|
1314
|
-
.sc(
|
|
1317
|
+
.sc(SendEmail$)
|
|
1315
1318
|
.build() {
|
|
1316
1319
|
}
|
|
1317
1320
|
|
|
1318
|
-
class TagResourceCommand extends
|
|
1321
|
+
class TagResourceCommand extends Command
|
|
1319
1322
|
.classBuilder()
|
|
1320
1323
|
.ep(commonParams)
|
|
1321
1324
|
.m(function (Command, cs, config, o) {
|
|
1322
|
-
return [
|
|
1325
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1323
1326
|
})
|
|
1324
1327
|
.s("SimpleEmailService_v2", "TagResource", {})
|
|
1325
1328
|
.n("SESv2Client", "TagResourceCommand")
|
|
1326
|
-
.sc(
|
|
1329
|
+
.sc(TagResource$)
|
|
1327
1330
|
.build() {
|
|
1328
1331
|
}
|
|
1329
1332
|
|
|
1330
|
-
class TestRenderEmailTemplateCommand extends
|
|
1333
|
+
class TestRenderEmailTemplateCommand extends Command
|
|
1331
1334
|
.classBuilder()
|
|
1332
1335
|
.ep(commonParams)
|
|
1333
1336
|
.m(function (Command, cs, config, o) {
|
|
1334
|
-
return [
|
|
1337
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1335
1338
|
})
|
|
1336
1339
|
.s("SimpleEmailService_v2", "TestRenderEmailTemplate", {})
|
|
1337
1340
|
.n("SESv2Client", "TestRenderEmailTemplateCommand")
|
|
1338
|
-
.sc(
|
|
1341
|
+
.sc(TestRenderEmailTemplate$)
|
|
1339
1342
|
.build() {
|
|
1340
1343
|
}
|
|
1341
1344
|
|
|
1342
|
-
class UntagResourceCommand extends
|
|
1345
|
+
class UntagResourceCommand extends Command
|
|
1343
1346
|
.classBuilder()
|
|
1344
1347
|
.ep(commonParams)
|
|
1345
1348
|
.m(function (Command, cs, config, o) {
|
|
1346
|
-
return [
|
|
1349
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1347
1350
|
})
|
|
1348
1351
|
.s("SimpleEmailService_v2", "UntagResource", {})
|
|
1349
1352
|
.n("SESv2Client", "UntagResourceCommand")
|
|
1350
|
-
.sc(
|
|
1353
|
+
.sc(UntagResource$)
|
|
1351
1354
|
.build() {
|
|
1352
1355
|
}
|
|
1353
1356
|
|
|
1354
|
-
class UpdateConfigurationSetEventDestinationCommand extends
|
|
1357
|
+
class UpdateConfigurationSetEventDestinationCommand extends Command
|
|
1355
1358
|
.classBuilder()
|
|
1356
1359
|
.ep(commonParams)
|
|
1357
1360
|
.m(function (Command, cs, config, o) {
|
|
1358
|
-
return [
|
|
1361
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1359
1362
|
})
|
|
1360
1363
|
.s("SimpleEmailService_v2", "UpdateConfigurationSetEventDestination", {})
|
|
1361
1364
|
.n("SESv2Client", "UpdateConfigurationSetEventDestinationCommand")
|
|
1362
|
-
.sc(
|
|
1365
|
+
.sc(UpdateConfigurationSetEventDestination$)
|
|
1363
1366
|
.build() {
|
|
1364
1367
|
}
|
|
1365
1368
|
|
|
1366
|
-
class UpdateContactCommand extends
|
|
1369
|
+
class UpdateContactCommand extends Command
|
|
1367
1370
|
.classBuilder()
|
|
1368
1371
|
.ep(commonParams)
|
|
1369
1372
|
.m(function (Command, cs, config, o) {
|
|
1370
|
-
return [
|
|
1373
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1371
1374
|
})
|
|
1372
1375
|
.s("SimpleEmailService_v2", "UpdateContact", {})
|
|
1373
1376
|
.n("SESv2Client", "UpdateContactCommand")
|
|
1374
|
-
.sc(
|
|
1377
|
+
.sc(UpdateContact$)
|
|
1375
1378
|
.build() {
|
|
1376
1379
|
}
|
|
1377
1380
|
|
|
1378
|
-
class UpdateContactListCommand extends
|
|
1381
|
+
class UpdateContactListCommand extends Command
|
|
1379
1382
|
.classBuilder()
|
|
1380
1383
|
.ep(commonParams)
|
|
1381
1384
|
.m(function (Command, cs, config, o) {
|
|
1382
|
-
return [
|
|
1385
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1383
1386
|
})
|
|
1384
1387
|
.s("SimpleEmailService_v2", "UpdateContactList", {})
|
|
1385
1388
|
.n("SESv2Client", "UpdateContactListCommand")
|
|
1386
|
-
.sc(
|
|
1389
|
+
.sc(UpdateContactList$)
|
|
1387
1390
|
.build() {
|
|
1388
1391
|
}
|
|
1389
1392
|
|
|
1390
|
-
class UpdateCustomVerificationEmailTemplateCommand extends
|
|
1393
|
+
class UpdateCustomVerificationEmailTemplateCommand extends Command
|
|
1391
1394
|
.classBuilder()
|
|
1392
1395
|
.ep(commonParams)
|
|
1393
1396
|
.m(function (Command, cs, config, o) {
|
|
1394
|
-
return [
|
|
1397
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1395
1398
|
})
|
|
1396
1399
|
.s("SimpleEmailService_v2", "UpdateCustomVerificationEmailTemplate", {})
|
|
1397
1400
|
.n("SESv2Client", "UpdateCustomVerificationEmailTemplateCommand")
|
|
1398
|
-
.sc(
|
|
1401
|
+
.sc(UpdateCustomVerificationEmailTemplate$)
|
|
1399
1402
|
.build() {
|
|
1400
1403
|
}
|
|
1401
1404
|
|
|
1402
|
-
class UpdateEmailIdentityPolicyCommand extends
|
|
1405
|
+
class UpdateEmailIdentityPolicyCommand extends Command
|
|
1403
1406
|
.classBuilder()
|
|
1404
1407
|
.ep(commonParams)
|
|
1405
1408
|
.m(function (Command, cs, config, o) {
|
|
1406
|
-
return [
|
|
1409
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1407
1410
|
})
|
|
1408
1411
|
.s("SimpleEmailService_v2", "UpdateEmailIdentityPolicy", {})
|
|
1409
1412
|
.n("SESv2Client", "UpdateEmailIdentityPolicyCommand")
|
|
1410
|
-
.sc(
|
|
1413
|
+
.sc(UpdateEmailIdentityPolicy$)
|
|
1411
1414
|
.build() {
|
|
1412
1415
|
}
|
|
1413
1416
|
|
|
1414
|
-
class UpdateEmailTemplateCommand extends
|
|
1417
|
+
class UpdateEmailTemplateCommand extends Command
|
|
1415
1418
|
.classBuilder()
|
|
1416
1419
|
.ep(commonParams)
|
|
1417
1420
|
.m(function (Command, cs, config, o) {
|
|
1418
|
-
return [
|
|
1421
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1419
1422
|
})
|
|
1420
1423
|
.s("SimpleEmailService_v2", "UpdateEmailTemplate", {})
|
|
1421
1424
|
.n("SESv2Client", "UpdateEmailTemplateCommand")
|
|
1422
|
-
.sc(
|
|
1425
|
+
.sc(UpdateEmailTemplate$)
|
|
1423
1426
|
.build() {
|
|
1424
1427
|
}
|
|
1425
1428
|
|
|
1426
|
-
class UpdateReputationEntityCustomerManagedStatusCommand extends
|
|
1429
|
+
class UpdateReputationEntityCustomerManagedStatusCommand extends Command
|
|
1427
1430
|
.classBuilder()
|
|
1428
1431
|
.ep(commonParams)
|
|
1429
1432
|
.m(function (Command, cs, config, o) {
|
|
1430
|
-
return [
|
|
1433
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1431
1434
|
})
|
|
1432
1435
|
.s("SimpleEmailService_v2", "UpdateReputationEntityCustomerManagedStatus", {})
|
|
1433
1436
|
.n("SESv2Client", "UpdateReputationEntityCustomerManagedStatusCommand")
|
|
1434
|
-
.sc(
|
|
1437
|
+
.sc(UpdateReputationEntityCustomerManagedStatus$)
|
|
1435
1438
|
.build() {
|
|
1436
1439
|
}
|
|
1437
1440
|
|
|
1438
|
-
class UpdateReputationEntityPolicyCommand extends
|
|
1441
|
+
class UpdateReputationEntityPolicyCommand extends Command
|
|
1439
1442
|
.classBuilder()
|
|
1440
1443
|
.ep(commonParams)
|
|
1441
1444
|
.m(function (Command, cs, config, o) {
|
|
1442
|
-
return [
|
|
1445
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1443
1446
|
})
|
|
1444
1447
|
.s("SimpleEmailService_v2", "UpdateReputationEntityPolicy", {})
|
|
1445
1448
|
.n("SESv2Client", "UpdateReputationEntityPolicyCommand")
|
|
1446
|
-
.sc(
|
|
1449
|
+
.sc(UpdateReputationEntityPolicy$)
|
|
1447
1450
|
.build() {
|
|
1448
1451
|
}
|
|
1449
1452
|
|
|
1450
|
-
const paginateGetDedicatedIps =
|
|
1453
|
+
const paginateGetDedicatedIps = createPaginator(SESv2Client, GetDedicatedIpsCommand, "NextToken", "NextToken", "PageSize");
|
|
1451
1454
|
|
|
1452
|
-
const paginateListConfigurationSets =
|
|
1455
|
+
const paginateListConfigurationSets = createPaginator(SESv2Client, ListConfigurationSetsCommand, "NextToken", "NextToken", "PageSize");
|
|
1453
1456
|
|
|
1454
|
-
const paginateListContactLists =
|
|
1457
|
+
const paginateListContactLists = createPaginator(SESv2Client, ListContactListsCommand, "NextToken", "NextToken", "PageSize");
|
|
1455
1458
|
|
|
1456
|
-
const paginateListContacts =
|
|
1459
|
+
const paginateListContacts = createPaginator(SESv2Client, ListContactsCommand, "NextToken", "NextToken", "PageSize");
|
|
1457
1460
|
|
|
1458
|
-
const paginateListCustomVerificationEmailTemplates =
|
|
1461
|
+
const paginateListCustomVerificationEmailTemplates = createPaginator(SESv2Client, ListCustomVerificationEmailTemplatesCommand, "NextToken", "NextToken", "PageSize");
|
|
1459
1462
|
|
|
1460
|
-
const paginateListDedicatedIpPools =
|
|
1463
|
+
const paginateListDedicatedIpPools = createPaginator(SESv2Client, ListDedicatedIpPoolsCommand, "NextToken", "NextToken", "PageSize");
|
|
1461
1464
|
|
|
1462
|
-
const paginateListDeliverabilityTestReports =
|
|
1465
|
+
const paginateListDeliverabilityTestReports = createPaginator(SESv2Client, ListDeliverabilityTestReportsCommand, "NextToken", "NextToken", "PageSize");
|
|
1463
1466
|
|
|
1464
|
-
const paginateListDomainDeliverabilityCampaigns =
|
|
1467
|
+
const paginateListDomainDeliverabilityCampaigns = createPaginator(SESv2Client, ListDomainDeliverabilityCampaignsCommand, "NextToken", "NextToken", "PageSize");
|
|
1465
1468
|
|
|
1466
|
-
const paginateListEmailIdentities =
|
|
1469
|
+
const paginateListEmailIdentities = createPaginator(SESv2Client, ListEmailIdentitiesCommand, "NextToken", "NextToken", "PageSize");
|
|
1467
1470
|
|
|
1468
|
-
const paginateListEmailTemplates =
|
|
1471
|
+
const paginateListEmailTemplates = createPaginator(SESv2Client, ListEmailTemplatesCommand, "NextToken", "NextToken", "PageSize");
|
|
1469
1472
|
|
|
1470
|
-
const paginateListExportJobs =
|
|
1473
|
+
const paginateListExportJobs = createPaginator(SESv2Client, ListExportJobsCommand, "NextToken", "NextToken", "PageSize");
|
|
1471
1474
|
|
|
1472
|
-
const paginateListImportJobs =
|
|
1475
|
+
const paginateListImportJobs = createPaginator(SESv2Client, ListImportJobsCommand, "NextToken", "NextToken", "PageSize");
|
|
1473
1476
|
|
|
1474
|
-
const paginateListMultiRegionEndpoints =
|
|
1477
|
+
const paginateListMultiRegionEndpoints = createPaginator(SESv2Client, ListMultiRegionEndpointsCommand, "NextToken", "NextToken", "PageSize");
|
|
1475
1478
|
|
|
1476
|
-
const paginateListRecommendations =
|
|
1479
|
+
const paginateListRecommendations = createPaginator(SESv2Client, ListRecommendationsCommand, "NextToken", "NextToken", "PageSize");
|
|
1477
1480
|
|
|
1478
|
-
const paginateListReputationEntities =
|
|
1481
|
+
const paginateListReputationEntities = createPaginator(SESv2Client, ListReputationEntitiesCommand, "NextToken", "NextToken", "PageSize");
|
|
1479
1482
|
|
|
1480
|
-
const paginateListResourceTenants =
|
|
1483
|
+
const paginateListResourceTenants = createPaginator(SESv2Client, ListResourceTenantsCommand, "NextToken", "NextToken", "PageSize");
|
|
1481
1484
|
|
|
1482
|
-
const paginateListSuppressedDestinations =
|
|
1485
|
+
const paginateListSuppressedDestinations = createPaginator(SESv2Client, ListSuppressedDestinationsCommand, "NextToken", "NextToken", "PageSize");
|
|
1483
1486
|
|
|
1484
|
-
const paginateListTenantResources =
|
|
1487
|
+
const paginateListTenantResources = createPaginator(SESv2Client, ListTenantResourcesCommand, "NextToken", "NextToken", "PageSize");
|
|
1485
1488
|
|
|
1486
|
-
const paginateListTenants =
|
|
1489
|
+
const paginateListTenants = createPaginator(SESv2Client, ListTenantsCommand, "NextToken", "NextToken", "PageSize");
|
|
1487
1490
|
|
|
1488
1491
|
const commands = {
|
|
1489
1492
|
BatchGetMetricDataCommand,
|
|
@@ -1621,7 +1624,7 @@ const paginators = {
|
|
|
1621
1624
|
};
|
|
1622
1625
|
class SESv2 extends SESv2Client {
|
|
1623
1626
|
}
|
|
1624
|
-
|
|
1627
|
+
createAggregatedClient(commands, SESv2, { paginators });
|
|
1625
1628
|
|
|
1626
1629
|
const ContactLanguage = {
|
|
1627
1630
|
EN: "EN",
|
|
@@ -1933,9 +1936,6 @@ const ResourceType = {
|
|
|
1933
1936
|
EMAIL_TEMPLATE: "EMAIL_TEMPLATE",
|
|
1934
1937
|
};
|
|
1935
1938
|
|
|
1936
|
-
exports.$Command = client.Command;
|
|
1937
|
-
exports.__Client = client.Client;
|
|
1938
|
-
exports.SESv2ServiceException = SESv2ServiceException.SESv2ServiceException;
|
|
1939
1939
|
exports.AttachmentContentDisposition = AttachmentContentDisposition;
|
|
1940
1940
|
exports.AttachmentContentTransferEncoding = AttachmentContentTransferEncoding;
|
|
1941
1941
|
exports.BatchGetMetricDataCommand = BatchGetMetricDataCommand;
|
|
@@ -2120,23 +2120,3 @@ exports.paginateListResourceTenants = paginateListResourceTenants;
|
|
|
2120
2120
|
exports.paginateListSuppressedDestinations = paginateListSuppressedDestinations;
|
|
2121
2121
|
exports.paginateListTenantResources = paginateListTenantResources;
|
|
2122
2122
|
exports.paginateListTenants = paginateListTenants;
|
|
2123
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
2124
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2125
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2126
|
-
enumerable: true,
|
|
2127
|
-
value: schemas_0['__proto__']
|
|
2128
|
-
});
|
|
2129
|
-
|
|
2130
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
2131
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
2132
|
-
});
|
|
2133
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
2134
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2135
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2136
|
-
enumerable: true,
|
|
2137
|
-
value: errors['__proto__']
|
|
2138
|
-
});
|
|
2139
|
-
|
|
2140
|
-
Object.keys(errors).forEach(function (k) {
|
|
2141
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
2142
|
-
});
|