@aws-sdk/client-sesv2 3.987.0 → 3.989.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/index.js +129 -3756
- package/dist-cjs/models/SESv2ServiceException.js +12 -0
- package/dist-cjs/models/errors.js +173 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +3058 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +91 -85
- package/dist-types/schemas/schemas_0.d.ts +20 -13
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -13
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SESv2ServiceException = require('./models/SESv2ServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -111,3182 +114,6 @@ class SESv2Client extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class SESv2ServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, SESv2ServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class AccountSuspendedException extends SESv2ServiceException {
|
|
122
|
-
name = "AccountSuspendedException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccountSuspendedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccountSuspendedException.prototype);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class AlreadyExistsException extends SESv2ServiceException {
|
|
134
|
-
name = "AlreadyExistsException";
|
|
135
|
-
$fault = "client";
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "AlreadyExistsException",
|
|
139
|
-
$fault: "client",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class BadRequestException extends SESv2ServiceException {
|
|
146
|
-
name = "BadRequestException";
|
|
147
|
-
$fault = "client";
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "BadRequestException",
|
|
151
|
-
$fault: "client",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
class InternalServiceErrorException extends SESv2ServiceException {
|
|
158
|
-
name = "InternalServiceErrorException";
|
|
159
|
-
$fault = "server";
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "InternalServiceErrorException",
|
|
163
|
-
$fault: "server",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
class NotFoundException extends SESv2ServiceException {
|
|
170
|
-
name = "NotFoundException";
|
|
171
|
-
$fault = "client";
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "NotFoundException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
class TooManyRequestsException extends SESv2ServiceException {
|
|
182
|
-
name = "TooManyRequestsException";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "TooManyRequestsException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
class ConcurrentModificationException extends SESv2ServiceException {
|
|
194
|
-
name = "ConcurrentModificationException";
|
|
195
|
-
$fault = "server";
|
|
196
|
-
constructor(opts) {
|
|
197
|
-
super({
|
|
198
|
-
name: "ConcurrentModificationException",
|
|
199
|
-
$fault: "server",
|
|
200
|
-
...opts,
|
|
201
|
-
});
|
|
202
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
class ConflictException extends SESv2ServiceException {
|
|
206
|
-
name = "ConflictException";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "ConflictException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
class LimitExceededException extends SESv2ServiceException {
|
|
218
|
-
name = "LimitExceededException";
|
|
219
|
-
$fault = "client";
|
|
220
|
-
constructor(opts) {
|
|
221
|
-
super({
|
|
222
|
-
name: "LimitExceededException",
|
|
223
|
-
$fault: "client",
|
|
224
|
-
...opts,
|
|
225
|
-
});
|
|
226
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
class MailFromDomainNotVerifiedException extends SESv2ServiceException {
|
|
230
|
-
name = "MailFromDomainNotVerifiedException";
|
|
231
|
-
$fault = "client";
|
|
232
|
-
constructor(opts) {
|
|
233
|
-
super({
|
|
234
|
-
name: "MailFromDomainNotVerifiedException",
|
|
235
|
-
$fault: "client",
|
|
236
|
-
...opts,
|
|
237
|
-
});
|
|
238
|
-
Object.setPrototypeOf(this, MailFromDomainNotVerifiedException.prototype);
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
class MessageRejected extends SESv2ServiceException {
|
|
242
|
-
name = "MessageRejected";
|
|
243
|
-
$fault = "client";
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "MessageRejected",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, MessageRejected.prototype);
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
class SendingPausedException extends SESv2ServiceException {
|
|
254
|
-
name = "SendingPausedException";
|
|
255
|
-
$fault = "client";
|
|
256
|
-
constructor(opts) {
|
|
257
|
-
super({
|
|
258
|
-
name: "SendingPausedException",
|
|
259
|
-
$fault: "client",
|
|
260
|
-
...opts,
|
|
261
|
-
});
|
|
262
|
-
Object.setPrototypeOf(this, SendingPausedException.prototype);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
class InvalidNextTokenException extends SESv2ServiceException {
|
|
266
|
-
name = "InvalidNextTokenException";
|
|
267
|
-
$fault = "client";
|
|
268
|
-
constructor(opts) {
|
|
269
|
-
super({
|
|
270
|
-
name: "InvalidNextTokenException",
|
|
271
|
-
$fault: "client",
|
|
272
|
-
...opts,
|
|
273
|
-
});
|
|
274
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
const _A = "Attachment";
|
|
279
|
-
const _AA = "ArchiveArn";
|
|
280
|
-
const _AAp = "ApplicationArn";
|
|
281
|
-
const _ACEA = "AdditionalContactEmailAddress";
|
|
282
|
-
const _ACEAd = "AdditionalContactEmailAddresses";
|
|
283
|
-
const _AD = "AccountDetails";
|
|
284
|
-
const _ADt = "AttributesData";
|
|
285
|
-
const _AE = "AdminEmail";
|
|
286
|
-
const _AEE = "AlreadyExistsException";
|
|
287
|
-
const _AL = "AttachmentList";
|
|
288
|
-
const _AO = "ArchivingOptions";
|
|
289
|
-
const _AS = "AccountStatus";
|
|
290
|
-
const _ASD = "ActiveSubscribedDomains";
|
|
291
|
-
const _ASE = "AccountSuspendedException";
|
|
292
|
-
const _ASMS = "AwsSesManagedStatus";
|
|
293
|
-
const _AT = "AssociatedTimestamp";
|
|
294
|
-
const _AWE = "AutoWarmupEnabled";
|
|
295
|
-
const _Ag = "Aggregation";
|
|
296
|
-
const _At = "Attachments";
|
|
297
|
-
const _Att = "Attributes";
|
|
298
|
-
const _B = "Body";
|
|
299
|
-
const _BA = "BccAddresses";
|
|
300
|
-
const _BE = "BlacklistEntry";
|
|
301
|
-
const _BEC = "BulkEmailContent";
|
|
302
|
-
const _BEE = "BulkEmailEntry";
|
|
303
|
-
const _BEEL = "BulkEmailEntryList";
|
|
304
|
-
const _BEER = "BulkEmailEntryResult";
|
|
305
|
-
const _BEERL = "BulkEmailEntryResultList";
|
|
306
|
-
const _BEERu = "BulkEmailEntryResults";
|
|
307
|
-
const _BEEu = "BulkEmailEntries";
|
|
308
|
-
const _BEl = "BlacklistEntries";
|
|
309
|
-
const _BGMD = "BatchGetMetricData";
|
|
310
|
-
const _BGMDQ = "BatchGetMetricDataQuery";
|
|
311
|
-
const _BGMDQa = "BatchGetMetricDataQueries";
|
|
312
|
-
const _BGMDR = "BatchGetMetricDataRequest";
|
|
313
|
-
const _BGMDRa = "BatchGetMetricDataResponse";
|
|
314
|
-
const _BIN = "BlacklistItemNames";
|
|
315
|
-
const _BOMF = "BehaviorOnMxFailure";
|
|
316
|
-
const _BR = "BlacklistReport";
|
|
317
|
-
const _BRE = "BadRequestException";
|
|
318
|
-
const _BST = "BounceSubType";
|
|
319
|
-
const _BT = "BounceType";
|
|
320
|
-
const _Bo = "Bounce";
|
|
321
|
-
const _C = "Complaint";
|
|
322
|
-
const _CA = "CcAddresses";
|
|
323
|
-
const _CC = "CreateContact";
|
|
324
|
-
const _CCL = "CreateContactList";
|
|
325
|
-
const _CCLR = "CreateContactListRequest";
|
|
326
|
-
const _CCLRr = "CreateContactListResponse";
|
|
327
|
-
const _CCR = "CreateContactRequest";
|
|
328
|
-
const _CCRr = "CreateContactResponse";
|
|
329
|
-
const _CCS = "CreateConfigurationSet";
|
|
330
|
-
const _CCSED = "CreateConfigurationSetEventDestination";
|
|
331
|
-
const _CCSEDR = "CreateConfigurationSetEventDestinationRequest";
|
|
332
|
-
const _CCSEDRr = "CreateConfigurationSetEventDestinationResponse";
|
|
333
|
-
const _CCSR = "CreateConfigurationSetRequest";
|
|
334
|
-
const _CCSRr = "CreateConfigurationSetResponse";
|
|
335
|
-
const _CCVET = "CreateCustomVerificationEmailTemplate";
|
|
336
|
-
const _CCVETR = "CreateCustomVerificationEmailTemplateRequest";
|
|
337
|
-
const _CCVETRr = "CreateCustomVerificationEmailTemplateResponse";
|
|
338
|
-
const _CD = "ContentDisposition";
|
|
339
|
-
const _CDIP = "CreateDedicatedIpPool";
|
|
340
|
-
const _CDIPR = "CreateDedicatedIpPoolRequest";
|
|
341
|
-
const _CDIPRr = "CreateDedicatedIpPoolResponse";
|
|
342
|
-
const _CDTR = "CreateDeliverabilityTestReport";
|
|
343
|
-
const _CDTRR = "CreateDeliverabilityTestReportRequest";
|
|
344
|
-
const _CDTRRr = "CreateDeliverabilityTestReportResponse";
|
|
345
|
-
const _CDo = "ContentDescription";
|
|
346
|
-
const _CDr = "CreateDate";
|
|
347
|
-
const _CE = "ConflictException";
|
|
348
|
-
const _CEI = "CreateEmailIdentity";
|
|
349
|
-
const _CEIP = "CreateEmailIdentityPolicy";
|
|
350
|
-
const _CEIPR = "CreateEmailIdentityPolicyRequest";
|
|
351
|
-
const _CEIPRr = "CreateEmailIdentityPolicyResponse";
|
|
352
|
-
const _CEIR = "CreateEmailIdentityRequest";
|
|
353
|
-
const _CEIRr = "CreateEmailIdentityResponse";
|
|
354
|
-
const _CEJ = "CancelExportJob";
|
|
355
|
-
const _CEJR = "CancelExportJobRequest";
|
|
356
|
-
const _CEJRa = "CancelExportJobResponse";
|
|
357
|
-
const _CEJRr = "CreateExportJobRequest";
|
|
358
|
-
const _CEJRre = "CreateExportJobResponse";
|
|
359
|
-
const _CEJr = "CreateExportJob";
|
|
360
|
-
const _CET = "CreateEmailTemplate";
|
|
361
|
-
const _CETR = "CreateEmailTemplateRequest";
|
|
362
|
-
const _CETRr = "CreateEmailTemplateResponse";
|
|
363
|
-
const _CFT = "ComplaintFeedbackType";
|
|
364
|
-
const _CI = "ContentId";
|
|
365
|
-
const _CIJ = "CreateImportJob";
|
|
366
|
-
const _CIJR = "CreateImportJobRequest";
|
|
367
|
-
const _CIJRr = "CreateImportJobResponse";
|
|
368
|
-
const _CIa = "CampaignId";
|
|
369
|
-
const _CIas = "CaseId";
|
|
370
|
-
const _CL = "ContactLanguage";
|
|
371
|
-
const _CLD = "ContactListDestination";
|
|
372
|
-
const _CLIA = "ContactListImportAction";
|
|
373
|
-
const _CLN = "ContactListName";
|
|
374
|
-
const _CLo = "ContactList";
|
|
375
|
-
const _CLon = "ContactLists";
|
|
376
|
-
const _CME = "ConcurrentModificationException";
|
|
377
|
-
const _CMRE = "CreateMultiRegionEndpoint";
|
|
378
|
-
const _CMRER = "CreateMultiRegionEndpointRequest";
|
|
379
|
-
const _CMRERr = "CreateMultiRegionEndpointResponse";
|
|
380
|
-
const _CMS = "CustomerManagedStatus";
|
|
381
|
-
const _CRD = "CustomRedirectDomain";
|
|
382
|
-
const _CS = "ConfigurationSets";
|
|
383
|
-
const _CSKL = "CurrentSigningKeyLength";
|
|
384
|
-
const _CSN = "ConfigurationSetName";
|
|
385
|
-
const _CST = "ComplaintSubType";
|
|
386
|
-
const _CT = "ContentType";
|
|
387
|
-
const _CTE = "ContentTransferEncoding";
|
|
388
|
-
const _CTEo = "ConditionThresholdEnabled";
|
|
389
|
-
const _CTR = "CreateTenantRequest";
|
|
390
|
-
const _CTRA = "CreateTenantResourceAssociation";
|
|
391
|
-
const _CTRAR = "CreateTenantResourceAssociationRequest";
|
|
392
|
-
const _CTRARr = "CreateTenantResourceAssociationResponse";
|
|
393
|
-
const _CTRr = "CreateTenantResponse";
|
|
394
|
-
const _CTo = "CompletedTimestamp";
|
|
395
|
-
const _CTon = "ConditionThreshold";
|
|
396
|
-
const _CTr = "CreatedTimestamp";
|
|
397
|
-
const _CTre = "CreateTenant";
|
|
398
|
-
const _CV = "ConfidenceVerdict";
|
|
399
|
-
const _CVET = "CustomVerificationEmailTemplates";
|
|
400
|
-
const _CVETL = "CustomVerificationEmailTemplatesList";
|
|
401
|
-
const _CVETM = "CustomVerificationEmailTemplateMetadata";
|
|
402
|
-
const _CVT = "ConfidenceVerdictThreshold";
|
|
403
|
-
const _CWD = "CloudWatchDestination";
|
|
404
|
-
const _CWDC = "CloudWatchDimensionConfiguration";
|
|
405
|
-
const _CWDCl = "CloudWatchDimensionConfigurations";
|
|
406
|
-
const _Ca = "Cause";
|
|
407
|
-
const _Ch = "Charset";
|
|
408
|
-
const _Co = "Contact";
|
|
409
|
-
const _Cod = "Code";
|
|
410
|
-
const _Con = "Content";
|
|
411
|
-
const _Cont = "Contacts";
|
|
412
|
-
const _D = "Dimensions";
|
|
413
|
-
const _DA = "DkimAttributes";
|
|
414
|
-
const _DAa = "DashboardAttributes";
|
|
415
|
-
const _DC = "DiagnosticCode";
|
|
416
|
-
const _DCL = "DeleteContactList";
|
|
417
|
-
const _DCLR = "DeleteContactListRequest";
|
|
418
|
-
const _DCLRe = "DeleteContactListResponse";
|
|
419
|
-
const _DCR = "DeleteContactRequest";
|
|
420
|
-
const _DCRe = "DeleteContactResponse";
|
|
421
|
-
const _DCS = "DeleteConfigurationSet";
|
|
422
|
-
const _DCSED = "DeleteConfigurationSetEventDestination";
|
|
423
|
-
const _DCSEDR = "DeleteConfigurationSetEventDestinationRequest";
|
|
424
|
-
const _DCSEDRe = "DeleteConfigurationSetEventDestinationResponse";
|
|
425
|
-
const _DCSR = "DeleteConfigurationSetRequest";
|
|
426
|
-
const _DCSRe = "DeleteConfigurationSetResponse";
|
|
427
|
-
const _DCVET = "DeleteCustomVerificationEmailTemplate";
|
|
428
|
-
const _DCVETR = "DeleteCustomVerificationEmailTemplateRequest";
|
|
429
|
-
const _DCVETRe = "DeleteCustomVerificationEmailTemplateResponse";
|
|
430
|
-
const _DCe = "DefaultContent";
|
|
431
|
-
const _DCel = "DeleteContact";
|
|
432
|
-
const _DCi = "DimensionConfigurations";
|
|
433
|
-
const _DDC = "DomainDeliverabilityCampaign";
|
|
434
|
-
const _DDCL = "DomainDeliverabilityCampaignList";
|
|
435
|
-
const _DDCo = "DomainDeliverabilityCampaigns";
|
|
436
|
-
const _DDIP = "DeleteDedicatedIpPool";
|
|
437
|
-
const _DDIPR = "DeleteDedicatedIpPoolRequest";
|
|
438
|
-
const _DDIPRe = "DeleteDedicatedIpPoolResponse";
|
|
439
|
-
const _DDTO = "DomainDeliverabilityTrackingOption";
|
|
440
|
-
const _DDTOo = "DomainDeliverabilityTrackingOptions";
|
|
441
|
-
const _DDV = "DefaultDimensionValue";
|
|
442
|
-
const _DE = "DashboardEnabled";
|
|
443
|
-
const _DEI = "DeleteEmailIdentity";
|
|
444
|
-
const _DEIP = "DeleteEmailIdentityPolicy";
|
|
445
|
-
const _DEIPR = "DeleteEmailIdentityPolicyRequest";
|
|
446
|
-
const _DEIPRe = "DeleteEmailIdentityPolicyResponse";
|
|
447
|
-
const _DEIR = "DeleteEmailIdentityRequest";
|
|
448
|
-
const _DEIRe = "DeleteEmailIdentityResponse";
|
|
449
|
-
const _DET = "DefaultEmailTags";
|
|
450
|
-
const _DETR = "DeleteEmailTemplateRequest";
|
|
451
|
-
const _DETRe = "DeleteEmailTemplateResponse";
|
|
452
|
-
const _DETe = "DeleteEmailTemplate";
|
|
453
|
-
const _DF = "DataFormat";
|
|
454
|
-
const _DI = "DedicatedIp";
|
|
455
|
-
const _DIAWE = "DedicatedIpAutoWarmupEnabled";
|
|
456
|
-
const _DIL = "DedicatedIpList";
|
|
457
|
-
const _DIP = "DomainIspPlacements";
|
|
458
|
-
const _DIPe = "DedicatedIpPool";
|
|
459
|
-
const _DIPed = "DedicatedIpPools";
|
|
460
|
-
const _DIPo = "DomainIspPlacement";
|
|
461
|
-
const _DIe = "DedicatedIps";
|
|
462
|
-
const _DMRE = "DeleteMultiRegionEndpoint";
|
|
463
|
-
const _DMRER = "DeleteMultiRegionEndpointRequest";
|
|
464
|
-
const _DMRERe = "DeleteMultiRegionEndpointResponse";
|
|
465
|
-
const _DN = "DimensionName";
|
|
466
|
-
const _DNi = "DisplayName";
|
|
467
|
-
const _DO = "DeliveryOptions";
|
|
468
|
-
const _DOa = "DashboardOptions";
|
|
469
|
-
const _DP = "DkimPercentage";
|
|
470
|
-
const _DPN = "DestinationPoolName";
|
|
471
|
-
const _DR = "DeleteRate";
|
|
472
|
-
const _DS = "DkimStatus";
|
|
473
|
-
const _DSA = "DkimSigningAttributes";
|
|
474
|
-
const _DSAO = "DomainSigningAttributesOrigin";
|
|
475
|
-
const _DSAe = "DeliveryStreamArn";
|
|
476
|
-
const _DSD = "DeleteSuppressedDestination";
|
|
477
|
-
const _DSDR = "DeleteSuppressedDestinationRequest";
|
|
478
|
-
const _DSDRe = "DeleteSuppressedDestinationResponse";
|
|
479
|
-
const _DSPK = "DomainSigningPrivateKey";
|
|
480
|
-
const _DSS = "DomainSigningSelector";
|
|
481
|
-
const _DSSe = "DefaultSubscriptionStatus";
|
|
482
|
-
const _DT = "DkimTokens";
|
|
483
|
-
const _DTR = "DeleteTenantRequest";
|
|
484
|
-
const _DTRA = "DeleteTenantResourceAssociation";
|
|
485
|
-
const _DTRAR = "DeleteTenantResourceAssociationRequest";
|
|
486
|
-
const _DTRARe = "DeleteTenantResourceAssociationResponse";
|
|
487
|
-
const _DTRe = "DeleteTenantResponse";
|
|
488
|
-
const _DTRel = "DeliverabilityTestReport";
|
|
489
|
-
const _DTReli = "DeliverabilityTestReports";
|
|
490
|
-
const _DTS = "DeliverabilityTestStatus";
|
|
491
|
-
const _DTe = "DeleteTenant";
|
|
492
|
-
const _DV = "DailyVolume";
|
|
493
|
-
const _DVS = "DimensionValueSource";
|
|
494
|
-
const _DVa = "DailyVolumes";
|
|
495
|
-
const _Da = "Data";
|
|
496
|
-
const _De = "Description";
|
|
497
|
-
const _Des = "Destination";
|
|
498
|
-
const _Det = "Details";
|
|
499
|
-
const _Do = "Domain";
|
|
500
|
-
const _E = "Errors";
|
|
501
|
-
const _EA = "EmailAddress";
|
|
502
|
-
const _EAFL = "EmailAddressFilterList";
|
|
503
|
-
const _EAIME = "EmailAddressInsightsMailboxEvaluations";
|
|
504
|
-
const _EAIV = "EmailAddressInsightsVerdict";
|
|
505
|
-
const _EBA = "EventBusArn";
|
|
506
|
-
const _EBD = "EventBridgeDestination";
|
|
507
|
-
const _EC = "EmailContent";
|
|
508
|
-
const _ED = "EndDate";
|
|
509
|
-
const _EDD = "EventDestinationDefinition";
|
|
510
|
-
const _EDN = "EventDestinationName";
|
|
511
|
-
const _EDS = "ExportDataSource";
|
|
512
|
-
const _EDv = "EventDestination";
|
|
513
|
-
const _EDve = "EventDetails";
|
|
514
|
-
const _EDven = "EventDestinations";
|
|
515
|
-
const _EDx = "ExportDestination";
|
|
516
|
-
const _EDxp = "ExportDimensions";
|
|
517
|
-
const _EFE = "EmailForwardingEnabled";
|
|
518
|
-
const _EI = "EmailIdentity";
|
|
519
|
-
const _EIL = "EmailInsightsList";
|
|
520
|
-
const _EIm = "EmailInsights";
|
|
521
|
-
const _EIma = "EmailIdentities";
|
|
522
|
-
const _EIn = "EndpointId";
|
|
523
|
-
const _EJ = "ExportJobs";
|
|
524
|
-
const _EJS = "ExportJobSummary";
|
|
525
|
-
const _EJSL = "ExportJobSummaryList";
|
|
526
|
-
const _EM = "EngagementMetrics";
|
|
527
|
-
const _EMr = "ErrorMessage";
|
|
528
|
-
const _EMx = "ExportMetric";
|
|
529
|
-
const _EMxp = "ExportMetrics";
|
|
530
|
-
const _EN = "EndpointName";
|
|
531
|
-
const _ERC = "ExportedRecordsCount";
|
|
532
|
-
const _ES = "EmailSubject";
|
|
533
|
-
const _ESFL = "EmailSubjectFilterList";
|
|
534
|
-
const _EST = "ExportSourceType";
|
|
535
|
-
const _ESn = "EnforcementStatus";
|
|
536
|
-
const _ESx = "ExportStatistics";
|
|
537
|
-
const _ET = "EmailTags";
|
|
538
|
-
const _ETC = "EmailTemplateContent";
|
|
539
|
-
const _ETM = "EmailTemplateMetadata";
|
|
540
|
-
const _ETML = "EmailTemplateMetadataList";
|
|
541
|
-
const _ETr = "ErrorType";
|
|
542
|
-
const _En = "Enabled";
|
|
543
|
-
const _Er = "Error";
|
|
544
|
-
const _Es = "Esps";
|
|
545
|
-
const _Ev = "Events";
|
|
546
|
-
const _Eva = "Evaluations";
|
|
547
|
-
const _Ex = "Exclude";
|
|
548
|
-
const _F = "Filter";
|
|
549
|
-
const _FA = "FromAddress";
|
|
550
|
-
const _FEA = "FromEmailAddress";
|
|
551
|
-
const _FEAIA = "FromEmailAddressIdentityArn";
|
|
552
|
-
const _FFEA = "FeedbackForwardingEmailAddress";
|
|
553
|
-
const _FFEAIA = "FeedbackForwardingEmailAddressIdentityArn";
|
|
554
|
-
const _FFS = "FeedbackForwardingStatus";
|
|
555
|
-
const _FI = "FailureInfo";
|
|
556
|
-
const _FIe = "FeedbackId";
|
|
557
|
-
const _FN = "FileName";
|
|
558
|
-
const _FRC = "FailedRecordsCount";
|
|
559
|
-
const _FRSU = "FailedRecordsS3Url";
|
|
560
|
-
const _FRURL = "FailureRedirectionURL";
|
|
561
|
-
const _FS = "FilteredStatus";
|
|
562
|
-
const _FSDT = "FirstSeenDateTime";
|
|
563
|
-
const _G = "Global";
|
|
564
|
-
const _GA = "GuardianAttributes";
|
|
565
|
-
const _GAR = "GetAccountRequest";
|
|
566
|
-
const _GARe = "GetAccountResponse";
|
|
567
|
-
const _GAe = "GetAccount";
|
|
568
|
-
const _GBR = "GetBlacklistReports";
|
|
569
|
-
const _GBRR = "GetBlacklistReportsRequest";
|
|
570
|
-
const _GBRRe = "GetBlacklistReportsResponse";
|
|
571
|
-
const _GC = "GetContact";
|
|
572
|
-
const _GCL = "GetContactList";
|
|
573
|
-
const _GCLR = "GetContactListRequest";
|
|
574
|
-
const _GCLRe = "GetContactListResponse";
|
|
575
|
-
const _GCR = "GetContactRequest";
|
|
576
|
-
const _GCRe = "GetContactResponse";
|
|
577
|
-
const _GCS = "GetConfigurationSet";
|
|
578
|
-
const _GCSED = "GetConfigurationSetEventDestinations";
|
|
579
|
-
const _GCSEDR = "GetConfigurationSetEventDestinationsRequest";
|
|
580
|
-
const _GCSEDRe = "GetConfigurationSetEventDestinationsResponse";
|
|
581
|
-
const _GCSR = "GetConfigurationSetRequest";
|
|
582
|
-
const _GCSRe = "GetConfigurationSetResponse";
|
|
583
|
-
const _GCVET = "GetCustomVerificationEmailTemplate";
|
|
584
|
-
const _GCVETR = "GetCustomVerificationEmailTemplateRequest";
|
|
585
|
-
const _GCVETRe = "GetCustomVerificationEmailTemplateResponse";
|
|
586
|
-
const _GDDC = "GetDomainDeliverabilityCampaign";
|
|
587
|
-
const _GDDCR = "GetDomainDeliverabilityCampaignRequest";
|
|
588
|
-
const _GDDCRe = "GetDomainDeliverabilityCampaignResponse";
|
|
589
|
-
const _GDDO = "GetDeliverabilityDashboardOptions";
|
|
590
|
-
const _GDDOR = "GetDeliverabilityDashboardOptionsRequest";
|
|
591
|
-
const _GDDORe = "GetDeliverabilityDashboardOptionsResponse";
|
|
592
|
-
const _GDI = "GetDedicatedIp";
|
|
593
|
-
const _GDIP = "GetDedicatedIpPool";
|
|
594
|
-
const _GDIPR = "GetDedicatedIpPoolRequest";
|
|
595
|
-
const _GDIPRe = "GetDedicatedIpPoolResponse";
|
|
596
|
-
const _GDIR = "GetDedicatedIpRequest";
|
|
597
|
-
const _GDIRe = "GetDedicatedIpResponse";
|
|
598
|
-
const _GDIRet = "GetDedicatedIpsRequest";
|
|
599
|
-
const _GDIRete = "GetDedicatedIpsResponse";
|
|
600
|
-
const _GDIe = "GetDedicatedIps";
|
|
601
|
-
const _GDSR = "GetDomainStatisticsReport";
|
|
602
|
-
const _GDSRR = "GetDomainStatisticsReportRequest";
|
|
603
|
-
const _GDSRRe = "GetDomainStatisticsReportResponse";
|
|
604
|
-
const _GDTR = "GetDeliverabilityTestReport";
|
|
605
|
-
const _GDTRR = "GetDeliverabilityTestReportRequest";
|
|
606
|
-
const _GDTRRe = "GetDeliverabilityTestReportResponse";
|
|
607
|
-
const _GEAI = "GetEmailAddressInsights";
|
|
608
|
-
const _GEAIR = "GetEmailAddressInsightsRequest";
|
|
609
|
-
const _GEAIRe = "GetEmailAddressInsightsResponse";
|
|
610
|
-
const _GEI = "GetEmailIdentity";
|
|
611
|
-
const _GEIP = "GetEmailIdentityPolicies";
|
|
612
|
-
const _GEIPR = "GetEmailIdentityPoliciesRequest";
|
|
613
|
-
const _GEIPRe = "GetEmailIdentityPoliciesResponse";
|
|
614
|
-
const _GEIR = "GetEmailIdentityRequest";
|
|
615
|
-
const _GEIRe = "GetEmailIdentityResponse";
|
|
616
|
-
const _GEJ = "GetExportJob";
|
|
617
|
-
const _GEJR = "GetExportJobRequest";
|
|
618
|
-
const _GEJRe = "GetExportJobResponse";
|
|
619
|
-
const _GET = "GetEmailTemplate";
|
|
620
|
-
const _GETR = "GetEmailTemplateRequest";
|
|
621
|
-
const _GETRe = "GetEmailTemplateResponse";
|
|
622
|
-
const _GIJ = "GetImportJob";
|
|
623
|
-
const _GIJR = "GetImportJobRequest";
|
|
624
|
-
const _GIJRe = "GetImportJobResponse";
|
|
625
|
-
const _GMI = "GetMessageInsights";
|
|
626
|
-
const _GMIR = "GetMessageInsightsRequest";
|
|
627
|
-
const _GMIRe = "GetMessageInsightsResponse";
|
|
628
|
-
const _GMRE = "GetMultiRegionEndpoint";
|
|
629
|
-
const _GMRER = "GetMultiRegionEndpointRequest";
|
|
630
|
-
const _GMRERe = "GetMultiRegionEndpointResponse";
|
|
631
|
-
const _GO = "GuardianOptions";
|
|
632
|
-
const _GRE = "GetReputationEntity";
|
|
633
|
-
const _GRER = "GetReputationEntityRequest";
|
|
634
|
-
const _GRERe = "GetReputationEntityResponse";
|
|
635
|
-
const _GSD = "GetSuppressedDestination";
|
|
636
|
-
const _GSDR = "GetSuppressedDestinationRequest";
|
|
637
|
-
const _GSDRe = "GetSuppressedDestinationResponse";
|
|
638
|
-
const _GT = "GetTenant";
|
|
639
|
-
const _GTR = "GetTenantRequest";
|
|
640
|
-
const _GTRe = "GetTenantResponse";
|
|
641
|
-
const _H = "Html";
|
|
642
|
-
const _HP = "HttpsPolicy";
|
|
643
|
-
const _HVDR = "HasValidDnsRecords";
|
|
644
|
-
const _HVS = "HasValidSyntax";
|
|
645
|
-
const _He = "Headers";
|
|
646
|
-
const _I = "Id";
|
|
647
|
-
const _IC = "InboxCount";
|
|
648
|
-
const _ID = "ImportDestination";
|
|
649
|
-
const _IDS = "ImportDataSource";
|
|
650
|
-
const _IDT = "ImportDestinationType";
|
|
651
|
-
const _IDs = "IsDisposable";
|
|
652
|
-
const _IE = "InsightsEvent";
|
|
653
|
-
const _IEA = "InsightsEmailAddress";
|
|
654
|
-
const _IEn = "InsightsEvents";
|
|
655
|
-
const _II = "IdentityInfo";
|
|
656
|
-
const _IIL = "IdentityInfoList";
|
|
657
|
-
const _IJ = "ImportJobs";
|
|
658
|
-
const _IJS = "ImportJobSummary";
|
|
659
|
-
const _IJSL = "ImportJobSummaryList";
|
|
660
|
-
const _IN = "IspName";
|
|
661
|
-
const _INTE = "InvalidNextTokenException";
|
|
662
|
-
const _INd = "IdentityName";
|
|
663
|
-
const _IP = "InboxPercentage";
|
|
664
|
-
const _IPTO = "InboxPlacementTrackingOption";
|
|
665
|
-
const _IPs = "IspPlacements";
|
|
666
|
-
const _IPsp = "IspPlacement";
|
|
667
|
-
const _IRA = "IsRoleAddress";
|
|
668
|
-
const _IRAa = "IamRoleArn";
|
|
669
|
-
const _IRC = "InboxRawCount";
|
|
670
|
-
const _IRI = "IsRandomInput";
|
|
671
|
-
const _ISEE = "InternalServiceErrorException";
|
|
672
|
-
const _IT = "IdentityType";
|
|
673
|
-
const _IU = "ImageUrl";
|
|
674
|
-
const _IV = "IsValid";
|
|
675
|
-
const _Im = "Impact";
|
|
676
|
-
const _In = "Insights";
|
|
677
|
-
const _Inc = "Include";
|
|
678
|
-
const _Ip = "Ip";
|
|
679
|
-
const _Is = "Isp";
|
|
680
|
-
const _JI = "JobId";
|
|
681
|
-
const _JS = "JobStatus";
|
|
682
|
-
const _K = "Key";
|
|
683
|
-
const _KFD = "KinesisFirehoseDestination";
|
|
684
|
-
const _LC = "ListContacts";
|
|
685
|
-
const _LCF = "ListContactsFilter";
|
|
686
|
-
const _LCL = "ListContactLists";
|
|
687
|
-
const _LCLR = "ListContactListsRequest";
|
|
688
|
-
const _LCLRi = "ListContactListsResponse";
|
|
689
|
-
const _LCR = "ListContactsRequest";
|
|
690
|
-
const _LCRi = "ListContactsResponse";
|
|
691
|
-
const _LCS = "ListConfigurationSets";
|
|
692
|
-
const _LCSR = "ListConfigurationSetsRequest";
|
|
693
|
-
const _LCSRi = "ListConfigurationSetsResponse";
|
|
694
|
-
const _LCT = "LastCheckedTimestamp";
|
|
695
|
-
const _LCVET = "ListCustomVerificationEmailTemplates";
|
|
696
|
-
const _LCVETR = "ListCustomVerificationEmailTemplatesRequest";
|
|
697
|
-
const _LCVETRi = "ListCustomVerificationEmailTemplatesResponse";
|
|
698
|
-
const _LDDC = "ListDomainDeliverabilityCampaigns";
|
|
699
|
-
const _LDDCR = "ListDomainDeliverabilityCampaignsRequest";
|
|
700
|
-
const _LDDCRi = "ListDomainDeliverabilityCampaignsResponse";
|
|
701
|
-
const _LDE = "LastDeliveryEvent";
|
|
702
|
-
const _LDIP = "ListDedicatedIpPools";
|
|
703
|
-
const _LDIPR = "ListDedicatedIpPoolsRequest";
|
|
704
|
-
const _LDIPRi = "ListDedicatedIpPoolsResponse";
|
|
705
|
-
const _LDTR = "ListDeliverabilityTestReports";
|
|
706
|
-
const _LDTRR = "ListDeliverabilityTestReportsRequest";
|
|
707
|
-
const _LDTRRi = "ListDeliverabilityTestReportsResponse";
|
|
708
|
-
const _LEE = "LimitExceededException";
|
|
709
|
-
const _LEEa = "LastEngagementEvent";
|
|
710
|
-
const _LEI = "ListEmailIdentities";
|
|
711
|
-
const _LEIR = "ListEmailIdentitiesRequest";
|
|
712
|
-
const _LEIRi = "ListEmailIdentitiesResponse";
|
|
713
|
-
const _LEJ = "ListExportJobs";
|
|
714
|
-
const _LEJR = "ListExportJobsRequest";
|
|
715
|
-
const _LEJRi = "ListExportJobsResponse";
|
|
716
|
-
const _LET = "ListEmailTemplates";
|
|
717
|
-
const _LETR = "ListEmailTemplatesRequest";
|
|
718
|
-
const _LETRi = "ListEmailTemplatesResponse";
|
|
719
|
-
const _LFS = "LastFreshStart";
|
|
720
|
-
const _LIJ = "ListImportJobs";
|
|
721
|
-
const _LIJR = "ListImportJobsRequest";
|
|
722
|
-
const _LIJRi = "ListImportJobsResponse";
|
|
723
|
-
const _LKGT = "LastKeyGenerationTimestamp";
|
|
724
|
-
const _LMO = "ListManagementOptions";
|
|
725
|
-
const _LMRE = "ListMultiRegionEndpoints";
|
|
726
|
-
const _LMRER = "ListMultiRegionEndpointsRequest";
|
|
727
|
-
const _LMRERi = "ListMultiRegionEndpointsResponse";
|
|
728
|
-
const _LOC = "ListOfContacts";
|
|
729
|
-
const _LOCL = "ListOfContactLists";
|
|
730
|
-
const _LR = "ListRecommendations";
|
|
731
|
-
const _LRE = "ListReputationEntities";
|
|
732
|
-
const _LRER = "ListReputationEntitiesRequest";
|
|
733
|
-
const _LRERi = "ListReputationEntitiesResponse";
|
|
734
|
-
const _LRR = "ListRecommendationsRequest";
|
|
735
|
-
const _LRRi = "ListRecommendationsResponse";
|
|
736
|
-
const _LRT = "ListResourceTenants";
|
|
737
|
-
const _LRTR = "ListResourceTenantsRequest";
|
|
738
|
-
const _LRTRi = "ListResourceTenantsResponse";
|
|
739
|
-
const _LSD = "ListSuppressedDestinations";
|
|
740
|
-
const _LSDR = "ListSuppressedDestinationsRequest";
|
|
741
|
-
const _LSDRi = "ListSuppressedDestinationsResponse";
|
|
742
|
-
const _LSDT = "LastSeenDateTime";
|
|
743
|
-
const _LST = "LastSuccessTimestamp";
|
|
744
|
-
const _LT = "ListingTime";
|
|
745
|
-
const _LTFR = "ListTagsForResource";
|
|
746
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
747
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
748
|
-
const _LTR = "ListTenantsRequest";
|
|
749
|
-
const _LTRR = "ListTenantResourcesRequest";
|
|
750
|
-
const _LTRRi = "ListTenantResourcesResponse";
|
|
751
|
-
const _LTRi = "ListTenantsResponse";
|
|
752
|
-
const _LTRis = "ListTenantResources";
|
|
753
|
-
const _LTi = "ListTenants";
|
|
754
|
-
const _LUT = "LastUpdatedTimestamp";
|
|
755
|
-
const _LUTa = "LastUpdateTime";
|
|
756
|
-
const _M = "Metric";
|
|
757
|
-
const _MDE = "MetricDataError";
|
|
758
|
-
const _MDEL = "MetricDataErrorList";
|
|
759
|
-
const _MDR = "MetricDataResult";
|
|
760
|
-
const _MDRL = "MetricDataResultList";
|
|
761
|
-
const _MDS = "MaxDeliverySeconds";
|
|
762
|
-
const _MDSe = "MetricsDataSource";
|
|
763
|
-
const _ME = "MailboxExists";
|
|
764
|
-
const _MET = "MatchingEventTypes";
|
|
765
|
-
const _MFA = "MailFromAttributes";
|
|
766
|
-
const _MFD = "MailFromDomain";
|
|
767
|
-
const _MFDNVE = "MailFromDomainNotVerifiedException";
|
|
768
|
-
const _MFDS = "MailFromDomainStatus";
|
|
769
|
-
const _MH = "MessageHeader";
|
|
770
|
-
const _MHL = "MessageHeaderList";
|
|
771
|
-
const _MHS = "Max24HourSend";
|
|
772
|
-
const _MI = "MessageId";
|
|
773
|
-
const _MIDS = "MessageInsightsDataSource";
|
|
774
|
-
const _MIF = "MessageInsightsFilters";
|
|
775
|
-
const _MP = "MissingPercentage";
|
|
776
|
-
const _MR = "MaxResults";
|
|
777
|
-
const _MRE = "MultiRegionEndpoints";
|
|
778
|
-
const _MREu = "MultiRegionEndpoint";
|
|
779
|
-
const _MRe = "MessageRejected";
|
|
780
|
-
const _MSR = "MaxSendRate";
|
|
781
|
-
const _MT = "MailType";
|
|
782
|
-
const _MTL = "MessageTagList";
|
|
783
|
-
const _MTe = "MessageTag";
|
|
784
|
-
const _MV = "MailboxValidation";
|
|
785
|
-
const _Me = "Message";
|
|
786
|
-
const _Met = "Metrics";
|
|
787
|
-
const _N = "Namespace";
|
|
788
|
-
const _NFE = "NotFoundException";
|
|
789
|
-
const _NSKL = "NextSigningKeyLength";
|
|
790
|
-
const _NT = "NextToken";
|
|
791
|
-
const _Na = "Name";
|
|
792
|
-
const _OCT = "OverallConfidenceThreshold";
|
|
793
|
-
const _OP = "OverallPlacement";
|
|
794
|
-
const _OSD = "OptimizedSharedDelivery";
|
|
795
|
-
const _OV = "OverallVolume";
|
|
796
|
-
const _P = "Policy";
|
|
797
|
-
const _PAD = "PutAccountDetails";
|
|
798
|
-
const _PADIWA = "PutAccountDedicatedIpWarmupAttributes";
|
|
799
|
-
const _PADIWAR = "PutAccountDedicatedIpWarmupAttributesRequest";
|
|
800
|
-
const _PADIWARu = "PutAccountDedicatedIpWarmupAttributesResponse";
|
|
801
|
-
const _PADR = "PutAccountDetailsRequest";
|
|
802
|
-
const _PADRu = "PutAccountDetailsResponse";
|
|
803
|
-
const _PAE = "ProductionAccessEnabled";
|
|
804
|
-
const _PASA = "PutAccountSendingAttributes";
|
|
805
|
-
const _PASAR = "PutAccountSendingAttributesRequest";
|
|
806
|
-
const _PASARu = "PutAccountSendingAttributesResponse";
|
|
807
|
-
const _PASARut = "PutAccountSuppressionAttributesRequest";
|
|
808
|
-
const _PASARutc = "PutAccountSuppressionAttributesResponse";
|
|
809
|
-
const _PASAu = "PutAccountSuppressionAttributes";
|
|
810
|
-
const _PAVA = "PutAccountVdmAttributes";
|
|
811
|
-
const _PAVAR = "PutAccountVdmAttributesRequest";
|
|
812
|
-
const _PAVARu = "PutAccountVdmAttributesResponse";
|
|
813
|
-
const _PCSAO = "PutConfigurationSetArchivingOptions";
|
|
814
|
-
const _PCSAOR = "PutConfigurationSetArchivingOptionsRequest";
|
|
815
|
-
const _PCSAORu = "PutConfigurationSetArchivingOptionsResponse";
|
|
816
|
-
const _PCSDO = "PutConfigurationSetDeliveryOptions";
|
|
817
|
-
const _PCSDOR = "PutConfigurationSetDeliveryOptionsRequest";
|
|
818
|
-
const _PCSDORu = "PutConfigurationSetDeliveryOptionsResponse";
|
|
819
|
-
const _PCSRO = "PutConfigurationSetReputationOptions";
|
|
820
|
-
const _PCSROR = "PutConfigurationSetReputationOptionsRequest";
|
|
821
|
-
const _PCSRORu = "PutConfigurationSetReputationOptionsResponse";
|
|
822
|
-
const _PCSSO = "PutConfigurationSetSendingOptions";
|
|
823
|
-
const _PCSSOR = "PutConfigurationSetSendingOptionsRequest";
|
|
824
|
-
const _PCSSORu = "PutConfigurationSetSendingOptionsResponse";
|
|
825
|
-
const _PCSSORut = "PutConfigurationSetSuppressionOptionsRequest";
|
|
826
|
-
const _PCSSORuto = "PutConfigurationSetSuppressionOptionsResponse";
|
|
827
|
-
const _PCSSOu = "PutConfigurationSetSuppressionOptions";
|
|
828
|
-
const _PCSTO = "PutConfigurationSetTrackingOptions";
|
|
829
|
-
const _PCSTOR = "PutConfigurationSetTrackingOptionsRequest";
|
|
830
|
-
const _PCSTORu = "PutConfigurationSetTrackingOptionsResponse";
|
|
831
|
-
const _PCSVO = "PutConfigurationSetVdmOptions";
|
|
832
|
-
const _PCSVOR = "PutConfigurationSetVdmOptionsRequest";
|
|
833
|
-
const _PCSVORu = "PutConfigurationSetVdmOptionsResponse";
|
|
834
|
-
const _PD = "PinpointDestination";
|
|
835
|
-
const _PDDO = "PutDeliverabilityDashboardOption";
|
|
836
|
-
const _PDDOR = "PutDeliverabilityDashboardOptionRequest";
|
|
837
|
-
const _PDDORu = "PutDeliverabilityDashboardOptionResponse";
|
|
838
|
-
const _PDIIP = "PutDedicatedIpInPool";
|
|
839
|
-
const _PDIIPR = "PutDedicatedIpInPoolRequest";
|
|
840
|
-
const _PDIIPRu = "PutDedicatedIpInPoolResponse";
|
|
841
|
-
const _PDIPSA = "PutDedicatedIpPoolScalingAttributes";
|
|
842
|
-
const _PDIPSAR = "PutDedicatedIpPoolScalingAttributesRequest";
|
|
843
|
-
const _PDIPSARu = "PutDedicatedIpPoolScalingAttributesResponse";
|
|
844
|
-
const _PDIWA = "PutDedicatedIpWarmupAttributes";
|
|
845
|
-
const _PDIWAR = "PutDedicatedIpWarmupAttributesRequest";
|
|
846
|
-
const _PDIWARu = "PutDedicatedIpWarmupAttributesResponse";
|
|
847
|
-
const _PEICSA = "PutEmailIdentityConfigurationSetAttributes";
|
|
848
|
-
const _PEICSAR = "PutEmailIdentityConfigurationSetAttributesRequest";
|
|
849
|
-
const _PEICSARu = "PutEmailIdentityConfigurationSetAttributesResponse";
|
|
850
|
-
const _PEIDA = "PutEmailIdentityDkimAttributes";
|
|
851
|
-
const _PEIDAR = "PutEmailIdentityDkimAttributesRequest";
|
|
852
|
-
const _PEIDARu = "PutEmailIdentityDkimAttributesResponse";
|
|
853
|
-
const _PEIDSA = "PutEmailIdentityDkimSigningAttributes";
|
|
854
|
-
const _PEIDSAR = "PutEmailIdentityDkimSigningAttributesRequest";
|
|
855
|
-
const _PEIDSARu = "PutEmailIdentityDkimSigningAttributesResponse";
|
|
856
|
-
const _PEIFA = "PutEmailIdentityFeedbackAttributes";
|
|
857
|
-
const _PEIFAR = "PutEmailIdentityFeedbackAttributesRequest";
|
|
858
|
-
const _PEIFARu = "PutEmailIdentityFeedbackAttributesResponse";
|
|
859
|
-
const _PEIMFA = "PutEmailIdentityMailFromAttributes";
|
|
860
|
-
const _PEIMFAR = "PutEmailIdentityMailFromAttributesRequest";
|
|
861
|
-
const _PEIMFARu = "PutEmailIdentityMailFromAttributesResponse";
|
|
862
|
-
const _PESD = "PendingExpirationSubscribedDomains";
|
|
863
|
-
const _PI = "ProjectedInbox";
|
|
864
|
-
const _PK = "PrivateKey";
|
|
865
|
-
const _PN = "PoolName";
|
|
866
|
-
const _PNS = "PrimaryNameServer";
|
|
867
|
-
const _PNo = "PolicyName";
|
|
868
|
-
const _PRC = "ProcessedRecordsCount";
|
|
869
|
-
const _PS = "PageSize";
|
|
870
|
-
const _PSD = "PutSuppressedDestination";
|
|
871
|
-
const _PSDR = "PutSuppressedDestinationRequest";
|
|
872
|
-
const _PSDRu = "PutSuppressedDestinationResponse";
|
|
873
|
-
const _PSl = "PlacementStatistics";
|
|
874
|
-
const _PSr = "ProjectedSpam";
|
|
875
|
-
const _PV = "ProjectedVolume";
|
|
876
|
-
const _Po = "Policies";
|
|
877
|
-
const _Q = "Queries";
|
|
878
|
-
const _R = "Results";
|
|
879
|
-
const _RA = "ResourceArn";
|
|
880
|
-
const _RC = "RawContent";
|
|
881
|
-
const _RD = "ReviewDetails";
|
|
882
|
-
const _RDR = "ReadDeleteRate";
|
|
883
|
-
const _RDo = "RoutesDetails";
|
|
884
|
-
const _RDou = "RouteDetails";
|
|
885
|
-
const _RE = "ReputationEntity";
|
|
886
|
-
const _REC = "ReplacementEmailContent";
|
|
887
|
-
const _REL = "ReputationEntitiesList";
|
|
888
|
-
const _REP = "ReputationEntityPolicy";
|
|
889
|
-
const _RER = "ReputationEntityReference";
|
|
890
|
-
const _RET = "ReputationEntityType";
|
|
891
|
-
const _REe = "ReputationEntities";
|
|
892
|
-
const _RH = "ReplacementHeaders";
|
|
893
|
-
const _RI = "ReportId";
|
|
894
|
-
const _RIe = "ReputationImpact";
|
|
895
|
-
const _RL = "RecommendationsList";
|
|
896
|
-
const _RM = "RawMessage";
|
|
897
|
-
const _RME = "ReputationMetricsEnabled";
|
|
898
|
-
const _RMP = "ReputationManagementPolicy";
|
|
899
|
-
const _RN = "RblName";
|
|
900
|
-
const _RNe = "ReportName";
|
|
901
|
-
const _RO = "ReputationOptions";
|
|
902
|
-
const _RR = "ReadRate";
|
|
903
|
-
const _RRP = "ReadRatePercent";
|
|
904
|
-
const _RT = "ReplacementTags";
|
|
905
|
-
const _RTA = "ReplyToAddresses";
|
|
906
|
-
const _RTD = "ReplacementTemplateData";
|
|
907
|
-
const _RTM = "ResourceTenantMetadata";
|
|
908
|
-
const _RTML = "ResourceTenantMetadataList";
|
|
909
|
-
const _RTe = "ResourceTenants";
|
|
910
|
-
const _RTen = "RenderedTemplate";
|
|
911
|
-
const _RTep = "ReplacementTemplate";
|
|
912
|
-
const _RTes = "ResourceType";
|
|
913
|
-
const _Ra = "Raw";
|
|
914
|
-
const _Re = "Recommendations";
|
|
915
|
-
const _Rea = "Reasons";
|
|
916
|
-
const _Reas = "Reason";
|
|
917
|
-
const _Rec = "Recommendation";
|
|
918
|
-
const _Reg = "Regions";
|
|
919
|
-
const _Regi = "Region";
|
|
920
|
-
const _Ro = "Routes";
|
|
921
|
-
const _Rou = "Route";
|
|
922
|
-
const _S = "Status";
|
|
923
|
-
const _SA = "SuppressionAttributes";
|
|
924
|
-
const _SAO = "SigningAttributesOrigin";
|
|
925
|
-
const _SAi = "SigningAttributes";
|
|
926
|
-
const _SBE = "SendBulkEmail";
|
|
927
|
-
const _SBER = "SendBulkEmailRequest";
|
|
928
|
-
const _SBERe = "SendBulkEmailResponse";
|
|
929
|
-
const _SC = "SpamCount";
|
|
930
|
-
const _SCT = "SuppressionConditionThreshold";
|
|
931
|
-
const _SCTu = "SuppressionConfidenceThreshold";
|
|
932
|
-
const _SCVE = "SendCustomVerificationEmail";
|
|
933
|
-
const _SCVER = "SendCustomVerificationEmailRequest";
|
|
934
|
-
const _SCVERe = "SendCustomVerificationEmailResponse";
|
|
935
|
-
const _SD = "StartDate";
|
|
936
|
-
const _SDA = "SuppressedDestinationAttributes";
|
|
937
|
-
const _SDS = "SuppressedDestinationSummaries";
|
|
938
|
-
const _SDSu = "SuppressedDestinationSummary";
|
|
939
|
-
const _SDn = "SnsDestination";
|
|
940
|
-
const _SDu = "SuppressedDestination";
|
|
941
|
-
const _SDub = "SubscribedDomain";
|
|
942
|
-
const _SDubs = "SubscribedDomains";
|
|
943
|
-
const _SE = "SigningEnabled";
|
|
944
|
-
const _SED = "SubscriptionExpiryDate";
|
|
945
|
-
const _SER = "SendEmailRequest";
|
|
946
|
-
const _SERe = "SendEmailResponse";
|
|
947
|
-
const _SEe = "SendingEnabled";
|
|
948
|
-
const _SEen = "SendEmail";
|
|
949
|
-
const _SHZ = "SigningHostedZone";
|
|
950
|
-
const _SI = "SendingIps";
|
|
951
|
-
const _SLD = "SuppressionListDestination";
|
|
952
|
-
const _SLH = "SentLast24Hours";
|
|
953
|
-
const _SLIA = "SuppressionListImportAction";
|
|
954
|
-
const _SM = "ScalingMode";
|
|
955
|
-
const _SN = "SerialNumber";
|
|
956
|
-
const _SO = "SendingOptions";
|
|
957
|
-
const _SOAR = "SOARecord";
|
|
958
|
-
const _SOu = "SuppressionOptions";
|
|
959
|
-
const _SP = "SpamPercentage";
|
|
960
|
-
const _SPE = "SendingPausedException";
|
|
961
|
-
const _SPN = "SendingPoolName";
|
|
962
|
-
const _SPp = "SpfPercentage";
|
|
963
|
-
const _SQ = "SendQuota";
|
|
964
|
-
const _SR = "SuppressedReasons";
|
|
965
|
-
const _SRC = "SpamRawCount";
|
|
966
|
-
const _SRURL = "SuccessRedirectionURL";
|
|
967
|
-
const _SRt = "StatusRecord";
|
|
968
|
-
const _SS = "SendingStatus";
|
|
969
|
-
const _SSA = "SendingStatusAggregate";
|
|
970
|
-
const _SSD = "SubscriptionStartDate";
|
|
971
|
-
const _SSu = "SubscriptionStatus";
|
|
972
|
-
const _SU = "S3Url";
|
|
973
|
-
const _SVA = "SuppressionValidationAttributes";
|
|
974
|
-
const _SVO = "SuppressionValidationOptions";
|
|
975
|
-
const _Si = "Simple";
|
|
976
|
-
const _St = "Statistics";
|
|
977
|
-
const _Su = "Subject";
|
|
978
|
-
const _T = "Text";
|
|
979
|
-
const _TA = "TenantArn";
|
|
980
|
-
const _TAe = "TemplateArn";
|
|
981
|
-
const _TAo = "ToAddresses";
|
|
982
|
-
const _TAop = "TopicArn";
|
|
983
|
-
const _TC = "TemplateContent";
|
|
984
|
-
const _TD = "TemplateData";
|
|
985
|
-
const _TDP = "TopicDefaultPreferences";
|
|
986
|
-
const _TF = "TopicFilter";
|
|
987
|
-
const _TI = "TenantId";
|
|
988
|
-
const _TIL = "TenantInfoList";
|
|
989
|
-
const _TIe = "TenantInfo";
|
|
990
|
-
const _TIr = "TrackedIsps";
|
|
991
|
-
const _TK = "TagKeys";
|
|
992
|
-
const _TL = "TagList";
|
|
993
|
-
const _TM = "TemplatesMetadata";
|
|
994
|
-
const _TMRE = "TooManyRequestsException";
|
|
995
|
-
const _TN = "TemplateName";
|
|
996
|
-
const _TNe = "TenantName";
|
|
997
|
-
const _TNo = "TopicName";
|
|
998
|
-
const _TO = "TrackingOptions";
|
|
999
|
-
const _TP = "TopicPreferences";
|
|
1000
|
-
const _TPL = "TopicPreferenceList";
|
|
1001
|
-
const _TPl = "TlsPolicy";
|
|
1002
|
-
const _TPo = "TopicPreference";
|
|
1003
|
-
const _TR = "TenantResources";
|
|
1004
|
-
const _TRET = "TestRenderEmailTemplate";
|
|
1005
|
-
const _TRETR = "TestRenderEmailTemplateRequest";
|
|
1006
|
-
const _TRETRe = "TestRenderEmailTemplateResponse";
|
|
1007
|
-
const _TRL = "TenantResourceList";
|
|
1008
|
-
const _TRR = "TagResourceRequest";
|
|
1009
|
-
const _TRRa = "TagResourceResponse";
|
|
1010
|
-
const _TRa = "TagResource";
|
|
1011
|
-
const _TRe = "TenantResource";
|
|
1012
|
-
const _TS = "TemplateSubject";
|
|
1013
|
-
const _Ta = "Tags";
|
|
1014
|
-
const _Tag = "Tag";
|
|
1015
|
-
const _Te = "Template";
|
|
1016
|
-
const _Ten = "Tenant";
|
|
1017
|
-
const _Tena = "Tenants";
|
|
1018
|
-
const _Ti = "Timestamp";
|
|
1019
|
-
const _Tim = "Timestamps";
|
|
1020
|
-
const _To = "Topics";
|
|
1021
|
-
const _Tok = "Tokens";
|
|
1022
|
-
const _Top = "Topic";
|
|
1023
|
-
const _Ty = "Type";
|
|
1024
|
-
const _UA = "UnsubscribeAll";
|
|
1025
|
-
const _UC = "UpdateContact";
|
|
1026
|
-
const _UCD = "UseCaseDescription";
|
|
1027
|
-
const _UCL = "UpdateContactList";
|
|
1028
|
-
const _UCLR = "UpdateContactListRequest";
|
|
1029
|
-
const _UCLRp = "UpdateContactListResponse";
|
|
1030
|
-
const _UCR = "UpdateContactRequest";
|
|
1031
|
-
const _UCRp = "UpdateContactResponse";
|
|
1032
|
-
const _UCSED = "UpdateConfigurationSetEventDestination";
|
|
1033
|
-
const _UCSEDR = "UpdateConfigurationSetEventDestinationRequest";
|
|
1034
|
-
const _UCSEDRp = "UpdateConfigurationSetEventDestinationResponse";
|
|
1035
|
-
const _UCVET = "UpdateCustomVerificationEmailTemplate";
|
|
1036
|
-
const _UCVETR = "UpdateCustomVerificationEmailTemplateRequest";
|
|
1037
|
-
const _UCVETRp = "UpdateCustomVerificationEmailTemplateResponse";
|
|
1038
|
-
const _UDIPU = "UseDefaultIfPreferenceUnavailable";
|
|
1039
|
-
const _UEIP = "UpdateEmailIdentityPolicy";
|
|
1040
|
-
const _UEIPR = "UpdateEmailIdentityPolicyRequest";
|
|
1041
|
-
const _UEIPRp = "UpdateEmailIdentityPolicyResponse";
|
|
1042
|
-
const _UET = "UpdateEmailTemplate";
|
|
1043
|
-
const _UETR = "UpdateEmailTemplateRequest";
|
|
1044
|
-
const _UETRp = "UpdateEmailTemplateResponse";
|
|
1045
|
-
const _UR = "UntagResource";
|
|
1046
|
-
const _URECMS = "UpdateReputationEntityCustomerManagedStatus";
|
|
1047
|
-
const _URECMSR = "UpdateReputationEntityCustomerManagedStatusRequest";
|
|
1048
|
-
const _URECMSRp = "UpdateReputationEntityCustomerManagedStatusResponse";
|
|
1049
|
-
const _UREP = "UpdateReputationEntityPolicy";
|
|
1050
|
-
const _UREPR = "UpdateReputationEntityPolicyRequest";
|
|
1051
|
-
const _UREPRp = "UpdateReputationEntityPolicyResponse";
|
|
1052
|
-
const _URR = "UntagResourceRequest";
|
|
1053
|
-
const _URRn = "UntagResourceResponse";
|
|
1054
|
-
const _V = "Value";
|
|
1055
|
-
const _VA = "VdmAttributes";
|
|
1056
|
-
const _VAa = "ValidationAttributes";
|
|
1057
|
-
const _VE = "VdmEnabled";
|
|
1058
|
-
const _VFSS = "VerifiedForSendingStatus";
|
|
1059
|
-
const _VI = "VerificationInfo";
|
|
1060
|
-
const _VO = "VdmOptions";
|
|
1061
|
-
const _VOa = "ValidationOptions";
|
|
1062
|
-
const _VS = "VolumeStatistics";
|
|
1063
|
-
const _VSe = "VerificationStatus";
|
|
1064
|
-
const _Va = "Values";
|
|
1065
|
-
const _WP = "WarmupPercentage";
|
|
1066
|
-
const _WS = "WarmupStatus";
|
|
1067
|
-
const _WURL = "WebsiteURL";
|
|
1068
|
-
const _c = "client";
|
|
1069
|
-
const _e = "error";
|
|
1070
|
-
const _h = "http";
|
|
1071
|
-
const _hE = "httpError";
|
|
1072
|
-
const _hQ = "httpQuery";
|
|
1073
|
-
const _m = "message";
|
|
1074
|
-
const _s = "server";
|
|
1075
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.sesv2";
|
|
1076
|
-
const n0 = "com.amazonaws.sesv2";
|
|
1077
|
-
var AdditionalContactEmailAddress = [0, n0, _ACEA, 8, 0];
|
|
1078
|
-
var EmailSubject = [0, n0, _ES, 8, 0];
|
|
1079
|
-
var InsightsEmailAddress = [0, n0, _IEA, 8, 0];
|
|
1080
|
-
var PrivateKey = [0, n0, _PK, 8, 0];
|
|
1081
|
-
var UseCaseDescription = [0, n0, _UCD, 8, 0];
|
|
1082
|
-
var WebsiteURL = [0, n0, _WURL, 8, 0];
|
|
1083
|
-
var AccountDetails$ = [3, n0, _AD,
|
|
1084
|
-
0,
|
|
1085
|
-
[_MT, _WURL, _CL, _UCD, _ACEAd, _RD],
|
|
1086
|
-
[0, [() => WebsiteURL, 0], 0, [() => UseCaseDescription, 0], [() => AdditionalContactEmailAddresses, 0], () => ReviewDetails$]
|
|
1087
|
-
];
|
|
1088
|
-
var AccountSuspendedException$ = [-3, n0, _ASE,
|
|
1089
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1090
|
-
[_m],
|
|
1091
|
-
[0]
|
|
1092
|
-
];
|
|
1093
|
-
schema.TypeRegistry.for(n0).registerError(AccountSuspendedException$, AccountSuspendedException);
|
|
1094
|
-
var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
1095
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1096
|
-
[_m],
|
|
1097
|
-
[0]
|
|
1098
|
-
];
|
|
1099
|
-
schema.TypeRegistry.for(n0).registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
1100
|
-
var ArchivingOptions$ = [3, n0, _AO,
|
|
1101
|
-
0,
|
|
1102
|
-
[_AA],
|
|
1103
|
-
[0]
|
|
1104
|
-
];
|
|
1105
|
-
var Attachment$ = [3, n0, _A,
|
|
1106
|
-
0,
|
|
1107
|
-
[_RC, _FN, _CD, _CDo, _CI, _CTE, _CT],
|
|
1108
|
-
[21, 0, 0, 0, 0, 0, 0], 2
|
|
1109
|
-
];
|
|
1110
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
1111
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1112
|
-
[_m],
|
|
1113
|
-
[0]
|
|
1114
|
-
];
|
|
1115
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
1116
|
-
var BatchGetMetricDataQuery$ = [3, n0, _BGMDQ,
|
|
1117
|
-
0,
|
|
1118
|
-
[_I, _N, _M, _SD, _ED, _D],
|
|
1119
|
-
[0, 0, 0, 4, 4, 128 | 0], 5
|
|
1120
|
-
];
|
|
1121
|
-
var BatchGetMetricDataRequest$ = [3, n0, _BGMDR,
|
|
1122
|
-
0,
|
|
1123
|
-
[_Q],
|
|
1124
|
-
[() => BatchGetMetricDataQueries], 1
|
|
1125
|
-
];
|
|
1126
|
-
var BatchGetMetricDataResponse$ = [3, n0, _BGMDRa,
|
|
1127
|
-
0,
|
|
1128
|
-
[_R, _E],
|
|
1129
|
-
[() => MetricDataResultList, () => MetricDataErrorList]
|
|
1130
|
-
];
|
|
1131
|
-
var BlacklistEntry$ = [3, n0, _BE,
|
|
1132
|
-
0,
|
|
1133
|
-
[_RN, _LT, _De],
|
|
1134
|
-
[0, 4, 0]
|
|
1135
|
-
];
|
|
1136
|
-
var Body$ = [3, n0, _B,
|
|
1137
|
-
0,
|
|
1138
|
-
[_T, _H],
|
|
1139
|
-
[() => Content$, () => Content$]
|
|
1140
|
-
];
|
|
1141
|
-
var Bounce$ = [3, n0, _Bo,
|
|
1142
|
-
0,
|
|
1143
|
-
[_BT, _BST, _DC],
|
|
1144
|
-
[0, 0, 0]
|
|
1145
|
-
];
|
|
1146
|
-
var BulkEmailContent$ = [3, n0, _BEC,
|
|
1147
|
-
0,
|
|
1148
|
-
[_Te],
|
|
1149
|
-
[() => Template$]
|
|
1150
|
-
];
|
|
1151
|
-
var BulkEmailEntry$ = [3, n0, _BEE,
|
|
1152
|
-
0,
|
|
1153
|
-
[_Des, _RT, _REC, _RH],
|
|
1154
|
-
[() => Destination$, () => MessageTagList, () => ReplacementEmailContent$, () => MessageHeaderList], 1
|
|
1155
|
-
];
|
|
1156
|
-
var BulkEmailEntryResult$ = [3, n0, _BEER,
|
|
1157
|
-
0,
|
|
1158
|
-
[_S, _Er, _MI],
|
|
1159
|
-
[0, 0, 0]
|
|
1160
|
-
];
|
|
1161
|
-
var CancelExportJobRequest$ = [3, n0, _CEJR,
|
|
1162
|
-
0,
|
|
1163
|
-
[_JI],
|
|
1164
|
-
[[0, 1]], 1
|
|
1165
|
-
];
|
|
1166
|
-
var CancelExportJobResponse$ = [3, n0, _CEJRa,
|
|
1167
|
-
0,
|
|
1168
|
-
[],
|
|
1169
|
-
[]
|
|
1170
|
-
];
|
|
1171
|
-
var CloudWatchDestination$ = [3, n0, _CWD,
|
|
1172
|
-
0,
|
|
1173
|
-
[_DCi],
|
|
1174
|
-
[() => CloudWatchDimensionConfigurations], 1
|
|
1175
|
-
];
|
|
1176
|
-
var CloudWatchDimensionConfiguration$ = [3, n0, _CWDC,
|
|
1177
|
-
0,
|
|
1178
|
-
[_DN, _DVS, _DDV],
|
|
1179
|
-
[0, 0, 0], 3
|
|
1180
|
-
];
|
|
1181
|
-
var Complaint$ = [3, n0, _C,
|
|
1182
|
-
0,
|
|
1183
|
-
[_CST, _CFT],
|
|
1184
|
-
[0, 0]
|
|
1185
|
-
];
|
|
1186
|
-
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
1187
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1188
|
-
[_m],
|
|
1189
|
-
[0]
|
|
1190
|
-
];
|
|
1191
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
1192
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
1193
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1194
|
-
[_m],
|
|
1195
|
-
[0]
|
|
1196
|
-
];
|
|
1197
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1198
|
-
var Contact$ = [3, n0, _Co,
|
|
1199
|
-
0,
|
|
1200
|
-
[_EA, _TP, _TDP, _UA, _LUT],
|
|
1201
|
-
[0, () => TopicPreferenceList, () => TopicPreferenceList, 2, 4]
|
|
1202
|
-
];
|
|
1203
|
-
var ContactList$ = [3, n0, _CLo,
|
|
1204
|
-
0,
|
|
1205
|
-
[_CLN, _LUT],
|
|
1206
|
-
[0, 4]
|
|
1207
|
-
];
|
|
1208
|
-
var ContactListDestination$ = [3, n0, _CLD,
|
|
1209
|
-
0,
|
|
1210
|
-
[_CLN, _CLIA],
|
|
1211
|
-
[0, 0], 2
|
|
1212
|
-
];
|
|
1213
|
-
var Content$ = [3, n0, _Con,
|
|
1214
|
-
0,
|
|
1215
|
-
[_Da, _Ch],
|
|
1216
|
-
[0, 0], 1
|
|
1217
|
-
];
|
|
1218
|
-
var CreateConfigurationSetEventDestinationRequest$ = [3, n0, _CCSEDR,
|
|
1219
|
-
0,
|
|
1220
|
-
[_CSN, _EDN, _EDv],
|
|
1221
|
-
[[0, 1], 0, () => EventDestinationDefinition$], 3
|
|
1222
|
-
];
|
|
1223
|
-
var CreateConfigurationSetEventDestinationResponse$ = [3, n0, _CCSEDRr,
|
|
1224
|
-
0,
|
|
1225
|
-
[],
|
|
1226
|
-
[]
|
|
1227
|
-
];
|
|
1228
|
-
var CreateConfigurationSetRequest$ = [3, n0, _CCSR,
|
|
1229
|
-
0,
|
|
1230
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO],
|
|
1231
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$], 1
|
|
1232
|
-
];
|
|
1233
|
-
var CreateConfigurationSetResponse$ = [3, n0, _CCSRr,
|
|
1234
|
-
0,
|
|
1235
|
-
[],
|
|
1236
|
-
[]
|
|
1237
|
-
];
|
|
1238
|
-
var CreateContactListRequest$ = [3, n0, _CCLR,
|
|
1239
|
-
0,
|
|
1240
|
-
[_CLN, _To, _De, _Ta],
|
|
1241
|
-
[0, () => Topics, 0, () => TagList], 1
|
|
1242
|
-
];
|
|
1243
|
-
var CreateContactListResponse$ = [3, n0, _CCLRr,
|
|
1244
|
-
0,
|
|
1245
|
-
[],
|
|
1246
|
-
[]
|
|
1247
|
-
];
|
|
1248
|
-
var CreateContactRequest$ = [3, n0, _CCR,
|
|
1249
|
-
0,
|
|
1250
|
-
[_CLN, _EA, _TP, _UA, _ADt],
|
|
1251
|
-
[[0, 1], 0, () => TopicPreferenceList, 2, 0], 2
|
|
1252
|
-
];
|
|
1253
|
-
var CreateContactResponse$ = [3, n0, _CCRr,
|
|
1254
|
-
0,
|
|
1255
|
-
[],
|
|
1256
|
-
[]
|
|
1257
|
-
];
|
|
1258
|
-
var CreateCustomVerificationEmailTemplateRequest$ = [3, n0, _CCVETR,
|
|
1259
|
-
0,
|
|
1260
|
-
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL, _Ta],
|
|
1261
|
-
[0, 0, 0, 0, 0, 0, () => TagList], 6
|
|
1262
|
-
];
|
|
1263
|
-
var CreateCustomVerificationEmailTemplateResponse$ = [3, n0, _CCVETRr,
|
|
1264
|
-
0,
|
|
1265
|
-
[],
|
|
1266
|
-
[]
|
|
1267
|
-
];
|
|
1268
|
-
var CreateDedicatedIpPoolRequest$ = [3, n0, _CDIPR,
|
|
1269
|
-
0,
|
|
1270
|
-
[_PN, _Ta, _SM],
|
|
1271
|
-
[0, () => TagList, 0], 1
|
|
1272
|
-
];
|
|
1273
|
-
var CreateDedicatedIpPoolResponse$ = [3, n0, _CDIPRr,
|
|
1274
|
-
0,
|
|
1275
|
-
[],
|
|
1276
|
-
[]
|
|
1277
|
-
];
|
|
1278
|
-
var CreateDeliverabilityTestReportRequest$ = [3, n0, _CDTRR,
|
|
1279
|
-
0,
|
|
1280
|
-
[_FEA, _Con, _RNe, _Ta],
|
|
1281
|
-
[0, () => EmailContent$, 0, () => TagList], 2
|
|
1282
|
-
];
|
|
1283
|
-
var CreateDeliverabilityTestReportResponse$ = [3, n0, _CDTRRr,
|
|
1284
|
-
0,
|
|
1285
|
-
[_RI, _DTS],
|
|
1286
|
-
[0, 0], 2
|
|
1287
|
-
];
|
|
1288
|
-
var CreateEmailIdentityPolicyRequest$ = [3, n0, _CEIPR,
|
|
1289
|
-
0,
|
|
1290
|
-
[_EI, _PNo, _P],
|
|
1291
|
-
[[0, 1], [0, 1], 0], 3
|
|
1292
|
-
];
|
|
1293
|
-
var CreateEmailIdentityPolicyResponse$ = [3, n0, _CEIPRr,
|
|
1294
|
-
0,
|
|
1295
|
-
[],
|
|
1296
|
-
[]
|
|
1297
|
-
];
|
|
1298
|
-
var CreateEmailIdentityRequest$ = [3, n0, _CEIR,
|
|
1299
|
-
0,
|
|
1300
|
-
[_EI, _Ta, _DSA, _CSN],
|
|
1301
|
-
[0, () => TagList, [() => DkimSigningAttributes$, 0], 0], 1
|
|
1302
|
-
];
|
|
1303
|
-
var CreateEmailIdentityResponse$ = [3, n0, _CEIRr,
|
|
1304
|
-
0,
|
|
1305
|
-
[_IT, _VFSS, _DA],
|
|
1306
|
-
[0, 2, () => DkimAttributes$]
|
|
1307
|
-
];
|
|
1308
|
-
var CreateEmailTemplateRequest$ = [3, n0, _CETR,
|
|
1309
|
-
0,
|
|
1310
|
-
[_TN, _TC, _Ta],
|
|
1311
|
-
[0, () => EmailTemplateContent$, () => TagList], 2
|
|
1312
|
-
];
|
|
1313
|
-
var CreateEmailTemplateResponse$ = [3, n0, _CETRr,
|
|
1314
|
-
0,
|
|
1315
|
-
[],
|
|
1316
|
-
[]
|
|
1317
|
-
];
|
|
1318
|
-
var CreateExportJobRequest$ = [3, n0, _CEJRr,
|
|
1319
|
-
0,
|
|
1320
|
-
[_EDS, _EDx],
|
|
1321
|
-
[[() => ExportDataSource$, 0], () => ExportDestination$], 2
|
|
1322
|
-
];
|
|
1323
|
-
var CreateExportJobResponse$ = [3, n0, _CEJRre,
|
|
1324
|
-
0,
|
|
1325
|
-
[_JI],
|
|
1326
|
-
[0]
|
|
1327
|
-
];
|
|
1328
|
-
var CreateImportJobRequest$ = [3, n0, _CIJR,
|
|
1329
|
-
0,
|
|
1330
|
-
[_ID, _IDS],
|
|
1331
|
-
[() => ImportDestination$, () => ImportDataSource$], 2
|
|
1332
|
-
];
|
|
1333
|
-
var CreateImportJobResponse$ = [3, n0, _CIJRr,
|
|
1334
|
-
0,
|
|
1335
|
-
[_JI],
|
|
1336
|
-
[0]
|
|
1337
|
-
];
|
|
1338
|
-
var CreateMultiRegionEndpointRequest$ = [3, n0, _CMRER,
|
|
1339
|
-
0,
|
|
1340
|
-
[_EN, _Det, _Ta],
|
|
1341
|
-
[0, () => Details$, () => TagList], 2
|
|
1342
|
-
];
|
|
1343
|
-
var CreateMultiRegionEndpointResponse$ = [3, n0, _CMRERr,
|
|
1344
|
-
0,
|
|
1345
|
-
[_S, _EIn],
|
|
1346
|
-
[0, 0]
|
|
1347
|
-
];
|
|
1348
|
-
var CreateTenantRequest$ = [3, n0, _CTR,
|
|
1349
|
-
0,
|
|
1350
|
-
[_TNe, _Ta],
|
|
1351
|
-
[0, () => TagList], 1
|
|
1352
|
-
];
|
|
1353
|
-
var CreateTenantResourceAssociationRequest$ = [3, n0, _CTRAR,
|
|
1354
|
-
0,
|
|
1355
|
-
[_TNe, _RA],
|
|
1356
|
-
[0, 0], 2
|
|
1357
|
-
];
|
|
1358
|
-
var CreateTenantResourceAssociationResponse$ = [3, n0, _CTRARr,
|
|
1359
|
-
0,
|
|
1360
|
-
[],
|
|
1361
|
-
[]
|
|
1362
|
-
];
|
|
1363
|
-
var CreateTenantResponse$ = [3, n0, _CTRr,
|
|
1364
|
-
0,
|
|
1365
|
-
[_TNe, _TI, _TA, _CTr, _Ta, _SS],
|
|
1366
|
-
[0, 0, 0, 4, () => TagList, 0]
|
|
1367
|
-
];
|
|
1368
|
-
var CustomVerificationEmailTemplateMetadata$ = [3, n0, _CVETM,
|
|
1369
|
-
0,
|
|
1370
|
-
[_TN, _FEA, _TS, _SRURL, _FRURL],
|
|
1371
|
-
[0, 0, 0, 0, 0]
|
|
1372
|
-
];
|
|
1373
|
-
var DailyVolume$ = [3, n0, _DV,
|
|
1374
|
-
0,
|
|
1375
|
-
[_SD, _VS, _DIP],
|
|
1376
|
-
[4, () => VolumeStatistics$, () => DomainIspPlacements]
|
|
1377
|
-
];
|
|
1378
|
-
var DashboardAttributes$ = [3, n0, _DAa,
|
|
1379
|
-
0,
|
|
1380
|
-
[_EM],
|
|
1381
|
-
[0]
|
|
1382
|
-
];
|
|
1383
|
-
var DashboardOptions$ = [3, n0, _DOa,
|
|
1384
|
-
0,
|
|
1385
|
-
[_EM],
|
|
1386
|
-
[0]
|
|
1387
|
-
];
|
|
1388
|
-
var DedicatedIp$ = [3, n0, _DI,
|
|
1389
|
-
0,
|
|
1390
|
-
[_Ip, _WS, _WP, _PN],
|
|
1391
|
-
[0, 0, 1, 0], 3
|
|
1392
|
-
];
|
|
1393
|
-
var DedicatedIpPool$ = [3, n0, _DIPe,
|
|
1394
|
-
0,
|
|
1395
|
-
[_PN, _SM],
|
|
1396
|
-
[0, 0], 2
|
|
1397
|
-
];
|
|
1398
|
-
var DeleteConfigurationSetEventDestinationRequest$ = [3, n0, _DCSEDR,
|
|
1399
|
-
0,
|
|
1400
|
-
[_CSN, _EDN],
|
|
1401
|
-
[[0, 1], [0, 1]], 2
|
|
1402
|
-
];
|
|
1403
|
-
var DeleteConfigurationSetEventDestinationResponse$ = [3, n0, _DCSEDRe,
|
|
1404
|
-
0,
|
|
1405
|
-
[],
|
|
1406
|
-
[]
|
|
1407
|
-
];
|
|
1408
|
-
var DeleteConfigurationSetRequest$ = [3, n0, _DCSR,
|
|
1409
|
-
0,
|
|
1410
|
-
[_CSN],
|
|
1411
|
-
[[0, 1]], 1
|
|
1412
|
-
];
|
|
1413
|
-
var DeleteConfigurationSetResponse$ = [3, n0, _DCSRe,
|
|
1414
|
-
0,
|
|
1415
|
-
[],
|
|
1416
|
-
[]
|
|
1417
|
-
];
|
|
1418
|
-
var DeleteContactListRequest$ = [3, n0, _DCLR,
|
|
1419
|
-
0,
|
|
1420
|
-
[_CLN],
|
|
1421
|
-
[[0, 1]], 1
|
|
1422
|
-
];
|
|
1423
|
-
var DeleteContactListResponse$ = [3, n0, _DCLRe,
|
|
1424
|
-
0,
|
|
1425
|
-
[],
|
|
1426
|
-
[]
|
|
1427
|
-
];
|
|
1428
|
-
var DeleteContactRequest$ = [3, n0, _DCR,
|
|
1429
|
-
0,
|
|
1430
|
-
[_CLN, _EA],
|
|
1431
|
-
[[0, 1], [0, 1]], 2
|
|
1432
|
-
];
|
|
1433
|
-
var DeleteContactResponse$ = [3, n0, _DCRe,
|
|
1434
|
-
0,
|
|
1435
|
-
[],
|
|
1436
|
-
[]
|
|
1437
|
-
];
|
|
1438
|
-
var DeleteCustomVerificationEmailTemplateRequest$ = [3, n0, _DCVETR,
|
|
1439
|
-
0,
|
|
1440
|
-
[_TN],
|
|
1441
|
-
[[0, 1]], 1
|
|
1442
|
-
];
|
|
1443
|
-
var DeleteCustomVerificationEmailTemplateResponse$ = [3, n0, _DCVETRe,
|
|
1444
|
-
0,
|
|
1445
|
-
[],
|
|
1446
|
-
[]
|
|
1447
|
-
];
|
|
1448
|
-
var DeleteDedicatedIpPoolRequest$ = [3, n0, _DDIPR,
|
|
1449
|
-
0,
|
|
1450
|
-
[_PN],
|
|
1451
|
-
[[0, 1]], 1
|
|
1452
|
-
];
|
|
1453
|
-
var DeleteDedicatedIpPoolResponse$ = [3, n0, _DDIPRe,
|
|
1454
|
-
0,
|
|
1455
|
-
[],
|
|
1456
|
-
[]
|
|
1457
|
-
];
|
|
1458
|
-
var DeleteEmailIdentityPolicyRequest$ = [3, n0, _DEIPR,
|
|
1459
|
-
0,
|
|
1460
|
-
[_EI, _PNo],
|
|
1461
|
-
[[0, 1], [0, 1]], 2
|
|
1462
|
-
];
|
|
1463
|
-
var DeleteEmailIdentityPolicyResponse$ = [3, n0, _DEIPRe,
|
|
1464
|
-
0,
|
|
1465
|
-
[],
|
|
1466
|
-
[]
|
|
1467
|
-
];
|
|
1468
|
-
var DeleteEmailIdentityRequest$ = [3, n0, _DEIR,
|
|
1469
|
-
0,
|
|
1470
|
-
[_EI],
|
|
1471
|
-
[[0, 1]], 1
|
|
1472
|
-
];
|
|
1473
|
-
var DeleteEmailIdentityResponse$ = [3, n0, _DEIRe,
|
|
1474
|
-
0,
|
|
1475
|
-
[],
|
|
1476
|
-
[]
|
|
1477
|
-
];
|
|
1478
|
-
var DeleteEmailTemplateRequest$ = [3, n0, _DETR,
|
|
1479
|
-
0,
|
|
1480
|
-
[_TN],
|
|
1481
|
-
[[0, 1]], 1
|
|
1482
|
-
];
|
|
1483
|
-
var DeleteEmailTemplateResponse$ = [3, n0, _DETRe,
|
|
1484
|
-
0,
|
|
1485
|
-
[],
|
|
1486
|
-
[]
|
|
1487
|
-
];
|
|
1488
|
-
var DeleteMultiRegionEndpointRequest$ = [3, n0, _DMRER,
|
|
1489
|
-
0,
|
|
1490
|
-
[_EN],
|
|
1491
|
-
[[0, 1]], 1
|
|
1492
|
-
];
|
|
1493
|
-
var DeleteMultiRegionEndpointResponse$ = [3, n0, _DMRERe,
|
|
1494
|
-
0,
|
|
1495
|
-
[_S],
|
|
1496
|
-
[0]
|
|
1497
|
-
];
|
|
1498
|
-
var DeleteSuppressedDestinationRequest$ = [3, n0, _DSDR,
|
|
1499
|
-
0,
|
|
1500
|
-
[_EA],
|
|
1501
|
-
[[0, 1]], 1
|
|
1502
|
-
];
|
|
1503
|
-
var DeleteSuppressedDestinationResponse$ = [3, n0, _DSDRe,
|
|
1504
|
-
0,
|
|
1505
|
-
[],
|
|
1506
|
-
[]
|
|
1507
|
-
];
|
|
1508
|
-
var DeleteTenantRequest$ = [3, n0, _DTR,
|
|
1509
|
-
0,
|
|
1510
|
-
[_TNe],
|
|
1511
|
-
[0], 1
|
|
1512
|
-
];
|
|
1513
|
-
var DeleteTenantResourceAssociationRequest$ = [3, n0, _DTRAR,
|
|
1514
|
-
0,
|
|
1515
|
-
[_TNe, _RA],
|
|
1516
|
-
[0, 0], 2
|
|
1517
|
-
];
|
|
1518
|
-
var DeleteTenantResourceAssociationResponse$ = [3, n0, _DTRARe,
|
|
1519
|
-
0,
|
|
1520
|
-
[],
|
|
1521
|
-
[]
|
|
1522
|
-
];
|
|
1523
|
-
var DeleteTenantResponse$ = [3, n0, _DTRe,
|
|
1524
|
-
0,
|
|
1525
|
-
[],
|
|
1526
|
-
[]
|
|
1527
|
-
];
|
|
1528
|
-
var DeliverabilityTestReport$ = [3, n0, _DTRel,
|
|
1529
|
-
0,
|
|
1530
|
-
[_RI, _RNe, _Su, _FEA, _CDr, _DTS],
|
|
1531
|
-
[0, 0, 0, 0, 4, 0]
|
|
1532
|
-
];
|
|
1533
|
-
var DeliveryOptions$ = [3, n0, _DO,
|
|
1534
|
-
0,
|
|
1535
|
-
[_TPl, _SPN, _MDS],
|
|
1536
|
-
[0, 0, 1]
|
|
1537
|
-
];
|
|
1538
|
-
var Destination$ = [3, n0, _Des,
|
|
1539
|
-
0,
|
|
1540
|
-
[_TAo, _CA, _BA],
|
|
1541
|
-
[64 | 0, 64 | 0, 64 | 0]
|
|
1542
|
-
];
|
|
1543
|
-
var Details$ = [3, n0, _Det,
|
|
1544
|
-
0,
|
|
1545
|
-
[_RDo],
|
|
1546
|
-
[() => RoutesDetails], 1
|
|
1547
|
-
];
|
|
1548
|
-
var DkimAttributes$ = [3, n0, _DA,
|
|
1549
|
-
0,
|
|
1550
|
-
[_SE, _S, _Tok, _SHZ, _SAO, _NSKL, _CSKL, _LKGT],
|
|
1551
|
-
[2, 0, 64 | 0, 0, 0, 0, 0, 4]
|
|
1552
|
-
];
|
|
1553
|
-
var DkimSigningAttributes$ = [3, n0, _DSA,
|
|
1554
|
-
0,
|
|
1555
|
-
[_DSS, _DSPK, _NSKL, _DSAO],
|
|
1556
|
-
[0, [() => PrivateKey, 0], 0, 0]
|
|
1557
|
-
];
|
|
1558
|
-
var DomainDeliverabilityCampaign$ = [3, n0, _DDC,
|
|
1559
|
-
0,
|
|
1560
|
-
[_CIa, _IU, _Su, _FA, _SI, _FSDT, _LSDT, _IC, _SC, _RR, _DR, _RDR, _PV, _Es],
|
|
1561
|
-
[0, 0, 0, 0, 64 | 0, 4, 4, 1, 1, 1, 1, 1, 1, 64 | 0]
|
|
1562
|
-
];
|
|
1563
|
-
var DomainDeliverabilityTrackingOption$ = [3, n0, _DDTO,
|
|
1564
|
-
0,
|
|
1565
|
-
[_Do, _SSD, _IPTO],
|
|
1566
|
-
[0, 4, () => InboxPlacementTrackingOption$]
|
|
1567
|
-
];
|
|
1568
|
-
var DomainIspPlacement$ = [3, n0, _DIPo,
|
|
1569
|
-
0,
|
|
1570
|
-
[_IN, _IRC, _SRC, _IP, _SP],
|
|
1571
|
-
[0, 1, 1, 1, 1]
|
|
1572
|
-
];
|
|
1573
|
-
var EmailAddressInsightsMailboxEvaluations$ = [3, n0, _EAIME,
|
|
1574
|
-
0,
|
|
1575
|
-
[_HVS, _HVDR, _ME, _IRA, _IDs, _IRI],
|
|
1576
|
-
[() => EmailAddressInsightsVerdict$, () => EmailAddressInsightsVerdict$, () => EmailAddressInsightsVerdict$, () => EmailAddressInsightsVerdict$, () => EmailAddressInsightsVerdict$, () => EmailAddressInsightsVerdict$]
|
|
1577
|
-
];
|
|
1578
|
-
var EmailAddressInsightsVerdict$ = [3, n0, _EAIV,
|
|
1579
|
-
0,
|
|
1580
|
-
[_CV],
|
|
1581
|
-
[0]
|
|
1582
|
-
];
|
|
1583
|
-
var EmailContent$ = [3, n0, _EC,
|
|
1584
|
-
0,
|
|
1585
|
-
[_Si, _Ra, _Te],
|
|
1586
|
-
[() => Message$, () => RawMessage$, () => Template$]
|
|
1587
|
-
];
|
|
1588
|
-
var EmailInsights$ = [3, n0, _EIm,
|
|
1589
|
-
0,
|
|
1590
|
-
[_Des, _Is, _Ev],
|
|
1591
|
-
[[() => InsightsEmailAddress, 0], 0, () => InsightsEvents]
|
|
1592
|
-
];
|
|
1593
|
-
var EmailTemplateContent$ = [3, n0, _ETC,
|
|
1594
|
-
0,
|
|
1595
|
-
[_Su, _T, _H],
|
|
1596
|
-
[0, 0, 0]
|
|
1597
|
-
];
|
|
1598
|
-
var EmailTemplateMetadata$ = [3, n0, _ETM,
|
|
1599
|
-
0,
|
|
1600
|
-
[_TN, _CTr],
|
|
1601
|
-
[0, 4]
|
|
1602
|
-
];
|
|
1603
|
-
var EventBridgeDestination$ = [3, n0, _EBD,
|
|
1604
|
-
0,
|
|
1605
|
-
[_EBA],
|
|
1606
|
-
[0], 1
|
|
1607
|
-
];
|
|
1608
|
-
var EventDestination$ = [3, n0, _EDv,
|
|
1609
|
-
0,
|
|
1610
|
-
[_Na, _MET, _En, _KFD, _CWD, _SDn, _EBD, _PD],
|
|
1611
|
-
[0, 64 | 0, 2, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SnsDestination$, () => EventBridgeDestination$, () => PinpointDestination$], 2
|
|
1612
|
-
];
|
|
1613
|
-
var EventDestinationDefinition$ = [3, n0, _EDD,
|
|
1614
|
-
0,
|
|
1615
|
-
[_En, _MET, _KFD, _CWD, _SDn, _EBD, _PD],
|
|
1616
|
-
[2, 64 | 0, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SnsDestination$, () => EventBridgeDestination$, () => PinpointDestination$]
|
|
1617
|
-
];
|
|
1618
|
-
var EventDetails$ = [3, n0, _EDve,
|
|
1619
|
-
0,
|
|
1620
|
-
[_Bo, _C],
|
|
1621
|
-
[() => Bounce$, () => Complaint$]
|
|
1622
|
-
];
|
|
1623
|
-
var ExportDataSource$ = [3, n0, _EDS,
|
|
1624
|
-
0,
|
|
1625
|
-
[_MDSe, _MIDS],
|
|
1626
|
-
[() => MetricsDataSource$, [() => MessageInsightsDataSource$, 0]]
|
|
1627
|
-
];
|
|
1628
|
-
var ExportDestination$ = [3, n0, _EDx,
|
|
1629
|
-
0,
|
|
1630
|
-
[_DF, _SU],
|
|
1631
|
-
[0, 0], 1
|
|
1632
|
-
];
|
|
1633
|
-
var ExportJobSummary$ = [3, n0, _EJS,
|
|
1634
|
-
0,
|
|
1635
|
-
[_JI, _EST, _JS, _CTr, _CTo],
|
|
1636
|
-
[0, 0, 0, 4, 4]
|
|
1637
|
-
];
|
|
1638
|
-
var ExportMetric$ = [3, n0, _EMx,
|
|
1639
|
-
0,
|
|
1640
|
-
[_Na, _Ag],
|
|
1641
|
-
[0, 0]
|
|
1642
|
-
];
|
|
1643
|
-
var ExportStatistics$ = [3, n0, _ESx,
|
|
1644
|
-
0,
|
|
1645
|
-
[_PRC, _ERC],
|
|
1646
|
-
[1, 1]
|
|
1647
|
-
];
|
|
1648
|
-
var FailureInfo$ = [3, n0, _FI,
|
|
1649
|
-
0,
|
|
1650
|
-
[_FRSU, _EMr],
|
|
1651
|
-
[0, 0]
|
|
1652
|
-
];
|
|
1653
|
-
var GetAccountRequest$ = [3, n0, _GAR,
|
|
1654
|
-
0,
|
|
1655
|
-
[],
|
|
1656
|
-
[]
|
|
1657
|
-
];
|
|
1658
|
-
var GetAccountResponse$ = [3, n0, _GARe,
|
|
1659
|
-
0,
|
|
1660
|
-
[_DIAWE, _ESn, _PAE, _SQ, _SEe, _SA, _Det, _VA],
|
|
1661
|
-
[2, 0, 2, () => SendQuota$, 2, () => SuppressionAttributes$, [() => AccountDetails$, 0], () => VdmAttributes$]
|
|
1662
|
-
];
|
|
1663
|
-
var GetBlacklistReportsRequest$ = [3, n0, _GBRR,
|
|
1664
|
-
0,
|
|
1665
|
-
[_BIN],
|
|
1666
|
-
[[64 | 0, { [_hQ]: _BIN }]], 1
|
|
1667
|
-
];
|
|
1668
|
-
var GetBlacklistReportsResponse$ = [3, n0, _GBRRe,
|
|
1669
|
-
0,
|
|
1670
|
-
[_BR],
|
|
1671
|
-
[() => BlacklistReport], 1
|
|
1672
|
-
];
|
|
1673
|
-
var GetConfigurationSetEventDestinationsRequest$ = [3, n0, _GCSEDR,
|
|
1674
|
-
0,
|
|
1675
|
-
[_CSN],
|
|
1676
|
-
[[0, 1]], 1
|
|
1677
|
-
];
|
|
1678
|
-
var GetConfigurationSetEventDestinationsResponse$ = [3, n0, _GCSEDRe,
|
|
1679
|
-
0,
|
|
1680
|
-
[_EDven],
|
|
1681
|
-
[() => EventDestinations]
|
|
1682
|
-
];
|
|
1683
|
-
var GetConfigurationSetRequest$ = [3, n0, _GCSR,
|
|
1684
|
-
0,
|
|
1685
|
-
[_CSN],
|
|
1686
|
-
[[0, 1]], 1
|
|
1687
|
-
];
|
|
1688
|
-
var GetConfigurationSetResponse$ = [3, n0, _GCSRe,
|
|
1689
|
-
0,
|
|
1690
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO],
|
|
1691
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$]
|
|
1692
|
-
];
|
|
1693
|
-
var GetContactListRequest$ = [3, n0, _GCLR,
|
|
1694
|
-
0,
|
|
1695
|
-
[_CLN],
|
|
1696
|
-
[[0, 1]], 1
|
|
1697
|
-
];
|
|
1698
|
-
var GetContactListResponse$ = [3, n0, _GCLRe,
|
|
1699
|
-
0,
|
|
1700
|
-
[_CLN, _To, _De, _CTr, _LUT, _Ta],
|
|
1701
|
-
[0, () => Topics, 0, 4, 4, () => TagList]
|
|
1702
|
-
];
|
|
1703
|
-
var GetContactRequest$ = [3, n0, _GCR,
|
|
1704
|
-
0,
|
|
1705
|
-
[_CLN, _EA],
|
|
1706
|
-
[[0, 1], [0, 1]], 2
|
|
1707
|
-
];
|
|
1708
|
-
var GetContactResponse$ = [3, n0, _GCRe,
|
|
1709
|
-
0,
|
|
1710
|
-
[_CLN, _EA, _TP, _TDP, _UA, _ADt, _CTr, _LUT],
|
|
1711
|
-
[0, 0, () => TopicPreferenceList, () => TopicPreferenceList, 2, 0, 4, 4]
|
|
1712
|
-
];
|
|
1713
|
-
var GetCustomVerificationEmailTemplateRequest$ = [3, n0, _GCVETR,
|
|
1714
|
-
0,
|
|
1715
|
-
[_TN],
|
|
1716
|
-
[[0, 1]], 1
|
|
1717
|
-
];
|
|
1718
|
-
var GetCustomVerificationEmailTemplateResponse$ = [3, n0, _GCVETRe,
|
|
1719
|
-
0,
|
|
1720
|
-
[_TN, _FEA, _TS, _TC, _Ta, _SRURL, _FRURL],
|
|
1721
|
-
[0, 0, 0, 0, () => TagList, 0, 0]
|
|
1722
|
-
];
|
|
1723
|
-
var GetDedicatedIpPoolRequest$ = [3, n0, _GDIPR,
|
|
1724
|
-
0,
|
|
1725
|
-
[_PN],
|
|
1726
|
-
[[0, 1]], 1
|
|
1727
|
-
];
|
|
1728
|
-
var GetDedicatedIpPoolResponse$ = [3, n0, _GDIPRe,
|
|
1729
|
-
0,
|
|
1730
|
-
[_DIPe],
|
|
1731
|
-
[() => DedicatedIpPool$]
|
|
1732
|
-
];
|
|
1733
|
-
var GetDedicatedIpRequest$ = [3, n0, _GDIR,
|
|
1734
|
-
0,
|
|
1735
|
-
[_Ip],
|
|
1736
|
-
[[0, 1]], 1
|
|
1737
|
-
];
|
|
1738
|
-
var GetDedicatedIpResponse$ = [3, n0, _GDIRe,
|
|
1739
|
-
0,
|
|
1740
|
-
[_DI],
|
|
1741
|
-
[() => DedicatedIp$]
|
|
1742
|
-
];
|
|
1743
|
-
var GetDedicatedIpsRequest$ = [3, n0, _GDIRet,
|
|
1744
|
-
0,
|
|
1745
|
-
[_PN, _NT, _PS],
|
|
1746
|
-
[[0, { [_hQ]: _PN }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
1747
|
-
];
|
|
1748
|
-
var GetDedicatedIpsResponse$ = [3, n0, _GDIRete,
|
|
1749
|
-
0,
|
|
1750
|
-
[_DIe, _NT],
|
|
1751
|
-
[() => DedicatedIpList, 0]
|
|
1752
|
-
];
|
|
1753
|
-
var GetDeliverabilityDashboardOptionsRequest$ = [3, n0, _GDDOR,
|
|
1754
|
-
0,
|
|
1755
|
-
[],
|
|
1756
|
-
[]
|
|
1757
|
-
];
|
|
1758
|
-
var GetDeliverabilityDashboardOptionsResponse$ = [3, n0, _GDDORe,
|
|
1759
|
-
0,
|
|
1760
|
-
[_DE, _SED, _AS, _ASD, _PESD],
|
|
1761
|
-
[2, 4, 0, () => DomainDeliverabilityTrackingOptions, () => DomainDeliverabilityTrackingOptions], 1
|
|
1762
|
-
];
|
|
1763
|
-
var GetDeliverabilityTestReportRequest$ = [3, n0, _GDTRR,
|
|
1764
|
-
0,
|
|
1765
|
-
[_RI],
|
|
1766
|
-
[[0, 1]], 1
|
|
1767
|
-
];
|
|
1768
|
-
var GetDeliverabilityTestReportResponse$ = [3, n0, _GDTRRe,
|
|
1769
|
-
0,
|
|
1770
|
-
[_DTRel, _OP, _IPs, _Me, _Ta],
|
|
1771
|
-
[() => DeliverabilityTestReport$, () => PlacementStatistics$, () => IspPlacements, 0, () => TagList], 3
|
|
1772
|
-
];
|
|
1773
|
-
var GetDomainDeliverabilityCampaignRequest$ = [3, n0, _GDDCR,
|
|
1774
|
-
0,
|
|
1775
|
-
[_CIa],
|
|
1776
|
-
[[0, 1]], 1
|
|
1777
|
-
];
|
|
1778
|
-
var GetDomainDeliverabilityCampaignResponse$ = [3, n0, _GDDCRe,
|
|
1779
|
-
0,
|
|
1780
|
-
[_DDC],
|
|
1781
|
-
[() => DomainDeliverabilityCampaign$], 1
|
|
1782
|
-
];
|
|
1783
|
-
var GetDomainStatisticsReportRequest$ = [3, n0, _GDSRR,
|
|
1784
|
-
0,
|
|
1785
|
-
[_Do, _SD, _ED],
|
|
1786
|
-
[[0, 1], [4, { [_hQ]: _SD }], [4, { [_hQ]: _ED }]], 3
|
|
1787
|
-
];
|
|
1788
|
-
var GetDomainStatisticsReportResponse$ = [3, n0, _GDSRRe,
|
|
1789
|
-
0,
|
|
1790
|
-
[_OV, _DVa],
|
|
1791
|
-
[() => OverallVolume$, () => DailyVolumes], 2
|
|
1792
|
-
];
|
|
1793
|
-
var GetEmailAddressInsightsRequest$ = [3, n0, _GEAIR,
|
|
1794
|
-
0,
|
|
1795
|
-
[_EA],
|
|
1796
|
-
[0], 1
|
|
1797
|
-
];
|
|
1798
|
-
var GetEmailAddressInsightsResponse$ = [3, n0, _GEAIRe,
|
|
1799
|
-
0,
|
|
1800
|
-
[_MV],
|
|
1801
|
-
[() => MailboxValidation$]
|
|
1802
|
-
];
|
|
1803
|
-
var GetEmailIdentityPoliciesRequest$ = [3, n0, _GEIPR,
|
|
1804
|
-
0,
|
|
1805
|
-
[_EI],
|
|
1806
|
-
[[0, 1]], 1
|
|
1807
|
-
];
|
|
1808
|
-
var GetEmailIdentityPoliciesResponse$ = [3, n0, _GEIPRe,
|
|
1809
|
-
0,
|
|
1810
|
-
[_Po],
|
|
1811
|
-
[128 | 0]
|
|
1812
|
-
];
|
|
1813
|
-
var GetEmailIdentityRequest$ = [3, n0, _GEIR,
|
|
1814
|
-
0,
|
|
1815
|
-
[_EI],
|
|
1816
|
-
[[0, 1]], 1
|
|
1817
|
-
];
|
|
1818
|
-
var GetEmailIdentityResponse$ = [3, n0, _GEIRe,
|
|
1819
|
-
0,
|
|
1820
|
-
[_IT, _FFS, _VFSS, _DA, _MFA, _Po, _Ta, _CSN, _VSe, _VI],
|
|
1821
|
-
[0, 2, 2, () => DkimAttributes$, () => MailFromAttributes$, 128 | 0, () => TagList, 0, 0, () => VerificationInfo$]
|
|
1822
|
-
];
|
|
1823
|
-
var GetEmailTemplateRequest$ = [3, n0, _GETR,
|
|
1824
|
-
0,
|
|
1825
|
-
[_TN],
|
|
1826
|
-
[[0, 1]], 1
|
|
1827
|
-
];
|
|
1828
|
-
var GetEmailTemplateResponse$ = [3, n0, _GETRe,
|
|
1829
|
-
0,
|
|
1830
|
-
[_TN, _TC, _Ta],
|
|
1831
|
-
[0, () => EmailTemplateContent$, () => TagList], 2
|
|
1832
|
-
];
|
|
1833
|
-
var GetExportJobRequest$ = [3, n0, _GEJR,
|
|
1834
|
-
0,
|
|
1835
|
-
[_JI],
|
|
1836
|
-
[[0, 1]], 1
|
|
1837
|
-
];
|
|
1838
|
-
var GetExportJobResponse$ = [3, n0, _GEJRe,
|
|
1839
|
-
0,
|
|
1840
|
-
[_JI, _EST, _JS, _EDx, _EDS, _CTr, _CTo, _FI, _St],
|
|
1841
|
-
[0, 0, 0, () => ExportDestination$, [() => ExportDataSource$, 0], 4, 4, () => FailureInfo$, () => ExportStatistics$]
|
|
1842
|
-
];
|
|
1843
|
-
var GetImportJobRequest$ = [3, n0, _GIJR,
|
|
1844
|
-
0,
|
|
1845
|
-
[_JI],
|
|
1846
|
-
[[0, 1]], 1
|
|
1847
|
-
];
|
|
1848
|
-
var GetImportJobResponse$ = [3, n0, _GIJRe,
|
|
1849
|
-
0,
|
|
1850
|
-
[_JI, _ID, _IDS, _FI, _JS, _CTr, _CTo, _PRC, _FRC],
|
|
1851
|
-
[0, () => ImportDestination$, () => ImportDataSource$, () => FailureInfo$, 0, 4, 4, 1, 1]
|
|
1852
|
-
];
|
|
1853
|
-
var GetMessageInsightsRequest$ = [3, n0, _GMIR,
|
|
1854
|
-
0,
|
|
1855
|
-
[_MI],
|
|
1856
|
-
[[0, 1]], 1
|
|
1857
|
-
];
|
|
1858
|
-
var GetMessageInsightsResponse$ = [3, n0, _GMIRe,
|
|
1859
|
-
0,
|
|
1860
|
-
[_MI, _FEA, _Su, _ET, _In],
|
|
1861
|
-
[0, [() => InsightsEmailAddress, 0], [() => EmailSubject, 0], () => MessageTagList, [() => EmailInsightsList, 0]]
|
|
1862
|
-
];
|
|
1863
|
-
var GetMultiRegionEndpointRequest$ = [3, n0, _GMRER,
|
|
1864
|
-
0,
|
|
1865
|
-
[_EN],
|
|
1866
|
-
[[0, 1]], 1
|
|
1867
|
-
];
|
|
1868
|
-
var GetMultiRegionEndpointResponse$ = [3, n0, _GMRERe,
|
|
1869
|
-
0,
|
|
1870
|
-
[_EN, _EIn, _Ro, _S, _CTr, _LUT],
|
|
1871
|
-
[0, 0, () => Routes, 0, 4, 4]
|
|
1872
|
-
];
|
|
1873
|
-
var GetReputationEntityRequest$ = [3, n0, _GRER,
|
|
1874
|
-
0,
|
|
1875
|
-
[_RER, _RET],
|
|
1876
|
-
[[0, 1], [0, 1]], 2
|
|
1877
|
-
];
|
|
1878
|
-
var GetReputationEntityResponse$ = [3, n0, _GRERe,
|
|
1879
|
-
0,
|
|
1880
|
-
[_RE],
|
|
1881
|
-
[() => ReputationEntity$]
|
|
1882
|
-
];
|
|
1883
|
-
var GetSuppressedDestinationRequest$ = [3, n0, _GSDR,
|
|
1884
|
-
0,
|
|
1885
|
-
[_EA],
|
|
1886
|
-
[[0, 1]], 1
|
|
1887
|
-
];
|
|
1888
|
-
var GetSuppressedDestinationResponse$ = [3, n0, _GSDRe,
|
|
1889
|
-
0,
|
|
1890
|
-
[_SDu],
|
|
1891
|
-
[() => SuppressedDestination$], 1
|
|
1892
|
-
];
|
|
1893
|
-
var GetTenantRequest$ = [3, n0, _GTR,
|
|
1894
|
-
0,
|
|
1895
|
-
[_TNe],
|
|
1896
|
-
[0], 1
|
|
1897
|
-
];
|
|
1898
|
-
var GetTenantResponse$ = [3, n0, _GTRe,
|
|
1899
|
-
0,
|
|
1900
|
-
[_Ten],
|
|
1901
|
-
[() => Tenant$]
|
|
1902
|
-
];
|
|
1903
|
-
var GuardianAttributes$ = [3, n0, _GA,
|
|
1904
|
-
0,
|
|
1905
|
-
[_OSD],
|
|
1906
|
-
[0]
|
|
1907
|
-
];
|
|
1908
|
-
var GuardianOptions$ = [3, n0, _GO,
|
|
1909
|
-
0,
|
|
1910
|
-
[_OSD],
|
|
1911
|
-
[0]
|
|
1912
|
-
];
|
|
1913
|
-
var IdentityInfo$ = [3, n0, _II,
|
|
1914
|
-
0,
|
|
1915
|
-
[_IT, _INd, _SEe, _VSe],
|
|
1916
|
-
[0, 0, 2, 0]
|
|
1917
|
-
];
|
|
1918
|
-
var ImportDataSource$ = [3, n0, _IDS,
|
|
1919
|
-
0,
|
|
1920
|
-
[_SU, _DF],
|
|
1921
|
-
[0, 0], 2
|
|
1922
|
-
];
|
|
1923
|
-
var ImportDestination$ = [3, n0, _ID,
|
|
1924
|
-
0,
|
|
1925
|
-
[_SLD, _CLD],
|
|
1926
|
-
[() => SuppressionListDestination$, () => ContactListDestination$]
|
|
1927
|
-
];
|
|
1928
|
-
var ImportJobSummary$ = [3, n0, _IJS,
|
|
1929
|
-
0,
|
|
1930
|
-
[_JI, _ID, _JS, _CTr, _PRC, _FRC],
|
|
1931
|
-
[0, () => ImportDestination$, 0, 4, 1, 1]
|
|
1932
|
-
];
|
|
1933
|
-
var InboxPlacementTrackingOption$ = [3, n0, _IPTO,
|
|
1934
|
-
0,
|
|
1935
|
-
[_G, _TIr],
|
|
1936
|
-
[2, 64 | 0]
|
|
1937
|
-
];
|
|
1938
|
-
var InsightsEvent$ = [3, n0, _IE,
|
|
1939
|
-
0,
|
|
1940
|
-
[_Ti, _Ty, _Det],
|
|
1941
|
-
[4, 0, () => EventDetails$]
|
|
1942
|
-
];
|
|
1943
|
-
var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
1944
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1945
|
-
[_m],
|
|
1946
|
-
[0]
|
|
1947
|
-
];
|
|
1948
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
1949
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
1950
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1951
|
-
[_m],
|
|
1952
|
-
[0]
|
|
1953
|
-
];
|
|
1954
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
1955
|
-
var IspPlacement$ = [3, n0, _IPsp,
|
|
1956
|
-
0,
|
|
1957
|
-
[_IN, _PSl],
|
|
1958
|
-
[0, () => PlacementStatistics$]
|
|
1959
|
-
];
|
|
1960
|
-
var KinesisFirehoseDestination$ = [3, n0, _KFD,
|
|
1961
|
-
0,
|
|
1962
|
-
[_IRAa, _DSAe],
|
|
1963
|
-
[0, 0], 2
|
|
1964
|
-
];
|
|
1965
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1966
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1967
|
-
[_m],
|
|
1968
|
-
[0]
|
|
1969
|
-
];
|
|
1970
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1971
|
-
var ListConfigurationSetsRequest$ = [3, n0, _LCSR,
|
|
1972
|
-
0,
|
|
1973
|
-
[_NT, _PS],
|
|
1974
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
1975
|
-
];
|
|
1976
|
-
var ListConfigurationSetsResponse$ = [3, n0, _LCSRi,
|
|
1977
|
-
0,
|
|
1978
|
-
[_CS, _NT],
|
|
1979
|
-
[64 | 0, 0]
|
|
1980
|
-
];
|
|
1981
|
-
var ListContactListsRequest$ = [3, n0, _LCLR,
|
|
1982
|
-
0,
|
|
1983
|
-
[_PS, _NT],
|
|
1984
|
-
[[1, { [_hQ]: _PS }], [0, { [_hQ]: _NT }]]
|
|
1985
|
-
];
|
|
1986
|
-
var ListContactListsResponse$ = [3, n0, _LCLRi,
|
|
1987
|
-
0,
|
|
1988
|
-
[_CLon, _NT],
|
|
1989
|
-
[() => ListOfContactLists, 0]
|
|
1990
|
-
];
|
|
1991
|
-
var ListContactsFilter$ = [3, n0, _LCF,
|
|
1992
|
-
0,
|
|
1993
|
-
[_FS, _TF],
|
|
1994
|
-
[0, () => TopicFilter$]
|
|
1995
|
-
];
|
|
1996
|
-
var ListContactsRequest$ = [3, n0, _LCR,
|
|
1997
|
-
0,
|
|
1998
|
-
[_CLN, _F, _PS, _NT],
|
|
1999
|
-
[[0, 1], () => ListContactsFilter$, 1, 0], 1
|
|
2000
|
-
];
|
|
2001
|
-
var ListContactsResponse$ = [3, n0, _LCRi,
|
|
2002
|
-
0,
|
|
2003
|
-
[_Cont, _NT],
|
|
2004
|
-
[() => ListOfContacts, 0]
|
|
2005
|
-
];
|
|
2006
|
-
var ListCustomVerificationEmailTemplatesRequest$ = [3, n0, _LCVETR,
|
|
2007
|
-
0,
|
|
2008
|
-
[_NT, _PS],
|
|
2009
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
2010
|
-
];
|
|
2011
|
-
var ListCustomVerificationEmailTemplatesResponse$ = [3, n0, _LCVETRi,
|
|
2012
|
-
0,
|
|
2013
|
-
[_CVET, _NT],
|
|
2014
|
-
[() => CustomVerificationEmailTemplatesList, 0]
|
|
2015
|
-
];
|
|
2016
|
-
var ListDedicatedIpPoolsRequest$ = [3, n0, _LDIPR,
|
|
2017
|
-
0,
|
|
2018
|
-
[_NT, _PS],
|
|
2019
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
2020
|
-
];
|
|
2021
|
-
var ListDedicatedIpPoolsResponse$ = [3, n0, _LDIPRi,
|
|
2022
|
-
0,
|
|
2023
|
-
[_DIPed, _NT],
|
|
2024
|
-
[64 | 0, 0]
|
|
2025
|
-
];
|
|
2026
|
-
var ListDeliverabilityTestReportsRequest$ = [3, n0, _LDTRR,
|
|
2027
|
-
0,
|
|
2028
|
-
[_NT, _PS],
|
|
2029
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
2030
|
-
];
|
|
2031
|
-
var ListDeliverabilityTestReportsResponse$ = [3, n0, _LDTRRi,
|
|
2032
|
-
0,
|
|
2033
|
-
[_DTReli, _NT],
|
|
2034
|
-
[() => DeliverabilityTestReports, 0], 1
|
|
2035
|
-
];
|
|
2036
|
-
var ListDomainDeliverabilityCampaignsRequest$ = [3, n0, _LDDCR,
|
|
2037
|
-
0,
|
|
2038
|
-
[_SD, _ED, _SDub, _NT, _PS],
|
|
2039
|
-
[[4, { [_hQ]: _SD }], [4, { [_hQ]: _ED }], [0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]], 3
|
|
2040
|
-
];
|
|
2041
|
-
var ListDomainDeliverabilityCampaignsResponse$ = [3, n0, _LDDCRi,
|
|
2042
|
-
0,
|
|
2043
|
-
[_DDCo, _NT],
|
|
2044
|
-
[() => DomainDeliverabilityCampaignList, 0], 1
|
|
2045
|
-
];
|
|
2046
|
-
var ListEmailIdentitiesRequest$ = [3, n0, _LEIR,
|
|
2047
|
-
0,
|
|
2048
|
-
[_NT, _PS],
|
|
2049
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
2050
|
-
];
|
|
2051
|
-
var ListEmailIdentitiesResponse$ = [3, n0, _LEIRi,
|
|
2052
|
-
0,
|
|
2053
|
-
[_EIma, _NT],
|
|
2054
|
-
[() => IdentityInfoList, 0]
|
|
2055
|
-
];
|
|
2056
|
-
var ListEmailTemplatesRequest$ = [3, n0, _LETR,
|
|
2057
|
-
0,
|
|
2058
|
-
[_NT, _PS],
|
|
2059
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
2060
|
-
];
|
|
2061
|
-
var ListEmailTemplatesResponse$ = [3, n0, _LETRi,
|
|
2062
|
-
0,
|
|
2063
|
-
[_TM, _NT],
|
|
2064
|
-
[() => EmailTemplateMetadataList, 0]
|
|
2065
|
-
];
|
|
2066
|
-
var ListExportJobsRequest$ = [3, n0, _LEJR,
|
|
2067
|
-
0,
|
|
2068
|
-
[_NT, _PS, _EST, _JS],
|
|
2069
|
-
[0, 1, 0, 0]
|
|
2070
|
-
];
|
|
2071
|
-
var ListExportJobsResponse$ = [3, n0, _LEJRi,
|
|
2072
|
-
0,
|
|
2073
|
-
[_EJ, _NT],
|
|
2074
|
-
[() => ExportJobSummaryList, 0]
|
|
2075
|
-
];
|
|
2076
|
-
var ListImportJobsRequest$ = [3, n0, _LIJR,
|
|
2077
|
-
0,
|
|
2078
|
-
[_IDT, _NT, _PS],
|
|
2079
|
-
[0, 0, 1]
|
|
2080
|
-
];
|
|
2081
|
-
var ListImportJobsResponse$ = [3, n0, _LIJRi,
|
|
2082
|
-
0,
|
|
2083
|
-
[_IJ, _NT],
|
|
2084
|
-
[() => ImportJobSummaryList, 0]
|
|
2085
|
-
];
|
|
2086
|
-
var ListManagementOptions$ = [3, n0, _LMO,
|
|
2087
|
-
0,
|
|
2088
|
-
[_CLN, _TNo],
|
|
2089
|
-
[0, 0], 1
|
|
2090
|
-
];
|
|
2091
|
-
var ListMultiRegionEndpointsRequest$ = [3, n0, _LMRER,
|
|
2092
|
-
0,
|
|
2093
|
-
[_NT, _PS],
|
|
2094
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
2095
|
-
];
|
|
2096
|
-
var ListMultiRegionEndpointsResponse$ = [3, n0, _LMRERi,
|
|
2097
|
-
0,
|
|
2098
|
-
[_MRE, _NT],
|
|
2099
|
-
[() => MultiRegionEndpoints, 0]
|
|
2100
|
-
];
|
|
2101
|
-
var ListRecommendationsRequest$ = [3, n0, _LRR,
|
|
2102
|
-
0,
|
|
2103
|
-
[_F, _NT, _PS],
|
|
2104
|
-
[128 | 0, 0, 1]
|
|
2105
|
-
];
|
|
2106
|
-
var ListRecommendationsResponse$ = [3, n0, _LRRi,
|
|
2107
|
-
0,
|
|
2108
|
-
[_Re, _NT],
|
|
2109
|
-
[() => RecommendationsList, 0]
|
|
2110
|
-
];
|
|
2111
|
-
var ListReputationEntitiesRequest$ = [3, n0, _LRER,
|
|
2112
|
-
0,
|
|
2113
|
-
[_F, _NT, _PS],
|
|
2114
|
-
[128 | 0, 0, 1]
|
|
2115
|
-
];
|
|
2116
|
-
var ListReputationEntitiesResponse$ = [3, n0, _LRERi,
|
|
2117
|
-
0,
|
|
2118
|
-
[_REe, _NT],
|
|
2119
|
-
[() => ReputationEntitiesList, 0]
|
|
2120
|
-
];
|
|
2121
|
-
var ListResourceTenantsRequest$ = [3, n0, _LRTR,
|
|
2122
|
-
0,
|
|
2123
|
-
[_RA, _PS, _NT],
|
|
2124
|
-
[0, 1, 0], 1
|
|
2125
|
-
];
|
|
2126
|
-
var ListResourceTenantsResponse$ = [3, n0, _LRTRi,
|
|
2127
|
-
0,
|
|
2128
|
-
[_RTe, _NT],
|
|
2129
|
-
[() => ResourceTenantMetadataList, 0]
|
|
2130
|
-
];
|
|
2131
|
-
var ListSuppressedDestinationsRequest$ = [3, n0, _LSDR,
|
|
2132
|
-
0,
|
|
2133
|
-
[_Rea, _SD, _ED, _NT, _PS],
|
|
2134
|
-
[[64 | 0, { [_hQ]: _Reas }], [4, { [_hQ]: _SD }], [4, { [_hQ]: _ED }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
2135
|
-
];
|
|
2136
|
-
var ListSuppressedDestinationsResponse$ = [3, n0, _LSDRi,
|
|
2137
|
-
0,
|
|
2138
|
-
[_SDS, _NT],
|
|
2139
|
-
[() => SuppressedDestinationSummaries, 0]
|
|
2140
|
-
];
|
|
2141
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2142
|
-
0,
|
|
2143
|
-
[_RA],
|
|
2144
|
-
[[0, { [_hQ]: _RA }]], 1
|
|
2145
|
-
];
|
|
2146
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2147
|
-
0,
|
|
2148
|
-
[_Ta],
|
|
2149
|
-
[() => TagList], 1
|
|
2150
|
-
];
|
|
2151
|
-
var ListTenantResourcesRequest$ = [3, n0, _LTRR,
|
|
2152
|
-
0,
|
|
2153
|
-
[_TNe, _F, _PS, _NT],
|
|
2154
|
-
[0, 128 | 0, 1, 0], 1
|
|
2155
|
-
];
|
|
2156
|
-
var ListTenantResourcesResponse$ = [3, n0, _LTRRi,
|
|
2157
|
-
0,
|
|
2158
|
-
[_TR, _NT],
|
|
2159
|
-
[() => TenantResourceList, 0]
|
|
2160
|
-
];
|
|
2161
|
-
var ListTenantsRequest$ = [3, n0, _LTR,
|
|
2162
|
-
0,
|
|
2163
|
-
[_NT, _PS],
|
|
2164
|
-
[0, 1]
|
|
2165
|
-
];
|
|
2166
|
-
var ListTenantsResponse$ = [3, n0, _LTRi,
|
|
2167
|
-
0,
|
|
2168
|
-
[_Tena, _NT],
|
|
2169
|
-
[() => TenantInfoList, 0]
|
|
2170
|
-
];
|
|
2171
|
-
var MailboxValidation$ = [3, n0, _MV,
|
|
2172
|
-
0,
|
|
2173
|
-
[_IV, _Eva],
|
|
2174
|
-
[() => EmailAddressInsightsVerdict$, () => EmailAddressInsightsMailboxEvaluations$]
|
|
2175
|
-
];
|
|
2176
|
-
var MailFromAttributes$ = [3, n0, _MFA,
|
|
2177
|
-
0,
|
|
2178
|
-
[_MFD, _MFDS, _BOMF],
|
|
2179
|
-
[0, 0, 0], 3
|
|
2180
|
-
];
|
|
2181
|
-
var MailFromDomainNotVerifiedException$ = [-3, n0, _MFDNVE,
|
|
2182
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2183
|
-
[_m],
|
|
2184
|
-
[0]
|
|
2185
|
-
];
|
|
2186
|
-
schema.TypeRegistry.for(n0).registerError(MailFromDomainNotVerifiedException$, MailFromDomainNotVerifiedException);
|
|
2187
|
-
var Message$ = [3, n0, _Me,
|
|
2188
|
-
0,
|
|
2189
|
-
[_Su, _B, _He, _At],
|
|
2190
|
-
[() => Content$, () => Body$, () => MessageHeaderList, () => AttachmentList], 2
|
|
2191
|
-
];
|
|
2192
|
-
var MessageHeader$ = [3, n0, _MH,
|
|
2193
|
-
0,
|
|
2194
|
-
[_Na, _V],
|
|
2195
|
-
[0, 0], 2
|
|
2196
|
-
];
|
|
2197
|
-
var MessageInsightsDataSource$ = [3, n0, _MIDS,
|
|
2198
|
-
0,
|
|
2199
|
-
[_SD, _ED, _Inc, _Ex, _MR],
|
|
2200
|
-
[4, 4, [() => MessageInsightsFilters$, 0], [() => MessageInsightsFilters$, 0], 1], 2
|
|
2201
|
-
];
|
|
2202
|
-
var MessageInsightsFilters$ = [3, n0, _MIF,
|
|
2203
|
-
0,
|
|
2204
|
-
[_FEA, _Des, _Su, _Is, _LDE, _LEEa],
|
|
2205
|
-
[[() => EmailAddressFilterList, 0], [() => EmailAddressFilterList, 0], [() => EmailSubjectFilterList, 0], 64 | 0, 64 | 0, 64 | 0]
|
|
2206
|
-
];
|
|
2207
|
-
var MessageRejected$ = [-3, n0, _MRe,
|
|
2208
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2209
|
-
[_m],
|
|
2210
|
-
[0]
|
|
2211
|
-
];
|
|
2212
|
-
schema.TypeRegistry.for(n0).registerError(MessageRejected$, MessageRejected);
|
|
2213
|
-
var MessageTag$ = [3, n0, _MTe,
|
|
2214
|
-
0,
|
|
2215
|
-
[_Na, _V],
|
|
2216
|
-
[0, 0], 2
|
|
2217
|
-
];
|
|
2218
|
-
var MetricDataError$ = [3, n0, _MDE,
|
|
2219
|
-
0,
|
|
2220
|
-
[_I, _Cod, _Me],
|
|
2221
|
-
[0, 0, 0]
|
|
2222
|
-
];
|
|
2223
|
-
var MetricDataResult$ = [3, n0, _MDR,
|
|
2224
|
-
0,
|
|
2225
|
-
[_I, _Tim, _Va],
|
|
2226
|
-
[0, 64 | 4, 64 | 1]
|
|
2227
|
-
];
|
|
2228
|
-
var MetricsDataSource$ = [3, n0, _MDSe,
|
|
2229
|
-
0,
|
|
2230
|
-
[_D, _N, _Met, _SD, _ED],
|
|
2231
|
-
[[2, n0, _EDxp, 0, 0, 64 | 0], 0, () => ExportMetrics, 4, 4], 5
|
|
2232
|
-
];
|
|
2233
|
-
var MultiRegionEndpoint$ = [3, n0, _MREu,
|
|
2234
|
-
0,
|
|
2235
|
-
[_EN, _S, _EIn, _Reg, _CTr, _LUT],
|
|
2236
|
-
[0, 0, 0, 64 | 0, 4, 4]
|
|
2237
|
-
];
|
|
2238
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
2239
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
2240
|
-
[_m],
|
|
2241
|
-
[0]
|
|
2242
|
-
];
|
|
2243
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
2244
|
-
var OverallVolume$ = [3, n0, _OV,
|
|
2245
|
-
0,
|
|
2246
|
-
[_VS, _RRP, _DIP],
|
|
2247
|
-
[() => VolumeStatistics$, 1, () => DomainIspPlacements]
|
|
2248
|
-
];
|
|
2249
|
-
var PinpointDestination$ = [3, n0, _PD,
|
|
2250
|
-
0,
|
|
2251
|
-
[_AAp],
|
|
2252
|
-
[0]
|
|
2253
|
-
];
|
|
2254
|
-
var PlacementStatistics$ = [3, n0, _PSl,
|
|
2255
|
-
0,
|
|
2256
|
-
[_IP, _SP, _MP, _SPp, _DP],
|
|
2257
|
-
[1, 1, 1, 1, 1]
|
|
2258
|
-
];
|
|
2259
|
-
var PutAccountDedicatedIpWarmupAttributesRequest$ = [3, n0, _PADIWAR,
|
|
2260
|
-
0,
|
|
2261
|
-
[_AWE],
|
|
2262
|
-
[2]
|
|
2263
|
-
];
|
|
2264
|
-
var PutAccountDedicatedIpWarmupAttributesResponse$ = [3, n0, _PADIWARu,
|
|
2265
|
-
0,
|
|
2266
|
-
[],
|
|
2267
|
-
[]
|
|
2268
|
-
];
|
|
2269
|
-
var PutAccountDetailsRequest$ = [3, n0, _PADR,
|
|
2270
|
-
0,
|
|
2271
|
-
[_MT, _WURL, _CL, _UCD, _ACEAd, _PAE],
|
|
2272
|
-
[0, [() => WebsiteURL, 0], 0, [() => UseCaseDescription, 0], [() => AdditionalContactEmailAddresses, 0], 2], 2
|
|
2273
|
-
];
|
|
2274
|
-
var PutAccountDetailsResponse$ = [3, n0, _PADRu,
|
|
2275
|
-
0,
|
|
2276
|
-
[],
|
|
2277
|
-
[]
|
|
2278
|
-
];
|
|
2279
|
-
var PutAccountSendingAttributesRequest$ = [3, n0, _PASAR,
|
|
2280
|
-
0,
|
|
2281
|
-
[_SEe],
|
|
2282
|
-
[2]
|
|
2283
|
-
];
|
|
2284
|
-
var PutAccountSendingAttributesResponse$ = [3, n0, _PASARu,
|
|
2285
|
-
0,
|
|
2286
|
-
[],
|
|
2287
|
-
[]
|
|
2288
|
-
];
|
|
2289
|
-
var PutAccountSuppressionAttributesRequest$ = [3, n0, _PASARut,
|
|
2290
|
-
0,
|
|
2291
|
-
[_SR, _VAa],
|
|
2292
|
-
[64 | 0, () => SuppressionValidationAttributes$]
|
|
2293
|
-
];
|
|
2294
|
-
var PutAccountSuppressionAttributesResponse$ = [3, n0, _PASARutc,
|
|
2295
|
-
0,
|
|
2296
|
-
[],
|
|
2297
|
-
[]
|
|
2298
|
-
];
|
|
2299
|
-
var PutAccountVdmAttributesRequest$ = [3, n0, _PAVAR,
|
|
2300
|
-
0,
|
|
2301
|
-
[_VA],
|
|
2302
|
-
[() => VdmAttributes$], 1
|
|
2303
|
-
];
|
|
2304
|
-
var PutAccountVdmAttributesResponse$ = [3, n0, _PAVARu,
|
|
2305
|
-
0,
|
|
2306
|
-
[],
|
|
2307
|
-
[]
|
|
2308
|
-
];
|
|
2309
|
-
var PutConfigurationSetArchivingOptionsRequest$ = [3, n0, _PCSAOR,
|
|
2310
|
-
0,
|
|
2311
|
-
[_CSN, _AA],
|
|
2312
|
-
[[0, 1], 0], 1
|
|
2313
|
-
];
|
|
2314
|
-
var PutConfigurationSetArchivingOptionsResponse$ = [3, n0, _PCSAORu,
|
|
2315
|
-
0,
|
|
2316
|
-
[],
|
|
2317
|
-
[]
|
|
2318
|
-
];
|
|
2319
|
-
var PutConfigurationSetDeliveryOptionsRequest$ = [3, n0, _PCSDOR,
|
|
2320
|
-
0,
|
|
2321
|
-
[_CSN, _TPl, _SPN, _MDS],
|
|
2322
|
-
[[0, 1], 0, 0, 1], 1
|
|
2323
|
-
];
|
|
2324
|
-
var PutConfigurationSetDeliveryOptionsResponse$ = [3, n0, _PCSDORu,
|
|
2325
|
-
0,
|
|
2326
|
-
[],
|
|
2327
|
-
[]
|
|
2328
|
-
];
|
|
2329
|
-
var PutConfigurationSetReputationOptionsRequest$ = [3, n0, _PCSROR,
|
|
2330
|
-
0,
|
|
2331
|
-
[_CSN, _RME],
|
|
2332
|
-
[[0, 1], 2], 1
|
|
2333
|
-
];
|
|
2334
|
-
var PutConfigurationSetReputationOptionsResponse$ = [3, n0, _PCSRORu,
|
|
2335
|
-
0,
|
|
2336
|
-
[],
|
|
2337
|
-
[]
|
|
2338
|
-
];
|
|
2339
|
-
var PutConfigurationSetSendingOptionsRequest$ = [3, n0, _PCSSOR,
|
|
2340
|
-
0,
|
|
2341
|
-
[_CSN, _SEe],
|
|
2342
|
-
[[0, 1], 2], 1
|
|
2343
|
-
];
|
|
2344
|
-
var PutConfigurationSetSendingOptionsResponse$ = [3, n0, _PCSSORu,
|
|
2345
|
-
0,
|
|
2346
|
-
[],
|
|
2347
|
-
[]
|
|
2348
|
-
];
|
|
2349
|
-
var PutConfigurationSetSuppressionOptionsRequest$ = [3, n0, _PCSSORut,
|
|
2350
|
-
0,
|
|
2351
|
-
[_CSN, _SR, _VOa],
|
|
2352
|
-
[[0, 1], 64 | 0, () => SuppressionValidationOptions$], 1
|
|
2353
|
-
];
|
|
2354
|
-
var PutConfigurationSetSuppressionOptionsResponse$ = [3, n0, _PCSSORuto,
|
|
2355
|
-
0,
|
|
2356
|
-
[],
|
|
2357
|
-
[]
|
|
2358
|
-
];
|
|
2359
|
-
var PutConfigurationSetTrackingOptionsRequest$ = [3, n0, _PCSTOR,
|
|
2360
|
-
0,
|
|
2361
|
-
[_CSN, _CRD, _HP],
|
|
2362
|
-
[[0, 1], 0, 0], 1
|
|
2363
|
-
];
|
|
2364
|
-
var PutConfigurationSetTrackingOptionsResponse$ = [3, n0, _PCSTORu,
|
|
2365
|
-
0,
|
|
2366
|
-
[],
|
|
2367
|
-
[]
|
|
2368
|
-
];
|
|
2369
|
-
var PutConfigurationSetVdmOptionsRequest$ = [3, n0, _PCSVOR,
|
|
2370
|
-
0,
|
|
2371
|
-
[_CSN, _VO],
|
|
2372
|
-
[[0, 1], () => VdmOptions$], 1
|
|
2373
|
-
];
|
|
2374
|
-
var PutConfigurationSetVdmOptionsResponse$ = [3, n0, _PCSVORu,
|
|
2375
|
-
0,
|
|
2376
|
-
[],
|
|
2377
|
-
[]
|
|
2378
|
-
];
|
|
2379
|
-
var PutDedicatedIpInPoolRequest$ = [3, n0, _PDIIPR,
|
|
2380
|
-
0,
|
|
2381
|
-
[_Ip, _DPN],
|
|
2382
|
-
[[0, 1], 0], 2
|
|
2383
|
-
];
|
|
2384
|
-
var PutDedicatedIpInPoolResponse$ = [3, n0, _PDIIPRu,
|
|
2385
|
-
0,
|
|
2386
|
-
[],
|
|
2387
|
-
[]
|
|
2388
|
-
];
|
|
2389
|
-
var PutDedicatedIpPoolScalingAttributesRequest$ = [3, n0, _PDIPSAR,
|
|
2390
|
-
0,
|
|
2391
|
-
[_PN, _SM],
|
|
2392
|
-
[[0, 1], 0], 2
|
|
2393
|
-
];
|
|
2394
|
-
var PutDedicatedIpPoolScalingAttributesResponse$ = [3, n0, _PDIPSARu,
|
|
2395
|
-
0,
|
|
2396
|
-
[],
|
|
2397
|
-
[]
|
|
2398
|
-
];
|
|
2399
|
-
var PutDedicatedIpWarmupAttributesRequest$ = [3, n0, _PDIWAR,
|
|
2400
|
-
0,
|
|
2401
|
-
[_Ip, _WP],
|
|
2402
|
-
[[0, 1], 1], 2
|
|
2403
|
-
];
|
|
2404
|
-
var PutDedicatedIpWarmupAttributesResponse$ = [3, n0, _PDIWARu,
|
|
2405
|
-
0,
|
|
2406
|
-
[],
|
|
2407
|
-
[]
|
|
2408
|
-
];
|
|
2409
|
-
var PutDeliverabilityDashboardOptionRequest$ = [3, n0, _PDDOR,
|
|
2410
|
-
0,
|
|
2411
|
-
[_DE, _SDubs],
|
|
2412
|
-
[2, () => DomainDeliverabilityTrackingOptions], 1
|
|
2413
|
-
];
|
|
2414
|
-
var PutDeliverabilityDashboardOptionResponse$ = [3, n0, _PDDORu,
|
|
2415
|
-
0,
|
|
2416
|
-
[],
|
|
2417
|
-
[]
|
|
2418
|
-
];
|
|
2419
|
-
var PutEmailIdentityConfigurationSetAttributesRequest$ = [3, n0, _PEICSAR,
|
|
2420
|
-
0,
|
|
2421
|
-
[_EI, _CSN],
|
|
2422
|
-
[[0, 1], 0], 1
|
|
2423
|
-
];
|
|
2424
|
-
var PutEmailIdentityConfigurationSetAttributesResponse$ = [3, n0, _PEICSARu,
|
|
2425
|
-
0,
|
|
2426
|
-
[],
|
|
2427
|
-
[]
|
|
2428
|
-
];
|
|
2429
|
-
var PutEmailIdentityDkimAttributesRequest$ = [3, n0, _PEIDAR,
|
|
2430
|
-
0,
|
|
2431
|
-
[_EI, _SE],
|
|
2432
|
-
[[0, 1], 2], 1
|
|
2433
|
-
];
|
|
2434
|
-
var PutEmailIdentityDkimAttributesResponse$ = [3, n0, _PEIDARu,
|
|
2435
|
-
0,
|
|
2436
|
-
[],
|
|
2437
|
-
[]
|
|
2438
|
-
];
|
|
2439
|
-
var PutEmailIdentityDkimSigningAttributesRequest$ = [3, n0, _PEIDSAR,
|
|
2440
|
-
0,
|
|
2441
|
-
[_EI, _SAO, _SAi],
|
|
2442
|
-
[[0, 1], 0, [() => DkimSigningAttributes$, 0]], 2
|
|
2443
|
-
];
|
|
2444
|
-
var PutEmailIdentityDkimSigningAttributesResponse$ = [3, n0, _PEIDSARu,
|
|
2445
|
-
0,
|
|
2446
|
-
[_DS, _DT, _SHZ],
|
|
2447
|
-
[0, 64 | 0, 0]
|
|
2448
|
-
];
|
|
2449
|
-
var PutEmailIdentityFeedbackAttributesRequest$ = [3, n0, _PEIFAR,
|
|
2450
|
-
0,
|
|
2451
|
-
[_EI, _EFE],
|
|
2452
|
-
[[0, 1], 2], 1
|
|
2453
|
-
];
|
|
2454
|
-
var PutEmailIdentityFeedbackAttributesResponse$ = [3, n0, _PEIFARu,
|
|
2455
|
-
0,
|
|
2456
|
-
[],
|
|
2457
|
-
[]
|
|
2458
|
-
];
|
|
2459
|
-
var PutEmailIdentityMailFromAttributesRequest$ = [3, n0, _PEIMFAR,
|
|
2460
|
-
0,
|
|
2461
|
-
[_EI, _MFD, _BOMF],
|
|
2462
|
-
[[0, 1], 0, 0], 1
|
|
2463
|
-
];
|
|
2464
|
-
var PutEmailIdentityMailFromAttributesResponse$ = [3, n0, _PEIMFARu,
|
|
2465
|
-
0,
|
|
2466
|
-
[],
|
|
2467
|
-
[]
|
|
2468
|
-
];
|
|
2469
|
-
var PutSuppressedDestinationRequest$ = [3, n0, _PSDR,
|
|
2470
|
-
0,
|
|
2471
|
-
[_EA, _Reas],
|
|
2472
|
-
[0, 0], 2
|
|
2473
|
-
];
|
|
2474
|
-
var PutSuppressedDestinationResponse$ = [3, n0, _PSDRu,
|
|
2475
|
-
0,
|
|
2476
|
-
[],
|
|
2477
|
-
[]
|
|
2478
|
-
];
|
|
2479
|
-
var RawMessage$ = [3, n0, _RM,
|
|
2480
|
-
0,
|
|
2481
|
-
[_Da],
|
|
2482
|
-
[21], 1
|
|
2483
|
-
];
|
|
2484
|
-
var Recommendation$ = [3, n0, _Rec,
|
|
2485
|
-
0,
|
|
2486
|
-
[_RA, _Ty, _De, _S, _CTr, _LUT, _Im],
|
|
2487
|
-
[0, 0, 0, 0, 4, 4, 0]
|
|
2488
|
-
];
|
|
2489
|
-
var ReplacementEmailContent$ = [3, n0, _REC,
|
|
2490
|
-
0,
|
|
2491
|
-
[_RTep],
|
|
2492
|
-
[() => ReplacementTemplate$]
|
|
2493
|
-
];
|
|
2494
|
-
var ReplacementTemplate$ = [3, n0, _RTep,
|
|
2495
|
-
0,
|
|
2496
|
-
[_RTD],
|
|
2497
|
-
[0]
|
|
2498
|
-
];
|
|
2499
|
-
var ReputationEntity$ = [3, n0, _RE,
|
|
2500
|
-
0,
|
|
2501
|
-
[_RER, _RET, _RMP, _CMS, _ASMS, _SSA, _RIe],
|
|
2502
|
-
[0, 0, 0, () => StatusRecord$, () => StatusRecord$, 0, 0]
|
|
2503
|
-
];
|
|
2504
|
-
var ReputationOptions$ = [3, n0, _RO,
|
|
2505
|
-
0,
|
|
2506
|
-
[_RME, _LFS],
|
|
2507
|
-
[2, 4]
|
|
2508
|
-
];
|
|
2509
|
-
var ResourceTenantMetadata$ = [3, n0, _RTM,
|
|
2510
|
-
0,
|
|
2511
|
-
[_TNe, _TI, _RA, _AT],
|
|
2512
|
-
[0, 0, 0, 4]
|
|
2513
|
-
];
|
|
2514
|
-
var ReviewDetails$ = [3, n0, _RD,
|
|
2515
|
-
0,
|
|
2516
|
-
[_S, _CIas],
|
|
2517
|
-
[0, 0]
|
|
2518
|
-
];
|
|
2519
|
-
var Route$ = [3, n0, _Rou,
|
|
2520
|
-
0,
|
|
2521
|
-
[_Regi],
|
|
2522
|
-
[0], 1
|
|
2523
|
-
];
|
|
2524
|
-
var RouteDetails$ = [3, n0, _RDou,
|
|
2525
|
-
0,
|
|
2526
|
-
[_Regi],
|
|
2527
|
-
[0], 1
|
|
2528
|
-
];
|
|
2529
|
-
var SendBulkEmailRequest$ = [3, n0, _SBER,
|
|
2530
|
-
0,
|
|
2531
|
-
[_DCe, _BEEu, _FEA, _FEAIA, _RTA, _FFEA, _FFEAIA, _DET, _CSN, _EIn, _TNe],
|
|
2532
|
-
[() => BulkEmailContent$, () => BulkEmailEntryList, 0, 0, 64 | 0, 0, 0, () => MessageTagList, 0, 0, 0], 2
|
|
2533
|
-
];
|
|
2534
|
-
var SendBulkEmailResponse$ = [3, n0, _SBERe,
|
|
2535
|
-
0,
|
|
2536
|
-
[_BEERu],
|
|
2537
|
-
[() => BulkEmailEntryResultList], 1
|
|
2538
|
-
];
|
|
2539
|
-
var SendCustomVerificationEmailRequest$ = [3, n0, _SCVER,
|
|
2540
|
-
0,
|
|
2541
|
-
[_EA, _TN, _CSN],
|
|
2542
|
-
[0, 0, 0], 2
|
|
2543
|
-
];
|
|
2544
|
-
var SendCustomVerificationEmailResponse$ = [3, n0, _SCVERe,
|
|
2545
|
-
0,
|
|
2546
|
-
[_MI],
|
|
2547
|
-
[0]
|
|
2548
|
-
];
|
|
2549
|
-
var SendEmailRequest$ = [3, n0, _SER,
|
|
2550
|
-
0,
|
|
2551
|
-
[_Con, _FEA, _FEAIA, _Des, _RTA, _FFEA, _FFEAIA, _ET, _CSN, _EIn, _TNe, _LMO],
|
|
2552
|
-
[() => EmailContent$, 0, 0, () => Destination$, 64 | 0, 0, 0, () => MessageTagList, 0, 0, 0, () => ListManagementOptions$], 1
|
|
2553
|
-
];
|
|
2554
|
-
var SendEmailResponse$ = [3, n0, _SERe,
|
|
2555
|
-
0,
|
|
2556
|
-
[_MI],
|
|
2557
|
-
[0]
|
|
2558
|
-
];
|
|
2559
|
-
var SendingOptions$ = [3, n0, _SO,
|
|
2560
|
-
0,
|
|
2561
|
-
[_SEe],
|
|
2562
|
-
[2]
|
|
2563
|
-
];
|
|
2564
|
-
var SendingPausedException$ = [-3, n0, _SPE,
|
|
2565
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2566
|
-
[_m],
|
|
2567
|
-
[0]
|
|
2568
|
-
];
|
|
2569
|
-
schema.TypeRegistry.for(n0).registerError(SendingPausedException$, SendingPausedException);
|
|
2570
|
-
var SendQuota$ = [3, n0, _SQ,
|
|
2571
|
-
0,
|
|
2572
|
-
[_MHS, _MSR, _SLH],
|
|
2573
|
-
[1, 1, 1]
|
|
2574
|
-
];
|
|
2575
|
-
var SnsDestination$ = [3, n0, _SDn,
|
|
2576
|
-
0,
|
|
2577
|
-
[_TAop],
|
|
2578
|
-
[0], 1
|
|
2579
|
-
];
|
|
2580
|
-
var SOARecord$ = [3, n0, _SOAR,
|
|
2581
|
-
0,
|
|
2582
|
-
[_PNS, _AE, _SN],
|
|
2583
|
-
[0, 0, 1]
|
|
2584
|
-
];
|
|
2585
|
-
var StatusRecord$ = [3, n0, _SRt,
|
|
2586
|
-
0,
|
|
2587
|
-
[_S, _Ca, _LUT],
|
|
2588
|
-
[0, 0, 4]
|
|
2589
|
-
];
|
|
2590
|
-
var SuppressedDestination$ = [3, n0, _SDu,
|
|
2591
|
-
0,
|
|
2592
|
-
[_EA, _Reas, _LUTa, _Att],
|
|
2593
|
-
[0, 0, 4, () => SuppressedDestinationAttributes$], 3
|
|
2594
|
-
];
|
|
2595
|
-
var SuppressedDestinationAttributes$ = [3, n0, _SDA,
|
|
2596
|
-
0,
|
|
2597
|
-
[_MI, _FIe],
|
|
2598
|
-
[0, 0]
|
|
2599
|
-
];
|
|
2600
|
-
var SuppressedDestinationSummary$ = [3, n0, _SDSu,
|
|
2601
|
-
0,
|
|
2602
|
-
[_EA, _Reas, _LUTa],
|
|
2603
|
-
[0, 0, 4], 3
|
|
2604
|
-
];
|
|
2605
|
-
var SuppressionAttributes$ = [3, n0, _SA,
|
|
2606
|
-
0,
|
|
2607
|
-
[_SR, _VAa],
|
|
2608
|
-
[64 | 0, () => SuppressionValidationAttributes$]
|
|
2609
|
-
];
|
|
2610
|
-
var SuppressionConditionThreshold$ = [3, n0, _SCT,
|
|
2611
|
-
0,
|
|
2612
|
-
[_CTEo, _OCT],
|
|
2613
|
-
[0, () => SuppressionConfidenceThreshold$], 1
|
|
2614
|
-
];
|
|
2615
|
-
var SuppressionConfidenceThreshold$ = [3, n0, _SCTu,
|
|
2616
|
-
0,
|
|
2617
|
-
[_CVT],
|
|
2618
|
-
[0], 1
|
|
2619
|
-
];
|
|
2620
|
-
var SuppressionListDestination$ = [3, n0, _SLD,
|
|
2621
|
-
0,
|
|
2622
|
-
[_SLIA],
|
|
2623
|
-
[0], 1
|
|
2624
|
-
];
|
|
2625
|
-
var SuppressionOptions$ = [3, n0, _SOu,
|
|
2626
|
-
0,
|
|
2627
|
-
[_SR, _VOa],
|
|
2628
|
-
[64 | 0, () => SuppressionValidationOptions$]
|
|
2629
|
-
];
|
|
2630
|
-
var SuppressionValidationAttributes$ = [3, n0, _SVA,
|
|
2631
|
-
0,
|
|
2632
|
-
[_CTon],
|
|
2633
|
-
[() => SuppressionConditionThreshold$], 1
|
|
2634
|
-
];
|
|
2635
|
-
var SuppressionValidationOptions$ = [3, n0, _SVO,
|
|
2636
|
-
0,
|
|
2637
|
-
[_CTon],
|
|
2638
|
-
[() => SuppressionConditionThreshold$], 1
|
|
2639
|
-
];
|
|
2640
|
-
var Tag$ = [3, n0, _Tag,
|
|
2641
|
-
0,
|
|
2642
|
-
[_K, _V],
|
|
2643
|
-
[0, 0], 2
|
|
2644
|
-
];
|
|
2645
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2646
|
-
0,
|
|
2647
|
-
[_RA, _Ta],
|
|
2648
|
-
[0, () => TagList], 2
|
|
2649
|
-
];
|
|
2650
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2651
|
-
0,
|
|
2652
|
-
[],
|
|
2653
|
-
[]
|
|
2654
|
-
];
|
|
2655
|
-
var Template$ = [3, n0, _Te,
|
|
2656
|
-
0,
|
|
2657
|
-
[_TN, _TAe, _TC, _TD, _He, _At],
|
|
2658
|
-
[0, 0, () => EmailTemplateContent$, 0, () => MessageHeaderList, () => AttachmentList]
|
|
2659
|
-
];
|
|
2660
|
-
var Tenant$ = [3, n0, _Ten,
|
|
2661
|
-
0,
|
|
2662
|
-
[_TNe, _TI, _TA, _CTr, _Ta, _SS],
|
|
2663
|
-
[0, 0, 0, 4, () => TagList, 0]
|
|
2664
|
-
];
|
|
2665
|
-
var TenantInfo$ = [3, n0, _TIe,
|
|
2666
|
-
0,
|
|
2667
|
-
[_TNe, _TI, _TA, _CTr],
|
|
2668
|
-
[0, 0, 0, 4]
|
|
2669
|
-
];
|
|
2670
|
-
var TenantResource$ = [3, n0, _TRe,
|
|
2671
|
-
0,
|
|
2672
|
-
[_RTes, _RA],
|
|
2673
|
-
[0, 0]
|
|
2674
|
-
];
|
|
2675
|
-
var TestRenderEmailTemplateRequest$ = [3, n0, _TRETR,
|
|
2676
|
-
0,
|
|
2677
|
-
[_TN, _TD],
|
|
2678
|
-
[[0, 1], 0], 2
|
|
2679
|
-
];
|
|
2680
|
-
var TestRenderEmailTemplateResponse$ = [3, n0, _TRETRe,
|
|
2681
|
-
0,
|
|
2682
|
-
[_RTen],
|
|
2683
|
-
[0], 1
|
|
2684
|
-
];
|
|
2685
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
2686
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
2687
|
-
[_m],
|
|
2688
|
-
[0]
|
|
2689
|
-
];
|
|
2690
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
2691
|
-
var Topic$ = [3, n0, _Top,
|
|
2692
|
-
0,
|
|
2693
|
-
[_TNo, _DNi, _DSSe, _De],
|
|
2694
|
-
[0, 0, 0, 0], 3
|
|
2695
|
-
];
|
|
2696
|
-
var TopicFilter$ = [3, n0, _TF,
|
|
2697
|
-
0,
|
|
2698
|
-
[_TNo, _UDIPU],
|
|
2699
|
-
[0, 2]
|
|
2700
|
-
];
|
|
2701
|
-
var TopicPreference$ = [3, n0, _TPo,
|
|
2702
|
-
0,
|
|
2703
|
-
[_TNo, _SSu],
|
|
2704
|
-
[0, 0], 2
|
|
2705
|
-
];
|
|
2706
|
-
var TrackingOptions$ = [3, n0, _TO,
|
|
2707
|
-
0,
|
|
2708
|
-
[_CRD, _HP],
|
|
2709
|
-
[0, 0], 1
|
|
2710
|
-
];
|
|
2711
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2712
|
-
0,
|
|
2713
|
-
[_RA, _TK],
|
|
2714
|
-
[[0, { [_hQ]: _RA }], [64 | 0, { [_hQ]: _TK }]], 2
|
|
2715
|
-
];
|
|
2716
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2717
|
-
0,
|
|
2718
|
-
[],
|
|
2719
|
-
[]
|
|
2720
|
-
];
|
|
2721
|
-
var UpdateConfigurationSetEventDestinationRequest$ = [3, n0, _UCSEDR,
|
|
2722
|
-
0,
|
|
2723
|
-
[_CSN, _EDN, _EDv],
|
|
2724
|
-
[[0, 1], [0, 1], () => EventDestinationDefinition$], 3
|
|
2725
|
-
];
|
|
2726
|
-
var UpdateConfigurationSetEventDestinationResponse$ = [3, n0, _UCSEDRp,
|
|
2727
|
-
0,
|
|
2728
|
-
[],
|
|
2729
|
-
[]
|
|
2730
|
-
];
|
|
2731
|
-
var UpdateContactListRequest$ = [3, n0, _UCLR,
|
|
2732
|
-
0,
|
|
2733
|
-
[_CLN, _To, _De],
|
|
2734
|
-
[[0, 1], () => Topics, 0], 1
|
|
2735
|
-
];
|
|
2736
|
-
var UpdateContactListResponse$ = [3, n0, _UCLRp,
|
|
2737
|
-
0,
|
|
2738
|
-
[],
|
|
2739
|
-
[]
|
|
2740
|
-
];
|
|
2741
|
-
var UpdateContactRequest$ = [3, n0, _UCR,
|
|
2742
|
-
0,
|
|
2743
|
-
[_CLN, _EA, _TP, _UA, _ADt],
|
|
2744
|
-
[[0, 1], [0, 1], () => TopicPreferenceList, 2, 0], 2
|
|
2745
|
-
];
|
|
2746
|
-
var UpdateContactResponse$ = [3, n0, _UCRp,
|
|
2747
|
-
0,
|
|
2748
|
-
[],
|
|
2749
|
-
[]
|
|
2750
|
-
];
|
|
2751
|
-
var UpdateCustomVerificationEmailTemplateRequest$ = [3, n0, _UCVETR,
|
|
2752
|
-
0,
|
|
2753
|
-
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL],
|
|
2754
|
-
[[0, 1], 0, 0, 0, 0, 0], 6
|
|
2755
|
-
];
|
|
2756
|
-
var UpdateCustomVerificationEmailTemplateResponse$ = [3, n0, _UCVETRp,
|
|
2757
|
-
0,
|
|
2758
|
-
[],
|
|
2759
|
-
[]
|
|
2760
|
-
];
|
|
2761
|
-
var UpdateEmailIdentityPolicyRequest$ = [3, n0, _UEIPR,
|
|
2762
|
-
0,
|
|
2763
|
-
[_EI, _PNo, _P],
|
|
2764
|
-
[[0, 1], [0, 1], 0], 3
|
|
2765
|
-
];
|
|
2766
|
-
var UpdateEmailIdentityPolicyResponse$ = [3, n0, _UEIPRp,
|
|
2767
|
-
0,
|
|
2768
|
-
[],
|
|
2769
|
-
[]
|
|
2770
|
-
];
|
|
2771
|
-
var UpdateEmailTemplateRequest$ = [3, n0, _UETR,
|
|
2772
|
-
0,
|
|
2773
|
-
[_TN, _TC],
|
|
2774
|
-
[[0, 1], () => EmailTemplateContent$], 2
|
|
2775
|
-
];
|
|
2776
|
-
var UpdateEmailTemplateResponse$ = [3, n0, _UETRp,
|
|
2777
|
-
0,
|
|
2778
|
-
[],
|
|
2779
|
-
[]
|
|
2780
|
-
];
|
|
2781
|
-
var UpdateReputationEntityCustomerManagedStatusRequest$ = [3, n0, _URECMSR,
|
|
2782
|
-
0,
|
|
2783
|
-
[_RET, _RER, _SS],
|
|
2784
|
-
[[0, 1], [0, 1], 0], 3
|
|
2785
|
-
];
|
|
2786
|
-
var UpdateReputationEntityCustomerManagedStatusResponse$ = [3, n0, _URECMSRp,
|
|
2787
|
-
0,
|
|
2788
|
-
[],
|
|
2789
|
-
[]
|
|
2790
|
-
];
|
|
2791
|
-
var UpdateReputationEntityPolicyRequest$ = [3, n0, _UREPR,
|
|
2792
|
-
0,
|
|
2793
|
-
[_RET, _RER, _REP],
|
|
2794
|
-
[[0, 1], [0, 1], 0], 3
|
|
2795
|
-
];
|
|
2796
|
-
var UpdateReputationEntityPolicyResponse$ = [3, n0, _UREPRp,
|
|
2797
|
-
0,
|
|
2798
|
-
[],
|
|
2799
|
-
[]
|
|
2800
|
-
];
|
|
2801
|
-
var VdmAttributes$ = [3, n0, _VA,
|
|
2802
|
-
0,
|
|
2803
|
-
[_VE, _DAa, _GA],
|
|
2804
|
-
[0, () => DashboardAttributes$, () => GuardianAttributes$], 1
|
|
2805
|
-
];
|
|
2806
|
-
var VdmOptions$ = [3, n0, _VO,
|
|
2807
|
-
0,
|
|
2808
|
-
[_DOa, _GO],
|
|
2809
|
-
[() => DashboardOptions$, () => GuardianOptions$]
|
|
2810
|
-
];
|
|
2811
|
-
var VerificationInfo$ = [3, n0, _VI,
|
|
2812
|
-
0,
|
|
2813
|
-
[_LCT, _LST, _ETr, _SOAR],
|
|
2814
|
-
[4, 4, 0, () => SOARecord$]
|
|
2815
|
-
];
|
|
2816
|
-
var VolumeStatistics$ = [3, n0, _VS,
|
|
2817
|
-
0,
|
|
2818
|
-
[_IRC, _SRC, _PI, _PSr],
|
|
2819
|
-
[1, 1, 1, 1]
|
|
2820
|
-
];
|
|
2821
|
-
var SESv2ServiceException$ = [-3, _sm, "SESv2ServiceException", 0, [], []];
|
|
2822
|
-
schema.TypeRegistry.for(_sm).registerError(SESv2ServiceException$, SESv2ServiceException);
|
|
2823
|
-
var AdditionalContactEmailAddresses = [1, n0, _ACEAd,
|
|
2824
|
-
8, [() => AdditionalContactEmailAddress,
|
|
2825
|
-
0]
|
|
2826
|
-
];
|
|
2827
|
-
var AttachmentList = [1, n0, _AL,
|
|
2828
|
-
0, () => Attachment$
|
|
2829
|
-
];
|
|
2830
|
-
var BatchGetMetricDataQueries = [1, n0, _BGMDQa,
|
|
2831
|
-
0, () => BatchGetMetricDataQuery$
|
|
2832
|
-
];
|
|
2833
|
-
var BlacklistEntries = [1, n0, _BEl,
|
|
2834
|
-
0, () => BlacklistEntry$
|
|
2835
|
-
];
|
|
2836
|
-
var BulkEmailEntryList = [1, n0, _BEEL,
|
|
2837
|
-
0, () => BulkEmailEntry$
|
|
2838
|
-
];
|
|
2839
|
-
var BulkEmailEntryResultList = [1, n0, _BEERL,
|
|
2840
|
-
0, () => BulkEmailEntryResult$
|
|
2841
|
-
];
|
|
2842
|
-
var CloudWatchDimensionConfigurations = [1, n0, _CWDCl,
|
|
2843
|
-
0, () => CloudWatchDimensionConfiguration$
|
|
2844
|
-
];
|
|
2845
|
-
var CustomVerificationEmailTemplatesList = [1, n0, _CVETL,
|
|
2846
|
-
0, () => CustomVerificationEmailTemplateMetadata$
|
|
2847
|
-
];
|
|
2848
|
-
var DailyVolumes = [1, n0, _DVa,
|
|
2849
|
-
0, () => DailyVolume$
|
|
2850
|
-
];
|
|
2851
|
-
var DedicatedIpList = [1, n0, _DIL,
|
|
2852
|
-
0, () => DedicatedIp$
|
|
2853
|
-
];
|
|
2854
|
-
var DeliverabilityTestReports = [1, n0, _DTReli,
|
|
2855
|
-
0, () => DeliverabilityTestReport$
|
|
2856
|
-
];
|
|
2857
|
-
var DomainDeliverabilityCampaignList = [1, n0, _DDCL,
|
|
2858
|
-
0, () => DomainDeliverabilityCampaign$
|
|
2859
|
-
];
|
|
2860
|
-
var DomainDeliverabilityTrackingOptions = [1, n0, _DDTOo,
|
|
2861
|
-
0, () => DomainDeliverabilityTrackingOption$
|
|
2862
|
-
];
|
|
2863
|
-
var DomainIspPlacements = [1, n0, _DIP,
|
|
2864
|
-
0, () => DomainIspPlacement$
|
|
2865
|
-
];
|
|
2866
|
-
var EmailAddressFilterList = [1, n0, _EAFL,
|
|
2867
|
-
0, [() => InsightsEmailAddress,
|
|
2868
|
-
0]
|
|
2869
|
-
];
|
|
2870
|
-
var EmailInsightsList = [1, n0, _EIL,
|
|
2871
|
-
0, [() => EmailInsights$,
|
|
2872
|
-
0]
|
|
2873
|
-
];
|
|
2874
|
-
var EmailSubjectFilterList = [1, n0, _ESFL,
|
|
2875
|
-
0, [() => EmailSubject,
|
|
2876
|
-
0]
|
|
2877
|
-
];
|
|
2878
|
-
var EmailTemplateMetadataList = [1, n0, _ETML,
|
|
2879
|
-
0, () => EmailTemplateMetadata$
|
|
2880
|
-
];
|
|
2881
|
-
var EventDestinations = [1, n0, _EDven,
|
|
2882
|
-
0, () => EventDestination$
|
|
2883
|
-
];
|
|
2884
|
-
var ExportJobSummaryList = [1, n0, _EJSL,
|
|
2885
|
-
0, () => ExportJobSummary$
|
|
2886
|
-
];
|
|
2887
|
-
var ExportMetrics = [1, n0, _EMxp,
|
|
2888
|
-
0, () => ExportMetric$
|
|
2889
|
-
];
|
|
2890
|
-
var IdentityInfoList = [1, n0, _IIL,
|
|
2891
|
-
0, () => IdentityInfo$
|
|
2892
|
-
];
|
|
2893
|
-
var ImportJobSummaryList = [1, n0, _IJSL,
|
|
2894
|
-
0, () => ImportJobSummary$
|
|
2895
|
-
];
|
|
2896
|
-
var InsightsEvents = [1, n0, _IEn,
|
|
2897
|
-
0, () => InsightsEvent$
|
|
2898
|
-
];
|
|
2899
|
-
var IspPlacements = [1, n0, _IPs,
|
|
2900
|
-
0, () => IspPlacement$
|
|
2901
|
-
];
|
|
2902
|
-
var ListOfContactLists = [1, n0, _LOCL,
|
|
2903
|
-
0, () => ContactList$
|
|
2904
|
-
];
|
|
2905
|
-
var ListOfContacts = [1, n0, _LOC,
|
|
2906
|
-
0, () => Contact$
|
|
2907
|
-
];
|
|
2908
|
-
var MessageHeaderList = [1, n0, _MHL,
|
|
2909
|
-
0, () => MessageHeader$
|
|
2910
|
-
];
|
|
2911
|
-
var MessageTagList = [1, n0, _MTL,
|
|
2912
|
-
0, () => MessageTag$
|
|
2913
|
-
];
|
|
2914
|
-
var MetricDataErrorList = [1, n0, _MDEL,
|
|
2915
|
-
0, () => MetricDataError$
|
|
2916
|
-
];
|
|
2917
|
-
var MetricDataResultList = [1, n0, _MDRL,
|
|
2918
|
-
0, () => MetricDataResult$
|
|
2919
|
-
];
|
|
2920
|
-
var MultiRegionEndpoints = [1, n0, _MRE,
|
|
2921
|
-
0, () => MultiRegionEndpoint$
|
|
2922
|
-
];
|
|
2923
|
-
var RecommendationsList = [1, n0, _RL,
|
|
2924
|
-
0, () => Recommendation$
|
|
2925
|
-
];
|
|
2926
|
-
var ReputationEntitiesList = [1, n0, _REL,
|
|
2927
|
-
0, () => ReputationEntity$
|
|
2928
|
-
];
|
|
2929
|
-
var ResourceTenantMetadataList = [1, n0, _RTML,
|
|
2930
|
-
0, () => ResourceTenantMetadata$
|
|
2931
|
-
];
|
|
2932
|
-
var Routes = [1, n0, _Ro,
|
|
2933
|
-
0, () => Route$
|
|
2934
|
-
];
|
|
2935
|
-
var RoutesDetails = [1, n0, _RDo,
|
|
2936
|
-
0, () => RouteDetails$
|
|
2937
|
-
];
|
|
2938
|
-
var SuppressedDestinationSummaries = [1, n0, _SDS,
|
|
2939
|
-
0, () => SuppressedDestinationSummary$
|
|
2940
|
-
];
|
|
2941
|
-
var TagList = [1, n0, _TL,
|
|
2942
|
-
0, () => Tag$
|
|
2943
|
-
];
|
|
2944
|
-
var TenantInfoList = [1, n0, _TIL,
|
|
2945
|
-
0, () => TenantInfo$
|
|
2946
|
-
];
|
|
2947
|
-
var TenantResourceList = [1, n0, _TRL,
|
|
2948
|
-
0, () => TenantResource$
|
|
2949
|
-
];
|
|
2950
|
-
var TopicPreferenceList = [1, n0, _TPL,
|
|
2951
|
-
0, () => TopicPreference$
|
|
2952
|
-
];
|
|
2953
|
-
var Topics = [1, n0, _To,
|
|
2954
|
-
0, () => Topic$
|
|
2955
|
-
];
|
|
2956
|
-
var BlacklistReport = [2, n0, _BR,
|
|
2957
|
-
0, 0, () => BlacklistEntries
|
|
2958
|
-
];
|
|
2959
|
-
var BatchGetMetricData$ = [9, n0, _BGMD,
|
|
2960
|
-
{ [_h]: ["POST", "/v2/email/metrics/batch", 200] }, () => BatchGetMetricDataRequest$, () => BatchGetMetricDataResponse$
|
|
2961
|
-
];
|
|
2962
|
-
var CancelExportJob$ = [9, n0, _CEJ,
|
|
2963
|
-
{ [_h]: ["PUT", "/v2/email/export-jobs/{JobId}/cancel", 200] }, () => CancelExportJobRequest$, () => CancelExportJobResponse$
|
|
2964
|
-
];
|
|
2965
|
-
var CreateConfigurationSet$ = [9, n0, _CCS,
|
|
2966
|
-
{ [_h]: ["POST", "/v2/email/configuration-sets", 200] }, () => CreateConfigurationSetRequest$, () => CreateConfigurationSetResponse$
|
|
2967
|
-
];
|
|
2968
|
-
var CreateConfigurationSetEventDestination$ = [9, n0, _CCSED,
|
|
2969
|
-
{ [_h]: ["POST", "/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations", 200] }, () => CreateConfigurationSetEventDestinationRequest$, () => CreateConfigurationSetEventDestinationResponse$
|
|
2970
|
-
];
|
|
2971
|
-
var CreateContact$ = [9, n0, _CC,
|
|
2972
|
-
{ [_h]: ["POST", "/v2/email/contact-lists/{ContactListName}/contacts", 200] }, () => CreateContactRequest$, () => CreateContactResponse$
|
|
2973
|
-
];
|
|
2974
|
-
var CreateContactList$ = [9, n0, _CCL,
|
|
2975
|
-
{ [_h]: ["POST", "/v2/email/contact-lists", 200] }, () => CreateContactListRequest$, () => CreateContactListResponse$
|
|
2976
|
-
];
|
|
2977
|
-
var CreateCustomVerificationEmailTemplate$ = [9, n0, _CCVET,
|
|
2978
|
-
{ [_h]: ["POST", "/v2/email/custom-verification-email-templates", 200] }, () => CreateCustomVerificationEmailTemplateRequest$, () => CreateCustomVerificationEmailTemplateResponse$
|
|
2979
|
-
];
|
|
2980
|
-
var CreateDedicatedIpPool$ = [9, n0, _CDIP,
|
|
2981
|
-
{ [_h]: ["POST", "/v2/email/dedicated-ip-pools", 200] }, () => CreateDedicatedIpPoolRequest$, () => CreateDedicatedIpPoolResponse$
|
|
2982
|
-
];
|
|
2983
|
-
var CreateDeliverabilityTestReport$ = [9, n0, _CDTR,
|
|
2984
|
-
{ [_h]: ["POST", "/v2/email/deliverability-dashboard/test", 200] }, () => CreateDeliverabilityTestReportRequest$, () => CreateDeliverabilityTestReportResponse$
|
|
2985
|
-
];
|
|
2986
|
-
var CreateEmailIdentity$ = [9, n0, _CEI,
|
|
2987
|
-
{ [_h]: ["POST", "/v2/email/identities", 200] }, () => CreateEmailIdentityRequest$, () => CreateEmailIdentityResponse$
|
|
2988
|
-
];
|
|
2989
|
-
var CreateEmailIdentityPolicy$ = [9, n0, _CEIP,
|
|
2990
|
-
{ [_h]: ["POST", "/v2/email/identities/{EmailIdentity}/policies/{PolicyName}", 200] }, () => CreateEmailIdentityPolicyRequest$, () => CreateEmailIdentityPolicyResponse$
|
|
2991
|
-
];
|
|
2992
|
-
var CreateEmailTemplate$ = [9, n0, _CET,
|
|
2993
|
-
{ [_h]: ["POST", "/v2/email/templates", 200] }, () => CreateEmailTemplateRequest$, () => CreateEmailTemplateResponse$
|
|
2994
|
-
];
|
|
2995
|
-
var CreateExportJob$ = [9, n0, _CEJr,
|
|
2996
|
-
{ [_h]: ["POST", "/v2/email/export-jobs", 200] }, () => CreateExportJobRequest$, () => CreateExportJobResponse$
|
|
2997
|
-
];
|
|
2998
|
-
var CreateImportJob$ = [9, n0, _CIJ,
|
|
2999
|
-
{ [_h]: ["POST", "/v2/email/import-jobs", 200] }, () => CreateImportJobRequest$, () => CreateImportJobResponse$
|
|
3000
|
-
];
|
|
3001
|
-
var CreateMultiRegionEndpoint$ = [9, n0, _CMRE,
|
|
3002
|
-
{ [_h]: ["POST", "/v2/email/multi-region-endpoints", 200] }, () => CreateMultiRegionEndpointRequest$, () => CreateMultiRegionEndpointResponse$
|
|
3003
|
-
];
|
|
3004
|
-
var CreateTenant$ = [9, n0, _CTre,
|
|
3005
|
-
{ [_h]: ["POST", "/v2/email/tenants", 200] }, () => CreateTenantRequest$, () => CreateTenantResponse$
|
|
3006
|
-
];
|
|
3007
|
-
var CreateTenantResourceAssociation$ = [9, n0, _CTRA,
|
|
3008
|
-
{ [_h]: ["POST", "/v2/email/tenants/resources", 200] }, () => CreateTenantResourceAssociationRequest$, () => CreateTenantResourceAssociationResponse$
|
|
3009
|
-
];
|
|
3010
|
-
var DeleteConfigurationSet$ = [9, n0, _DCS,
|
|
3011
|
-
{ [_h]: ["DELETE", "/v2/email/configuration-sets/{ConfigurationSetName}", 200] }, () => DeleteConfigurationSetRequest$, () => DeleteConfigurationSetResponse$
|
|
3012
|
-
];
|
|
3013
|
-
var DeleteConfigurationSetEventDestination$ = [9, n0, _DCSED,
|
|
3014
|
-
{ [_h]: ["DELETE", "/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => DeleteConfigurationSetEventDestinationRequest$, () => DeleteConfigurationSetEventDestinationResponse$
|
|
3015
|
-
];
|
|
3016
|
-
var DeleteContact$ = [9, n0, _DCel,
|
|
3017
|
-
{ [_h]: ["DELETE", "/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}", 200] }, () => DeleteContactRequest$, () => DeleteContactResponse$
|
|
3018
|
-
];
|
|
3019
|
-
var DeleteContactList$ = [9, n0, _DCL,
|
|
3020
|
-
{ [_h]: ["DELETE", "/v2/email/contact-lists/{ContactListName}", 200] }, () => DeleteContactListRequest$, () => DeleteContactListResponse$
|
|
3021
|
-
];
|
|
3022
|
-
var DeleteCustomVerificationEmailTemplate$ = [9, n0, _DCVET,
|
|
3023
|
-
{ [_h]: ["DELETE", "/v2/email/custom-verification-email-templates/{TemplateName}", 200] }, () => DeleteCustomVerificationEmailTemplateRequest$, () => DeleteCustomVerificationEmailTemplateResponse$
|
|
3024
|
-
];
|
|
3025
|
-
var DeleteDedicatedIpPool$ = [9, n0, _DDIP,
|
|
3026
|
-
{ [_h]: ["DELETE", "/v2/email/dedicated-ip-pools/{PoolName}", 200] }, () => DeleteDedicatedIpPoolRequest$, () => DeleteDedicatedIpPoolResponse$
|
|
3027
|
-
];
|
|
3028
|
-
var DeleteEmailIdentity$ = [9, n0, _DEI,
|
|
3029
|
-
{ [_h]: ["DELETE", "/v2/email/identities/{EmailIdentity}", 200] }, () => DeleteEmailIdentityRequest$, () => DeleteEmailIdentityResponse$
|
|
3030
|
-
];
|
|
3031
|
-
var DeleteEmailIdentityPolicy$ = [9, n0, _DEIP,
|
|
3032
|
-
{ [_h]: ["DELETE", "/v2/email/identities/{EmailIdentity}/policies/{PolicyName}", 200] }, () => DeleteEmailIdentityPolicyRequest$, () => DeleteEmailIdentityPolicyResponse$
|
|
3033
|
-
];
|
|
3034
|
-
var DeleteEmailTemplate$ = [9, n0, _DETe,
|
|
3035
|
-
{ [_h]: ["DELETE", "/v2/email/templates/{TemplateName}", 200] }, () => DeleteEmailTemplateRequest$, () => DeleteEmailTemplateResponse$
|
|
3036
|
-
];
|
|
3037
|
-
var DeleteMultiRegionEndpoint$ = [9, n0, _DMRE,
|
|
3038
|
-
{ [_h]: ["DELETE", "/v2/email/multi-region-endpoints/{EndpointName}", 200] }, () => DeleteMultiRegionEndpointRequest$, () => DeleteMultiRegionEndpointResponse$
|
|
3039
|
-
];
|
|
3040
|
-
var DeleteSuppressedDestination$ = [9, n0, _DSD,
|
|
3041
|
-
{ [_h]: ["DELETE", "/v2/email/suppression/addresses/{EmailAddress}", 200] }, () => DeleteSuppressedDestinationRequest$, () => DeleteSuppressedDestinationResponse$
|
|
3042
|
-
];
|
|
3043
|
-
var DeleteTenant$ = [9, n0, _DTe,
|
|
3044
|
-
{ [_h]: ["POST", "/v2/email/tenants/delete", 200] }, () => DeleteTenantRequest$, () => DeleteTenantResponse$
|
|
3045
|
-
];
|
|
3046
|
-
var DeleteTenantResourceAssociation$ = [9, n0, _DTRA,
|
|
3047
|
-
{ [_h]: ["POST", "/v2/email/tenants/resources/delete", 200] }, () => DeleteTenantResourceAssociationRequest$, () => DeleteTenantResourceAssociationResponse$
|
|
3048
|
-
];
|
|
3049
|
-
var GetAccount$ = [9, n0, _GAe,
|
|
3050
|
-
{ [_h]: ["GET", "/v2/email/account", 200] }, () => GetAccountRequest$, () => GetAccountResponse$
|
|
3051
|
-
];
|
|
3052
|
-
var GetBlacklistReports$ = [9, n0, _GBR,
|
|
3053
|
-
{ [_h]: ["GET", "/v2/email/deliverability-dashboard/blacklist-report", 200] }, () => GetBlacklistReportsRequest$, () => GetBlacklistReportsResponse$
|
|
3054
|
-
];
|
|
3055
|
-
var GetConfigurationSet$ = [9, n0, _GCS,
|
|
3056
|
-
{ [_h]: ["GET", "/v2/email/configuration-sets/{ConfigurationSetName}", 200] }, () => GetConfigurationSetRequest$, () => GetConfigurationSetResponse$
|
|
3057
|
-
];
|
|
3058
|
-
var GetConfigurationSetEventDestinations$ = [9, n0, _GCSED,
|
|
3059
|
-
{ [_h]: ["GET", "/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations", 200] }, () => GetConfigurationSetEventDestinationsRequest$, () => GetConfigurationSetEventDestinationsResponse$
|
|
3060
|
-
];
|
|
3061
|
-
var GetContact$ = [9, n0, _GC,
|
|
3062
|
-
{ [_h]: ["GET", "/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}", 200] }, () => GetContactRequest$, () => GetContactResponse$
|
|
3063
|
-
];
|
|
3064
|
-
var GetContactList$ = [9, n0, _GCL,
|
|
3065
|
-
{ [_h]: ["GET", "/v2/email/contact-lists/{ContactListName}", 200] }, () => GetContactListRequest$, () => GetContactListResponse$
|
|
3066
|
-
];
|
|
3067
|
-
var GetCustomVerificationEmailTemplate$ = [9, n0, _GCVET,
|
|
3068
|
-
{ [_h]: ["GET", "/v2/email/custom-verification-email-templates/{TemplateName}", 200] }, () => GetCustomVerificationEmailTemplateRequest$, () => GetCustomVerificationEmailTemplateResponse$
|
|
3069
|
-
];
|
|
3070
|
-
var GetDedicatedIp$ = [9, n0, _GDI,
|
|
3071
|
-
{ [_h]: ["GET", "/v2/email/dedicated-ips/{Ip}", 200] }, () => GetDedicatedIpRequest$, () => GetDedicatedIpResponse$
|
|
3072
|
-
];
|
|
3073
|
-
var GetDedicatedIpPool$ = [9, n0, _GDIP,
|
|
3074
|
-
{ [_h]: ["GET", "/v2/email/dedicated-ip-pools/{PoolName}", 200] }, () => GetDedicatedIpPoolRequest$, () => GetDedicatedIpPoolResponse$
|
|
3075
|
-
];
|
|
3076
|
-
var GetDedicatedIps$ = [9, n0, _GDIe,
|
|
3077
|
-
{ [_h]: ["GET", "/v2/email/dedicated-ips", 200] }, () => GetDedicatedIpsRequest$, () => GetDedicatedIpsResponse$
|
|
3078
|
-
];
|
|
3079
|
-
var GetDeliverabilityDashboardOptions$ = [9, n0, _GDDO,
|
|
3080
|
-
{ [_h]: ["GET", "/v2/email/deliverability-dashboard", 200] }, () => GetDeliverabilityDashboardOptionsRequest$, () => GetDeliverabilityDashboardOptionsResponse$
|
|
3081
|
-
];
|
|
3082
|
-
var GetDeliverabilityTestReport$ = [9, n0, _GDTR,
|
|
3083
|
-
{ [_h]: ["GET", "/v2/email/deliverability-dashboard/test-reports/{ReportId}", 200] }, () => GetDeliverabilityTestReportRequest$, () => GetDeliverabilityTestReportResponse$
|
|
3084
|
-
];
|
|
3085
|
-
var GetDomainDeliverabilityCampaign$ = [9, n0, _GDDC,
|
|
3086
|
-
{ [_h]: ["GET", "/v2/email/deliverability-dashboard/campaigns/{CampaignId}", 200] }, () => GetDomainDeliverabilityCampaignRequest$, () => GetDomainDeliverabilityCampaignResponse$
|
|
3087
|
-
];
|
|
3088
|
-
var GetDomainStatisticsReport$ = [9, n0, _GDSR,
|
|
3089
|
-
{ [_h]: ["GET", "/v2/email/deliverability-dashboard/statistics-report/{Domain}", 200] }, () => GetDomainStatisticsReportRequest$, () => GetDomainStatisticsReportResponse$
|
|
3090
|
-
];
|
|
3091
|
-
var GetEmailAddressInsights$ = [9, n0, _GEAI,
|
|
3092
|
-
{ [_h]: ["POST", "/v2/email/email-address-insights", 200] }, () => GetEmailAddressInsightsRequest$, () => GetEmailAddressInsightsResponse$
|
|
3093
|
-
];
|
|
3094
|
-
var GetEmailIdentity$ = [9, n0, _GEI,
|
|
3095
|
-
{ [_h]: ["GET", "/v2/email/identities/{EmailIdentity}", 200] }, () => GetEmailIdentityRequest$, () => GetEmailIdentityResponse$
|
|
3096
|
-
];
|
|
3097
|
-
var GetEmailIdentityPolicies$ = [9, n0, _GEIP,
|
|
3098
|
-
{ [_h]: ["GET", "/v2/email/identities/{EmailIdentity}/policies", 200] }, () => GetEmailIdentityPoliciesRequest$, () => GetEmailIdentityPoliciesResponse$
|
|
3099
|
-
];
|
|
3100
|
-
var GetEmailTemplate$ = [9, n0, _GET,
|
|
3101
|
-
{ [_h]: ["GET", "/v2/email/templates/{TemplateName}", 200] }, () => GetEmailTemplateRequest$, () => GetEmailTemplateResponse$
|
|
3102
|
-
];
|
|
3103
|
-
var GetExportJob$ = [9, n0, _GEJ,
|
|
3104
|
-
{ [_h]: ["GET", "/v2/email/export-jobs/{JobId}", 200] }, () => GetExportJobRequest$, () => GetExportJobResponse$
|
|
3105
|
-
];
|
|
3106
|
-
var GetImportJob$ = [9, n0, _GIJ,
|
|
3107
|
-
{ [_h]: ["GET", "/v2/email/import-jobs/{JobId}", 200] }, () => GetImportJobRequest$, () => GetImportJobResponse$
|
|
3108
|
-
];
|
|
3109
|
-
var GetMessageInsights$ = [9, n0, _GMI,
|
|
3110
|
-
{ [_h]: ["GET", "/v2/email/insights/{MessageId}", 200] }, () => GetMessageInsightsRequest$, () => GetMessageInsightsResponse$
|
|
3111
|
-
];
|
|
3112
|
-
var GetMultiRegionEndpoint$ = [9, n0, _GMRE,
|
|
3113
|
-
{ [_h]: ["GET", "/v2/email/multi-region-endpoints/{EndpointName}", 200] }, () => GetMultiRegionEndpointRequest$, () => GetMultiRegionEndpointResponse$
|
|
3114
|
-
];
|
|
3115
|
-
var GetReputationEntity$ = [9, n0, _GRE,
|
|
3116
|
-
{ [_h]: ["GET", "/v2/email/reputation/entities/{ReputationEntityType}/{ReputationEntityReference}", 200] }, () => GetReputationEntityRequest$, () => GetReputationEntityResponse$
|
|
3117
|
-
];
|
|
3118
|
-
var GetSuppressedDestination$ = [9, n0, _GSD,
|
|
3119
|
-
{ [_h]: ["GET", "/v2/email/suppression/addresses/{EmailAddress}", 200] }, () => GetSuppressedDestinationRequest$, () => GetSuppressedDestinationResponse$
|
|
3120
|
-
];
|
|
3121
|
-
var GetTenant$ = [9, n0, _GT,
|
|
3122
|
-
{ [_h]: ["POST", "/v2/email/tenants/get", 200] }, () => GetTenantRequest$, () => GetTenantResponse$
|
|
3123
|
-
];
|
|
3124
|
-
var ListConfigurationSets$ = [9, n0, _LCS,
|
|
3125
|
-
{ [_h]: ["GET", "/v2/email/configuration-sets", 200] }, () => ListConfigurationSetsRequest$, () => ListConfigurationSetsResponse$
|
|
3126
|
-
];
|
|
3127
|
-
var ListContactLists$ = [9, n0, _LCL,
|
|
3128
|
-
{ [_h]: ["GET", "/v2/email/contact-lists", 200] }, () => ListContactListsRequest$, () => ListContactListsResponse$
|
|
3129
|
-
];
|
|
3130
|
-
var ListContacts$ = [9, n0, _LC,
|
|
3131
|
-
{ [_h]: ["POST", "/v2/email/contact-lists/{ContactListName}/contacts/list", 200] }, () => ListContactsRequest$, () => ListContactsResponse$
|
|
3132
|
-
];
|
|
3133
|
-
var ListCustomVerificationEmailTemplates$ = [9, n0, _LCVET,
|
|
3134
|
-
{ [_h]: ["GET", "/v2/email/custom-verification-email-templates", 200] }, () => ListCustomVerificationEmailTemplatesRequest$, () => ListCustomVerificationEmailTemplatesResponse$
|
|
3135
|
-
];
|
|
3136
|
-
var ListDedicatedIpPools$ = [9, n0, _LDIP,
|
|
3137
|
-
{ [_h]: ["GET", "/v2/email/dedicated-ip-pools", 200] }, () => ListDedicatedIpPoolsRequest$, () => ListDedicatedIpPoolsResponse$
|
|
3138
|
-
];
|
|
3139
|
-
var ListDeliverabilityTestReports$ = [9, n0, _LDTR,
|
|
3140
|
-
{ [_h]: ["GET", "/v2/email/deliverability-dashboard/test-reports", 200] }, () => ListDeliverabilityTestReportsRequest$, () => ListDeliverabilityTestReportsResponse$
|
|
3141
|
-
];
|
|
3142
|
-
var ListDomainDeliverabilityCampaigns$ = [9, n0, _LDDC,
|
|
3143
|
-
{ [_h]: ["GET", "/v2/email/deliverability-dashboard/domains/{SubscribedDomain}/campaigns", 200] }, () => ListDomainDeliverabilityCampaignsRequest$, () => ListDomainDeliverabilityCampaignsResponse$
|
|
3144
|
-
];
|
|
3145
|
-
var ListEmailIdentities$ = [9, n0, _LEI,
|
|
3146
|
-
{ [_h]: ["GET", "/v2/email/identities", 200] }, () => ListEmailIdentitiesRequest$, () => ListEmailIdentitiesResponse$
|
|
3147
|
-
];
|
|
3148
|
-
var ListEmailTemplates$ = [9, n0, _LET,
|
|
3149
|
-
{ [_h]: ["GET", "/v2/email/templates", 200] }, () => ListEmailTemplatesRequest$, () => ListEmailTemplatesResponse$
|
|
3150
|
-
];
|
|
3151
|
-
var ListExportJobs$ = [9, n0, _LEJ,
|
|
3152
|
-
{ [_h]: ["POST", "/v2/email/list-export-jobs", 200] }, () => ListExportJobsRequest$, () => ListExportJobsResponse$
|
|
3153
|
-
];
|
|
3154
|
-
var ListImportJobs$ = [9, n0, _LIJ,
|
|
3155
|
-
{ [_h]: ["POST", "/v2/email/import-jobs/list", 200] }, () => ListImportJobsRequest$, () => ListImportJobsResponse$
|
|
3156
|
-
];
|
|
3157
|
-
var ListMultiRegionEndpoints$ = [9, n0, _LMRE,
|
|
3158
|
-
{ [_h]: ["GET", "/v2/email/multi-region-endpoints", 200] }, () => ListMultiRegionEndpointsRequest$, () => ListMultiRegionEndpointsResponse$
|
|
3159
|
-
];
|
|
3160
|
-
var ListRecommendations$ = [9, n0, _LR,
|
|
3161
|
-
{ [_h]: ["POST", "/v2/email/vdm/recommendations", 200] }, () => ListRecommendationsRequest$, () => ListRecommendationsResponse$
|
|
3162
|
-
];
|
|
3163
|
-
var ListReputationEntities$ = [9, n0, _LRE,
|
|
3164
|
-
{ [_h]: ["POST", "/v2/email/reputation/entities", 200] }, () => ListReputationEntitiesRequest$, () => ListReputationEntitiesResponse$
|
|
3165
|
-
];
|
|
3166
|
-
var ListResourceTenants$ = [9, n0, _LRT,
|
|
3167
|
-
{ [_h]: ["POST", "/v2/email/resources/tenants/list", 200] }, () => ListResourceTenantsRequest$, () => ListResourceTenantsResponse$
|
|
3168
|
-
];
|
|
3169
|
-
var ListSuppressedDestinations$ = [9, n0, _LSD,
|
|
3170
|
-
{ [_h]: ["GET", "/v2/email/suppression/addresses", 200] }, () => ListSuppressedDestinationsRequest$, () => ListSuppressedDestinationsResponse$
|
|
3171
|
-
];
|
|
3172
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3173
|
-
{ [_h]: ["GET", "/v2/email/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
3174
|
-
];
|
|
3175
|
-
var ListTenantResources$ = [9, n0, _LTRis,
|
|
3176
|
-
{ [_h]: ["POST", "/v2/email/tenants/resources/list", 200] }, () => ListTenantResourcesRequest$, () => ListTenantResourcesResponse$
|
|
3177
|
-
];
|
|
3178
|
-
var ListTenants$ = [9, n0, _LTi,
|
|
3179
|
-
{ [_h]: ["POST", "/v2/email/tenants/list", 200] }, () => ListTenantsRequest$, () => ListTenantsResponse$
|
|
3180
|
-
];
|
|
3181
|
-
var PutAccountDedicatedIpWarmupAttributes$ = [9, n0, _PADIWA,
|
|
3182
|
-
{ [_h]: ["PUT", "/v2/email/account/dedicated-ips/warmup", 200] }, () => PutAccountDedicatedIpWarmupAttributesRequest$, () => PutAccountDedicatedIpWarmupAttributesResponse$
|
|
3183
|
-
];
|
|
3184
|
-
var PutAccountDetails$ = [9, n0, _PAD,
|
|
3185
|
-
{ [_h]: ["POST", "/v2/email/account/details", 200] }, () => PutAccountDetailsRequest$, () => PutAccountDetailsResponse$
|
|
3186
|
-
];
|
|
3187
|
-
var PutAccountSendingAttributes$ = [9, n0, _PASA,
|
|
3188
|
-
{ [_h]: ["PUT", "/v2/email/account/sending", 200] }, () => PutAccountSendingAttributesRequest$, () => PutAccountSendingAttributesResponse$
|
|
3189
|
-
];
|
|
3190
|
-
var PutAccountSuppressionAttributes$ = [9, n0, _PASAu,
|
|
3191
|
-
{ [_h]: ["PUT", "/v2/email/account/suppression", 200] }, () => PutAccountSuppressionAttributesRequest$, () => PutAccountSuppressionAttributesResponse$
|
|
3192
|
-
];
|
|
3193
|
-
var PutAccountVdmAttributes$ = [9, n0, _PAVA,
|
|
3194
|
-
{ [_h]: ["PUT", "/v2/email/account/vdm", 200] }, () => PutAccountVdmAttributesRequest$, () => PutAccountVdmAttributesResponse$
|
|
3195
|
-
];
|
|
3196
|
-
var PutConfigurationSetArchivingOptions$ = [9, n0, _PCSAO,
|
|
3197
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/archiving-options", 200] }, () => PutConfigurationSetArchivingOptionsRequest$, () => PutConfigurationSetArchivingOptionsResponse$
|
|
3198
|
-
];
|
|
3199
|
-
var PutConfigurationSetDeliveryOptions$ = [9, n0, _PCSDO,
|
|
3200
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/delivery-options", 200] }, () => PutConfigurationSetDeliveryOptionsRequest$, () => PutConfigurationSetDeliveryOptionsResponse$
|
|
3201
|
-
];
|
|
3202
|
-
var PutConfigurationSetReputationOptions$ = [9, n0, _PCSRO,
|
|
3203
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/reputation-options", 200] }, () => PutConfigurationSetReputationOptionsRequest$, () => PutConfigurationSetReputationOptionsResponse$
|
|
3204
|
-
];
|
|
3205
|
-
var PutConfigurationSetSendingOptions$ = [9, n0, _PCSSO,
|
|
3206
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/sending", 200] }, () => PutConfigurationSetSendingOptionsRequest$, () => PutConfigurationSetSendingOptionsResponse$
|
|
3207
|
-
];
|
|
3208
|
-
var PutConfigurationSetSuppressionOptions$ = [9, n0, _PCSSOu,
|
|
3209
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/suppression-options", 200] }, () => PutConfigurationSetSuppressionOptionsRequest$, () => PutConfigurationSetSuppressionOptionsResponse$
|
|
3210
|
-
];
|
|
3211
|
-
var PutConfigurationSetTrackingOptions$ = [9, n0, _PCSTO,
|
|
3212
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/tracking-options", 200] }, () => PutConfigurationSetTrackingOptionsRequest$, () => PutConfigurationSetTrackingOptionsResponse$
|
|
3213
|
-
];
|
|
3214
|
-
var PutConfigurationSetVdmOptions$ = [9, n0, _PCSVO,
|
|
3215
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/vdm-options", 200] }, () => PutConfigurationSetVdmOptionsRequest$, () => PutConfigurationSetVdmOptionsResponse$
|
|
3216
|
-
];
|
|
3217
|
-
var PutDedicatedIpInPool$ = [9, n0, _PDIIP,
|
|
3218
|
-
{ [_h]: ["PUT", "/v2/email/dedicated-ips/{Ip}/pool", 200] }, () => PutDedicatedIpInPoolRequest$, () => PutDedicatedIpInPoolResponse$
|
|
3219
|
-
];
|
|
3220
|
-
var PutDedicatedIpPoolScalingAttributes$ = [9, n0, _PDIPSA,
|
|
3221
|
-
{ [_h]: ["PUT", "/v2/email/dedicated-ip-pools/{PoolName}/scaling", 200] }, () => PutDedicatedIpPoolScalingAttributesRequest$, () => PutDedicatedIpPoolScalingAttributesResponse$
|
|
3222
|
-
];
|
|
3223
|
-
var PutDedicatedIpWarmupAttributes$ = [9, n0, _PDIWA,
|
|
3224
|
-
{ [_h]: ["PUT", "/v2/email/dedicated-ips/{Ip}/warmup", 200] }, () => PutDedicatedIpWarmupAttributesRequest$, () => PutDedicatedIpWarmupAttributesResponse$
|
|
3225
|
-
];
|
|
3226
|
-
var PutDeliverabilityDashboardOption$ = [9, n0, _PDDO,
|
|
3227
|
-
{ [_h]: ["PUT", "/v2/email/deliverability-dashboard", 200] }, () => PutDeliverabilityDashboardOptionRequest$, () => PutDeliverabilityDashboardOptionResponse$
|
|
3228
|
-
];
|
|
3229
|
-
var PutEmailIdentityConfigurationSetAttributes$ = [9, n0, _PEICSA,
|
|
3230
|
-
{ [_h]: ["PUT", "/v2/email/identities/{EmailIdentity}/configuration-set", 200] }, () => PutEmailIdentityConfigurationSetAttributesRequest$, () => PutEmailIdentityConfigurationSetAttributesResponse$
|
|
3231
|
-
];
|
|
3232
|
-
var PutEmailIdentityDkimAttributes$ = [9, n0, _PEIDA,
|
|
3233
|
-
{ [_h]: ["PUT", "/v2/email/identities/{EmailIdentity}/dkim", 200] }, () => PutEmailIdentityDkimAttributesRequest$, () => PutEmailIdentityDkimAttributesResponse$
|
|
3234
|
-
];
|
|
3235
|
-
var PutEmailIdentityDkimSigningAttributes$ = [9, n0, _PEIDSA,
|
|
3236
|
-
{ [_h]: ["PUT", "/v2/email/identities/{EmailIdentity}/dkim/signing", 200] }, () => PutEmailIdentityDkimSigningAttributesRequest$, () => PutEmailIdentityDkimSigningAttributesResponse$
|
|
3237
|
-
];
|
|
3238
|
-
var PutEmailIdentityFeedbackAttributes$ = [9, n0, _PEIFA,
|
|
3239
|
-
{ [_h]: ["PUT", "/v2/email/identities/{EmailIdentity}/feedback", 200] }, () => PutEmailIdentityFeedbackAttributesRequest$, () => PutEmailIdentityFeedbackAttributesResponse$
|
|
3240
|
-
];
|
|
3241
|
-
var PutEmailIdentityMailFromAttributes$ = [9, n0, _PEIMFA,
|
|
3242
|
-
{ [_h]: ["PUT", "/v2/email/identities/{EmailIdentity}/mail-from", 200] }, () => PutEmailIdentityMailFromAttributesRequest$, () => PutEmailIdentityMailFromAttributesResponse$
|
|
3243
|
-
];
|
|
3244
|
-
var PutSuppressedDestination$ = [9, n0, _PSD,
|
|
3245
|
-
{ [_h]: ["PUT", "/v2/email/suppression/addresses", 200] }, () => PutSuppressedDestinationRequest$, () => PutSuppressedDestinationResponse$
|
|
3246
|
-
];
|
|
3247
|
-
var SendBulkEmail$ = [9, n0, _SBE,
|
|
3248
|
-
{ [_h]: ["POST", "/v2/email/outbound-bulk-emails", 200] }, () => SendBulkEmailRequest$, () => SendBulkEmailResponse$
|
|
3249
|
-
];
|
|
3250
|
-
var SendCustomVerificationEmail$ = [9, n0, _SCVE,
|
|
3251
|
-
{ [_h]: ["POST", "/v2/email/outbound-custom-verification-emails", 200] }, () => SendCustomVerificationEmailRequest$, () => SendCustomVerificationEmailResponse$
|
|
3252
|
-
];
|
|
3253
|
-
var SendEmail$ = [9, n0, _SEen,
|
|
3254
|
-
{ [_h]: ["POST", "/v2/email/outbound-emails", 200] }, () => SendEmailRequest$, () => SendEmailResponse$
|
|
3255
|
-
];
|
|
3256
|
-
var TagResource$ = [9, n0, _TRa,
|
|
3257
|
-
{ [_h]: ["POST", "/v2/email/tags", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
3258
|
-
];
|
|
3259
|
-
var TestRenderEmailTemplate$ = [9, n0, _TRET,
|
|
3260
|
-
{ [_h]: ["POST", "/v2/email/templates/{TemplateName}/render", 200] }, () => TestRenderEmailTemplateRequest$, () => TestRenderEmailTemplateResponse$
|
|
3261
|
-
];
|
|
3262
|
-
var UntagResource$ = [9, n0, _UR,
|
|
3263
|
-
{ [_h]: ["DELETE", "/v2/email/tags", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
3264
|
-
];
|
|
3265
|
-
var UpdateConfigurationSetEventDestination$ = [9, n0, _UCSED,
|
|
3266
|
-
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => UpdateConfigurationSetEventDestinationRequest$, () => UpdateConfigurationSetEventDestinationResponse$
|
|
3267
|
-
];
|
|
3268
|
-
var UpdateContact$ = [9, n0, _UC,
|
|
3269
|
-
{ [_h]: ["PUT", "/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}", 200] }, () => UpdateContactRequest$, () => UpdateContactResponse$
|
|
3270
|
-
];
|
|
3271
|
-
var UpdateContactList$ = [9, n0, _UCL,
|
|
3272
|
-
{ [_h]: ["PUT", "/v2/email/contact-lists/{ContactListName}", 200] }, () => UpdateContactListRequest$, () => UpdateContactListResponse$
|
|
3273
|
-
];
|
|
3274
|
-
var UpdateCustomVerificationEmailTemplate$ = [9, n0, _UCVET,
|
|
3275
|
-
{ [_h]: ["PUT", "/v2/email/custom-verification-email-templates/{TemplateName}", 200] }, () => UpdateCustomVerificationEmailTemplateRequest$, () => UpdateCustomVerificationEmailTemplateResponse$
|
|
3276
|
-
];
|
|
3277
|
-
var UpdateEmailIdentityPolicy$ = [9, n0, _UEIP,
|
|
3278
|
-
{ [_h]: ["PUT", "/v2/email/identities/{EmailIdentity}/policies/{PolicyName}", 200] }, () => UpdateEmailIdentityPolicyRequest$, () => UpdateEmailIdentityPolicyResponse$
|
|
3279
|
-
];
|
|
3280
|
-
var UpdateEmailTemplate$ = [9, n0, _UET,
|
|
3281
|
-
{ [_h]: ["PUT", "/v2/email/templates/{TemplateName}", 200] }, () => UpdateEmailTemplateRequest$, () => UpdateEmailTemplateResponse$
|
|
3282
|
-
];
|
|
3283
|
-
var UpdateReputationEntityCustomerManagedStatus$ = [9, n0, _URECMS,
|
|
3284
|
-
{ [_h]: ["PUT", "/v2/email/reputation/entities/{ReputationEntityType}/{ReputationEntityReference}/customer-managed-status", 200] }, () => UpdateReputationEntityCustomerManagedStatusRequest$, () => UpdateReputationEntityCustomerManagedStatusResponse$
|
|
3285
|
-
];
|
|
3286
|
-
var UpdateReputationEntityPolicy$ = [9, n0, _UREP,
|
|
3287
|
-
{ [_h]: ["PUT", "/v2/email/reputation/entities/{ReputationEntityType}/{ReputationEntityReference}/policy", 200] }, () => UpdateReputationEntityPolicyRequest$, () => UpdateReputationEntityPolicyResponse$
|
|
3288
|
-
];
|
|
3289
|
-
|
|
3290
117
|
class BatchGetMetricDataCommand extends smithyClient.Command
|
|
3291
118
|
.classBuilder()
|
|
3292
119
|
.ep(commonParams)
|
|
@@ -3295,7 +122,7 @@ class BatchGetMetricDataCommand extends smithyClient.Command
|
|
|
3295
122
|
})
|
|
3296
123
|
.s("SimpleEmailService_v2", "BatchGetMetricData", {})
|
|
3297
124
|
.n("SESv2Client", "BatchGetMetricDataCommand")
|
|
3298
|
-
.sc(BatchGetMetricData$)
|
|
125
|
+
.sc(schemas_0.BatchGetMetricData$)
|
|
3299
126
|
.build() {
|
|
3300
127
|
}
|
|
3301
128
|
|
|
@@ -3307,7 +134,7 @@ class CancelExportJobCommand extends smithyClient.Command
|
|
|
3307
134
|
})
|
|
3308
135
|
.s("SimpleEmailService_v2", "CancelExportJob", {})
|
|
3309
136
|
.n("SESv2Client", "CancelExportJobCommand")
|
|
3310
|
-
.sc(CancelExportJob$)
|
|
137
|
+
.sc(schemas_0.CancelExportJob$)
|
|
3311
138
|
.build() {
|
|
3312
139
|
}
|
|
3313
140
|
|
|
@@ -3319,7 +146,7 @@ class CreateConfigurationSetCommand extends smithyClient.Command
|
|
|
3319
146
|
})
|
|
3320
147
|
.s("SimpleEmailService_v2", "CreateConfigurationSet", {})
|
|
3321
148
|
.n("SESv2Client", "CreateConfigurationSetCommand")
|
|
3322
|
-
.sc(CreateConfigurationSet$)
|
|
149
|
+
.sc(schemas_0.CreateConfigurationSet$)
|
|
3323
150
|
.build() {
|
|
3324
151
|
}
|
|
3325
152
|
|
|
@@ -3331,7 +158,7 @@ class CreateConfigurationSetEventDestinationCommand extends smithyClient.Command
|
|
|
3331
158
|
})
|
|
3332
159
|
.s("SimpleEmailService_v2", "CreateConfigurationSetEventDestination", {})
|
|
3333
160
|
.n("SESv2Client", "CreateConfigurationSetEventDestinationCommand")
|
|
3334
|
-
.sc(CreateConfigurationSetEventDestination$)
|
|
161
|
+
.sc(schemas_0.CreateConfigurationSetEventDestination$)
|
|
3335
162
|
.build() {
|
|
3336
163
|
}
|
|
3337
164
|
|
|
@@ -3343,7 +170,7 @@ class CreateContactCommand extends smithyClient.Command
|
|
|
3343
170
|
})
|
|
3344
171
|
.s("SimpleEmailService_v2", "CreateContact", {})
|
|
3345
172
|
.n("SESv2Client", "CreateContactCommand")
|
|
3346
|
-
.sc(CreateContact$)
|
|
173
|
+
.sc(schemas_0.CreateContact$)
|
|
3347
174
|
.build() {
|
|
3348
175
|
}
|
|
3349
176
|
|
|
@@ -3355,7 +182,7 @@ class CreateContactListCommand extends smithyClient.Command
|
|
|
3355
182
|
})
|
|
3356
183
|
.s("SimpleEmailService_v2", "CreateContactList", {})
|
|
3357
184
|
.n("SESv2Client", "CreateContactListCommand")
|
|
3358
|
-
.sc(CreateContactList$)
|
|
185
|
+
.sc(schemas_0.CreateContactList$)
|
|
3359
186
|
.build() {
|
|
3360
187
|
}
|
|
3361
188
|
|
|
@@ -3367,7 +194,7 @@ class CreateCustomVerificationEmailTemplateCommand extends smithyClient.Command
|
|
|
3367
194
|
})
|
|
3368
195
|
.s("SimpleEmailService_v2", "CreateCustomVerificationEmailTemplate", {})
|
|
3369
196
|
.n("SESv2Client", "CreateCustomVerificationEmailTemplateCommand")
|
|
3370
|
-
.sc(CreateCustomVerificationEmailTemplate$)
|
|
197
|
+
.sc(schemas_0.CreateCustomVerificationEmailTemplate$)
|
|
3371
198
|
.build() {
|
|
3372
199
|
}
|
|
3373
200
|
|
|
@@ -3379,7 +206,7 @@ class CreateDedicatedIpPoolCommand extends smithyClient.Command
|
|
|
3379
206
|
})
|
|
3380
207
|
.s("SimpleEmailService_v2", "CreateDedicatedIpPool", {})
|
|
3381
208
|
.n("SESv2Client", "CreateDedicatedIpPoolCommand")
|
|
3382
|
-
.sc(CreateDedicatedIpPool$)
|
|
209
|
+
.sc(schemas_0.CreateDedicatedIpPool$)
|
|
3383
210
|
.build() {
|
|
3384
211
|
}
|
|
3385
212
|
|
|
@@ -3391,7 +218,7 @@ class CreateDeliverabilityTestReportCommand extends smithyClient.Command
|
|
|
3391
218
|
})
|
|
3392
219
|
.s("SimpleEmailService_v2", "CreateDeliverabilityTestReport", {})
|
|
3393
220
|
.n("SESv2Client", "CreateDeliverabilityTestReportCommand")
|
|
3394
|
-
.sc(CreateDeliverabilityTestReport$)
|
|
221
|
+
.sc(schemas_0.CreateDeliverabilityTestReport$)
|
|
3395
222
|
.build() {
|
|
3396
223
|
}
|
|
3397
224
|
|
|
@@ -3403,7 +230,7 @@ class CreateEmailIdentityCommand extends smithyClient.Command
|
|
|
3403
230
|
})
|
|
3404
231
|
.s("SimpleEmailService_v2", "CreateEmailIdentity", {})
|
|
3405
232
|
.n("SESv2Client", "CreateEmailIdentityCommand")
|
|
3406
|
-
.sc(CreateEmailIdentity$)
|
|
233
|
+
.sc(schemas_0.CreateEmailIdentity$)
|
|
3407
234
|
.build() {
|
|
3408
235
|
}
|
|
3409
236
|
|
|
@@ -3415,7 +242,7 @@ class CreateEmailIdentityPolicyCommand extends smithyClient.Command
|
|
|
3415
242
|
})
|
|
3416
243
|
.s("SimpleEmailService_v2", "CreateEmailIdentityPolicy", {})
|
|
3417
244
|
.n("SESv2Client", "CreateEmailIdentityPolicyCommand")
|
|
3418
|
-
.sc(CreateEmailIdentityPolicy$)
|
|
245
|
+
.sc(schemas_0.CreateEmailIdentityPolicy$)
|
|
3419
246
|
.build() {
|
|
3420
247
|
}
|
|
3421
248
|
|
|
@@ -3427,7 +254,7 @@ class CreateEmailTemplateCommand extends smithyClient.Command
|
|
|
3427
254
|
})
|
|
3428
255
|
.s("SimpleEmailService_v2", "CreateEmailTemplate", {})
|
|
3429
256
|
.n("SESv2Client", "CreateEmailTemplateCommand")
|
|
3430
|
-
.sc(CreateEmailTemplate$)
|
|
257
|
+
.sc(schemas_0.CreateEmailTemplate$)
|
|
3431
258
|
.build() {
|
|
3432
259
|
}
|
|
3433
260
|
|
|
@@ -3439,7 +266,7 @@ class CreateExportJobCommand extends smithyClient.Command
|
|
|
3439
266
|
})
|
|
3440
267
|
.s("SimpleEmailService_v2", "CreateExportJob", {})
|
|
3441
268
|
.n("SESv2Client", "CreateExportJobCommand")
|
|
3442
|
-
.sc(CreateExportJob$)
|
|
269
|
+
.sc(schemas_0.CreateExportJob$)
|
|
3443
270
|
.build() {
|
|
3444
271
|
}
|
|
3445
272
|
|
|
@@ -3451,7 +278,7 @@ class CreateImportJobCommand extends smithyClient.Command
|
|
|
3451
278
|
})
|
|
3452
279
|
.s("SimpleEmailService_v2", "CreateImportJob", {})
|
|
3453
280
|
.n("SESv2Client", "CreateImportJobCommand")
|
|
3454
|
-
.sc(CreateImportJob$)
|
|
281
|
+
.sc(schemas_0.CreateImportJob$)
|
|
3455
282
|
.build() {
|
|
3456
283
|
}
|
|
3457
284
|
|
|
@@ -3463,7 +290,7 @@ class CreateMultiRegionEndpointCommand extends smithyClient.Command
|
|
|
3463
290
|
})
|
|
3464
291
|
.s("SimpleEmailService_v2", "CreateMultiRegionEndpoint", {})
|
|
3465
292
|
.n("SESv2Client", "CreateMultiRegionEndpointCommand")
|
|
3466
|
-
.sc(CreateMultiRegionEndpoint$)
|
|
293
|
+
.sc(schemas_0.CreateMultiRegionEndpoint$)
|
|
3467
294
|
.build() {
|
|
3468
295
|
}
|
|
3469
296
|
|
|
@@ -3475,7 +302,7 @@ class CreateTenantCommand extends smithyClient.Command
|
|
|
3475
302
|
})
|
|
3476
303
|
.s("SimpleEmailService_v2", "CreateTenant", {})
|
|
3477
304
|
.n("SESv2Client", "CreateTenantCommand")
|
|
3478
|
-
.sc(CreateTenant$)
|
|
305
|
+
.sc(schemas_0.CreateTenant$)
|
|
3479
306
|
.build() {
|
|
3480
307
|
}
|
|
3481
308
|
|
|
@@ -3487,7 +314,7 @@ class CreateTenantResourceAssociationCommand extends smithyClient.Command
|
|
|
3487
314
|
})
|
|
3488
315
|
.s("SimpleEmailService_v2", "CreateTenantResourceAssociation", {})
|
|
3489
316
|
.n("SESv2Client", "CreateTenantResourceAssociationCommand")
|
|
3490
|
-
.sc(CreateTenantResourceAssociation$)
|
|
317
|
+
.sc(schemas_0.CreateTenantResourceAssociation$)
|
|
3491
318
|
.build() {
|
|
3492
319
|
}
|
|
3493
320
|
|
|
@@ -3499,7 +326,7 @@ class DeleteConfigurationSetCommand extends smithyClient.Command
|
|
|
3499
326
|
})
|
|
3500
327
|
.s("SimpleEmailService_v2", "DeleteConfigurationSet", {})
|
|
3501
328
|
.n("SESv2Client", "DeleteConfigurationSetCommand")
|
|
3502
|
-
.sc(DeleteConfigurationSet$)
|
|
329
|
+
.sc(schemas_0.DeleteConfigurationSet$)
|
|
3503
330
|
.build() {
|
|
3504
331
|
}
|
|
3505
332
|
|
|
@@ -3511,7 +338,7 @@ class DeleteConfigurationSetEventDestinationCommand extends smithyClient.Command
|
|
|
3511
338
|
})
|
|
3512
339
|
.s("SimpleEmailService_v2", "DeleteConfigurationSetEventDestination", {})
|
|
3513
340
|
.n("SESv2Client", "DeleteConfigurationSetEventDestinationCommand")
|
|
3514
|
-
.sc(DeleteConfigurationSetEventDestination$)
|
|
341
|
+
.sc(schemas_0.DeleteConfigurationSetEventDestination$)
|
|
3515
342
|
.build() {
|
|
3516
343
|
}
|
|
3517
344
|
|
|
@@ -3523,7 +350,7 @@ class DeleteContactCommand extends smithyClient.Command
|
|
|
3523
350
|
})
|
|
3524
351
|
.s("SimpleEmailService_v2", "DeleteContact", {})
|
|
3525
352
|
.n("SESv2Client", "DeleteContactCommand")
|
|
3526
|
-
.sc(DeleteContact$)
|
|
353
|
+
.sc(schemas_0.DeleteContact$)
|
|
3527
354
|
.build() {
|
|
3528
355
|
}
|
|
3529
356
|
|
|
@@ -3535,7 +362,7 @@ class DeleteContactListCommand extends smithyClient.Command
|
|
|
3535
362
|
})
|
|
3536
363
|
.s("SimpleEmailService_v2", "DeleteContactList", {})
|
|
3537
364
|
.n("SESv2Client", "DeleteContactListCommand")
|
|
3538
|
-
.sc(DeleteContactList$)
|
|
365
|
+
.sc(schemas_0.DeleteContactList$)
|
|
3539
366
|
.build() {
|
|
3540
367
|
}
|
|
3541
368
|
|
|
@@ -3547,7 +374,7 @@ class DeleteCustomVerificationEmailTemplateCommand extends smithyClient.Command
|
|
|
3547
374
|
})
|
|
3548
375
|
.s("SimpleEmailService_v2", "DeleteCustomVerificationEmailTemplate", {})
|
|
3549
376
|
.n("SESv2Client", "DeleteCustomVerificationEmailTemplateCommand")
|
|
3550
|
-
.sc(DeleteCustomVerificationEmailTemplate$)
|
|
377
|
+
.sc(schemas_0.DeleteCustomVerificationEmailTemplate$)
|
|
3551
378
|
.build() {
|
|
3552
379
|
}
|
|
3553
380
|
|
|
@@ -3559,7 +386,7 @@ class DeleteDedicatedIpPoolCommand extends smithyClient.Command
|
|
|
3559
386
|
})
|
|
3560
387
|
.s("SimpleEmailService_v2", "DeleteDedicatedIpPool", {})
|
|
3561
388
|
.n("SESv2Client", "DeleteDedicatedIpPoolCommand")
|
|
3562
|
-
.sc(DeleteDedicatedIpPool$)
|
|
389
|
+
.sc(schemas_0.DeleteDedicatedIpPool$)
|
|
3563
390
|
.build() {
|
|
3564
391
|
}
|
|
3565
392
|
|
|
@@ -3571,7 +398,7 @@ class DeleteEmailIdentityCommand extends smithyClient.Command
|
|
|
3571
398
|
})
|
|
3572
399
|
.s("SimpleEmailService_v2", "DeleteEmailIdentity", {})
|
|
3573
400
|
.n("SESv2Client", "DeleteEmailIdentityCommand")
|
|
3574
|
-
.sc(DeleteEmailIdentity$)
|
|
401
|
+
.sc(schemas_0.DeleteEmailIdentity$)
|
|
3575
402
|
.build() {
|
|
3576
403
|
}
|
|
3577
404
|
|
|
@@ -3583,7 +410,7 @@ class DeleteEmailIdentityPolicyCommand extends smithyClient.Command
|
|
|
3583
410
|
})
|
|
3584
411
|
.s("SimpleEmailService_v2", "DeleteEmailIdentityPolicy", {})
|
|
3585
412
|
.n("SESv2Client", "DeleteEmailIdentityPolicyCommand")
|
|
3586
|
-
.sc(DeleteEmailIdentityPolicy$)
|
|
413
|
+
.sc(schemas_0.DeleteEmailIdentityPolicy$)
|
|
3587
414
|
.build() {
|
|
3588
415
|
}
|
|
3589
416
|
|
|
@@ -3595,7 +422,7 @@ class DeleteEmailTemplateCommand extends smithyClient.Command
|
|
|
3595
422
|
})
|
|
3596
423
|
.s("SimpleEmailService_v2", "DeleteEmailTemplate", {})
|
|
3597
424
|
.n("SESv2Client", "DeleteEmailTemplateCommand")
|
|
3598
|
-
.sc(DeleteEmailTemplate$)
|
|
425
|
+
.sc(schemas_0.DeleteEmailTemplate$)
|
|
3599
426
|
.build() {
|
|
3600
427
|
}
|
|
3601
428
|
|
|
@@ -3607,7 +434,7 @@ class DeleteMultiRegionEndpointCommand extends smithyClient.Command
|
|
|
3607
434
|
})
|
|
3608
435
|
.s("SimpleEmailService_v2", "DeleteMultiRegionEndpoint", {})
|
|
3609
436
|
.n("SESv2Client", "DeleteMultiRegionEndpointCommand")
|
|
3610
|
-
.sc(DeleteMultiRegionEndpoint$)
|
|
437
|
+
.sc(schemas_0.DeleteMultiRegionEndpoint$)
|
|
3611
438
|
.build() {
|
|
3612
439
|
}
|
|
3613
440
|
|
|
@@ -3619,7 +446,7 @@ class DeleteSuppressedDestinationCommand extends smithyClient.Command
|
|
|
3619
446
|
})
|
|
3620
447
|
.s("SimpleEmailService_v2", "DeleteSuppressedDestination", {})
|
|
3621
448
|
.n("SESv2Client", "DeleteSuppressedDestinationCommand")
|
|
3622
|
-
.sc(DeleteSuppressedDestination$)
|
|
449
|
+
.sc(schemas_0.DeleteSuppressedDestination$)
|
|
3623
450
|
.build() {
|
|
3624
451
|
}
|
|
3625
452
|
|
|
@@ -3631,7 +458,7 @@ class DeleteTenantCommand extends smithyClient.Command
|
|
|
3631
458
|
})
|
|
3632
459
|
.s("SimpleEmailService_v2", "DeleteTenant", {})
|
|
3633
460
|
.n("SESv2Client", "DeleteTenantCommand")
|
|
3634
|
-
.sc(DeleteTenant$)
|
|
461
|
+
.sc(schemas_0.DeleteTenant$)
|
|
3635
462
|
.build() {
|
|
3636
463
|
}
|
|
3637
464
|
|
|
@@ -3643,7 +470,7 @@ class DeleteTenantResourceAssociationCommand extends smithyClient.Command
|
|
|
3643
470
|
})
|
|
3644
471
|
.s("SimpleEmailService_v2", "DeleteTenantResourceAssociation", {})
|
|
3645
472
|
.n("SESv2Client", "DeleteTenantResourceAssociationCommand")
|
|
3646
|
-
.sc(DeleteTenantResourceAssociation$)
|
|
473
|
+
.sc(schemas_0.DeleteTenantResourceAssociation$)
|
|
3647
474
|
.build() {
|
|
3648
475
|
}
|
|
3649
476
|
|
|
@@ -3655,7 +482,7 @@ class GetAccountCommand extends smithyClient.Command
|
|
|
3655
482
|
})
|
|
3656
483
|
.s("SimpleEmailService_v2", "GetAccount", {})
|
|
3657
484
|
.n("SESv2Client", "GetAccountCommand")
|
|
3658
|
-
.sc(GetAccount$)
|
|
485
|
+
.sc(schemas_0.GetAccount$)
|
|
3659
486
|
.build() {
|
|
3660
487
|
}
|
|
3661
488
|
|
|
@@ -3667,7 +494,7 @@ class GetBlacklistReportsCommand extends smithyClient.Command
|
|
|
3667
494
|
})
|
|
3668
495
|
.s("SimpleEmailService_v2", "GetBlacklistReports", {})
|
|
3669
496
|
.n("SESv2Client", "GetBlacklistReportsCommand")
|
|
3670
|
-
.sc(GetBlacklistReports$)
|
|
497
|
+
.sc(schemas_0.GetBlacklistReports$)
|
|
3671
498
|
.build() {
|
|
3672
499
|
}
|
|
3673
500
|
|
|
@@ -3679,7 +506,7 @@ class GetConfigurationSetCommand extends smithyClient.Command
|
|
|
3679
506
|
})
|
|
3680
507
|
.s("SimpleEmailService_v2", "GetConfigurationSet", {})
|
|
3681
508
|
.n("SESv2Client", "GetConfigurationSetCommand")
|
|
3682
|
-
.sc(GetConfigurationSet$)
|
|
509
|
+
.sc(schemas_0.GetConfigurationSet$)
|
|
3683
510
|
.build() {
|
|
3684
511
|
}
|
|
3685
512
|
|
|
@@ -3691,7 +518,7 @@ class GetConfigurationSetEventDestinationsCommand extends smithyClient.Command
|
|
|
3691
518
|
})
|
|
3692
519
|
.s("SimpleEmailService_v2", "GetConfigurationSetEventDestinations", {})
|
|
3693
520
|
.n("SESv2Client", "GetConfigurationSetEventDestinationsCommand")
|
|
3694
|
-
.sc(GetConfigurationSetEventDestinations$)
|
|
521
|
+
.sc(schemas_0.GetConfigurationSetEventDestinations$)
|
|
3695
522
|
.build() {
|
|
3696
523
|
}
|
|
3697
524
|
|
|
@@ -3703,7 +530,7 @@ class GetContactCommand extends smithyClient.Command
|
|
|
3703
530
|
})
|
|
3704
531
|
.s("SimpleEmailService_v2", "GetContact", {})
|
|
3705
532
|
.n("SESv2Client", "GetContactCommand")
|
|
3706
|
-
.sc(GetContact$)
|
|
533
|
+
.sc(schemas_0.GetContact$)
|
|
3707
534
|
.build() {
|
|
3708
535
|
}
|
|
3709
536
|
|
|
@@ -3715,7 +542,7 @@ class GetContactListCommand extends smithyClient.Command
|
|
|
3715
542
|
})
|
|
3716
543
|
.s("SimpleEmailService_v2", "GetContactList", {})
|
|
3717
544
|
.n("SESv2Client", "GetContactListCommand")
|
|
3718
|
-
.sc(GetContactList$)
|
|
545
|
+
.sc(schemas_0.GetContactList$)
|
|
3719
546
|
.build() {
|
|
3720
547
|
}
|
|
3721
548
|
|
|
@@ -3727,7 +554,7 @@ class GetCustomVerificationEmailTemplateCommand extends smithyClient.Command
|
|
|
3727
554
|
})
|
|
3728
555
|
.s("SimpleEmailService_v2", "GetCustomVerificationEmailTemplate", {})
|
|
3729
556
|
.n("SESv2Client", "GetCustomVerificationEmailTemplateCommand")
|
|
3730
|
-
.sc(GetCustomVerificationEmailTemplate$)
|
|
557
|
+
.sc(schemas_0.GetCustomVerificationEmailTemplate$)
|
|
3731
558
|
.build() {
|
|
3732
559
|
}
|
|
3733
560
|
|
|
@@ -3739,7 +566,7 @@ class GetDedicatedIpCommand extends smithyClient.Command
|
|
|
3739
566
|
})
|
|
3740
567
|
.s("SimpleEmailService_v2", "GetDedicatedIp", {})
|
|
3741
568
|
.n("SESv2Client", "GetDedicatedIpCommand")
|
|
3742
|
-
.sc(GetDedicatedIp$)
|
|
569
|
+
.sc(schemas_0.GetDedicatedIp$)
|
|
3743
570
|
.build() {
|
|
3744
571
|
}
|
|
3745
572
|
|
|
@@ -3751,7 +578,7 @@ class GetDedicatedIpPoolCommand extends smithyClient.Command
|
|
|
3751
578
|
})
|
|
3752
579
|
.s("SimpleEmailService_v2", "GetDedicatedIpPool", {})
|
|
3753
580
|
.n("SESv2Client", "GetDedicatedIpPoolCommand")
|
|
3754
|
-
.sc(GetDedicatedIpPool$)
|
|
581
|
+
.sc(schemas_0.GetDedicatedIpPool$)
|
|
3755
582
|
.build() {
|
|
3756
583
|
}
|
|
3757
584
|
|
|
@@ -3763,7 +590,7 @@ class GetDedicatedIpsCommand extends smithyClient.Command
|
|
|
3763
590
|
})
|
|
3764
591
|
.s("SimpleEmailService_v2", "GetDedicatedIps", {})
|
|
3765
592
|
.n("SESv2Client", "GetDedicatedIpsCommand")
|
|
3766
|
-
.sc(GetDedicatedIps$)
|
|
593
|
+
.sc(schemas_0.GetDedicatedIps$)
|
|
3767
594
|
.build() {
|
|
3768
595
|
}
|
|
3769
596
|
|
|
@@ -3775,7 +602,7 @@ class GetDeliverabilityDashboardOptionsCommand extends smithyClient.Command
|
|
|
3775
602
|
})
|
|
3776
603
|
.s("SimpleEmailService_v2", "GetDeliverabilityDashboardOptions", {})
|
|
3777
604
|
.n("SESv2Client", "GetDeliverabilityDashboardOptionsCommand")
|
|
3778
|
-
.sc(GetDeliverabilityDashboardOptions$)
|
|
605
|
+
.sc(schemas_0.GetDeliverabilityDashboardOptions$)
|
|
3779
606
|
.build() {
|
|
3780
607
|
}
|
|
3781
608
|
|
|
@@ -3787,7 +614,7 @@ class GetDeliverabilityTestReportCommand extends smithyClient.Command
|
|
|
3787
614
|
})
|
|
3788
615
|
.s("SimpleEmailService_v2", "GetDeliverabilityTestReport", {})
|
|
3789
616
|
.n("SESv2Client", "GetDeliverabilityTestReportCommand")
|
|
3790
|
-
.sc(GetDeliverabilityTestReport$)
|
|
617
|
+
.sc(schemas_0.GetDeliverabilityTestReport$)
|
|
3791
618
|
.build() {
|
|
3792
619
|
}
|
|
3793
620
|
|
|
@@ -3799,7 +626,7 @@ class GetDomainDeliverabilityCampaignCommand extends smithyClient.Command
|
|
|
3799
626
|
})
|
|
3800
627
|
.s("SimpleEmailService_v2", "GetDomainDeliverabilityCampaign", {})
|
|
3801
628
|
.n("SESv2Client", "GetDomainDeliverabilityCampaignCommand")
|
|
3802
|
-
.sc(GetDomainDeliverabilityCampaign$)
|
|
629
|
+
.sc(schemas_0.GetDomainDeliverabilityCampaign$)
|
|
3803
630
|
.build() {
|
|
3804
631
|
}
|
|
3805
632
|
|
|
@@ -3811,7 +638,7 @@ class GetDomainStatisticsReportCommand extends smithyClient.Command
|
|
|
3811
638
|
})
|
|
3812
639
|
.s("SimpleEmailService_v2", "GetDomainStatisticsReport", {})
|
|
3813
640
|
.n("SESv2Client", "GetDomainStatisticsReportCommand")
|
|
3814
|
-
.sc(GetDomainStatisticsReport$)
|
|
641
|
+
.sc(schemas_0.GetDomainStatisticsReport$)
|
|
3815
642
|
.build() {
|
|
3816
643
|
}
|
|
3817
644
|
|
|
@@ -3823,7 +650,7 @@ class GetEmailAddressInsightsCommand extends smithyClient.Command
|
|
|
3823
650
|
})
|
|
3824
651
|
.s("SimpleEmailService_v2", "GetEmailAddressInsights", {})
|
|
3825
652
|
.n("SESv2Client", "GetEmailAddressInsightsCommand")
|
|
3826
|
-
.sc(GetEmailAddressInsights$)
|
|
653
|
+
.sc(schemas_0.GetEmailAddressInsights$)
|
|
3827
654
|
.build() {
|
|
3828
655
|
}
|
|
3829
656
|
|
|
@@ -3835,7 +662,7 @@ class GetEmailIdentityCommand extends smithyClient.Command
|
|
|
3835
662
|
})
|
|
3836
663
|
.s("SimpleEmailService_v2", "GetEmailIdentity", {})
|
|
3837
664
|
.n("SESv2Client", "GetEmailIdentityCommand")
|
|
3838
|
-
.sc(GetEmailIdentity$)
|
|
665
|
+
.sc(schemas_0.GetEmailIdentity$)
|
|
3839
666
|
.build() {
|
|
3840
667
|
}
|
|
3841
668
|
|
|
@@ -3847,7 +674,7 @@ class GetEmailIdentityPoliciesCommand extends smithyClient.Command
|
|
|
3847
674
|
})
|
|
3848
675
|
.s("SimpleEmailService_v2", "GetEmailIdentityPolicies", {})
|
|
3849
676
|
.n("SESv2Client", "GetEmailIdentityPoliciesCommand")
|
|
3850
|
-
.sc(GetEmailIdentityPolicies$)
|
|
677
|
+
.sc(schemas_0.GetEmailIdentityPolicies$)
|
|
3851
678
|
.build() {
|
|
3852
679
|
}
|
|
3853
680
|
|
|
@@ -3859,7 +686,7 @@ class GetEmailTemplateCommand extends smithyClient.Command
|
|
|
3859
686
|
})
|
|
3860
687
|
.s("SimpleEmailService_v2", "GetEmailTemplate", {})
|
|
3861
688
|
.n("SESv2Client", "GetEmailTemplateCommand")
|
|
3862
|
-
.sc(GetEmailTemplate$)
|
|
689
|
+
.sc(schemas_0.GetEmailTemplate$)
|
|
3863
690
|
.build() {
|
|
3864
691
|
}
|
|
3865
692
|
|
|
@@ -3871,7 +698,7 @@ class GetExportJobCommand extends smithyClient.Command
|
|
|
3871
698
|
})
|
|
3872
699
|
.s("SimpleEmailService_v2", "GetExportJob", {})
|
|
3873
700
|
.n("SESv2Client", "GetExportJobCommand")
|
|
3874
|
-
.sc(GetExportJob$)
|
|
701
|
+
.sc(schemas_0.GetExportJob$)
|
|
3875
702
|
.build() {
|
|
3876
703
|
}
|
|
3877
704
|
|
|
@@ -3883,7 +710,7 @@ class GetImportJobCommand extends smithyClient.Command
|
|
|
3883
710
|
})
|
|
3884
711
|
.s("SimpleEmailService_v2", "GetImportJob", {})
|
|
3885
712
|
.n("SESv2Client", "GetImportJobCommand")
|
|
3886
|
-
.sc(GetImportJob$)
|
|
713
|
+
.sc(schemas_0.GetImportJob$)
|
|
3887
714
|
.build() {
|
|
3888
715
|
}
|
|
3889
716
|
|
|
@@ -3895,7 +722,7 @@ class GetMessageInsightsCommand extends smithyClient.Command
|
|
|
3895
722
|
})
|
|
3896
723
|
.s("SimpleEmailService_v2", "GetMessageInsights", {})
|
|
3897
724
|
.n("SESv2Client", "GetMessageInsightsCommand")
|
|
3898
|
-
.sc(GetMessageInsights$)
|
|
725
|
+
.sc(schemas_0.GetMessageInsights$)
|
|
3899
726
|
.build() {
|
|
3900
727
|
}
|
|
3901
728
|
|
|
@@ -3907,7 +734,7 @@ class GetMultiRegionEndpointCommand extends smithyClient.Command
|
|
|
3907
734
|
})
|
|
3908
735
|
.s("SimpleEmailService_v2", "GetMultiRegionEndpoint", {})
|
|
3909
736
|
.n("SESv2Client", "GetMultiRegionEndpointCommand")
|
|
3910
|
-
.sc(GetMultiRegionEndpoint$)
|
|
737
|
+
.sc(schemas_0.GetMultiRegionEndpoint$)
|
|
3911
738
|
.build() {
|
|
3912
739
|
}
|
|
3913
740
|
|
|
@@ -3919,7 +746,7 @@ class GetReputationEntityCommand extends smithyClient.Command
|
|
|
3919
746
|
})
|
|
3920
747
|
.s("SimpleEmailService_v2", "GetReputationEntity", {})
|
|
3921
748
|
.n("SESv2Client", "GetReputationEntityCommand")
|
|
3922
|
-
.sc(GetReputationEntity$)
|
|
749
|
+
.sc(schemas_0.GetReputationEntity$)
|
|
3923
750
|
.build() {
|
|
3924
751
|
}
|
|
3925
752
|
|
|
@@ -3931,7 +758,7 @@ class GetSuppressedDestinationCommand extends smithyClient.Command
|
|
|
3931
758
|
})
|
|
3932
759
|
.s("SimpleEmailService_v2", "GetSuppressedDestination", {})
|
|
3933
760
|
.n("SESv2Client", "GetSuppressedDestinationCommand")
|
|
3934
|
-
.sc(GetSuppressedDestination$)
|
|
761
|
+
.sc(schemas_0.GetSuppressedDestination$)
|
|
3935
762
|
.build() {
|
|
3936
763
|
}
|
|
3937
764
|
|
|
@@ -3943,7 +770,7 @@ class GetTenantCommand extends smithyClient.Command
|
|
|
3943
770
|
})
|
|
3944
771
|
.s("SimpleEmailService_v2", "GetTenant", {})
|
|
3945
772
|
.n("SESv2Client", "GetTenantCommand")
|
|
3946
|
-
.sc(GetTenant$)
|
|
773
|
+
.sc(schemas_0.GetTenant$)
|
|
3947
774
|
.build() {
|
|
3948
775
|
}
|
|
3949
776
|
|
|
@@ -3955,7 +782,7 @@ class ListConfigurationSetsCommand extends smithyClient.Command
|
|
|
3955
782
|
})
|
|
3956
783
|
.s("SimpleEmailService_v2", "ListConfigurationSets", {})
|
|
3957
784
|
.n("SESv2Client", "ListConfigurationSetsCommand")
|
|
3958
|
-
.sc(ListConfigurationSets$)
|
|
785
|
+
.sc(schemas_0.ListConfigurationSets$)
|
|
3959
786
|
.build() {
|
|
3960
787
|
}
|
|
3961
788
|
|
|
@@ -3967,7 +794,7 @@ class ListContactListsCommand extends smithyClient.Command
|
|
|
3967
794
|
})
|
|
3968
795
|
.s("SimpleEmailService_v2", "ListContactLists", {})
|
|
3969
796
|
.n("SESv2Client", "ListContactListsCommand")
|
|
3970
|
-
.sc(ListContactLists$)
|
|
797
|
+
.sc(schemas_0.ListContactLists$)
|
|
3971
798
|
.build() {
|
|
3972
799
|
}
|
|
3973
800
|
|
|
@@ -3979,7 +806,7 @@ class ListContactsCommand extends smithyClient.Command
|
|
|
3979
806
|
})
|
|
3980
807
|
.s("SimpleEmailService_v2", "ListContacts", {})
|
|
3981
808
|
.n("SESv2Client", "ListContactsCommand")
|
|
3982
|
-
.sc(ListContacts$)
|
|
809
|
+
.sc(schemas_0.ListContacts$)
|
|
3983
810
|
.build() {
|
|
3984
811
|
}
|
|
3985
812
|
|
|
@@ -3991,7 +818,7 @@ class ListCustomVerificationEmailTemplatesCommand extends smithyClient.Command
|
|
|
3991
818
|
})
|
|
3992
819
|
.s("SimpleEmailService_v2", "ListCustomVerificationEmailTemplates", {})
|
|
3993
820
|
.n("SESv2Client", "ListCustomVerificationEmailTemplatesCommand")
|
|
3994
|
-
.sc(ListCustomVerificationEmailTemplates$)
|
|
821
|
+
.sc(schemas_0.ListCustomVerificationEmailTemplates$)
|
|
3995
822
|
.build() {
|
|
3996
823
|
}
|
|
3997
824
|
|
|
@@ -4003,7 +830,7 @@ class ListDedicatedIpPoolsCommand extends smithyClient.Command
|
|
|
4003
830
|
})
|
|
4004
831
|
.s("SimpleEmailService_v2", "ListDedicatedIpPools", {})
|
|
4005
832
|
.n("SESv2Client", "ListDedicatedIpPoolsCommand")
|
|
4006
|
-
.sc(ListDedicatedIpPools$)
|
|
833
|
+
.sc(schemas_0.ListDedicatedIpPools$)
|
|
4007
834
|
.build() {
|
|
4008
835
|
}
|
|
4009
836
|
|
|
@@ -4015,7 +842,7 @@ class ListDeliverabilityTestReportsCommand extends smithyClient.Command
|
|
|
4015
842
|
})
|
|
4016
843
|
.s("SimpleEmailService_v2", "ListDeliverabilityTestReports", {})
|
|
4017
844
|
.n("SESv2Client", "ListDeliverabilityTestReportsCommand")
|
|
4018
|
-
.sc(ListDeliverabilityTestReports$)
|
|
845
|
+
.sc(schemas_0.ListDeliverabilityTestReports$)
|
|
4019
846
|
.build() {
|
|
4020
847
|
}
|
|
4021
848
|
|
|
@@ -4027,7 +854,7 @@ class ListDomainDeliverabilityCampaignsCommand extends smithyClient.Command
|
|
|
4027
854
|
})
|
|
4028
855
|
.s("SimpleEmailService_v2", "ListDomainDeliverabilityCampaigns", {})
|
|
4029
856
|
.n("SESv2Client", "ListDomainDeliverabilityCampaignsCommand")
|
|
4030
|
-
.sc(ListDomainDeliverabilityCampaigns$)
|
|
857
|
+
.sc(schemas_0.ListDomainDeliverabilityCampaigns$)
|
|
4031
858
|
.build() {
|
|
4032
859
|
}
|
|
4033
860
|
|
|
@@ -4039,7 +866,7 @@ class ListEmailIdentitiesCommand extends smithyClient.Command
|
|
|
4039
866
|
})
|
|
4040
867
|
.s("SimpleEmailService_v2", "ListEmailIdentities", {})
|
|
4041
868
|
.n("SESv2Client", "ListEmailIdentitiesCommand")
|
|
4042
|
-
.sc(ListEmailIdentities$)
|
|
869
|
+
.sc(schemas_0.ListEmailIdentities$)
|
|
4043
870
|
.build() {
|
|
4044
871
|
}
|
|
4045
872
|
|
|
@@ -4051,7 +878,7 @@ class ListEmailTemplatesCommand extends smithyClient.Command
|
|
|
4051
878
|
})
|
|
4052
879
|
.s("SimpleEmailService_v2", "ListEmailTemplates", {})
|
|
4053
880
|
.n("SESv2Client", "ListEmailTemplatesCommand")
|
|
4054
|
-
.sc(ListEmailTemplates$)
|
|
881
|
+
.sc(schemas_0.ListEmailTemplates$)
|
|
4055
882
|
.build() {
|
|
4056
883
|
}
|
|
4057
884
|
|
|
@@ -4063,7 +890,7 @@ class ListExportJobsCommand extends smithyClient.Command
|
|
|
4063
890
|
})
|
|
4064
891
|
.s("SimpleEmailService_v2", "ListExportJobs", {})
|
|
4065
892
|
.n("SESv2Client", "ListExportJobsCommand")
|
|
4066
|
-
.sc(ListExportJobs$)
|
|
893
|
+
.sc(schemas_0.ListExportJobs$)
|
|
4067
894
|
.build() {
|
|
4068
895
|
}
|
|
4069
896
|
|
|
@@ -4075,7 +902,7 @@ class ListImportJobsCommand extends smithyClient.Command
|
|
|
4075
902
|
})
|
|
4076
903
|
.s("SimpleEmailService_v2", "ListImportJobs", {})
|
|
4077
904
|
.n("SESv2Client", "ListImportJobsCommand")
|
|
4078
|
-
.sc(ListImportJobs$)
|
|
905
|
+
.sc(schemas_0.ListImportJobs$)
|
|
4079
906
|
.build() {
|
|
4080
907
|
}
|
|
4081
908
|
|
|
@@ -4087,7 +914,7 @@ class ListMultiRegionEndpointsCommand extends smithyClient.Command
|
|
|
4087
914
|
})
|
|
4088
915
|
.s("SimpleEmailService_v2", "ListMultiRegionEndpoints", {})
|
|
4089
916
|
.n("SESv2Client", "ListMultiRegionEndpointsCommand")
|
|
4090
|
-
.sc(ListMultiRegionEndpoints$)
|
|
917
|
+
.sc(schemas_0.ListMultiRegionEndpoints$)
|
|
4091
918
|
.build() {
|
|
4092
919
|
}
|
|
4093
920
|
|
|
@@ -4099,7 +926,7 @@ class ListRecommendationsCommand extends smithyClient.Command
|
|
|
4099
926
|
})
|
|
4100
927
|
.s("SimpleEmailService_v2", "ListRecommendations", {})
|
|
4101
928
|
.n("SESv2Client", "ListRecommendationsCommand")
|
|
4102
|
-
.sc(ListRecommendations$)
|
|
929
|
+
.sc(schemas_0.ListRecommendations$)
|
|
4103
930
|
.build() {
|
|
4104
931
|
}
|
|
4105
932
|
|
|
@@ -4111,7 +938,7 @@ class ListReputationEntitiesCommand extends smithyClient.Command
|
|
|
4111
938
|
})
|
|
4112
939
|
.s("SimpleEmailService_v2", "ListReputationEntities", {})
|
|
4113
940
|
.n("SESv2Client", "ListReputationEntitiesCommand")
|
|
4114
|
-
.sc(ListReputationEntities$)
|
|
941
|
+
.sc(schemas_0.ListReputationEntities$)
|
|
4115
942
|
.build() {
|
|
4116
943
|
}
|
|
4117
944
|
|
|
@@ -4123,7 +950,7 @@ class ListResourceTenantsCommand extends smithyClient.Command
|
|
|
4123
950
|
})
|
|
4124
951
|
.s("SimpleEmailService_v2", "ListResourceTenants", {})
|
|
4125
952
|
.n("SESv2Client", "ListResourceTenantsCommand")
|
|
4126
|
-
.sc(ListResourceTenants$)
|
|
953
|
+
.sc(schemas_0.ListResourceTenants$)
|
|
4127
954
|
.build() {
|
|
4128
955
|
}
|
|
4129
956
|
|
|
@@ -4135,7 +962,7 @@ class ListSuppressedDestinationsCommand extends smithyClient.Command
|
|
|
4135
962
|
})
|
|
4136
963
|
.s("SimpleEmailService_v2", "ListSuppressedDestinations", {})
|
|
4137
964
|
.n("SESv2Client", "ListSuppressedDestinationsCommand")
|
|
4138
|
-
.sc(ListSuppressedDestinations$)
|
|
965
|
+
.sc(schemas_0.ListSuppressedDestinations$)
|
|
4139
966
|
.build() {
|
|
4140
967
|
}
|
|
4141
968
|
|
|
@@ -4147,7 +974,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
4147
974
|
})
|
|
4148
975
|
.s("SimpleEmailService_v2", "ListTagsForResource", {})
|
|
4149
976
|
.n("SESv2Client", "ListTagsForResourceCommand")
|
|
4150
|
-
.sc(ListTagsForResource$)
|
|
977
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
4151
978
|
.build() {
|
|
4152
979
|
}
|
|
4153
980
|
|
|
@@ -4159,7 +986,7 @@ class ListTenantResourcesCommand extends smithyClient.Command
|
|
|
4159
986
|
})
|
|
4160
987
|
.s("SimpleEmailService_v2", "ListTenantResources", {})
|
|
4161
988
|
.n("SESv2Client", "ListTenantResourcesCommand")
|
|
4162
|
-
.sc(ListTenantResources$)
|
|
989
|
+
.sc(schemas_0.ListTenantResources$)
|
|
4163
990
|
.build() {
|
|
4164
991
|
}
|
|
4165
992
|
|
|
@@ -4171,7 +998,7 @@ class ListTenantsCommand extends smithyClient.Command
|
|
|
4171
998
|
})
|
|
4172
999
|
.s("SimpleEmailService_v2", "ListTenants", {})
|
|
4173
1000
|
.n("SESv2Client", "ListTenantsCommand")
|
|
4174
|
-
.sc(ListTenants$)
|
|
1001
|
+
.sc(schemas_0.ListTenants$)
|
|
4175
1002
|
.build() {
|
|
4176
1003
|
}
|
|
4177
1004
|
|
|
@@ -4183,7 +1010,7 @@ class PutAccountDedicatedIpWarmupAttributesCommand extends smithyClient.Command
|
|
|
4183
1010
|
})
|
|
4184
1011
|
.s("SimpleEmailService_v2", "PutAccountDedicatedIpWarmupAttributes", {})
|
|
4185
1012
|
.n("SESv2Client", "PutAccountDedicatedIpWarmupAttributesCommand")
|
|
4186
|
-
.sc(PutAccountDedicatedIpWarmupAttributes$)
|
|
1013
|
+
.sc(schemas_0.PutAccountDedicatedIpWarmupAttributes$)
|
|
4187
1014
|
.build() {
|
|
4188
1015
|
}
|
|
4189
1016
|
|
|
@@ -4195,7 +1022,7 @@ class PutAccountDetailsCommand extends smithyClient.Command
|
|
|
4195
1022
|
})
|
|
4196
1023
|
.s("SimpleEmailService_v2", "PutAccountDetails", {})
|
|
4197
1024
|
.n("SESv2Client", "PutAccountDetailsCommand")
|
|
4198
|
-
.sc(PutAccountDetails$)
|
|
1025
|
+
.sc(schemas_0.PutAccountDetails$)
|
|
4199
1026
|
.build() {
|
|
4200
1027
|
}
|
|
4201
1028
|
|
|
@@ -4207,7 +1034,7 @@ class PutAccountSendingAttributesCommand extends smithyClient.Command
|
|
|
4207
1034
|
})
|
|
4208
1035
|
.s("SimpleEmailService_v2", "PutAccountSendingAttributes", {})
|
|
4209
1036
|
.n("SESv2Client", "PutAccountSendingAttributesCommand")
|
|
4210
|
-
.sc(PutAccountSendingAttributes$)
|
|
1037
|
+
.sc(schemas_0.PutAccountSendingAttributes$)
|
|
4211
1038
|
.build() {
|
|
4212
1039
|
}
|
|
4213
1040
|
|
|
@@ -4219,7 +1046,7 @@ class PutAccountSuppressionAttributesCommand extends smithyClient.Command
|
|
|
4219
1046
|
})
|
|
4220
1047
|
.s("SimpleEmailService_v2", "PutAccountSuppressionAttributes", {})
|
|
4221
1048
|
.n("SESv2Client", "PutAccountSuppressionAttributesCommand")
|
|
4222
|
-
.sc(PutAccountSuppressionAttributes$)
|
|
1049
|
+
.sc(schemas_0.PutAccountSuppressionAttributes$)
|
|
4223
1050
|
.build() {
|
|
4224
1051
|
}
|
|
4225
1052
|
|
|
@@ -4231,7 +1058,7 @@ class PutAccountVdmAttributesCommand extends smithyClient.Command
|
|
|
4231
1058
|
})
|
|
4232
1059
|
.s("SimpleEmailService_v2", "PutAccountVdmAttributes", {})
|
|
4233
1060
|
.n("SESv2Client", "PutAccountVdmAttributesCommand")
|
|
4234
|
-
.sc(PutAccountVdmAttributes$)
|
|
1061
|
+
.sc(schemas_0.PutAccountVdmAttributes$)
|
|
4235
1062
|
.build() {
|
|
4236
1063
|
}
|
|
4237
1064
|
|
|
@@ -4243,7 +1070,7 @@ class PutConfigurationSetArchivingOptionsCommand extends smithyClient.Command
|
|
|
4243
1070
|
})
|
|
4244
1071
|
.s("SimpleEmailService_v2", "PutConfigurationSetArchivingOptions", {})
|
|
4245
1072
|
.n("SESv2Client", "PutConfigurationSetArchivingOptionsCommand")
|
|
4246
|
-
.sc(PutConfigurationSetArchivingOptions$)
|
|
1073
|
+
.sc(schemas_0.PutConfigurationSetArchivingOptions$)
|
|
4247
1074
|
.build() {
|
|
4248
1075
|
}
|
|
4249
1076
|
|
|
@@ -4255,7 +1082,7 @@ class PutConfigurationSetDeliveryOptionsCommand extends smithyClient.Command
|
|
|
4255
1082
|
})
|
|
4256
1083
|
.s("SimpleEmailService_v2", "PutConfigurationSetDeliveryOptions", {})
|
|
4257
1084
|
.n("SESv2Client", "PutConfigurationSetDeliveryOptionsCommand")
|
|
4258
|
-
.sc(PutConfigurationSetDeliveryOptions$)
|
|
1085
|
+
.sc(schemas_0.PutConfigurationSetDeliveryOptions$)
|
|
4259
1086
|
.build() {
|
|
4260
1087
|
}
|
|
4261
1088
|
|
|
@@ -4267,7 +1094,7 @@ class PutConfigurationSetReputationOptionsCommand extends smithyClient.Command
|
|
|
4267
1094
|
})
|
|
4268
1095
|
.s("SimpleEmailService_v2", "PutConfigurationSetReputationOptions", {})
|
|
4269
1096
|
.n("SESv2Client", "PutConfigurationSetReputationOptionsCommand")
|
|
4270
|
-
.sc(PutConfigurationSetReputationOptions$)
|
|
1097
|
+
.sc(schemas_0.PutConfigurationSetReputationOptions$)
|
|
4271
1098
|
.build() {
|
|
4272
1099
|
}
|
|
4273
1100
|
|
|
@@ -4279,7 +1106,7 @@ class PutConfigurationSetSendingOptionsCommand extends smithyClient.Command
|
|
|
4279
1106
|
})
|
|
4280
1107
|
.s("SimpleEmailService_v2", "PutConfigurationSetSendingOptions", {})
|
|
4281
1108
|
.n("SESv2Client", "PutConfigurationSetSendingOptionsCommand")
|
|
4282
|
-
.sc(PutConfigurationSetSendingOptions$)
|
|
1109
|
+
.sc(schemas_0.PutConfigurationSetSendingOptions$)
|
|
4283
1110
|
.build() {
|
|
4284
1111
|
}
|
|
4285
1112
|
|
|
@@ -4291,7 +1118,7 @@ class PutConfigurationSetSuppressionOptionsCommand extends smithyClient.Command
|
|
|
4291
1118
|
})
|
|
4292
1119
|
.s("SimpleEmailService_v2", "PutConfigurationSetSuppressionOptions", {})
|
|
4293
1120
|
.n("SESv2Client", "PutConfigurationSetSuppressionOptionsCommand")
|
|
4294
|
-
.sc(PutConfigurationSetSuppressionOptions$)
|
|
1121
|
+
.sc(schemas_0.PutConfigurationSetSuppressionOptions$)
|
|
4295
1122
|
.build() {
|
|
4296
1123
|
}
|
|
4297
1124
|
|
|
@@ -4303,7 +1130,7 @@ class PutConfigurationSetTrackingOptionsCommand extends smithyClient.Command
|
|
|
4303
1130
|
})
|
|
4304
1131
|
.s("SimpleEmailService_v2", "PutConfigurationSetTrackingOptions", {})
|
|
4305
1132
|
.n("SESv2Client", "PutConfigurationSetTrackingOptionsCommand")
|
|
4306
|
-
.sc(PutConfigurationSetTrackingOptions$)
|
|
1133
|
+
.sc(schemas_0.PutConfigurationSetTrackingOptions$)
|
|
4307
1134
|
.build() {
|
|
4308
1135
|
}
|
|
4309
1136
|
|
|
@@ -4315,7 +1142,7 @@ class PutConfigurationSetVdmOptionsCommand extends smithyClient.Command
|
|
|
4315
1142
|
})
|
|
4316
1143
|
.s("SimpleEmailService_v2", "PutConfigurationSetVdmOptions", {})
|
|
4317
1144
|
.n("SESv2Client", "PutConfigurationSetVdmOptionsCommand")
|
|
4318
|
-
.sc(PutConfigurationSetVdmOptions$)
|
|
1145
|
+
.sc(schemas_0.PutConfigurationSetVdmOptions$)
|
|
4319
1146
|
.build() {
|
|
4320
1147
|
}
|
|
4321
1148
|
|
|
@@ -4327,7 +1154,7 @@ class PutDedicatedIpInPoolCommand extends smithyClient.Command
|
|
|
4327
1154
|
})
|
|
4328
1155
|
.s("SimpleEmailService_v2", "PutDedicatedIpInPool", {})
|
|
4329
1156
|
.n("SESv2Client", "PutDedicatedIpInPoolCommand")
|
|
4330
|
-
.sc(PutDedicatedIpInPool$)
|
|
1157
|
+
.sc(schemas_0.PutDedicatedIpInPool$)
|
|
4331
1158
|
.build() {
|
|
4332
1159
|
}
|
|
4333
1160
|
|
|
@@ -4339,7 +1166,7 @@ class PutDedicatedIpPoolScalingAttributesCommand extends smithyClient.Command
|
|
|
4339
1166
|
})
|
|
4340
1167
|
.s("SimpleEmailService_v2", "PutDedicatedIpPoolScalingAttributes", {})
|
|
4341
1168
|
.n("SESv2Client", "PutDedicatedIpPoolScalingAttributesCommand")
|
|
4342
|
-
.sc(PutDedicatedIpPoolScalingAttributes$)
|
|
1169
|
+
.sc(schemas_0.PutDedicatedIpPoolScalingAttributes$)
|
|
4343
1170
|
.build() {
|
|
4344
1171
|
}
|
|
4345
1172
|
|
|
@@ -4351,7 +1178,7 @@ class PutDedicatedIpWarmupAttributesCommand extends smithyClient.Command
|
|
|
4351
1178
|
})
|
|
4352
1179
|
.s("SimpleEmailService_v2", "PutDedicatedIpWarmupAttributes", {})
|
|
4353
1180
|
.n("SESv2Client", "PutDedicatedIpWarmupAttributesCommand")
|
|
4354
|
-
.sc(PutDedicatedIpWarmupAttributes$)
|
|
1181
|
+
.sc(schemas_0.PutDedicatedIpWarmupAttributes$)
|
|
4355
1182
|
.build() {
|
|
4356
1183
|
}
|
|
4357
1184
|
|
|
@@ -4363,7 +1190,7 @@ class PutDeliverabilityDashboardOptionCommand extends smithyClient.Command
|
|
|
4363
1190
|
})
|
|
4364
1191
|
.s("SimpleEmailService_v2", "PutDeliverabilityDashboardOption", {})
|
|
4365
1192
|
.n("SESv2Client", "PutDeliverabilityDashboardOptionCommand")
|
|
4366
|
-
.sc(PutDeliverabilityDashboardOption$)
|
|
1193
|
+
.sc(schemas_0.PutDeliverabilityDashboardOption$)
|
|
4367
1194
|
.build() {
|
|
4368
1195
|
}
|
|
4369
1196
|
|
|
@@ -4375,7 +1202,7 @@ class PutEmailIdentityConfigurationSetAttributesCommand extends smithyClient.Com
|
|
|
4375
1202
|
})
|
|
4376
1203
|
.s("SimpleEmailService_v2", "PutEmailIdentityConfigurationSetAttributes", {})
|
|
4377
1204
|
.n("SESv2Client", "PutEmailIdentityConfigurationSetAttributesCommand")
|
|
4378
|
-
.sc(PutEmailIdentityConfigurationSetAttributes$)
|
|
1205
|
+
.sc(schemas_0.PutEmailIdentityConfigurationSetAttributes$)
|
|
4379
1206
|
.build() {
|
|
4380
1207
|
}
|
|
4381
1208
|
|
|
@@ -4387,7 +1214,7 @@ class PutEmailIdentityDkimAttributesCommand extends smithyClient.Command
|
|
|
4387
1214
|
})
|
|
4388
1215
|
.s("SimpleEmailService_v2", "PutEmailIdentityDkimAttributes", {})
|
|
4389
1216
|
.n("SESv2Client", "PutEmailIdentityDkimAttributesCommand")
|
|
4390
|
-
.sc(PutEmailIdentityDkimAttributes$)
|
|
1217
|
+
.sc(schemas_0.PutEmailIdentityDkimAttributes$)
|
|
4391
1218
|
.build() {
|
|
4392
1219
|
}
|
|
4393
1220
|
|
|
@@ -4399,7 +1226,7 @@ class PutEmailIdentityDkimSigningAttributesCommand extends smithyClient.Command
|
|
|
4399
1226
|
})
|
|
4400
1227
|
.s("SimpleEmailService_v2", "PutEmailIdentityDkimSigningAttributes", {})
|
|
4401
1228
|
.n("SESv2Client", "PutEmailIdentityDkimSigningAttributesCommand")
|
|
4402
|
-
.sc(PutEmailIdentityDkimSigningAttributes$)
|
|
1229
|
+
.sc(schemas_0.PutEmailIdentityDkimSigningAttributes$)
|
|
4403
1230
|
.build() {
|
|
4404
1231
|
}
|
|
4405
1232
|
|
|
@@ -4411,7 +1238,7 @@ class PutEmailIdentityFeedbackAttributesCommand extends smithyClient.Command
|
|
|
4411
1238
|
})
|
|
4412
1239
|
.s("SimpleEmailService_v2", "PutEmailIdentityFeedbackAttributes", {})
|
|
4413
1240
|
.n("SESv2Client", "PutEmailIdentityFeedbackAttributesCommand")
|
|
4414
|
-
.sc(PutEmailIdentityFeedbackAttributes$)
|
|
1241
|
+
.sc(schemas_0.PutEmailIdentityFeedbackAttributes$)
|
|
4415
1242
|
.build() {
|
|
4416
1243
|
}
|
|
4417
1244
|
|
|
@@ -4423,7 +1250,7 @@ class PutEmailIdentityMailFromAttributesCommand extends smithyClient.Command
|
|
|
4423
1250
|
})
|
|
4424
1251
|
.s("SimpleEmailService_v2", "PutEmailIdentityMailFromAttributes", {})
|
|
4425
1252
|
.n("SESv2Client", "PutEmailIdentityMailFromAttributesCommand")
|
|
4426
|
-
.sc(PutEmailIdentityMailFromAttributes$)
|
|
1253
|
+
.sc(schemas_0.PutEmailIdentityMailFromAttributes$)
|
|
4427
1254
|
.build() {
|
|
4428
1255
|
}
|
|
4429
1256
|
|
|
@@ -4435,7 +1262,7 @@ class PutSuppressedDestinationCommand extends smithyClient.Command
|
|
|
4435
1262
|
})
|
|
4436
1263
|
.s("SimpleEmailService_v2", "PutSuppressedDestination", {})
|
|
4437
1264
|
.n("SESv2Client", "PutSuppressedDestinationCommand")
|
|
4438
|
-
.sc(PutSuppressedDestination$)
|
|
1265
|
+
.sc(schemas_0.PutSuppressedDestination$)
|
|
4439
1266
|
.build() {
|
|
4440
1267
|
}
|
|
4441
1268
|
|
|
@@ -4450,7 +1277,7 @@ class SendBulkEmailCommand extends smithyClient.Command
|
|
|
4450
1277
|
})
|
|
4451
1278
|
.s("SimpleEmailService_v2", "SendBulkEmail", {})
|
|
4452
1279
|
.n("SESv2Client", "SendBulkEmailCommand")
|
|
4453
|
-
.sc(SendBulkEmail$)
|
|
1280
|
+
.sc(schemas_0.SendBulkEmail$)
|
|
4454
1281
|
.build() {
|
|
4455
1282
|
}
|
|
4456
1283
|
|
|
@@ -4462,7 +1289,7 @@ class SendCustomVerificationEmailCommand extends smithyClient.Command
|
|
|
4462
1289
|
})
|
|
4463
1290
|
.s("SimpleEmailService_v2", "SendCustomVerificationEmail", {})
|
|
4464
1291
|
.n("SESv2Client", "SendCustomVerificationEmailCommand")
|
|
4465
|
-
.sc(SendCustomVerificationEmail$)
|
|
1292
|
+
.sc(schemas_0.SendCustomVerificationEmail$)
|
|
4466
1293
|
.build() {
|
|
4467
1294
|
}
|
|
4468
1295
|
|
|
@@ -4477,7 +1304,7 @@ class SendEmailCommand extends smithyClient.Command
|
|
|
4477
1304
|
})
|
|
4478
1305
|
.s("SimpleEmailService_v2", "SendEmail", {})
|
|
4479
1306
|
.n("SESv2Client", "SendEmailCommand")
|
|
4480
|
-
.sc(SendEmail$)
|
|
1307
|
+
.sc(schemas_0.SendEmail$)
|
|
4481
1308
|
.build() {
|
|
4482
1309
|
}
|
|
4483
1310
|
|
|
@@ -4489,7 +1316,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
4489
1316
|
})
|
|
4490
1317
|
.s("SimpleEmailService_v2", "TagResource", {})
|
|
4491
1318
|
.n("SESv2Client", "TagResourceCommand")
|
|
4492
|
-
.sc(TagResource$)
|
|
1319
|
+
.sc(schemas_0.TagResource$)
|
|
4493
1320
|
.build() {
|
|
4494
1321
|
}
|
|
4495
1322
|
|
|
@@ -4501,7 +1328,7 @@ class TestRenderEmailTemplateCommand extends smithyClient.Command
|
|
|
4501
1328
|
})
|
|
4502
1329
|
.s("SimpleEmailService_v2", "TestRenderEmailTemplate", {})
|
|
4503
1330
|
.n("SESv2Client", "TestRenderEmailTemplateCommand")
|
|
4504
|
-
.sc(TestRenderEmailTemplate$)
|
|
1331
|
+
.sc(schemas_0.TestRenderEmailTemplate$)
|
|
4505
1332
|
.build() {
|
|
4506
1333
|
}
|
|
4507
1334
|
|
|
@@ -4513,7 +1340,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
4513
1340
|
})
|
|
4514
1341
|
.s("SimpleEmailService_v2", "UntagResource", {})
|
|
4515
1342
|
.n("SESv2Client", "UntagResourceCommand")
|
|
4516
|
-
.sc(UntagResource$)
|
|
1343
|
+
.sc(schemas_0.UntagResource$)
|
|
4517
1344
|
.build() {
|
|
4518
1345
|
}
|
|
4519
1346
|
|
|
@@ -4525,7 +1352,7 @@ class UpdateConfigurationSetEventDestinationCommand extends smithyClient.Command
|
|
|
4525
1352
|
})
|
|
4526
1353
|
.s("SimpleEmailService_v2", "UpdateConfigurationSetEventDestination", {})
|
|
4527
1354
|
.n("SESv2Client", "UpdateConfigurationSetEventDestinationCommand")
|
|
4528
|
-
.sc(UpdateConfigurationSetEventDestination$)
|
|
1355
|
+
.sc(schemas_0.UpdateConfigurationSetEventDestination$)
|
|
4529
1356
|
.build() {
|
|
4530
1357
|
}
|
|
4531
1358
|
|
|
@@ -4537,7 +1364,7 @@ class UpdateContactCommand extends smithyClient.Command
|
|
|
4537
1364
|
})
|
|
4538
1365
|
.s("SimpleEmailService_v2", "UpdateContact", {})
|
|
4539
1366
|
.n("SESv2Client", "UpdateContactCommand")
|
|
4540
|
-
.sc(UpdateContact$)
|
|
1367
|
+
.sc(schemas_0.UpdateContact$)
|
|
4541
1368
|
.build() {
|
|
4542
1369
|
}
|
|
4543
1370
|
|
|
@@ -4549,7 +1376,7 @@ class UpdateContactListCommand extends smithyClient.Command
|
|
|
4549
1376
|
})
|
|
4550
1377
|
.s("SimpleEmailService_v2", "UpdateContactList", {})
|
|
4551
1378
|
.n("SESv2Client", "UpdateContactListCommand")
|
|
4552
|
-
.sc(UpdateContactList$)
|
|
1379
|
+
.sc(schemas_0.UpdateContactList$)
|
|
4553
1380
|
.build() {
|
|
4554
1381
|
}
|
|
4555
1382
|
|
|
@@ -4561,7 +1388,7 @@ class UpdateCustomVerificationEmailTemplateCommand extends smithyClient.Command
|
|
|
4561
1388
|
})
|
|
4562
1389
|
.s("SimpleEmailService_v2", "UpdateCustomVerificationEmailTemplate", {})
|
|
4563
1390
|
.n("SESv2Client", "UpdateCustomVerificationEmailTemplateCommand")
|
|
4564
|
-
.sc(UpdateCustomVerificationEmailTemplate$)
|
|
1391
|
+
.sc(schemas_0.UpdateCustomVerificationEmailTemplate$)
|
|
4565
1392
|
.build() {
|
|
4566
1393
|
}
|
|
4567
1394
|
|
|
@@ -4573,7 +1400,7 @@ class UpdateEmailIdentityPolicyCommand extends smithyClient.Command
|
|
|
4573
1400
|
})
|
|
4574
1401
|
.s("SimpleEmailService_v2", "UpdateEmailIdentityPolicy", {})
|
|
4575
1402
|
.n("SESv2Client", "UpdateEmailIdentityPolicyCommand")
|
|
4576
|
-
.sc(UpdateEmailIdentityPolicy$)
|
|
1403
|
+
.sc(schemas_0.UpdateEmailIdentityPolicy$)
|
|
4577
1404
|
.build() {
|
|
4578
1405
|
}
|
|
4579
1406
|
|
|
@@ -4585,7 +1412,7 @@ class UpdateEmailTemplateCommand extends smithyClient.Command
|
|
|
4585
1412
|
})
|
|
4586
1413
|
.s("SimpleEmailService_v2", "UpdateEmailTemplate", {})
|
|
4587
1414
|
.n("SESv2Client", "UpdateEmailTemplateCommand")
|
|
4588
|
-
.sc(UpdateEmailTemplate$)
|
|
1415
|
+
.sc(schemas_0.UpdateEmailTemplate$)
|
|
4589
1416
|
.build() {
|
|
4590
1417
|
}
|
|
4591
1418
|
|
|
@@ -4597,7 +1424,7 @@ class UpdateReputationEntityCustomerManagedStatusCommand extends smithyClient.Co
|
|
|
4597
1424
|
})
|
|
4598
1425
|
.s("SimpleEmailService_v2", "UpdateReputationEntityCustomerManagedStatus", {})
|
|
4599
1426
|
.n("SESv2Client", "UpdateReputationEntityCustomerManagedStatusCommand")
|
|
4600
|
-
.sc(UpdateReputationEntityCustomerManagedStatus$)
|
|
1427
|
+
.sc(schemas_0.UpdateReputationEntityCustomerManagedStatus$)
|
|
4601
1428
|
.build() {
|
|
4602
1429
|
}
|
|
4603
1430
|
|
|
@@ -4609,7 +1436,7 @@ class UpdateReputationEntityPolicyCommand extends smithyClient.Command
|
|
|
4609
1436
|
})
|
|
4610
1437
|
.s("SimpleEmailService_v2", "UpdateReputationEntityPolicy", {})
|
|
4611
1438
|
.n("SESv2Client", "UpdateReputationEntityPolicyCommand")
|
|
4612
|
-
.sc(UpdateReputationEntityPolicy$)
|
|
1439
|
+
.sc(schemas_0.UpdateReputationEntityPolicy$)
|
|
4613
1440
|
.build() {
|
|
4614
1441
|
}
|
|
4615
1442
|
|
|
@@ -5102,638 +1929,172 @@ Object.defineProperty(exports, "__Client", {
|
|
|
5102
1929
|
enumerable: true,
|
|
5103
1930
|
get: function () { return smithyClient.Client; }
|
|
5104
1931
|
});
|
|
5105
|
-
exports
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
5110
|
-
exports.ArchivingOptions$ = ArchivingOptions$;
|
|
5111
|
-
exports.Attachment$ = Attachment$;
|
|
1932
|
+
Object.defineProperty(exports, "SESv2ServiceException", {
|
|
1933
|
+
enumerable: true,
|
|
1934
|
+
get: function () { return SESv2ServiceException.SESv2ServiceException; }
|
|
1935
|
+
});
|
|
5112
1936
|
exports.AttachmentContentDisposition = AttachmentContentDisposition;
|
|
5113
1937
|
exports.AttachmentContentTransferEncoding = AttachmentContentTransferEncoding;
|
|
5114
|
-
exports.BadRequestException = BadRequestException;
|
|
5115
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
5116
|
-
exports.BatchGetMetricData$ = BatchGetMetricData$;
|
|
5117
1938
|
exports.BatchGetMetricDataCommand = BatchGetMetricDataCommand;
|
|
5118
|
-
exports.BatchGetMetricDataQuery$ = BatchGetMetricDataQuery$;
|
|
5119
|
-
exports.BatchGetMetricDataRequest$ = BatchGetMetricDataRequest$;
|
|
5120
|
-
exports.BatchGetMetricDataResponse$ = BatchGetMetricDataResponse$;
|
|
5121
1939
|
exports.BehaviorOnMxFailure = BehaviorOnMxFailure;
|
|
5122
|
-
exports.BlacklistEntry$ = BlacklistEntry$;
|
|
5123
|
-
exports.Body$ = Body$;
|
|
5124
|
-
exports.Bounce$ = Bounce$;
|
|
5125
1940
|
exports.BounceType = BounceType;
|
|
5126
|
-
exports.BulkEmailContent$ = BulkEmailContent$;
|
|
5127
|
-
exports.BulkEmailEntry$ = BulkEmailEntry$;
|
|
5128
|
-
exports.BulkEmailEntryResult$ = BulkEmailEntryResult$;
|
|
5129
1941
|
exports.BulkEmailStatus = BulkEmailStatus;
|
|
5130
|
-
exports.CancelExportJob$ = CancelExportJob$;
|
|
5131
1942
|
exports.CancelExportJobCommand = CancelExportJobCommand;
|
|
5132
|
-
exports.CancelExportJobRequest$ = CancelExportJobRequest$;
|
|
5133
|
-
exports.CancelExportJobResponse$ = CancelExportJobResponse$;
|
|
5134
|
-
exports.CloudWatchDestination$ = CloudWatchDestination$;
|
|
5135
|
-
exports.CloudWatchDimensionConfiguration$ = CloudWatchDimensionConfiguration$;
|
|
5136
|
-
exports.Complaint$ = Complaint$;
|
|
5137
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
5138
|
-
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
5139
|
-
exports.ConflictException = ConflictException;
|
|
5140
|
-
exports.ConflictException$ = ConflictException$;
|
|
5141
|
-
exports.Contact$ = Contact$;
|
|
5142
1943
|
exports.ContactLanguage = ContactLanguage;
|
|
5143
|
-
exports.ContactList$ = ContactList$;
|
|
5144
|
-
exports.ContactListDestination$ = ContactListDestination$;
|
|
5145
1944
|
exports.ContactListImportAction = ContactListImportAction;
|
|
5146
|
-
exports.Content$ = Content$;
|
|
5147
|
-
exports.CreateConfigurationSet$ = CreateConfigurationSet$;
|
|
5148
1945
|
exports.CreateConfigurationSetCommand = CreateConfigurationSetCommand;
|
|
5149
|
-
exports.CreateConfigurationSetEventDestination$ = CreateConfigurationSetEventDestination$;
|
|
5150
1946
|
exports.CreateConfigurationSetEventDestinationCommand = CreateConfigurationSetEventDestinationCommand;
|
|
5151
|
-
exports.CreateConfigurationSetEventDestinationRequest$ = CreateConfigurationSetEventDestinationRequest$;
|
|
5152
|
-
exports.CreateConfigurationSetEventDestinationResponse$ = CreateConfigurationSetEventDestinationResponse$;
|
|
5153
|
-
exports.CreateConfigurationSetRequest$ = CreateConfigurationSetRequest$;
|
|
5154
|
-
exports.CreateConfigurationSetResponse$ = CreateConfigurationSetResponse$;
|
|
5155
|
-
exports.CreateContact$ = CreateContact$;
|
|
5156
1947
|
exports.CreateContactCommand = CreateContactCommand;
|
|
5157
|
-
exports.CreateContactList$ = CreateContactList$;
|
|
5158
1948
|
exports.CreateContactListCommand = CreateContactListCommand;
|
|
5159
|
-
exports.CreateContactListRequest$ = CreateContactListRequest$;
|
|
5160
|
-
exports.CreateContactListResponse$ = CreateContactListResponse$;
|
|
5161
|
-
exports.CreateContactRequest$ = CreateContactRequest$;
|
|
5162
|
-
exports.CreateContactResponse$ = CreateContactResponse$;
|
|
5163
|
-
exports.CreateCustomVerificationEmailTemplate$ = CreateCustomVerificationEmailTemplate$;
|
|
5164
1949
|
exports.CreateCustomVerificationEmailTemplateCommand = CreateCustomVerificationEmailTemplateCommand;
|
|
5165
|
-
exports.CreateCustomVerificationEmailTemplateRequest$ = CreateCustomVerificationEmailTemplateRequest$;
|
|
5166
|
-
exports.CreateCustomVerificationEmailTemplateResponse$ = CreateCustomVerificationEmailTemplateResponse$;
|
|
5167
|
-
exports.CreateDedicatedIpPool$ = CreateDedicatedIpPool$;
|
|
5168
1950
|
exports.CreateDedicatedIpPoolCommand = CreateDedicatedIpPoolCommand;
|
|
5169
|
-
exports.CreateDedicatedIpPoolRequest$ = CreateDedicatedIpPoolRequest$;
|
|
5170
|
-
exports.CreateDedicatedIpPoolResponse$ = CreateDedicatedIpPoolResponse$;
|
|
5171
|
-
exports.CreateDeliverabilityTestReport$ = CreateDeliverabilityTestReport$;
|
|
5172
1951
|
exports.CreateDeliverabilityTestReportCommand = CreateDeliverabilityTestReportCommand;
|
|
5173
|
-
exports.CreateDeliverabilityTestReportRequest$ = CreateDeliverabilityTestReportRequest$;
|
|
5174
|
-
exports.CreateDeliverabilityTestReportResponse$ = CreateDeliverabilityTestReportResponse$;
|
|
5175
|
-
exports.CreateEmailIdentity$ = CreateEmailIdentity$;
|
|
5176
1952
|
exports.CreateEmailIdentityCommand = CreateEmailIdentityCommand;
|
|
5177
|
-
exports.CreateEmailIdentityPolicy$ = CreateEmailIdentityPolicy$;
|
|
5178
1953
|
exports.CreateEmailIdentityPolicyCommand = CreateEmailIdentityPolicyCommand;
|
|
5179
|
-
exports.CreateEmailIdentityPolicyRequest$ = CreateEmailIdentityPolicyRequest$;
|
|
5180
|
-
exports.CreateEmailIdentityPolicyResponse$ = CreateEmailIdentityPolicyResponse$;
|
|
5181
|
-
exports.CreateEmailIdentityRequest$ = CreateEmailIdentityRequest$;
|
|
5182
|
-
exports.CreateEmailIdentityResponse$ = CreateEmailIdentityResponse$;
|
|
5183
|
-
exports.CreateEmailTemplate$ = CreateEmailTemplate$;
|
|
5184
1954
|
exports.CreateEmailTemplateCommand = CreateEmailTemplateCommand;
|
|
5185
|
-
exports.CreateEmailTemplateRequest$ = CreateEmailTemplateRequest$;
|
|
5186
|
-
exports.CreateEmailTemplateResponse$ = CreateEmailTemplateResponse$;
|
|
5187
|
-
exports.CreateExportJob$ = CreateExportJob$;
|
|
5188
1955
|
exports.CreateExportJobCommand = CreateExportJobCommand;
|
|
5189
|
-
exports.CreateExportJobRequest$ = CreateExportJobRequest$;
|
|
5190
|
-
exports.CreateExportJobResponse$ = CreateExportJobResponse$;
|
|
5191
|
-
exports.CreateImportJob$ = CreateImportJob$;
|
|
5192
1956
|
exports.CreateImportJobCommand = CreateImportJobCommand;
|
|
5193
|
-
exports.CreateImportJobRequest$ = CreateImportJobRequest$;
|
|
5194
|
-
exports.CreateImportJobResponse$ = CreateImportJobResponse$;
|
|
5195
|
-
exports.CreateMultiRegionEndpoint$ = CreateMultiRegionEndpoint$;
|
|
5196
1957
|
exports.CreateMultiRegionEndpointCommand = CreateMultiRegionEndpointCommand;
|
|
5197
|
-
exports.CreateMultiRegionEndpointRequest$ = CreateMultiRegionEndpointRequest$;
|
|
5198
|
-
exports.CreateMultiRegionEndpointResponse$ = CreateMultiRegionEndpointResponse$;
|
|
5199
|
-
exports.CreateTenant$ = CreateTenant$;
|
|
5200
1958
|
exports.CreateTenantCommand = CreateTenantCommand;
|
|
5201
|
-
exports.CreateTenantRequest$ = CreateTenantRequest$;
|
|
5202
|
-
exports.CreateTenantResourceAssociation$ = CreateTenantResourceAssociation$;
|
|
5203
1959
|
exports.CreateTenantResourceAssociationCommand = CreateTenantResourceAssociationCommand;
|
|
5204
|
-
exports.CreateTenantResourceAssociationRequest$ = CreateTenantResourceAssociationRequest$;
|
|
5205
|
-
exports.CreateTenantResourceAssociationResponse$ = CreateTenantResourceAssociationResponse$;
|
|
5206
|
-
exports.CreateTenantResponse$ = CreateTenantResponse$;
|
|
5207
|
-
exports.CustomVerificationEmailTemplateMetadata$ = CustomVerificationEmailTemplateMetadata$;
|
|
5208
|
-
exports.DailyVolume$ = DailyVolume$;
|
|
5209
|
-
exports.DashboardAttributes$ = DashboardAttributes$;
|
|
5210
|
-
exports.DashboardOptions$ = DashboardOptions$;
|
|
5211
1960
|
exports.DataFormat = DataFormat;
|
|
5212
|
-
exports.DedicatedIp$ = DedicatedIp$;
|
|
5213
|
-
exports.DedicatedIpPool$ = DedicatedIpPool$;
|
|
5214
|
-
exports.DeleteConfigurationSet$ = DeleteConfigurationSet$;
|
|
5215
1961
|
exports.DeleteConfigurationSetCommand = DeleteConfigurationSetCommand;
|
|
5216
|
-
exports.DeleteConfigurationSetEventDestination$ = DeleteConfigurationSetEventDestination$;
|
|
5217
1962
|
exports.DeleteConfigurationSetEventDestinationCommand = DeleteConfigurationSetEventDestinationCommand;
|
|
5218
|
-
exports.DeleteConfigurationSetEventDestinationRequest$ = DeleteConfigurationSetEventDestinationRequest$;
|
|
5219
|
-
exports.DeleteConfigurationSetEventDestinationResponse$ = DeleteConfigurationSetEventDestinationResponse$;
|
|
5220
|
-
exports.DeleteConfigurationSetRequest$ = DeleteConfigurationSetRequest$;
|
|
5221
|
-
exports.DeleteConfigurationSetResponse$ = DeleteConfigurationSetResponse$;
|
|
5222
|
-
exports.DeleteContact$ = DeleteContact$;
|
|
5223
1963
|
exports.DeleteContactCommand = DeleteContactCommand;
|
|
5224
|
-
exports.DeleteContactList$ = DeleteContactList$;
|
|
5225
1964
|
exports.DeleteContactListCommand = DeleteContactListCommand;
|
|
5226
|
-
exports.DeleteContactListRequest$ = DeleteContactListRequest$;
|
|
5227
|
-
exports.DeleteContactListResponse$ = DeleteContactListResponse$;
|
|
5228
|
-
exports.DeleteContactRequest$ = DeleteContactRequest$;
|
|
5229
|
-
exports.DeleteContactResponse$ = DeleteContactResponse$;
|
|
5230
|
-
exports.DeleteCustomVerificationEmailTemplate$ = DeleteCustomVerificationEmailTemplate$;
|
|
5231
1965
|
exports.DeleteCustomVerificationEmailTemplateCommand = DeleteCustomVerificationEmailTemplateCommand;
|
|
5232
|
-
exports.DeleteCustomVerificationEmailTemplateRequest$ = DeleteCustomVerificationEmailTemplateRequest$;
|
|
5233
|
-
exports.DeleteCustomVerificationEmailTemplateResponse$ = DeleteCustomVerificationEmailTemplateResponse$;
|
|
5234
|
-
exports.DeleteDedicatedIpPool$ = DeleteDedicatedIpPool$;
|
|
5235
1966
|
exports.DeleteDedicatedIpPoolCommand = DeleteDedicatedIpPoolCommand;
|
|
5236
|
-
exports.DeleteDedicatedIpPoolRequest$ = DeleteDedicatedIpPoolRequest$;
|
|
5237
|
-
exports.DeleteDedicatedIpPoolResponse$ = DeleteDedicatedIpPoolResponse$;
|
|
5238
|
-
exports.DeleteEmailIdentity$ = DeleteEmailIdentity$;
|
|
5239
1967
|
exports.DeleteEmailIdentityCommand = DeleteEmailIdentityCommand;
|
|
5240
|
-
exports.DeleteEmailIdentityPolicy$ = DeleteEmailIdentityPolicy$;
|
|
5241
1968
|
exports.DeleteEmailIdentityPolicyCommand = DeleteEmailIdentityPolicyCommand;
|
|
5242
|
-
exports.DeleteEmailIdentityPolicyRequest$ = DeleteEmailIdentityPolicyRequest$;
|
|
5243
|
-
exports.DeleteEmailIdentityPolicyResponse$ = DeleteEmailIdentityPolicyResponse$;
|
|
5244
|
-
exports.DeleteEmailIdentityRequest$ = DeleteEmailIdentityRequest$;
|
|
5245
|
-
exports.DeleteEmailIdentityResponse$ = DeleteEmailIdentityResponse$;
|
|
5246
|
-
exports.DeleteEmailTemplate$ = DeleteEmailTemplate$;
|
|
5247
1969
|
exports.DeleteEmailTemplateCommand = DeleteEmailTemplateCommand;
|
|
5248
|
-
exports.DeleteEmailTemplateRequest$ = DeleteEmailTemplateRequest$;
|
|
5249
|
-
exports.DeleteEmailTemplateResponse$ = DeleteEmailTemplateResponse$;
|
|
5250
|
-
exports.DeleteMultiRegionEndpoint$ = DeleteMultiRegionEndpoint$;
|
|
5251
1970
|
exports.DeleteMultiRegionEndpointCommand = DeleteMultiRegionEndpointCommand;
|
|
5252
|
-
exports.DeleteMultiRegionEndpointRequest$ = DeleteMultiRegionEndpointRequest$;
|
|
5253
|
-
exports.DeleteMultiRegionEndpointResponse$ = DeleteMultiRegionEndpointResponse$;
|
|
5254
|
-
exports.DeleteSuppressedDestination$ = DeleteSuppressedDestination$;
|
|
5255
1971
|
exports.DeleteSuppressedDestinationCommand = DeleteSuppressedDestinationCommand;
|
|
5256
|
-
exports.DeleteSuppressedDestinationRequest$ = DeleteSuppressedDestinationRequest$;
|
|
5257
|
-
exports.DeleteSuppressedDestinationResponse$ = DeleteSuppressedDestinationResponse$;
|
|
5258
|
-
exports.DeleteTenant$ = DeleteTenant$;
|
|
5259
1972
|
exports.DeleteTenantCommand = DeleteTenantCommand;
|
|
5260
|
-
exports.DeleteTenantRequest$ = DeleteTenantRequest$;
|
|
5261
|
-
exports.DeleteTenantResourceAssociation$ = DeleteTenantResourceAssociation$;
|
|
5262
1973
|
exports.DeleteTenantResourceAssociationCommand = DeleteTenantResourceAssociationCommand;
|
|
5263
|
-
exports.DeleteTenantResourceAssociationRequest$ = DeleteTenantResourceAssociationRequest$;
|
|
5264
|
-
exports.DeleteTenantResourceAssociationResponse$ = DeleteTenantResourceAssociationResponse$;
|
|
5265
|
-
exports.DeleteTenantResponse$ = DeleteTenantResponse$;
|
|
5266
1974
|
exports.DeliverabilityDashboardAccountStatus = DeliverabilityDashboardAccountStatus;
|
|
5267
|
-
exports.DeliverabilityTestReport$ = DeliverabilityTestReport$;
|
|
5268
1975
|
exports.DeliverabilityTestStatus = DeliverabilityTestStatus;
|
|
5269
1976
|
exports.DeliveryEventType = DeliveryEventType;
|
|
5270
|
-
exports.DeliveryOptions$ = DeliveryOptions$;
|
|
5271
|
-
exports.Destination$ = Destination$;
|
|
5272
|
-
exports.Details$ = Details$;
|
|
5273
1977
|
exports.DimensionValueSource = DimensionValueSource;
|
|
5274
|
-
exports.DkimAttributes$ = DkimAttributes$;
|
|
5275
|
-
exports.DkimSigningAttributes$ = DkimSigningAttributes$;
|
|
5276
1978
|
exports.DkimSigningAttributesOrigin = DkimSigningAttributesOrigin;
|
|
5277
1979
|
exports.DkimSigningKeyLength = DkimSigningKeyLength;
|
|
5278
1980
|
exports.DkimStatus = DkimStatus;
|
|
5279
|
-
exports.DomainDeliverabilityCampaign$ = DomainDeliverabilityCampaign$;
|
|
5280
|
-
exports.DomainDeliverabilityTrackingOption$ = DomainDeliverabilityTrackingOption$;
|
|
5281
|
-
exports.DomainIspPlacement$ = DomainIspPlacement$;
|
|
5282
1981
|
exports.EmailAddressInsightsConfidenceVerdict = EmailAddressInsightsConfidenceVerdict;
|
|
5283
|
-
exports.EmailAddressInsightsMailboxEvaluations$ = EmailAddressInsightsMailboxEvaluations$;
|
|
5284
|
-
exports.EmailAddressInsightsVerdict$ = EmailAddressInsightsVerdict$;
|
|
5285
|
-
exports.EmailContent$ = EmailContent$;
|
|
5286
|
-
exports.EmailInsights$ = EmailInsights$;
|
|
5287
|
-
exports.EmailTemplateContent$ = EmailTemplateContent$;
|
|
5288
|
-
exports.EmailTemplateMetadata$ = EmailTemplateMetadata$;
|
|
5289
1982
|
exports.EngagementEventType = EngagementEventType;
|
|
5290
|
-
exports.EventBridgeDestination$ = EventBridgeDestination$;
|
|
5291
|
-
exports.EventDestination$ = EventDestination$;
|
|
5292
|
-
exports.EventDestinationDefinition$ = EventDestinationDefinition$;
|
|
5293
|
-
exports.EventDetails$ = EventDetails$;
|
|
5294
1983
|
exports.EventType = EventType;
|
|
5295
|
-
exports.ExportDataSource$ = ExportDataSource$;
|
|
5296
|
-
exports.ExportDestination$ = ExportDestination$;
|
|
5297
|
-
exports.ExportJobSummary$ = ExportJobSummary$;
|
|
5298
|
-
exports.ExportMetric$ = ExportMetric$;
|
|
5299
1984
|
exports.ExportSourceType = ExportSourceType;
|
|
5300
|
-
exports.ExportStatistics$ = ExportStatistics$;
|
|
5301
|
-
exports.FailureInfo$ = FailureInfo$;
|
|
5302
1985
|
exports.FeatureStatus = FeatureStatus;
|
|
5303
|
-
exports.GetAccount$ = GetAccount$;
|
|
5304
1986
|
exports.GetAccountCommand = GetAccountCommand;
|
|
5305
|
-
exports.GetAccountRequest$ = GetAccountRequest$;
|
|
5306
|
-
exports.GetAccountResponse$ = GetAccountResponse$;
|
|
5307
|
-
exports.GetBlacklistReports$ = GetBlacklistReports$;
|
|
5308
1987
|
exports.GetBlacklistReportsCommand = GetBlacklistReportsCommand;
|
|
5309
|
-
exports.GetBlacklistReportsRequest$ = GetBlacklistReportsRequest$;
|
|
5310
|
-
exports.GetBlacklistReportsResponse$ = GetBlacklistReportsResponse$;
|
|
5311
|
-
exports.GetConfigurationSet$ = GetConfigurationSet$;
|
|
5312
1988
|
exports.GetConfigurationSetCommand = GetConfigurationSetCommand;
|
|
5313
|
-
exports.GetConfigurationSetEventDestinations$ = GetConfigurationSetEventDestinations$;
|
|
5314
1989
|
exports.GetConfigurationSetEventDestinationsCommand = GetConfigurationSetEventDestinationsCommand;
|
|
5315
|
-
exports.GetConfigurationSetEventDestinationsRequest$ = GetConfigurationSetEventDestinationsRequest$;
|
|
5316
|
-
exports.GetConfigurationSetEventDestinationsResponse$ = GetConfigurationSetEventDestinationsResponse$;
|
|
5317
|
-
exports.GetConfigurationSetRequest$ = GetConfigurationSetRequest$;
|
|
5318
|
-
exports.GetConfigurationSetResponse$ = GetConfigurationSetResponse$;
|
|
5319
|
-
exports.GetContact$ = GetContact$;
|
|
5320
1990
|
exports.GetContactCommand = GetContactCommand;
|
|
5321
|
-
exports.GetContactList$ = GetContactList$;
|
|
5322
1991
|
exports.GetContactListCommand = GetContactListCommand;
|
|
5323
|
-
exports.GetContactListRequest$ = GetContactListRequest$;
|
|
5324
|
-
exports.GetContactListResponse$ = GetContactListResponse$;
|
|
5325
|
-
exports.GetContactRequest$ = GetContactRequest$;
|
|
5326
|
-
exports.GetContactResponse$ = GetContactResponse$;
|
|
5327
|
-
exports.GetCustomVerificationEmailTemplate$ = GetCustomVerificationEmailTemplate$;
|
|
5328
1992
|
exports.GetCustomVerificationEmailTemplateCommand = GetCustomVerificationEmailTemplateCommand;
|
|
5329
|
-
exports.GetCustomVerificationEmailTemplateRequest$ = GetCustomVerificationEmailTemplateRequest$;
|
|
5330
|
-
exports.GetCustomVerificationEmailTemplateResponse$ = GetCustomVerificationEmailTemplateResponse$;
|
|
5331
|
-
exports.GetDedicatedIp$ = GetDedicatedIp$;
|
|
5332
1993
|
exports.GetDedicatedIpCommand = GetDedicatedIpCommand;
|
|
5333
|
-
exports.GetDedicatedIpPool$ = GetDedicatedIpPool$;
|
|
5334
1994
|
exports.GetDedicatedIpPoolCommand = GetDedicatedIpPoolCommand;
|
|
5335
|
-
exports.GetDedicatedIpPoolRequest$ = GetDedicatedIpPoolRequest$;
|
|
5336
|
-
exports.GetDedicatedIpPoolResponse$ = GetDedicatedIpPoolResponse$;
|
|
5337
|
-
exports.GetDedicatedIpRequest$ = GetDedicatedIpRequest$;
|
|
5338
|
-
exports.GetDedicatedIpResponse$ = GetDedicatedIpResponse$;
|
|
5339
|
-
exports.GetDedicatedIps$ = GetDedicatedIps$;
|
|
5340
1995
|
exports.GetDedicatedIpsCommand = GetDedicatedIpsCommand;
|
|
5341
|
-
exports.GetDedicatedIpsRequest$ = GetDedicatedIpsRequest$;
|
|
5342
|
-
exports.GetDedicatedIpsResponse$ = GetDedicatedIpsResponse$;
|
|
5343
|
-
exports.GetDeliverabilityDashboardOptions$ = GetDeliverabilityDashboardOptions$;
|
|
5344
1996
|
exports.GetDeliverabilityDashboardOptionsCommand = GetDeliverabilityDashboardOptionsCommand;
|
|
5345
|
-
exports.GetDeliverabilityDashboardOptionsRequest$ = GetDeliverabilityDashboardOptionsRequest$;
|
|
5346
|
-
exports.GetDeliverabilityDashboardOptionsResponse$ = GetDeliverabilityDashboardOptionsResponse$;
|
|
5347
|
-
exports.GetDeliverabilityTestReport$ = GetDeliverabilityTestReport$;
|
|
5348
1997
|
exports.GetDeliverabilityTestReportCommand = GetDeliverabilityTestReportCommand;
|
|
5349
|
-
exports.GetDeliverabilityTestReportRequest$ = GetDeliverabilityTestReportRequest$;
|
|
5350
|
-
exports.GetDeliverabilityTestReportResponse$ = GetDeliverabilityTestReportResponse$;
|
|
5351
|
-
exports.GetDomainDeliverabilityCampaign$ = GetDomainDeliverabilityCampaign$;
|
|
5352
1998
|
exports.GetDomainDeliverabilityCampaignCommand = GetDomainDeliverabilityCampaignCommand;
|
|
5353
|
-
exports.GetDomainDeliverabilityCampaignRequest$ = GetDomainDeliverabilityCampaignRequest$;
|
|
5354
|
-
exports.GetDomainDeliverabilityCampaignResponse$ = GetDomainDeliverabilityCampaignResponse$;
|
|
5355
|
-
exports.GetDomainStatisticsReport$ = GetDomainStatisticsReport$;
|
|
5356
1999
|
exports.GetDomainStatisticsReportCommand = GetDomainStatisticsReportCommand;
|
|
5357
|
-
exports.GetDomainStatisticsReportRequest$ = GetDomainStatisticsReportRequest$;
|
|
5358
|
-
exports.GetDomainStatisticsReportResponse$ = GetDomainStatisticsReportResponse$;
|
|
5359
|
-
exports.GetEmailAddressInsights$ = GetEmailAddressInsights$;
|
|
5360
2000
|
exports.GetEmailAddressInsightsCommand = GetEmailAddressInsightsCommand;
|
|
5361
|
-
exports.GetEmailAddressInsightsRequest$ = GetEmailAddressInsightsRequest$;
|
|
5362
|
-
exports.GetEmailAddressInsightsResponse$ = GetEmailAddressInsightsResponse$;
|
|
5363
|
-
exports.GetEmailIdentity$ = GetEmailIdentity$;
|
|
5364
2001
|
exports.GetEmailIdentityCommand = GetEmailIdentityCommand;
|
|
5365
|
-
exports.GetEmailIdentityPolicies$ = GetEmailIdentityPolicies$;
|
|
5366
2002
|
exports.GetEmailIdentityPoliciesCommand = GetEmailIdentityPoliciesCommand;
|
|
5367
|
-
exports.GetEmailIdentityPoliciesRequest$ = GetEmailIdentityPoliciesRequest$;
|
|
5368
|
-
exports.GetEmailIdentityPoliciesResponse$ = GetEmailIdentityPoliciesResponse$;
|
|
5369
|
-
exports.GetEmailIdentityRequest$ = GetEmailIdentityRequest$;
|
|
5370
|
-
exports.GetEmailIdentityResponse$ = GetEmailIdentityResponse$;
|
|
5371
|
-
exports.GetEmailTemplate$ = GetEmailTemplate$;
|
|
5372
2003
|
exports.GetEmailTemplateCommand = GetEmailTemplateCommand;
|
|
5373
|
-
exports.GetEmailTemplateRequest$ = GetEmailTemplateRequest$;
|
|
5374
|
-
exports.GetEmailTemplateResponse$ = GetEmailTemplateResponse$;
|
|
5375
|
-
exports.GetExportJob$ = GetExportJob$;
|
|
5376
2004
|
exports.GetExportJobCommand = GetExportJobCommand;
|
|
5377
|
-
exports.GetExportJobRequest$ = GetExportJobRequest$;
|
|
5378
|
-
exports.GetExportJobResponse$ = GetExportJobResponse$;
|
|
5379
|
-
exports.GetImportJob$ = GetImportJob$;
|
|
5380
2005
|
exports.GetImportJobCommand = GetImportJobCommand;
|
|
5381
|
-
exports.GetImportJobRequest$ = GetImportJobRequest$;
|
|
5382
|
-
exports.GetImportJobResponse$ = GetImportJobResponse$;
|
|
5383
|
-
exports.GetMessageInsights$ = GetMessageInsights$;
|
|
5384
2006
|
exports.GetMessageInsightsCommand = GetMessageInsightsCommand;
|
|
5385
|
-
exports.GetMessageInsightsRequest$ = GetMessageInsightsRequest$;
|
|
5386
|
-
exports.GetMessageInsightsResponse$ = GetMessageInsightsResponse$;
|
|
5387
|
-
exports.GetMultiRegionEndpoint$ = GetMultiRegionEndpoint$;
|
|
5388
2007
|
exports.GetMultiRegionEndpointCommand = GetMultiRegionEndpointCommand;
|
|
5389
|
-
exports.GetMultiRegionEndpointRequest$ = GetMultiRegionEndpointRequest$;
|
|
5390
|
-
exports.GetMultiRegionEndpointResponse$ = GetMultiRegionEndpointResponse$;
|
|
5391
|
-
exports.GetReputationEntity$ = GetReputationEntity$;
|
|
5392
2008
|
exports.GetReputationEntityCommand = GetReputationEntityCommand;
|
|
5393
|
-
exports.GetReputationEntityRequest$ = GetReputationEntityRequest$;
|
|
5394
|
-
exports.GetReputationEntityResponse$ = GetReputationEntityResponse$;
|
|
5395
|
-
exports.GetSuppressedDestination$ = GetSuppressedDestination$;
|
|
5396
2009
|
exports.GetSuppressedDestinationCommand = GetSuppressedDestinationCommand;
|
|
5397
|
-
exports.GetSuppressedDestinationRequest$ = GetSuppressedDestinationRequest$;
|
|
5398
|
-
exports.GetSuppressedDestinationResponse$ = GetSuppressedDestinationResponse$;
|
|
5399
|
-
exports.GetTenant$ = GetTenant$;
|
|
5400
2010
|
exports.GetTenantCommand = GetTenantCommand;
|
|
5401
|
-
exports.GetTenantRequest$ = GetTenantRequest$;
|
|
5402
|
-
exports.GetTenantResponse$ = GetTenantResponse$;
|
|
5403
|
-
exports.GuardianAttributes$ = GuardianAttributes$;
|
|
5404
|
-
exports.GuardianOptions$ = GuardianOptions$;
|
|
5405
2011
|
exports.HttpsPolicy = HttpsPolicy;
|
|
5406
|
-
exports.IdentityInfo$ = IdentityInfo$;
|
|
5407
2012
|
exports.IdentityType = IdentityType;
|
|
5408
|
-
exports.ImportDataSource$ = ImportDataSource$;
|
|
5409
|
-
exports.ImportDestination$ = ImportDestination$;
|
|
5410
2013
|
exports.ImportDestinationType = ImportDestinationType;
|
|
5411
|
-
exports.ImportJobSummary$ = ImportJobSummary$;
|
|
5412
|
-
exports.InboxPlacementTrackingOption$ = InboxPlacementTrackingOption$;
|
|
5413
|
-
exports.InsightsEvent$ = InsightsEvent$;
|
|
5414
|
-
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
5415
|
-
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
5416
|
-
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
5417
|
-
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
5418
|
-
exports.IspPlacement$ = IspPlacement$;
|
|
5419
2014
|
exports.JobStatus = JobStatus;
|
|
5420
|
-
exports.KinesisFirehoseDestination$ = KinesisFirehoseDestination$;
|
|
5421
|
-
exports.LimitExceededException = LimitExceededException;
|
|
5422
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
5423
|
-
exports.ListConfigurationSets$ = ListConfigurationSets$;
|
|
5424
2015
|
exports.ListConfigurationSetsCommand = ListConfigurationSetsCommand;
|
|
5425
|
-
exports.ListConfigurationSetsRequest$ = ListConfigurationSetsRequest$;
|
|
5426
|
-
exports.ListConfigurationSetsResponse$ = ListConfigurationSetsResponse$;
|
|
5427
|
-
exports.ListContactLists$ = ListContactLists$;
|
|
5428
2016
|
exports.ListContactListsCommand = ListContactListsCommand;
|
|
5429
|
-
exports.ListContactListsRequest$ = ListContactListsRequest$;
|
|
5430
|
-
exports.ListContactListsResponse$ = ListContactListsResponse$;
|
|
5431
|
-
exports.ListContacts$ = ListContacts$;
|
|
5432
2017
|
exports.ListContactsCommand = ListContactsCommand;
|
|
5433
|
-
exports.ListContactsFilter$ = ListContactsFilter$;
|
|
5434
|
-
exports.ListContactsRequest$ = ListContactsRequest$;
|
|
5435
|
-
exports.ListContactsResponse$ = ListContactsResponse$;
|
|
5436
|
-
exports.ListCustomVerificationEmailTemplates$ = ListCustomVerificationEmailTemplates$;
|
|
5437
2018
|
exports.ListCustomVerificationEmailTemplatesCommand = ListCustomVerificationEmailTemplatesCommand;
|
|
5438
|
-
exports.ListCustomVerificationEmailTemplatesRequest$ = ListCustomVerificationEmailTemplatesRequest$;
|
|
5439
|
-
exports.ListCustomVerificationEmailTemplatesResponse$ = ListCustomVerificationEmailTemplatesResponse$;
|
|
5440
|
-
exports.ListDedicatedIpPools$ = ListDedicatedIpPools$;
|
|
5441
2019
|
exports.ListDedicatedIpPoolsCommand = ListDedicatedIpPoolsCommand;
|
|
5442
|
-
exports.ListDedicatedIpPoolsRequest$ = ListDedicatedIpPoolsRequest$;
|
|
5443
|
-
exports.ListDedicatedIpPoolsResponse$ = ListDedicatedIpPoolsResponse$;
|
|
5444
|
-
exports.ListDeliverabilityTestReports$ = ListDeliverabilityTestReports$;
|
|
5445
2020
|
exports.ListDeliverabilityTestReportsCommand = ListDeliverabilityTestReportsCommand;
|
|
5446
|
-
exports.ListDeliverabilityTestReportsRequest$ = ListDeliverabilityTestReportsRequest$;
|
|
5447
|
-
exports.ListDeliverabilityTestReportsResponse$ = ListDeliverabilityTestReportsResponse$;
|
|
5448
|
-
exports.ListDomainDeliverabilityCampaigns$ = ListDomainDeliverabilityCampaigns$;
|
|
5449
2021
|
exports.ListDomainDeliverabilityCampaignsCommand = ListDomainDeliverabilityCampaignsCommand;
|
|
5450
|
-
exports.ListDomainDeliverabilityCampaignsRequest$ = ListDomainDeliverabilityCampaignsRequest$;
|
|
5451
|
-
exports.ListDomainDeliverabilityCampaignsResponse$ = ListDomainDeliverabilityCampaignsResponse$;
|
|
5452
|
-
exports.ListEmailIdentities$ = ListEmailIdentities$;
|
|
5453
2022
|
exports.ListEmailIdentitiesCommand = ListEmailIdentitiesCommand;
|
|
5454
|
-
exports.ListEmailIdentitiesRequest$ = ListEmailIdentitiesRequest$;
|
|
5455
|
-
exports.ListEmailIdentitiesResponse$ = ListEmailIdentitiesResponse$;
|
|
5456
|
-
exports.ListEmailTemplates$ = ListEmailTemplates$;
|
|
5457
2023
|
exports.ListEmailTemplatesCommand = ListEmailTemplatesCommand;
|
|
5458
|
-
exports.ListEmailTemplatesRequest$ = ListEmailTemplatesRequest$;
|
|
5459
|
-
exports.ListEmailTemplatesResponse$ = ListEmailTemplatesResponse$;
|
|
5460
|
-
exports.ListExportJobs$ = ListExportJobs$;
|
|
5461
2024
|
exports.ListExportJobsCommand = ListExportJobsCommand;
|
|
5462
|
-
exports.ListExportJobsRequest$ = ListExportJobsRequest$;
|
|
5463
|
-
exports.ListExportJobsResponse$ = ListExportJobsResponse$;
|
|
5464
|
-
exports.ListImportJobs$ = ListImportJobs$;
|
|
5465
2025
|
exports.ListImportJobsCommand = ListImportJobsCommand;
|
|
5466
|
-
exports.ListImportJobsRequest$ = ListImportJobsRequest$;
|
|
5467
|
-
exports.ListImportJobsResponse$ = ListImportJobsResponse$;
|
|
5468
|
-
exports.ListManagementOptions$ = ListManagementOptions$;
|
|
5469
|
-
exports.ListMultiRegionEndpoints$ = ListMultiRegionEndpoints$;
|
|
5470
2026
|
exports.ListMultiRegionEndpointsCommand = ListMultiRegionEndpointsCommand;
|
|
5471
|
-
exports.ListMultiRegionEndpointsRequest$ = ListMultiRegionEndpointsRequest$;
|
|
5472
|
-
exports.ListMultiRegionEndpointsResponse$ = ListMultiRegionEndpointsResponse$;
|
|
5473
|
-
exports.ListRecommendations$ = ListRecommendations$;
|
|
5474
2027
|
exports.ListRecommendationsCommand = ListRecommendationsCommand;
|
|
5475
2028
|
exports.ListRecommendationsFilterKey = ListRecommendationsFilterKey;
|
|
5476
|
-
exports.ListRecommendationsRequest$ = ListRecommendationsRequest$;
|
|
5477
|
-
exports.ListRecommendationsResponse$ = ListRecommendationsResponse$;
|
|
5478
|
-
exports.ListReputationEntities$ = ListReputationEntities$;
|
|
5479
2029
|
exports.ListReputationEntitiesCommand = ListReputationEntitiesCommand;
|
|
5480
|
-
exports.ListReputationEntitiesRequest$ = ListReputationEntitiesRequest$;
|
|
5481
|
-
exports.ListReputationEntitiesResponse$ = ListReputationEntitiesResponse$;
|
|
5482
|
-
exports.ListResourceTenants$ = ListResourceTenants$;
|
|
5483
2030
|
exports.ListResourceTenantsCommand = ListResourceTenantsCommand;
|
|
5484
|
-
exports.ListResourceTenantsRequest$ = ListResourceTenantsRequest$;
|
|
5485
|
-
exports.ListResourceTenantsResponse$ = ListResourceTenantsResponse$;
|
|
5486
|
-
exports.ListSuppressedDestinations$ = ListSuppressedDestinations$;
|
|
5487
2031
|
exports.ListSuppressedDestinationsCommand = ListSuppressedDestinationsCommand;
|
|
5488
|
-
exports.ListSuppressedDestinationsRequest$ = ListSuppressedDestinationsRequest$;
|
|
5489
|
-
exports.ListSuppressedDestinationsResponse$ = ListSuppressedDestinationsResponse$;
|
|
5490
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
5491
2032
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
5492
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
5493
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
5494
|
-
exports.ListTenantResources$ = ListTenantResources$;
|
|
5495
2033
|
exports.ListTenantResourcesCommand = ListTenantResourcesCommand;
|
|
5496
2034
|
exports.ListTenantResourcesFilterKey = ListTenantResourcesFilterKey;
|
|
5497
|
-
exports.ListTenantResourcesRequest$ = ListTenantResourcesRequest$;
|
|
5498
|
-
exports.ListTenantResourcesResponse$ = ListTenantResourcesResponse$;
|
|
5499
|
-
exports.ListTenants$ = ListTenants$;
|
|
5500
2035
|
exports.ListTenantsCommand = ListTenantsCommand;
|
|
5501
|
-
exports.ListTenantsRequest$ = ListTenantsRequest$;
|
|
5502
|
-
exports.ListTenantsResponse$ = ListTenantsResponse$;
|
|
5503
|
-
exports.MailFromAttributes$ = MailFromAttributes$;
|
|
5504
|
-
exports.MailFromDomainNotVerifiedException = MailFromDomainNotVerifiedException;
|
|
5505
|
-
exports.MailFromDomainNotVerifiedException$ = MailFromDomainNotVerifiedException$;
|
|
5506
2036
|
exports.MailFromDomainStatus = MailFromDomainStatus;
|
|
5507
2037
|
exports.MailType = MailType;
|
|
5508
|
-
exports.MailboxValidation$ = MailboxValidation$;
|
|
5509
|
-
exports.Message$ = Message$;
|
|
5510
|
-
exports.MessageHeader$ = MessageHeader$;
|
|
5511
|
-
exports.MessageInsightsDataSource$ = MessageInsightsDataSource$;
|
|
5512
|
-
exports.MessageInsightsFilters$ = MessageInsightsFilters$;
|
|
5513
|
-
exports.MessageRejected = MessageRejected;
|
|
5514
|
-
exports.MessageRejected$ = MessageRejected$;
|
|
5515
|
-
exports.MessageTag$ = MessageTag$;
|
|
5516
2038
|
exports.Metric = Metric;
|
|
5517
2039
|
exports.MetricAggregation = MetricAggregation;
|
|
5518
|
-
exports.MetricDataError$ = MetricDataError$;
|
|
5519
|
-
exports.MetricDataResult$ = MetricDataResult$;
|
|
5520
2040
|
exports.MetricDimensionName = MetricDimensionName;
|
|
5521
2041
|
exports.MetricNamespace = MetricNamespace;
|
|
5522
|
-
exports.MetricsDataSource$ = MetricsDataSource$;
|
|
5523
|
-
exports.MultiRegionEndpoint$ = MultiRegionEndpoint$;
|
|
5524
|
-
exports.NotFoundException = NotFoundException;
|
|
5525
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
5526
|
-
exports.OverallVolume$ = OverallVolume$;
|
|
5527
|
-
exports.PinpointDestination$ = PinpointDestination$;
|
|
5528
|
-
exports.PlacementStatistics$ = PlacementStatistics$;
|
|
5529
|
-
exports.PutAccountDedicatedIpWarmupAttributes$ = PutAccountDedicatedIpWarmupAttributes$;
|
|
5530
2042
|
exports.PutAccountDedicatedIpWarmupAttributesCommand = PutAccountDedicatedIpWarmupAttributesCommand;
|
|
5531
|
-
exports.PutAccountDedicatedIpWarmupAttributesRequest$ = PutAccountDedicatedIpWarmupAttributesRequest$;
|
|
5532
|
-
exports.PutAccountDedicatedIpWarmupAttributesResponse$ = PutAccountDedicatedIpWarmupAttributesResponse$;
|
|
5533
|
-
exports.PutAccountDetails$ = PutAccountDetails$;
|
|
5534
2043
|
exports.PutAccountDetailsCommand = PutAccountDetailsCommand;
|
|
5535
|
-
exports.PutAccountDetailsRequest$ = PutAccountDetailsRequest$;
|
|
5536
|
-
exports.PutAccountDetailsResponse$ = PutAccountDetailsResponse$;
|
|
5537
|
-
exports.PutAccountSendingAttributes$ = PutAccountSendingAttributes$;
|
|
5538
2044
|
exports.PutAccountSendingAttributesCommand = PutAccountSendingAttributesCommand;
|
|
5539
|
-
exports.PutAccountSendingAttributesRequest$ = PutAccountSendingAttributesRequest$;
|
|
5540
|
-
exports.PutAccountSendingAttributesResponse$ = PutAccountSendingAttributesResponse$;
|
|
5541
|
-
exports.PutAccountSuppressionAttributes$ = PutAccountSuppressionAttributes$;
|
|
5542
2045
|
exports.PutAccountSuppressionAttributesCommand = PutAccountSuppressionAttributesCommand;
|
|
5543
|
-
exports.PutAccountSuppressionAttributesRequest$ = PutAccountSuppressionAttributesRequest$;
|
|
5544
|
-
exports.PutAccountSuppressionAttributesResponse$ = PutAccountSuppressionAttributesResponse$;
|
|
5545
|
-
exports.PutAccountVdmAttributes$ = PutAccountVdmAttributes$;
|
|
5546
2046
|
exports.PutAccountVdmAttributesCommand = PutAccountVdmAttributesCommand;
|
|
5547
|
-
exports.PutAccountVdmAttributesRequest$ = PutAccountVdmAttributesRequest$;
|
|
5548
|
-
exports.PutAccountVdmAttributesResponse$ = PutAccountVdmAttributesResponse$;
|
|
5549
|
-
exports.PutConfigurationSetArchivingOptions$ = PutConfigurationSetArchivingOptions$;
|
|
5550
2047
|
exports.PutConfigurationSetArchivingOptionsCommand = PutConfigurationSetArchivingOptionsCommand;
|
|
5551
|
-
exports.PutConfigurationSetArchivingOptionsRequest$ = PutConfigurationSetArchivingOptionsRequest$;
|
|
5552
|
-
exports.PutConfigurationSetArchivingOptionsResponse$ = PutConfigurationSetArchivingOptionsResponse$;
|
|
5553
|
-
exports.PutConfigurationSetDeliveryOptions$ = PutConfigurationSetDeliveryOptions$;
|
|
5554
2048
|
exports.PutConfigurationSetDeliveryOptionsCommand = PutConfigurationSetDeliveryOptionsCommand;
|
|
5555
|
-
exports.PutConfigurationSetDeliveryOptionsRequest$ = PutConfigurationSetDeliveryOptionsRequest$;
|
|
5556
|
-
exports.PutConfigurationSetDeliveryOptionsResponse$ = PutConfigurationSetDeliveryOptionsResponse$;
|
|
5557
|
-
exports.PutConfigurationSetReputationOptions$ = PutConfigurationSetReputationOptions$;
|
|
5558
2049
|
exports.PutConfigurationSetReputationOptionsCommand = PutConfigurationSetReputationOptionsCommand;
|
|
5559
|
-
exports.PutConfigurationSetReputationOptionsRequest$ = PutConfigurationSetReputationOptionsRequest$;
|
|
5560
|
-
exports.PutConfigurationSetReputationOptionsResponse$ = PutConfigurationSetReputationOptionsResponse$;
|
|
5561
|
-
exports.PutConfigurationSetSendingOptions$ = PutConfigurationSetSendingOptions$;
|
|
5562
2050
|
exports.PutConfigurationSetSendingOptionsCommand = PutConfigurationSetSendingOptionsCommand;
|
|
5563
|
-
exports.PutConfigurationSetSendingOptionsRequest$ = PutConfigurationSetSendingOptionsRequest$;
|
|
5564
|
-
exports.PutConfigurationSetSendingOptionsResponse$ = PutConfigurationSetSendingOptionsResponse$;
|
|
5565
|
-
exports.PutConfigurationSetSuppressionOptions$ = PutConfigurationSetSuppressionOptions$;
|
|
5566
2051
|
exports.PutConfigurationSetSuppressionOptionsCommand = PutConfigurationSetSuppressionOptionsCommand;
|
|
5567
|
-
exports.PutConfigurationSetSuppressionOptionsRequest$ = PutConfigurationSetSuppressionOptionsRequest$;
|
|
5568
|
-
exports.PutConfigurationSetSuppressionOptionsResponse$ = PutConfigurationSetSuppressionOptionsResponse$;
|
|
5569
|
-
exports.PutConfigurationSetTrackingOptions$ = PutConfigurationSetTrackingOptions$;
|
|
5570
2052
|
exports.PutConfigurationSetTrackingOptionsCommand = PutConfigurationSetTrackingOptionsCommand;
|
|
5571
|
-
exports.PutConfigurationSetTrackingOptionsRequest$ = PutConfigurationSetTrackingOptionsRequest$;
|
|
5572
|
-
exports.PutConfigurationSetTrackingOptionsResponse$ = PutConfigurationSetTrackingOptionsResponse$;
|
|
5573
|
-
exports.PutConfigurationSetVdmOptions$ = PutConfigurationSetVdmOptions$;
|
|
5574
2053
|
exports.PutConfigurationSetVdmOptionsCommand = PutConfigurationSetVdmOptionsCommand;
|
|
5575
|
-
exports.PutConfigurationSetVdmOptionsRequest$ = PutConfigurationSetVdmOptionsRequest$;
|
|
5576
|
-
exports.PutConfigurationSetVdmOptionsResponse$ = PutConfigurationSetVdmOptionsResponse$;
|
|
5577
|
-
exports.PutDedicatedIpInPool$ = PutDedicatedIpInPool$;
|
|
5578
2054
|
exports.PutDedicatedIpInPoolCommand = PutDedicatedIpInPoolCommand;
|
|
5579
|
-
exports.PutDedicatedIpInPoolRequest$ = PutDedicatedIpInPoolRequest$;
|
|
5580
|
-
exports.PutDedicatedIpInPoolResponse$ = PutDedicatedIpInPoolResponse$;
|
|
5581
|
-
exports.PutDedicatedIpPoolScalingAttributes$ = PutDedicatedIpPoolScalingAttributes$;
|
|
5582
2055
|
exports.PutDedicatedIpPoolScalingAttributesCommand = PutDedicatedIpPoolScalingAttributesCommand;
|
|
5583
|
-
exports.PutDedicatedIpPoolScalingAttributesRequest$ = PutDedicatedIpPoolScalingAttributesRequest$;
|
|
5584
|
-
exports.PutDedicatedIpPoolScalingAttributesResponse$ = PutDedicatedIpPoolScalingAttributesResponse$;
|
|
5585
|
-
exports.PutDedicatedIpWarmupAttributes$ = PutDedicatedIpWarmupAttributes$;
|
|
5586
2056
|
exports.PutDedicatedIpWarmupAttributesCommand = PutDedicatedIpWarmupAttributesCommand;
|
|
5587
|
-
exports.PutDedicatedIpWarmupAttributesRequest$ = PutDedicatedIpWarmupAttributesRequest$;
|
|
5588
|
-
exports.PutDedicatedIpWarmupAttributesResponse$ = PutDedicatedIpWarmupAttributesResponse$;
|
|
5589
|
-
exports.PutDeliverabilityDashboardOption$ = PutDeliverabilityDashboardOption$;
|
|
5590
2057
|
exports.PutDeliverabilityDashboardOptionCommand = PutDeliverabilityDashboardOptionCommand;
|
|
5591
|
-
exports.PutDeliverabilityDashboardOptionRequest$ = PutDeliverabilityDashboardOptionRequest$;
|
|
5592
|
-
exports.PutDeliverabilityDashboardOptionResponse$ = PutDeliverabilityDashboardOptionResponse$;
|
|
5593
|
-
exports.PutEmailIdentityConfigurationSetAttributes$ = PutEmailIdentityConfigurationSetAttributes$;
|
|
5594
2058
|
exports.PutEmailIdentityConfigurationSetAttributesCommand = PutEmailIdentityConfigurationSetAttributesCommand;
|
|
5595
|
-
exports.PutEmailIdentityConfigurationSetAttributesRequest$ = PutEmailIdentityConfigurationSetAttributesRequest$;
|
|
5596
|
-
exports.PutEmailIdentityConfigurationSetAttributesResponse$ = PutEmailIdentityConfigurationSetAttributesResponse$;
|
|
5597
|
-
exports.PutEmailIdentityDkimAttributes$ = PutEmailIdentityDkimAttributes$;
|
|
5598
2059
|
exports.PutEmailIdentityDkimAttributesCommand = PutEmailIdentityDkimAttributesCommand;
|
|
5599
|
-
exports.PutEmailIdentityDkimAttributesRequest$ = PutEmailIdentityDkimAttributesRequest$;
|
|
5600
|
-
exports.PutEmailIdentityDkimAttributesResponse$ = PutEmailIdentityDkimAttributesResponse$;
|
|
5601
|
-
exports.PutEmailIdentityDkimSigningAttributes$ = PutEmailIdentityDkimSigningAttributes$;
|
|
5602
2060
|
exports.PutEmailIdentityDkimSigningAttributesCommand = PutEmailIdentityDkimSigningAttributesCommand;
|
|
5603
|
-
exports.PutEmailIdentityDkimSigningAttributesRequest$ = PutEmailIdentityDkimSigningAttributesRequest$;
|
|
5604
|
-
exports.PutEmailIdentityDkimSigningAttributesResponse$ = PutEmailIdentityDkimSigningAttributesResponse$;
|
|
5605
|
-
exports.PutEmailIdentityFeedbackAttributes$ = PutEmailIdentityFeedbackAttributes$;
|
|
5606
2061
|
exports.PutEmailIdentityFeedbackAttributesCommand = PutEmailIdentityFeedbackAttributesCommand;
|
|
5607
|
-
exports.PutEmailIdentityFeedbackAttributesRequest$ = PutEmailIdentityFeedbackAttributesRequest$;
|
|
5608
|
-
exports.PutEmailIdentityFeedbackAttributesResponse$ = PutEmailIdentityFeedbackAttributesResponse$;
|
|
5609
|
-
exports.PutEmailIdentityMailFromAttributes$ = PutEmailIdentityMailFromAttributes$;
|
|
5610
2062
|
exports.PutEmailIdentityMailFromAttributesCommand = PutEmailIdentityMailFromAttributesCommand;
|
|
5611
|
-
exports.PutEmailIdentityMailFromAttributesRequest$ = PutEmailIdentityMailFromAttributesRequest$;
|
|
5612
|
-
exports.PutEmailIdentityMailFromAttributesResponse$ = PutEmailIdentityMailFromAttributesResponse$;
|
|
5613
|
-
exports.PutSuppressedDestination$ = PutSuppressedDestination$;
|
|
5614
2063
|
exports.PutSuppressedDestinationCommand = PutSuppressedDestinationCommand;
|
|
5615
|
-
exports.PutSuppressedDestinationRequest$ = PutSuppressedDestinationRequest$;
|
|
5616
|
-
exports.PutSuppressedDestinationResponse$ = PutSuppressedDestinationResponse$;
|
|
5617
2064
|
exports.QueryErrorCode = QueryErrorCode;
|
|
5618
|
-
exports.RawMessage$ = RawMessage$;
|
|
5619
|
-
exports.Recommendation$ = Recommendation$;
|
|
5620
2065
|
exports.RecommendationImpact = RecommendationImpact;
|
|
5621
2066
|
exports.RecommendationStatus = RecommendationStatus;
|
|
5622
2067
|
exports.RecommendationType = RecommendationType;
|
|
5623
|
-
exports.ReplacementEmailContent$ = ReplacementEmailContent$;
|
|
5624
|
-
exports.ReplacementTemplate$ = ReplacementTemplate$;
|
|
5625
|
-
exports.ReputationEntity$ = ReputationEntity$;
|
|
5626
2068
|
exports.ReputationEntityFilterKey = ReputationEntityFilterKey;
|
|
5627
2069
|
exports.ReputationEntityType = ReputationEntityType;
|
|
5628
|
-
exports.ReputationOptions$ = ReputationOptions$;
|
|
5629
|
-
exports.ResourceTenantMetadata$ = ResourceTenantMetadata$;
|
|
5630
2070
|
exports.ResourceType = ResourceType;
|
|
5631
|
-
exports.ReviewDetails$ = ReviewDetails$;
|
|
5632
2071
|
exports.ReviewStatus = ReviewStatus;
|
|
5633
|
-
exports.Route$ = Route$;
|
|
5634
|
-
exports.RouteDetails$ = RouteDetails$;
|
|
5635
2072
|
exports.SESv2 = SESv2;
|
|
5636
2073
|
exports.SESv2Client = SESv2Client;
|
|
5637
|
-
exports.SESv2ServiceException = SESv2ServiceException;
|
|
5638
|
-
exports.SESv2ServiceException$ = SESv2ServiceException$;
|
|
5639
|
-
exports.SOARecord$ = SOARecord$;
|
|
5640
2074
|
exports.ScalingMode = ScalingMode;
|
|
5641
|
-
exports.SendBulkEmail$ = SendBulkEmail$;
|
|
5642
2075
|
exports.SendBulkEmailCommand = SendBulkEmailCommand;
|
|
5643
|
-
exports.SendBulkEmailRequest$ = SendBulkEmailRequest$;
|
|
5644
|
-
exports.SendBulkEmailResponse$ = SendBulkEmailResponse$;
|
|
5645
|
-
exports.SendCustomVerificationEmail$ = SendCustomVerificationEmail$;
|
|
5646
2076
|
exports.SendCustomVerificationEmailCommand = SendCustomVerificationEmailCommand;
|
|
5647
|
-
exports.SendCustomVerificationEmailRequest$ = SendCustomVerificationEmailRequest$;
|
|
5648
|
-
exports.SendCustomVerificationEmailResponse$ = SendCustomVerificationEmailResponse$;
|
|
5649
|
-
exports.SendEmail$ = SendEmail$;
|
|
5650
2077
|
exports.SendEmailCommand = SendEmailCommand;
|
|
5651
|
-
exports.SendEmailRequest$ = SendEmailRequest$;
|
|
5652
|
-
exports.SendEmailResponse$ = SendEmailResponse$;
|
|
5653
|
-
exports.SendQuota$ = SendQuota$;
|
|
5654
|
-
exports.SendingOptions$ = SendingOptions$;
|
|
5655
|
-
exports.SendingPausedException = SendingPausedException;
|
|
5656
|
-
exports.SendingPausedException$ = SendingPausedException$;
|
|
5657
2078
|
exports.SendingStatus = SendingStatus;
|
|
5658
|
-
exports.SnsDestination$ = SnsDestination$;
|
|
5659
2079
|
exports.Status = Status;
|
|
5660
|
-
exports.StatusRecord$ = StatusRecord$;
|
|
5661
2080
|
exports.SubscriptionStatus = SubscriptionStatus;
|
|
5662
|
-
exports.SuppressedDestination$ = SuppressedDestination$;
|
|
5663
|
-
exports.SuppressedDestinationAttributes$ = SuppressedDestinationAttributes$;
|
|
5664
|
-
exports.SuppressedDestinationSummary$ = SuppressedDestinationSummary$;
|
|
5665
|
-
exports.SuppressionAttributes$ = SuppressionAttributes$;
|
|
5666
|
-
exports.SuppressionConditionThreshold$ = SuppressionConditionThreshold$;
|
|
5667
|
-
exports.SuppressionConfidenceThreshold$ = SuppressionConfidenceThreshold$;
|
|
5668
2081
|
exports.SuppressionConfidenceVerdictThreshold = SuppressionConfidenceVerdictThreshold;
|
|
5669
|
-
exports.SuppressionListDestination$ = SuppressionListDestination$;
|
|
5670
2082
|
exports.SuppressionListImportAction = SuppressionListImportAction;
|
|
5671
2083
|
exports.SuppressionListReason = SuppressionListReason;
|
|
5672
|
-
exports.SuppressionOptions$ = SuppressionOptions$;
|
|
5673
|
-
exports.SuppressionValidationAttributes$ = SuppressionValidationAttributes$;
|
|
5674
|
-
exports.SuppressionValidationOptions$ = SuppressionValidationOptions$;
|
|
5675
|
-
exports.Tag$ = Tag$;
|
|
5676
|
-
exports.TagResource$ = TagResource$;
|
|
5677
2084
|
exports.TagResourceCommand = TagResourceCommand;
|
|
5678
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
5679
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
5680
|
-
exports.Template$ = Template$;
|
|
5681
|
-
exports.Tenant$ = Tenant$;
|
|
5682
|
-
exports.TenantInfo$ = TenantInfo$;
|
|
5683
|
-
exports.TenantResource$ = TenantResource$;
|
|
5684
|
-
exports.TestRenderEmailTemplate$ = TestRenderEmailTemplate$;
|
|
5685
2085
|
exports.TestRenderEmailTemplateCommand = TestRenderEmailTemplateCommand;
|
|
5686
|
-
exports.TestRenderEmailTemplateRequest$ = TestRenderEmailTemplateRequest$;
|
|
5687
|
-
exports.TestRenderEmailTemplateResponse$ = TestRenderEmailTemplateResponse$;
|
|
5688
2086
|
exports.TlsPolicy = TlsPolicy;
|
|
5689
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
5690
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
5691
|
-
exports.Topic$ = Topic$;
|
|
5692
|
-
exports.TopicFilter$ = TopicFilter$;
|
|
5693
|
-
exports.TopicPreference$ = TopicPreference$;
|
|
5694
|
-
exports.TrackingOptions$ = TrackingOptions$;
|
|
5695
|
-
exports.UntagResource$ = UntagResource$;
|
|
5696
2087
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5697
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
5698
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
5699
|
-
exports.UpdateConfigurationSetEventDestination$ = UpdateConfigurationSetEventDestination$;
|
|
5700
2088
|
exports.UpdateConfigurationSetEventDestinationCommand = UpdateConfigurationSetEventDestinationCommand;
|
|
5701
|
-
exports.UpdateConfigurationSetEventDestinationRequest$ = UpdateConfigurationSetEventDestinationRequest$;
|
|
5702
|
-
exports.UpdateConfigurationSetEventDestinationResponse$ = UpdateConfigurationSetEventDestinationResponse$;
|
|
5703
|
-
exports.UpdateContact$ = UpdateContact$;
|
|
5704
2089
|
exports.UpdateContactCommand = UpdateContactCommand;
|
|
5705
|
-
exports.UpdateContactList$ = UpdateContactList$;
|
|
5706
2090
|
exports.UpdateContactListCommand = UpdateContactListCommand;
|
|
5707
|
-
exports.UpdateContactListRequest$ = UpdateContactListRequest$;
|
|
5708
|
-
exports.UpdateContactListResponse$ = UpdateContactListResponse$;
|
|
5709
|
-
exports.UpdateContactRequest$ = UpdateContactRequest$;
|
|
5710
|
-
exports.UpdateContactResponse$ = UpdateContactResponse$;
|
|
5711
|
-
exports.UpdateCustomVerificationEmailTemplate$ = UpdateCustomVerificationEmailTemplate$;
|
|
5712
2091
|
exports.UpdateCustomVerificationEmailTemplateCommand = UpdateCustomVerificationEmailTemplateCommand;
|
|
5713
|
-
exports.UpdateCustomVerificationEmailTemplateRequest$ = UpdateCustomVerificationEmailTemplateRequest$;
|
|
5714
|
-
exports.UpdateCustomVerificationEmailTemplateResponse$ = UpdateCustomVerificationEmailTemplateResponse$;
|
|
5715
|
-
exports.UpdateEmailIdentityPolicy$ = UpdateEmailIdentityPolicy$;
|
|
5716
2092
|
exports.UpdateEmailIdentityPolicyCommand = UpdateEmailIdentityPolicyCommand;
|
|
5717
|
-
exports.UpdateEmailIdentityPolicyRequest$ = UpdateEmailIdentityPolicyRequest$;
|
|
5718
|
-
exports.UpdateEmailIdentityPolicyResponse$ = UpdateEmailIdentityPolicyResponse$;
|
|
5719
|
-
exports.UpdateEmailTemplate$ = UpdateEmailTemplate$;
|
|
5720
2093
|
exports.UpdateEmailTemplateCommand = UpdateEmailTemplateCommand;
|
|
5721
|
-
exports.UpdateEmailTemplateRequest$ = UpdateEmailTemplateRequest$;
|
|
5722
|
-
exports.UpdateEmailTemplateResponse$ = UpdateEmailTemplateResponse$;
|
|
5723
|
-
exports.UpdateReputationEntityCustomerManagedStatus$ = UpdateReputationEntityCustomerManagedStatus$;
|
|
5724
2094
|
exports.UpdateReputationEntityCustomerManagedStatusCommand = UpdateReputationEntityCustomerManagedStatusCommand;
|
|
5725
|
-
exports.UpdateReputationEntityCustomerManagedStatusRequest$ = UpdateReputationEntityCustomerManagedStatusRequest$;
|
|
5726
|
-
exports.UpdateReputationEntityCustomerManagedStatusResponse$ = UpdateReputationEntityCustomerManagedStatusResponse$;
|
|
5727
|
-
exports.UpdateReputationEntityPolicy$ = UpdateReputationEntityPolicy$;
|
|
5728
2095
|
exports.UpdateReputationEntityPolicyCommand = UpdateReputationEntityPolicyCommand;
|
|
5729
|
-
exports.UpdateReputationEntityPolicyRequest$ = UpdateReputationEntityPolicyRequest$;
|
|
5730
|
-
exports.UpdateReputationEntityPolicyResponse$ = UpdateReputationEntityPolicyResponse$;
|
|
5731
|
-
exports.VdmAttributes$ = VdmAttributes$;
|
|
5732
|
-
exports.VdmOptions$ = VdmOptions$;
|
|
5733
2096
|
exports.VerificationError = VerificationError;
|
|
5734
|
-
exports.VerificationInfo$ = VerificationInfo$;
|
|
5735
2097
|
exports.VerificationStatus = VerificationStatus;
|
|
5736
|
-
exports.VolumeStatistics$ = VolumeStatistics$;
|
|
5737
2098
|
exports.WarmupStatus = WarmupStatus;
|
|
5738
2099
|
exports.paginateGetDedicatedIps = paginateGetDedicatedIps;
|
|
5739
2100
|
exports.paginateListConfigurationSets = paginateListConfigurationSets;
|
|
@@ -5754,3 +2115,15 @@ exports.paginateListResourceTenants = paginateListResourceTenants;
|
|
|
5754
2115
|
exports.paginateListSuppressedDestinations = paginateListSuppressedDestinations;
|
|
5755
2116
|
exports.paginateListTenantResources = paginateListTenantResources;
|
|
5756
2117
|
exports.paginateListTenants = paginateListTenants;
|
|
2118
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
2119
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
2120
|
+
enumerable: true,
|
|
2121
|
+
get: function () { return schemas_0[k]; }
|
|
2122
|
+
});
|
|
2123
|
+
});
|
|
2124
|
+
Object.keys(errors).forEach(function (k) {
|
|
2125
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
2126
|
+
enumerable: true,
|
|
2127
|
+
get: function () { return errors[k]; }
|
|
2128
|
+
});
|
|
2129
|
+
});
|