@aws-sdk/client-pinpoint-email 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 +61 -1498
- package/dist-cjs/models/PinpointEmailServiceException.js +12 -0
- package/dist-cjs/models/errors.js +134 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1168 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +55 -49
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
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 PinpointEmailServiceException = require('./models/PinpointEmailServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1278 +113,6 @@ class PinpointEmailClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class PinpointEmailServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, PinpointEmailServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccountSuspendedException extends PinpointEmailServiceException {
|
|
121
|
-
name = "AccountSuspendedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccountSuspendedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccountSuspendedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class AlreadyExistsException extends PinpointEmailServiceException {
|
|
133
|
-
name = "AlreadyExistsException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "AlreadyExistsException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class BadRequestException extends PinpointEmailServiceException {
|
|
145
|
-
name = "BadRequestException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "BadRequestException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ConcurrentModificationException extends PinpointEmailServiceException {
|
|
157
|
-
name = "ConcurrentModificationException";
|
|
158
|
-
$fault = "server";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ConcurrentModificationException",
|
|
162
|
-
$fault: "server",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class LimitExceededException extends PinpointEmailServiceException {
|
|
169
|
-
name = "LimitExceededException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "LimitExceededException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class NotFoundException extends PinpointEmailServiceException {
|
|
181
|
-
name = "NotFoundException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "NotFoundException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class TooManyRequestsException extends PinpointEmailServiceException {
|
|
193
|
-
name = "TooManyRequestsException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "TooManyRequestsException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class MailFromDomainNotVerifiedException extends PinpointEmailServiceException {
|
|
205
|
-
name = "MailFromDomainNotVerifiedException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "MailFromDomainNotVerifiedException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, MailFromDomainNotVerifiedException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class MessageRejected extends PinpointEmailServiceException {
|
|
217
|
-
name = "MessageRejected";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "MessageRejected",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, MessageRejected.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class SendingPausedException extends PinpointEmailServiceException {
|
|
229
|
-
name = "SendingPausedException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "SendingPausedException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, SendingPausedException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
const _AA = "ApplicationArn";
|
|
242
|
-
const _AEE = "AlreadyExistsException";
|
|
243
|
-
const _AS = "AccountStatus";
|
|
244
|
-
const _ASD = "ActiveSubscribedDomains";
|
|
245
|
-
const _ASE = "AccountSuspendedException";
|
|
246
|
-
const _AWE = "AutoWarmupEnabled";
|
|
247
|
-
const _B = "Body";
|
|
248
|
-
const _BA = "BccAddresses";
|
|
249
|
-
const _BE = "BlacklistEntry";
|
|
250
|
-
const _BEl = "BlacklistEntries";
|
|
251
|
-
const _BIN = "BlacklistItemNames";
|
|
252
|
-
const _BOMF = "BehaviorOnMxFailure";
|
|
253
|
-
const _BR = "BlacklistReport";
|
|
254
|
-
const _BRE = "BadRequestException";
|
|
255
|
-
const _C = "Content";
|
|
256
|
-
const _CA = "CcAddresses";
|
|
257
|
-
const _CCS = "CreateConfigurationSet";
|
|
258
|
-
const _CCSED = "CreateConfigurationSetEventDestination";
|
|
259
|
-
const _CCSEDR = "CreateConfigurationSetEventDestinationRequest";
|
|
260
|
-
const _CCSEDRr = "CreateConfigurationSetEventDestinationResponse";
|
|
261
|
-
const _CCSR = "CreateConfigurationSetRequest";
|
|
262
|
-
const _CCSRr = "CreateConfigurationSetResponse";
|
|
263
|
-
const _CD = "CreateDate";
|
|
264
|
-
const _CDIP = "CreateDedicatedIpPool";
|
|
265
|
-
const _CDIPR = "CreateDedicatedIpPoolRequest";
|
|
266
|
-
const _CDIPRr = "CreateDedicatedIpPoolResponse";
|
|
267
|
-
const _CDTR = "CreateDeliverabilityTestReport";
|
|
268
|
-
const _CDTRR = "CreateDeliverabilityTestReportRequest";
|
|
269
|
-
const _CDTRRr = "CreateDeliverabilityTestReportResponse";
|
|
270
|
-
const _CEI = "CreateEmailIdentity";
|
|
271
|
-
const _CEIR = "CreateEmailIdentityRequest";
|
|
272
|
-
const _CEIRr = "CreateEmailIdentityResponse";
|
|
273
|
-
const _CI = "CampaignId";
|
|
274
|
-
const _CME = "ConcurrentModificationException";
|
|
275
|
-
const _CRD = "CustomRedirectDomain";
|
|
276
|
-
const _CS = "ConfigurationSets";
|
|
277
|
-
const _CSN = "ConfigurationSetName";
|
|
278
|
-
const _CWD = "CloudWatchDestination";
|
|
279
|
-
const _CWDC = "CloudWatchDimensionConfiguration";
|
|
280
|
-
const _CWDCl = "CloudWatchDimensionConfigurations";
|
|
281
|
-
const _Ch = "Charset";
|
|
282
|
-
const _D = "Description";
|
|
283
|
-
const _DA = "DkimAttributes";
|
|
284
|
-
const _DC = "DimensionConfigurations";
|
|
285
|
-
const _DCS = "DeleteConfigurationSet";
|
|
286
|
-
const _DCSED = "DeleteConfigurationSetEventDestination";
|
|
287
|
-
const _DCSEDR = "DeleteConfigurationSetEventDestinationRequest";
|
|
288
|
-
const _DCSEDRe = "DeleteConfigurationSetEventDestinationResponse";
|
|
289
|
-
const _DCSR = "DeleteConfigurationSetRequest";
|
|
290
|
-
const _DCSRe = "DeleteConfigurationSetResponse";
|
|
291
|
-
const _DDC = "DomainDeliverabilityCampaign";
|
|
292
|
-
const _DDCL = "DomainDeliverabilityCampaignList";
|
|
293
|
-
const _DDCo = "DomainDeliverabilityCampaigns";
|
|
294
|
-
const _DDIP = "DeleteDedicatedIpPool";
|
|
295
|
-
const _DDIPR = "DeleteDedicatedIpPoolRequest";
|
|
296
|
-
const _DDIPRe = "DeleteDedicatedIpPoolResponse";
|
|
297
|
-
const _DDTO = "DomainDeliverabilityTrackingOption";
|
|
298
|
-
const _DDTOo = "DomainDeliverabilityTrackingOptions";
|
|
299
|
-
const _DDV = "DefaultDimensionValue";
|
|
300
|
-
const _DE = "DashboardEnabled";
|
|
301
|
-
const _DEI = "DeleteEmailIdentity";
|
|
302
|
-
const _DEIR = "DeleteEmailIdentityRequest";
|
|
303
|
-
const _DEIRe = "DeleteEmailIdentityResponse";
|
|
304
|
-
const _DI = "DedicatedIp";
|
|
305
|
-
const _DIAWE = "DedicatedIpAutoWarmupEnabled";
|
|
306
|
-
const _DIL = "DedicatedIpList";
|
|
307
|
-
const _DIP = "DomainIspPlacements";
|
|
308
|
-
const _DIPe = "DedicatedIpPools";
|
|
309
|
-
const _DIPo = "DomainIspPlacement";
|
|
310
|
-
const _DIe = "DedicatedIps";
|
|
311
|
-
const _DN = "DimensionName";
|
|
312
|
-
const _DO = "DeliveryOptions";
|
|
313
|
-
const _DP = "DkimPercentage";
|
|
314
|
-
const _DPN = "DestinationPoolName";
|
|
315
|
-
const _DR = "DeleteRate";
|
|
316
|
-
const _DSA = "DeliveryStreamArn";
|
|
317
|
-
const _DTR = "DeliverabilityTestReport";
|
|
318
|
-
const _DTRe = "DeliverabilityTestReports";
|
|
319
|
-
const _DTS = "DeliverabilityTestStatus";
|
|
320
|
-
const _DV = "DailyVolume";
|
|
321
|
-
const _DVS = "DimensionValueSource";
|
|
322
|
-
const _DVa = "DailyVolumes";
|
|
323
|
-
const _Da = "Data";
|
|
324
|
-
const _De = "Destination";
|
|
325
|
-
const _Do = "Domain";
|
|
326
|
-
const _E = "Esps";
|
|
327
|
-
const _EC = "EmailContent";
|
|
328
|
-
const _ED = "EventDestination";
|
|
329
|
-
const _EDD = "EventDestinationDefinition";
|
|
330
|
-
const _EDN = "EventDestinationName";
|
|
331
|
-
const _EDn = "EndDate";
|
|
332
|
-
const _EDv = "EventDestinations";
|
|
333
|
-
const _EFE = "EmailForwardingEnabled";
|
|
334
|
-
const _EI = "EmailIdentity";
|
|
335
|
-
const _EIm = "EmailIdentities";
|
|
336
|
-
const _ES = "EnforcementStatus";
|
|
337
|
-
const _ET = "EmailTags";
|
|
338
|
-
const _En = "Enabled";
|
|
339
|
-
const _FA = "FromAddress";
|
|
340
|
-
const _FEA = "FromEmailAddress";
|
|
341
|
-
const _FFEA = "FeedbackForwardingEmailAddress";
|
|
342
|
-
const _FFS = "FeedbackForwardingStatus";
|
|
343
|
-
const _FSDT = "FirstSeenDateTime";
|
|
344
|
-
const _G = "Global";
|
|
345
|
-
const _GA = "GetAccount";
|
|
346
|
-
const _GAR = "GetAccountRequest";
|
|
347
|
-
const _GARe = "GetAccountResponse";
|
|
348
|
-
const _GBR = "GetBlacklistReports";
|
|
349
|
-
const _GBRR = "GetBlacklistReportsRequest";
|
|
350
|
-
const _GBRRe = "GetBlacklistReportsResponse";
|
|
351
|
-
const _GCS = "GetConfigurationSet";
|
|
352
|
-
const _GCSED = "GetConfigurationSetEventDestinations";
|
|
353
|
-
const _GCSEDR = "GetConfigurationSetEventDestinationsRequest";
|
|
354
|
-
const _GCSEDRe = "GetConfigurationSetEventDestinationsResponse";
|
|
355
|
-
const _GCSR = "GetConfigurationSetRequest";
|
|
356
|
-
const _GCSRe = "GetConfigurationSetResponse";
|
|
357
|
-
const _GDDC = "GetDomainDeliverabilityCampaign";
|
|
358
|
-
const _GDDCR = "GetDomainDeliverabilityCampaignRequest";
|
|
359
|
-
const _GDDCRe = "GetDomainDeliverabilityCampaignResponse";
|
|
360
|
-
const _GDDO = "GetDeliverabilityDashboardOptions";
|
|
361
|
-
const _GDDOR = "GetDeliverabilityDashboardOptionsRequest";
|
|
362
|
-
const _GDDORe = "GetDeliverabilityDashboardOptionsResponse";
|
|
363
|
-
const _GDI = "GetDedicatedIp";
|
|
364
|
-
const _GDIR = "GetDedicatedIpRequest";
|
|
365
|
-
const _GDIRe = "GetDedicatedIpResponse";
|
|
366
|
-
const _GDIRet = "GetDedicatedIpsRequest";
|
|
367
|
-
const _GDIRete = "GetDedicatedIpsResponse";
|
|
368
|
-
const _GDIe = "GetDedicatedIps";
|
|
369
|
-
const _GDSR = "GetDomainStatisticsReport";
|
|
370
|
-
const _GDSRR = "GetDomainStatisticsReportRequest";
|
|
371
|
-
const _GDSRRe = "GetDomainStatisticsReportResponse";
|
|
372
|
-
const _GDTR = "GetDeliverabilityTestReport";
|
|
373
|
-
const _GDTRR = "GetDeliverabilityTestReportRequest";
|
|
374
|
-
const _GDTRRe = "GetDeliverabilityTestReportResponse";
|
|
375
|
-
const _GEI = "GetEmailIdentity";
|
|
376
|
-
const _GEIR = "GetEmailIdentityRequest";
|
|
377
|
-
const _GEIRe = "GetEmailIdentityResponse";
|
|
378
|
-
const _H = "Html";
|
|
379
|
-
const _I = "Ip";
|
|
380
|
-
const _IC = "InboxCount";
|
|
381
|
-
const _II = "IdentityInfo";
|
|
382
|
-
const _IIL = "IdentityInfoList";
|
|
383
|
-
const _IN = "IspName";
|
|
384
|
-
const _INd = "IdentityName";
|
|
385
|
-
const _IP = "InboxPercentage";
|
|
386
|
-
const _IPTO = "InboxPlacementTrackingOption";
|
|
387
|
-
const _IPs = "IspPlacements";
|
|
388
|
-
const _IPsp = "IspPlacement";
|
|
389
|
-
const _IRA = "IamRoleArn";
|
|
390
|
-
const _IRC = "InboxRawCount";
|
|
391
|
-
const _IT = "IdentityType";
|
|
392
|
-
const _IU = "ImageUrl";
|
|
393
|
-
const _K = "Key";
|
|
394
|
-
const _KFD = "KinesisFirehoseDestination";
|
|
395
|
-
const _LCS = "ListConfigurationSets";
|
|
396
|
-
const _LCSR = "ListConfigurationSetsRequest";
|
|
397
|
-
const _LCSRi = "ListConfigurationSetsResponse";
|
|
398
|
-
const _LDDC = "ListDomainDeliverabilityCampaigns";
|
|
399
|
-
const _LDDCR = "ListDomainDeliverabilityCampaignsRequest";
|
|
400
|
-
const _LDDCRi = "ListDomainDeliverabilityCampaignsResponse";
|
|
401
|
-
const _LDIP = "ListDedicatedIpPools";
|
|
402
|
-
const _LDIPR = "ListDedicatedIpPoolsRequest";
|
|
403
|
-
const _LDIPRi = "ListDedicatedIpPoolsResponse";
|
|
404
|
-
const _LDTR = "ListDeliverabilityTestReports";
|
|
405
|
-
const _LDTRR = "ListDeliverabilityTestReportsRequest";
|
|
406
|
-
const _LDTRRi = "ListDeliverabilityTestReportsResponse";
|
|
407
|
-
const _LEE = "LimitExceededException";
|
|
408
|
-
const _LEI = "ListEmailIdentities";
|
|
409
|
-
const _LEIR = "ListEmailIdentitiesRequest";
|
|
410
|
-
const _LEIRi = "ListEmailIdentitiesResponse";
|
|
411
|
-
const _LFS = "LastFreshStart";
|
|
412
|
-
const _LSDT = "LastSeenDateTime";
|
|
413
|
-
const _LT = "ListingTime";
|
|
414
|
-
const _LTFR = "ListTagsForResource";
|
|
415
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
416
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
417
|
-
const _M = "Message";
|
|
418
|
-
const _MET = "MatchingEventTypes";
|
|
419
|
-
const _MFA = "MailFromAttributes";
|
|
420
|
-
const _MFD = "MailFromDomain";
|
|
421
|
-
const _MFDNVE = "MailFromDomainNotVerifiedException";
|
|
422
|
-
const _MFDS = "MailFromDomainStatus";
|
|
423
|
-
const _MHS = "Max24HourSend";
|
|
424
|
-
const _MI = "MessageId";
|
|
425
|
-
const _MP = "MissingPercentage";
|
|
426
|
-
const _MR = "MessageRejected";
|
|
427
|
-
const _MSR = "MaxSendRate";
|
|
428
|
-
const _MT = "MessageTag";
|
|
429
|
-
const _MTL = "MessageTagList";
|
|
430
|
-
const _N = "Name";
|
|
431
|
-
const _NFE = "NotFoundException";
|
|
432
|
-
const _NT = "NextToken";
|
|
433
|
-
const _OP = "OverallPlacement";
|
|
434
|
-
const _OV = "OverallVolume";
|
|
435
|
-
const _PADIWA = "PutAccountDedicatedIpWarmupAttributes";
|
|
436
|
-
const _PADIWAR = "PutAccountDedicatedIpWarmupAttributesRequest";
|
|
437
|
-
const _PADIWARu = "PutAccountDedicatedIpWarmupAttributesResponse";
|
|
438
|
-
const _PAE = "ProductionAccessEnabled";
|
|
439
|
-
const _PASA = "PutAccountSendingAttributes";
|
|
440
|
-
const _PASAR = "PutAccountSendingAttributesRequest";
|
|
441
|
-
const _PASARu = "PutAccountSendingAttributesResponse";
|
|
442
|
-
const _PCSDO = "PutConfigurationSetDeliveryOptions";
|
|
443
|
-
const _PCSDOR = "PutConfigurationSetDeliveryOptionsRequest";
|
|
444
|
-
const _PCSDORu = "PutConfigurationSetDeliveryOptionsResponse";
|
|
445
|
-
const _PCSRO = "PutConfigurationSetReputationOptions";
|
|
446
|
-
const _PCSROR = "PutConfigurationSetReputationOptionsRequest";
|
|
447
|
-
const _PCSRORu = "PutConfigurationSetReputationOptionsResponse";
|
|
448
|
-
const _PCSSO = "PutConfigurationSetSendingOptions";
|
|
449
|
-
const _PCSSOR = "PutConfigurationSetSendingOptionsRequest";
|
|
450
|
-
const _PCSSORu = "PutConfigurationSetSendingOptionsResponse";
|
|
451
|
-
const _PCSTO = "PutConfigurationSetTrackingOptions";
|
|
452
|
-
const _PCSTOR = "PutConfigurationSetTrackingOptionsRequest";
|
|
453
|
-
const _PCSTORu = "PutConfigurationSetTrackingOptionsResponse";
|
|
454
|
-
const _PD = "PinpointDestination";
|
|
455
|
-
const _PDDO = "PutDeliverabilityDashboardOption";
|
|
456
|
-
const _PDDOR = "PutDeliverabilityDashboardOptionRequest";
|
|
457
|
-
const _PDDORu = "PutDeliverabilityDashboardOptionResponse";
|
|
458
|
-
const _PDIIP = "PutDedicatedIpInPool";
|
|
459
|
-
const _PDIIPR = "PutDedicatedIpInPoolRequest";
|
|
460
|
-
const _PDIIPRu = "PutDedicatedIpInPoolResponse";
|
|
461
|
-
const _PDIWA = "PutDedicatedIpWarmupAttributes";
|
|
462
|
-
const _PDIWAR = "PutDedicatedIpWarmupAttributesRequest";
|
|
463
|
-
const _PDIWARu = "PutDedicatedIpWarmupAttributesResponse";
|
|
464
|
-
const _PEIDA = "PutEmailIdentityDkimAttributes";
|
|
465
|
-
const _PEIDAR = "PutEmailIdentityDkimAttributesRequest";
|
|
466
|
-
const _PEIDARu = "PutEmailIdentityDkimAttributesResponse";
|
|
467
|
-
const _PEIFA = "PutEmailIdentityFeedbackAttributes";
|
|
468
|
-
const _PEIFAR = "PutEmailIdentityFeedbackAttributesRequest";
|
|
469
|
-
const _PEIFARu = "PutEmailIdentityFeedbackAttributesResponse";
|
|
470
|
-
const _PEIMFA = "PutEmailIdentityMailFromAttributes";
|
|
471
|
-
const _PEIMFAR = "PutEmailIdentityMailFromAttributesRequest";
|
|
472
|
-
const _PEIMFARu = "PutEmailIdentityMailFromAttributesResponse";
|
|
473
|
-
const _PESD = "PendingExpirationSubscribedDomains";
|
|
474
|
-
const _PI = "ProjectedInbox";
|
|
475
|
-
const _PN = "PoolName";
|
|
476
|
-
const _PS = "PageSize";
|
|
477
|
-
const _PSl = "PlacementStatistics";
|
|
478
|
-
const _PSr = "ProjectedSpam";
|
|
479
|
-
const _PV = "ProjectedVolume";
|
|
480
|
-
const _R = "Raw";
|
|
481
|
-
const _RA = "ResourceArn";
|
|
482
|
-
const _RDR = "ReadDeleteRate";
|
|
483
|
-
const _RI = "ReportId";
|
|
484
|
-
const _RM = "RawMessage";
|
|
485
|
-
const _RME = "ReputationMetricsEnabled";
|
|
486
|
-
const _RN = "RblName";
|
|
487
|
-
const _RNe = "ReportName";
|
|
488
|
-
const _RO = "ReputationOptions";
|
|
489
|
-
const _RR = "ReadRate";
|
|
490
|
-
const _RRP = "ReadRatePercent";
|
|
491
|
-
const _RTA = "ReplyToAddresses";
|
|
492
|
-
const _S = "Subject";
|
|
493
|
-
const _SC = "SpamCount";
|
|
494
|
-
const _SD = "StartDate";
|
|
495
|
-
const _SDn = "SnsDestination";
|
|
496
|
-
const _SDu = "SubscribedDomain";
|
|
497
|
-
const _SDub = "SubscribedDomains";
|
|
498
|
-
const _SE = "SigningEnabled";
|
|
499
|
-
const _SED = "SubscriptionExpiryDate";
|
|
500
|
-
const _SER = "SendEmailRequest";
|
|
501
|
-
const _SERe = "SendEmailResponse";
|
|
502
|
-
const _SEe = "SendingEnabled";
|
|
503
|
-
const _SEen = "SendEmail";
|
|
504
|
-
const _SI = "SendingIps";
|
|
505
|
-
const _SLH = "SentLast24Hours";
|
|
506
|
-
const _SO = "SendingOptions";
|
|
507
|
-
const _SP = "SpamPercentage";
|
|
508
|
-
const _SPE = "SendingPausedException";
|
|
509
|
-
const _SPN = "SendingPoolName";
|
|
510
|
-
const _SPp = "SpfPercentage";
|
|
511
|
-
const _SQ = "SendQuota";
|
|
512
|
-
const _SRC = "SpamRawCount";
|
|
513
|
-
const _SSD = "SubscriptionStartDate";
|
|
514
|
-
const _Si = "Simple";
|
|
515
|
-
const _St = "Status";
|
|
516
|
-
const _T = "Text";
|
|
517
|
-
const _TA = "ToAddresses";
|
|
518
|
-
const _TAe = "TemplateArn";
|
|
519
|
-
const _TAo = "TopicArn";
|
|
520
|
-
const _TD = "TemplateData";
|
|
521
|
-
const _TI = "TrackedIsps";
|
|
522
|
-
const _TK = "TagKeys";
|
|
523
|
-
const _TL = "TagList";
|
|
524
|
-
const _TMRE = "TooManyRequestsException";
|
|
525
|
-
const _TO = "TrackingOptions";
|
|
526
|
-
const _TP = "TlsPolicy";
|
|
527
|
-
const _TR = "TagResource";
|
|
528
|
-
const _TRR = "TagResourceRequest";
|
|
529
|
-
const _TRRa = "TagResourceResponse";
|
|
530
|
-
const _Ta = "Tags";
|
|
531
|
-
const _Tag = "Tag";
|
|
532
|
-
const _Te = "Template";
|
|
533
|
-
const _To = "Tokens";
|
|
534
|
-
const _UCSED = "UpdateConfigurationSetEventDestination";
|
|
535
|
-
const _UCSEDR = "UpdateConfigurationSetEventDestinationRequest";
|
|
536
|
-
const _UCSEDRp = "UpdateConfigurationSetEventDestinationResponse";
|
|
537
|
-
const _UR = "UntagResource";
|
|
538
|
-
const _URR = "UntagResourceRequest";
|
|
539
|
-
const _URRn = "UntagResourceResponse";
|
|
540
|
-
const _V = "Value";
|
|
541
|
-
const _VFSS = "VerifiedForSendingStatus";
|
|
542
|
-
const _VS = "VolumeStatistics";
|
|
543
|
-
const _WP = "WarmupPercentage";
|
|
544
|
-
const _WS = "WarmupStatus";
|
|
545
|
-
const _c = "client";
|
|
546
|
-
const _e = "error";
|
|
547
|
-
const _h = "http";
|
|
548
|
-
const _hE = "httpError";
|
|
549
|
-
const _hQ = "httpQuery";
|
|
550
|
-
const _m = "message";
|
|
551
|
-
const _s = "server";
|
|
552
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.pinpointemail";
|
|
553
|
-
const n0 = "com.amazonaws.pinpointemail";
|
|
554
|
-
var AccountSuspendedException$ = [-3, n0, _ASE,
|
|
555
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
556
|
-
[_m],
|
|
557
|
-
[0]
|
|
558
|
-
];
|
|
559
|
-
schema.TypeRegistry.for(n0).registerError(AccountSuspendedException$, AccountSuspendedException);
|
|
560
|
-
var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
561
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
562
|
-
[_m],
|
|
563
|
-
[0]
|
|
564
|
-
];
|
|
565
|
-
schema.TypeRegistry.for(n0).registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
566
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
567
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
568
|
-
[_m],
|
|
569
|
-
[0]
|
|
570
|
-
];
|
|
571
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
572
|
-
var BlacklistEntry$ = [3, n0, _BE,
|
|
573
|
-
0,
|
|
574
|
-
[_RN, _LT, _D],
|
|
575
|
-
[0, 4, 0]
|
|
576
|
-
];
|
|
577
|
-
var Body$ = [3, n0, _B,
|
|
578
|
-
0,
|
|
579
|
-
[_T, _H],
|
|
580
|
-
[() => Content$, () => Content$]
|
|
581
|
-
];
|
|
582
|
-
var CloudWatchDestination$ = [3, n0, _CWD,
|
|
583
|
-
0,
|
|
584
|
-
[_DC],
|
|
585
|
-
[() => CloudWatchDimensionConfigurations], 1
|
|
586
|
-
];
|
|
587
|
-
var CloudWatchDimensionConfiguration$ = [3, n0, _CWDC,
|
|
588
|
-
0,
|
|
589
|
-
[_DN, _DVS, _DDV],
|
|
590
|
-
[0, 0, 0], 3
|
|
591
|
-
];
|
|
592
|
-
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
593
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
594
|
-
[_m],
|
|
595
|
-
[0]
|
|
596
|
-
];
|
|
597
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
598
|
-
var Content$ = [3, n0, _C,
|
|
599
|
-
0,
|
|
600
|
-
[_Da, _Ch],
|
|
601
|
-
[0, 0], 1
|
|
602
|
-
];
|
|
603
|
-
var CreateConfigurationSetEventDestinationRequest$ = [3, n0, _CCSEDR,
|
|
604
|
-
0,
|
|
605
|
-
[_CSN, _EDN, _ED],
|
|
606
|
-
[[0, 1], 0, () => EventDestinationDefinition$], 3
|
|
607
|
-
];
|
|
608
|
-
var CreateConfigurationSetEventDestinationResponse$ = [3, n0, _CCSEDRr,
|
|
609
|
-
0,
|
|
610
|
-
[],
|
|
611
|
-
[]
|
|
612
|
-
];
|
|
613
|
-
var CreateConfigurationSetRequest$ = [3, n0, _CCSR,
|
|
614
|
-
0,
|
|
615
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta],
|
|
616
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList], 1
|
|
617
|
-
];
|
|
618
|
-
var CreateConfigurationSetResponse$ = [3, n0, _CCSRr,
|
|
619
|
-
0,
|
|
620
|
-
[],
|
|
621
|
-
[]
|
|
622
|
-
];
|
|
623
|
-
var CreateDedicatedIpPoolRequest$ = [3, n0, _CDIPR,
|
|
624
|
-
0,
|
|
625
|
-
[_PN, _Ta],
|
|
626
|
-
[0, () => TagList], 1
|
|
627
|
-
];
|
|
628
|
-
var CreateDedicatedIpPoolResponse$ = [3, n0, _CDIPRr,
|
|
629
|
-
0,
|
|
630
|
-
[],
|
|
631
|
-
[]
|
|
632
|
-
];
|
|
633
|
-
var CreateDeliverabilityTestReportRequest$ = [3, n0, _CDTRR,
|
|
634
|
-
0,
|
|
635
|
-
[_FEA, _C, _RNe, _Ta],
|
|
636
|
-
[0, () => EmailContent$, 0, () => TagList], 2
|
|
637
|
-
];
|
|
638
|
-
var CreateDeliverabilityTestReportResponse$ = [3, n0, _CDTRRr,
|
|
639
|
-
0,
|
|
640
|
-
[_RI, _DTS],
|
|
641
|
-
[0, 0], 2
|
|
642
|
-
];
|
|
643
|
-
var CreateEmailIdentityRequest$ = [3, n0, _CEIR,
|
|
644
|
-
0,
|
|
645
|
-
[_EI, _Ta],
|
|
646
|
-
[0, () => TagList], 1
|
|
647
|
-
];
|
|
648
|
-
var CreateEmailIdentityResponse$ = [3, n0, _CEIRr,
|
|
649
|
-
0,
|
|
650
|
-
[_IT, _VFSS, _DA],
|
|
651
|
-
[0, 2, () => DkimAttributes$]
|
|
652
|
-
];
|
|
653
|
-
var DailyVolume$ = [3, n0, _DV,
|
|
654
|
-
0,
|
|
655
|
-
[_SD, _VS, _DIP],
|
|
656
|
-
[4, () => VolumeStatistics$, () => DomainIspPlacements]
|
|
657
|
-
];
|
|
658
|
-
var DedicatedIp$ = [3, n0, _DI,
|
|
659
|
-
0,
|
|
660
|
-
[_I, _WS, _WP, _PN],
|
|
661
|
-
[0, 0, 1, 0], 3
|
|
662
|
-
];
|
|
663
|
-
var DeleteConfigurationSetEventDestinationRequest$ = [3, n0, _DCSEDR,
|
|
664
|
-
0,
|
|
665
|
-
[_CSN, _EDN],
|
|
666
|
-
[[0, 1], [0, 1]], 2
|
|
667
|
-
];
|
|
668
|
-
var DeleteConfigurationSetEventDestinationResponse$ = [3, n0, _DCSEDRe,
|
|
669
|
-
0,
|
|
670
|
-
[],
|
|
671
|
-
[]
|
|
672
|
-
];
|
|
673
|
-
var DeleteConfigurationSetRequest$ = [3, n0, _DCSR,
|
|
674
|
-
0,
|
|
675
|
-
[_CSN],
|
|
676
|
-
[[0, 1]], 1
|
|
677
|
-
];
|
|
678
|
-
var DeleteConfigurationSetResponse$ = [3, n0, _DCSRe,
|
|
679
|
-
0,
|
|
680
|
-
[],
|
|
681
|
-
[]
|
|
682
|
-
];
|
|
683
|
-
var DeleteDedicatedIpPoolRequest$ = [3, n0, _DDIPR,
|
|
684
|
-
0,
|
|
685
|
-
[_PN],
|
|
686
|
-
[[0, 1]], 1
|
|
687
|
-
];
|
|
688
|
-
var DeleteDedicatedIpPoolResponse$ = [3, n0, _DDIPRe,
|
|
689
|
-
0,
|
|
690
|
-
[],
|
|
691
|
-
[]
|
|
692
|
-
];
|
|
693
|
-
var DeleteEmailIdentityRequest$ = [3, n0, _DEIR,
|
|
694
|
-
0,
|
|
695
|
-
[_EI],
|
|
696
|
-
[[0, 1]], 1
|
|
697
|
-
];
|
|
698
|
-
var DeleteEmailIdentityResponse$ = [3, n0, _DEIRe,
|
|
699
|
-
0,
|
|
700
|
-
[],
|
|
701
|
-
[]
|
|
702
|
-
];
|
|
703
|
-
var DeliverabilityTestReport$ = [3, n0, _DTR,
|
|
704
|
-
0,
|
|
705
|
-
[_RI, _RNe, _S, _FEA, _CD, _DTS],
|
|
706
|
-
[0, 0, 0, 0, 4, 0]
|
|
707
|
-
];
|
|
708
|
-
var DeliveryOptions$ = [3, n0, _DO,
|
|
709
|
-
0,
|
|
710
|
-
[_TP, _SPN],
|
|
711
|
-
[0, 0]
|
|
712
|
-
];
|
|
713
|
-
var Destination$ = [3, n0, _De,
|
|
714
|
-
0,
|
|
715
|
-
[_TA, _CA, _BA],
|
|
716
|
-
[64 | 0, 64 | 0, 64 | 0]
|
|
717
|
-
];
|
|
718
|
-
var DkimAttributes$ = [3, n0, _DA,
|
|
719
|
-
0,
|
|
720
|
-
[_SE, _St, _To],
|
|
721
|
-
[2, 0, 64 | 0]
|
|
722
|
-
];
|
|
723
|
-
var DomainDeliverabilityCampaign$ = [3, n0, _DDC,
|
|
724
|
-
0,
|
|
725
|
-
[_CI, _IU, _S, _FA, _SI, _FSDT, _LSDT, _IC, _SC, _RR, _DR, _RDR, _PV, _E],
|
|
726
|
-
[0, 0, 0, 0, 64 | 0, 4, 4, 1, 1, 1, 1, 1, 1, 64 | 0]
|
|
727
|
-
];
|
|
728
|
-
var DomainDeliverabilityTrackingOption$ = [3, n0, _DDTO,
|
|
729
|
-
0,
|
|
730
|
-
[_Do, _SSD, _IPTO],
|
|
731
|
-
[0, 4, () => InboxPlacementTrackingOption$]
|
|
732
|
-
];
|
|
733
|
-
var DomainIspPlacement$ = [3, n0, _DIPo,
|
|
734
|
-
0,
|
|
735
|
-
[_IN, _IRC, _SRC, _IP, _SP],
|
|
736
|
-
[0, 1, 1, 1, 1]
|
|
737
|
-
];
|
|
738
|
-
var EmailContent$ = [3, n0, _EC,
|
|
739
|
-
0,
|
|
740
|
-
[_Si, _R, _Te],
|
|
741
|
-
[() => Message$, () => RawMessage$, () => Template$]
|
|
742
|
-
];
|
|
743
|
-
var EventDestination$ = [3, n0, _ED,
|
|
744
|
-
0,
|
|
745
|
-
[_N, _MET, _En, _KFD, _CWD, _SDn, _PD],
|
|
746
|
-
[0, 64 | 0, 2, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SnsDestination$, () => PinpointDestination$], 2
|
|
747
|
-
];
|
|
748
|
-
var EventDestinationDefinition$ = [3, n0, _EDD,
|
|
749
|
-
0,
|
|
750
|
-
[_En, _MET, _KFD, _CWD, _SDn, _PD],
|
|
751
|
-
[2, 64 | 0, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SnsDestination$, () => PinpointDestination$]
|
|
752
|
-
];
|
|
753
|
-
var GetAccountRequest$ = [3, n0, _GAR,
|
|
754
|
-
0,
|
|
755
|
-
[],
|
|
756
|
-
[]
|
|
757
|
-
];
|
|
758
|
-
var GetAccountResponse$ = [3, n0, _GARe,
|
|
759
|
-
0,
|
|
760
|
-
[_SQ, _SEe, _DIAWE, _ES, _PAE],
|
|
761
|
-
[() => SendQuota$, 2, 2, 0, 2]
|
|
762
|
-
];
|
|
763
|
-
var GetBlacklistReportsRequest$ = [3, n0, _GBRR,
|
|
764
|
-
0,
|
|
765
|
-
[_BIN],
|
|
766
|
-
[[64 | 0, { [_hQ]: _BIN }]], 1
|
|
767
|
-
];
|
|
768
|
-
var GetBlacklistReportsResponse$ = [3, n0, _GBRRe,
|
|
769
|
-
0,
|
|
770
|
-
[_BR],
|
|
771
|
-
[() => BlacklistReport], 1
|
|
772
|
-
];
|
|
773
|
-
var GetConfigurationSetEventDestinationsRequest$ = [3, n0, _GCSEDR,
|
|
774
|
-
0,
|
|
775
|
-
[_CSN],
|
|
776
|
-
[[0, 1]], 1
|
|
777
|
-
];
|
|
778
|
-
var GetConfigurationSetEventDestinationsResponse$ = [3, n0, _GCSEDRe,
|
|
779
|
-
0,
|
|
780
|
-
[_EDv],
|
|
781
|
-
[() => EventDestinations]
|
|
782
|
-
];
|
|
783
|
-
var GetConfigurationSetRequest$ = [3, n0, _GCSR,
|
|
784
|
-
0,
|
|
785
|
-
[_CSN],
|
|
786
|
-
[[0, 1]], 1
|
|
787
|
-
];
|
|
788
|
-
var GetConfigurationSetResponse$ = [3, n0, _GCSRe,
|
|
789
|
-
0,
|
|
790
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta],
|
|
791
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList]
|
|
792
|
-
];
|
|
793
|
-
var GetDedicatedIpRequest$ = [3, n0, _GDIR,
|
|
794
|
-
0,
|
|
795
|
-
[_I],
|
|
796
|
-
[[0, 1]], 1
|
|
797
|
-
];
|
|
798
|
-
var GetDedicatedIpResponse$ = [3, n0, _GDIRe,
|
|
799
|
-
0,
|
|
800
|
-
[_DI],
|
|
801
|
-
[() => DedicatedIp$]
|
|
802
|
-
];
|
|
803
|
-
var GetDedicatedIpsRequest$ = [3, n0, _GDIRet,
|
|
804
|
-
0,
|
|
805
|
-
[_PN, _NT, _PS],
|
|
806
|
-
[[0, { [_hQ]: _PN }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
807
|
-
];
|
|
808
|
-
var GetDedicatedIpsResponse$ = [3, n0, _GDIRete,
|
|
809
|
-
0,
|
|
810
|
-
[_DIe, _NT],
|
|
811
|
-
[() => DedicatedIpList, 0]
|
|
812
|
-
];
|
|
813
|
-
var GetDeliverabilityDashboardOptionsRequest$ = [3, n0, _GDDOR,
|
|
814
|
-
0,
|
|
815
|
-
[],
|
|
816
|
-
[]
|
|
817
|
-
];
|
|
818
|
-
var GetDeliverabilityDashboardOptionsResponse$ = [3, n0, _GDDORe,
|
|
819
|
-
0,
|
|
820
|
-
[_DE, _SED, _AS, _ASD, _PESD],
|
|
821
|
-
[2, 4, 0, () => DomainDeliverabilityTrackingOptions, () => DomainDeliverabilityTrackingOptions], 1
|
|
822
|
-
];
|
|
823
|
-
var GetDeliverabilityTestReportRequest$ = [3, n0, _GDTRR,
|
|
824
|
-
0,
|
|
825
|
-
[_RI],
|
|
826
|
-
[[0, 1]], 1
|
|
827
|
-
];
|
|
828
|
-
var GetDeliverabilityTestReportResponse$ = [3, n0, _GDTRRe,
|
|
829
|
-
0,
|
|
830
|
-
[_DTR, _OP, _IPs, _M, _Ta],
|
|
831
|
-
[() => DeliverabilityTestReport$, () => PlacementStatistics$, () => IspPlacements, 0, () => TagList], 3
|
|
832
|
-
];
|
|
833
|
-
var GetDomainDeliverabilityCampaignRequest$ = [3, n0, _GDDCR,
|
|
834
|
-
0,
|
|
835
|
-
[_CI],
|
|
836
|
-
[[0, 1]], 1
|
|
837
|
-
];
|
|
838
|
-
var GetDomainDeliverabilityCampaignResponse$ = [3, n0, _GDDCRe,
|
|
839
|
-
0,
|
|
840
|
-
[_DDC],
|
|
841
|
-
[() => DomainDeliverabilityCampaign$], 1
|
|
842
|
-
];
|
|
843
|
-
var GetDomainStatisticsReportRequest$ = [3, n0, _GDSRR,
|
|
844
|
-
0,
|
|
845
|
-
[_Do, _SD, _EDn],
|
|
846
|
-
[[0, 1], [4, { [_hQ]: _SD }], [4, { [_hQ]: _EDn }]], 3
|
|
847
|
-
];
|
|
848
|
-
var GetDomainStatisticsReportResponse$ = [3, n0, _GDSRRe,
|
|
849
|
-
0,
|
|
850
|
-
[_OV, _DVa],
|
|
851
|
-
[() => OverallVolume$, () => DailyVolumes], 2
|
|
852
|
-
];
|
|
853
|
-
var GetEmailIdentityRequest$ = [3, n0, _GEIR,
|
|
854
|
-
0,
|
|
855
|
-
[_EI],
|
|
856
|
-
[[0, 1]], 1
|
|
857
|
-
];
|
|
858
|
-
var GetEmailIdentityResponse$ = [3, n0, _GEIRe,
|
|
859
|
-
0,
|
|
860
|
-
[_IT, _FFS, _VFSS, _DA, _MFA, _Ta],
|
|
861
|
-
[0, 2, 2, () => DkimAttributes$, () => MailFromAttributes$, () => TagList]
|
|
862
|
-
];
|
|
863
|
-
var IdentityInfo$ = [3, n0, _II,
|
|
864
|
-
0,
|
|
865
|
-
[_IT, _INd, _SEe],
|
|
866
|
-
[0, 0, 2]
|
|
867
|
-
];
|
|
868
|
-
var InboxPlacementTrackingOption$ = [3, n0, _IPTO,
|
|
869
|
-
0,
|
|
870
|
-
[_G, _TI],
|
|
871
|
-
[2, 64 | 0]
|
|
872
|
-
];
|
|
873
|
-
var IspPlacement$ = [3, n0, _IPsp,
|
|
874
|
-
0,
|
|
875
|
-
[_IN, _PSl],
|
|
876
|
-
[0, () => PlacementStatistics$]
|
|
877
|
-
];
|
|
878
|
-
var KinesisFirehoseDestination$ = [3, n0, _KFD,
|
|
879
|
-
0,
|
|
880
|
-
[_IRA, _DSA],
|
|
881
|
-
[0, 0], 2
|
|
882
|
-
];
|
|
883
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
884
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
885
|
-
[_m],
|
|
886
|
-
[0]
|
|
887
|
-
];
|
|
888
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
889
|
-
var ListConfigurationSetsRequest$ = [3, n0, _LCSR,
|
|
890
|
-
0,
|
|
891
|
-
[_NT, _PS],
|
|
892
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
893
|
-
];
|
|
894
|
-
var ListConfigurationSetsResponse$ = [3, n0, _LCSRi,
|
|
895
|
-
0,
|
|
896
|
-
[_CS, _NT],
|
|
897
|
-
[64 | 0, 0]
|
|
898
|
-
];
|
|
899
|
-
var ListDedicatedIpPoolsRequest$ = [3, n0, _LDIPR,
|
|
900
|
-
0,
|
|
901
|
-
[_NT, _PS],
|
|
902
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
903
|
-
];
|
|
904
|
-
var ListDedicatedIpPoolsResponse$ = [3, n0, _LDIPRi,
|
|
905
|
-
0,
|
|
906
|
-
[_DIPe, _NT],
|
|
907
|
-
[64 | 0, 0]
|
|
908
|
-
];
|
|
909
|
-
var ListDeliverabilityTestReportsRequest$ = [3, n0, _LDTRR,
|
|
910
|
-
0,
|
|
911
|
-
[_NT, _PS],
|
|
912
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
913
|
-
];
|
|
914
|
-
var ListDeliverabilityTestReportsResponse$ = [3, n0, _LDTRRi,
|
|
915
|
-
0,
|
|
916
|
-
[_DTRe, _NT],
|
|
917
|
-
[() => DeliverabilityTestReports, 0], 1
|
|
918
|
-
];
|
|
919
|
-
var ListDomainDeliverabilityCampaignsRequest$ = [3, n0, _LDDCR,
|
|
920
|
-
0,
|
|
921
|
-
[_SD, _EDn, _SDu, _NT, _PS],
|
|
922
|
-
[[4, { [_hQ]: _SD }], [4, { [_hQ]: _EDn }], [0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]], 3
|
|
923
|
-
];
|
|
924
|
-
var ListDomainDeliverabilityCampaignsResponse$ = [3, n0, _LDDCRi,
|
|
925
|
-
0,
|
|
926
|
-
[_DDCo, _NT],
|
|
927
|
-
[() => DomainDeliverabilityCampaignList, 0], 1
|
|
928
|
-
];
|
|
929
|
-
var ListEmailIdentitiesRequest$ = [3, n0, _LEIR,
|
|
930
|
-
0,
|
|
931
|
-
[_NT, _PS],
|
|
932
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
933
|
-
];
|
|
934
|
-
var ListEmailIdentitiesResponse$ = [3, n0, _LEIRi,
|
|
935
|
-
0,
|
|
936
|
-
[_EIm, _NT],
|
|
937
|
-
[() => IdentityInfoList, 0]
|
|
938
|
-
];
|
|
939
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
940
|
-
0,
|
|
941
|
-
[_RA],
|
|
942
|
-
[[0, { [_hQ]: _RA }]], 1
|
|
943
|
-
];
|
|
944
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
945
|
-
0,
|
|
946
|
-
[_Ta],
|
|
947
|
-
[() => TagList], 1
|
|
948
|
-
];
|
|
949
|
-
var MailFromAttributes$ = [3, n0, _MFA,
|
|
950
|
-
0,
|
|
951
|
-
[_MFD, _MFDS, _BOMF],
|
|
952
|
-
[0, 0, 0], 3
|
|
953
|
-
];
|
|
954
|
-
var MailFromDomainNotVerifiedException$ = [-3, n0, _MFDNVE,
|
|
955
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
956
|
-
[_m],
|
|
957
|
-
[0]
|
|
958
|
-
];
|
|
959
|
-
schema.TypeRegistry.for(n0).registerError(MailFromDomainNotVerifiedException$, MailFromDomainNotVerifiedException);
|
|
960
|
-
var Message$ = [3, n0, _M,
|
|
961
|
-
0,
|
|
962
|
-
[_S, _B],
|
|
963
|
-
[() => Content$, () => Body$], 2
|
|
964
|
-
];
|
|
965
|
-
var MessageRejected$ = [-3, n0, _MR,
|
|
966
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
967
|
-
[_m],
|
|
968
|
-
[0]
|
|
969
|
-
];
|
|
970
|
-
schema.TypeRegistry.for(n0).registerError(MessageRejected$, MessageRejected);
|
|
971
|
-
var MessageTag$ = [3, n0, _MT,
|
|
972
|
-
0,
|
|
973
|
-
[_N, _V],
|
|
974
|
-
[0, 0], 2
|
|
975
|
-
];
|
|
976
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
977
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
978
|
-
[_m],
|
|
979
|
-
[0]
|
|
980
|
-
];
|
|
981
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
982
|
-
var OverallVolume$ = [3, n0, _OV,
|
|
983
|
-
0,
|
|
984
|
-
[_VS, _RRP, _DIP],
|
|
985
|
-
[() => VolumeStatistics$, 1, () => DomainIspPlacements]
|
|
986
|
-
];
|
|
987
|
-
var PinpointDestination$ = [3, n0, _PD,
|
|
988
|
-
0,
|
|
989
|
-
[_AA],
|
|
990
|
-
[0]
|
|
991
|
-
];
|
|
992
|
-
var PlacementStatistics$ = [3, n0, _PSl,
|
|
993
|
-
0,
|
|
994
|
-
[_IP, _SP, _MP, _SPp, _DP],
|
|
995
|
-
[1, 1, 1, 1, 1]
|
|
996
|
-
];
|
|
997
|
-
var PutAccountDedicatedIpWarmupAttributesRequest$ = [3, n0, _PADIWAR,
|
|
998
|
-
0,
|
|
999
|
-
[_AWE],
|
|
1000
|
-
[2]
|
|
1001
|
-
];
|
|
1002
|
-
var PutAccountDedicatedIpWarmupAttributesResponse$ = [3, n0, _PADIWARu,
|
|
1003
|
-
0,
|
|
1004
|
-
[],
|
|
1005
|
-
[]
|
|
1006
|
-
];
|
|
1007
|
-
var PutAccountSendingAttributesRequest$ = [3, n0, _PASAR,
|
|
1008
|
-
0,
|
|
1009
|
-
[_SEe],
|
|
1010
|
-
[2]
|
|
1011
|
-
];
|
|
1012
|
-
var PutAccountSendingAttributesResponse$ = [3, n0, _PASARu,
|
|
1013
|
-
0,
|
|
1014
|
-
[],
|
|
1015
|
-
[]
|
|
1016
|
-
];
|
|
1017
|
-
var PutConfigurationSetDeliveryOptionsRequest$ = [3, n0, _PCSDOR,
|
|
1018
|
-
0,
|
|
1019
|
-
[_CSN, _TP, _SPN],
|
|
1020
|
-
[[0, 1], 0, 0], 1
|
|
1021
|
-
];
|
|
1022
|
-
var PutConfigurationSetDeliveryOptionsResponse$ = [3, n0, _PCSDORu,
|
|
1023
|
-
0,
|
|
1024
|
-
[],
|
|
1025
|
-
[]
|
|
1026
|
-
];
|
|
1027
|
-
var PutConfigurationSetReputationOptionsRequest$ = [3, n0, _PCSROR,
|
|
1028
|
-
0,
|
|
1029
|
-
[_CSN, _RME],
|
|
1030
|
-
[[0, 1], 2], 1
|
|
1031
|
-
];
|
|
1032
|
-
var PutConfigurationSetReputationOptionsResponse$ = [3, n0, _PCSRORu,
|
|
1033
|
-
0,
|
|
1034
|
-
[],
|
|
1035
|
-
[]
|
|
1036
|
-
];
|
|
1037
|
-
var PutConfigurationSetSendingOptionsRequest$ = [3, n0, _PCSSOR,
|
|
1038
|
-
0,
|
|
1039
|
-
[_CSN, _SEe],
|
|
1040
|
-
[[0, 1], 2], 1
|
|
1041
|
-
];
|
|
1042
|
-
var PutConfigurationSetSendingOptionsResponse$ = [3, n0, _PCSSORu,
|
|
1043
|
-
0,
|
|
1044
|
-
[],
|
|
1045
|
-
[]
|
|
1046
|
-
];
|
|
1047
|
-
var PutConfigurationSetTrackingOptionsRequest$ = [3, n0, _PCSTOR,
|
|
1048
|
-
0,
|
|
1049
|
-
[_CSN, _CRD],
|
|
1050
|
-
[[0, 1], 0], 1
|
|
1051
|
-
];
|
|
1052
|
-
var PutConfigurationSetTrackingOptionsResponse$ = [3, n0, _PCSTORu,
|
|
1053
|
-
0,
|
|
1054
|
-
[],
|
|
1055
|
-
[]
|
|
1056
|
-
];
|
|
1057
|
-
var PutDedicatedIpInPoolRequest$ = [3, n0, _PDIIPR,
|
|
1058
|
-
0,
|
|
1059
|
-
[_I, _DPN],
|
|
1060
|
-
[[0, 1], 0], 2
|
|
1061
|
-
];
|
|
1062
|
-
var PutDedicatedIpInPoolResponse$ = [3, n0, _PDIIPRu,
|
|
1063
|
-
0,
|
|
1064
|
-
[],
|
|
1065
|
-
[]
|
|
1066
|
-
];
|
|
1067
|
-
var PutDedicatedIpWarmupAttributesRequest$ = [3, n0, _PDIWAR,
|
|
1068
|
-
0,
|
|
1069
|
-
[_I, _WP],
|
|
1070
|
-
[[0, 1], 1], 2
|
|
1071
|
-
];
|
|
1072
|
-
var PutDedicatedIpWarmupAttributesResponse$ = [3, n0, _PDIWARu,
|
|
1073
|
-
0,
|
|
1074
|
-
[],
|
|
1075
|
-
[]
|
|
1076
|
-
];
|
|
1077
|
-
var PutDeliverabilityDashboardOptionRequest$ = [3, n0, _PDDOR,
|
|
1078
|
-
0,
|
|
1079
|
-
[_DE, _SDub],
|
|
1080
|
-
[2, () => DomainDeliverabilityTrackingOptions], 1
|
|
1081
|
-
];
|
|
1082
|
-
var PutDeliverabilityDashboardOptionResponse$ = [3, n0, _PDDORu,
|
|
1083
|
-
0,
|
|
1084
|
-
[],
|
|
1085
|
-
[]
|
|
1086
|
-
];
|
|
1087
|
-
var PutEmailIdentityDkimAttributesRequest$ = [3, n0, _PEIDAR,
|
|
1088
|
-
0,
|
|
1089
|
-
[_EI, _SE],
|
|
1090
|
-
[[0, 1], 2], 1
|
|
1091
|
-
];
|
|
1092
|
-
var PutEmailIdentityDkimAttributesResponse$ = [3, n0, _PEIDARu,
|
|
1093
|
-
0,
|
|
1094
|
-
[],
|
|
1095
|
-
[]
|
|
1096
|
-
];
|
|
1097
|
-
var PutEmailIdentityFeedbackAttributesRequest$ = [3, n0, _PEIFAR,
|
|
1098
|
-
0,
|
|
1099
|
-
[_EI, _EFE],
|
|
1100
|
-
[[0, 1], 2], 1
|
|
1101
|
-
];
|
|
1102
|
-
var PutEmailIdentityFeedbackAttributesResponse$ = [3, n0, _PEIFARu,
|
|
1103
|
-
0,
|
|
1104
|
-
[],
|
|
1105
|
-
[]
|
|
1106
|
-
];
|
|
1107
|
-
var PutEmailIdentityMailFromAttributesRequest$ = [3, n0, _PEIMFAR,
|
|
1108
|
-
0,
|
|
1109
|
-
[_EI, _MFD, _BOMF],
|
|
1110
|
-
[[0, 1], 0, 0], 1
|
|
1111
|
-
];
|
|
1112
|
-
var PutEmailIdentityMailFromAttributesResponse$ = [3, n0, _PEIMFARu,
|
|
1113
|
-
0,
|
|
1114
|
-
[],
|
|
1115
|
-
[]
|
|
1116
|
-
];
|
|
1117
|
-
var RawMessage$ = [3, n0, _RM,
|
|
1118
|
-
0,
|
|
1119
|
-
[_Da],
|
|
1120
|
-
[21], 1
|
|
1121
|
-
];
|
|
1122
|
-
var ReputationOptions$ = [3, n0, _RO,
|
|
1123
|
-
0,
|
|
1124
|
-
[_RME, _LFS],
|
|
1125
|
-
[2, 4]
|
|
1126
|
-
];
|
|
1127
|
-
var SendEmailRequest$ = [3, n0, _SER,
|
|
1128
|
-
0,
|
|
1129
|
-
[_De, _C, _FEA, _RTA, _FFEA, _ET, _CSN],
|
|
1130
|
-
[() => Destination$, () => EmailContent$, 0, 64 | 0, 0, () => MessageTagList, 0], 2
|
|
1131
|
-
];
|
|
1132
|
-
var SendEmailResponse$ = [3, n0, _SERe,
|
|
1133
|
-
0,
|
|
1134
|
-
[_MI],
|
|
1135
|
-
[0]
|
|
1136
|
-
];
|
|
1137
|
-
var SendingOptions$ = [3, n0, _SO,
|
|
1138
|
-
0,
|
|
1139
|
-
[_SEe],
|
|
1140
|
-
[2]
|
|
1141
|
-
];
|
|
1142
|
-
var SendingPausedException$ = [-3, n0, _SPE,
|
|
1143
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1144
|
-
[_m],
|
|
1145
|
-
[0]
|
|
1146
|
-
];
|
|
1147
|
-
schema.TypeRegistry.for(n0).registerError(SendingPausedException$, SendingPausedException);
|
|
1148
|
-
var SendQuota$ = [3, n0, _SQ,
|
|
1149
|
-
0,
|
|
1150
|
-
[_MHS, _MSR, _SLH],
|
|
1151
|
-
[1, 1, 1]
|
|
1152
|
-
];
|
|
1153
|
-
var SnsDestination$ = [3, n0, _SDn,
|
|
1154
|
-
0,
|
|
1155
|
-
[_TAo],
|
|
1156
|
-
[0], 1
|
|
1157
|
-
];
|
|
1158
|
-
var Tag$ = [3, n0, _Tag,
|
|
1159
|
-
0,
|
|
1160
|
-
[_K, _V],
|
|
1161
|
-
[0, 0], 2
|
|
1162
|
-
];
|
|
1163
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1164
|
-
0,
|
|
1165
|
-
[_RA, _Ta],
|
|
1166
|
-
[0, () => TagList], 2
|
|
1167
|
-
];
|
|
1168
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1169
|
-
0,
|
|
1170
|
-
[],
|
|
1171
|
-
[]
|
|
1172
|
-
];
|
|
1173
|
-
var Template$ = [3, n0, _Te,
|
|
1174
|
-
0,
|
|
1175
|
-
[_TAe, _TD],
|
|
1176
|
-
[0, 0]
|
|
1177
|
-
];
|
|
1178
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1179
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1180
|
-
[_m],
|
|
1181
|
-
[0]
|
|
1182
|
-
];
|
|
1183
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1184
|
-
var TrackingOptions$ = [3, n0, _TO,
|
|
1185
|
-
0,
|
|
1186
|
-
[_CRD],
|
|
1187
|
-
[0], 1
|
|
1188
|
-
];
|
|
1189
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1190
|
-
0,
|
|
1191
|
-
[_RA, _TK],
|
|
1192
|
-
[[0, { [_hQ]: _RA }], [64 | 0, { [_hQ]: _TK }]], 2
|
|
1193
|
-
];
|
|
1194
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1195
|
-
0,
|
|
1196
|
-
[],
|
|
1197
|
-
[]
|
|
1198
|
-
];
|
|
1199
|
-
var UpdateConfigurationSetEventDestinationRequest$ = [3, n0, _UCSEDR,
|
|
1200
|
-
0,
|
|
1201
|
-
[_CSN, _EDN, _ED],
|
|
1202
|
-
[[0, 1], [0, 1], () => EventDestinationDefinition$], 3
|
|
1203
|
-
];
|
|
1204
|
-
var UpdateConfigurationSetEventDestinationResponse$ = [3, n0, _UCSEDRp,
|
|
1205
|
-
0,
|
|
1206
|
-
[],
|
|
1207
|
-
[]
|
|
1208
|
-
];
|
|
1209
|
-
var VolumeStatistics$ = [3, n0, _VS,
|
|
1210
|
-
0,
|
|
1211
|
-
[_IRC, _SRC, _PI, _PSr],
|
|
1212
|
-
[1, 1, 1, 1]
|
|
1213
|
-
];
|
|
1214
|
-
var PinpointEmailServiceException$ = [-3, _sm, "PinpointEmailServiceException", 0, [], []];
|
|
1215
|
-
schema.TypeRegistry.for(_sm).registerError(PinpointEmailServiceException$, PinpointEmailServiceException);
|
|
1216
|
-
var BlacklistEntries = [1, n0, _BEl,
|
|
1217
|
-
0, () => BlacklistEntry$
|
|
1218
|
-
];
|
|
1219
|
-
var CloudWatchDimensionConfigurations = [1, n0, _CWDCl,
|
|
1220
|
-
0, () => CloudWatchDimensionConfiguration$
|
|
1221
|
-
];
|
|
1222
|
-
var DailyVolumes = [1, n0, _DVa,
|
|
1223
|
-
0, () => DailyVolume$
|
|
1224
|
-
];
|
|
1225
|
-
var DedicatedIpList = [1, n0, _DIL,
|
|
1226
|
-
0, () => DedicatedIp$
|
|
1227
|
-
];
|
|
1228
|
-
var DeliverabilityTestReports = [1, n0, _DTRe,
|
|
1229
|
-
0, () => DeliverabilityTestReport$
|
|
1230
|
-
];
|
|
1231
|
-
var DomainDeliverabilityCampaignList = [1, n0, _DDCL,
|
|
1232
|
-
0, () => DomainDeliverabilityCampaign$
|
|
1233
|
-
];
|
|
1234
|
-
var DomainDeliverabilityTrackingOptions = [1, n0, _DDTOo,
|
|
1235
|
-
0, () => DomainDeliverabilityTrackingOption$
|
|
1236
|
-
];
|
|
1237
|
-
var DomainIspPlacements = [1, n0, _DIP,
|
|
1238
|
-
0, () => DomainIspPlacement$
|
|
1239
|
-
];
|
|
1240
|
-
var EventDestinations = [1, n0, _EDv,
|
|
1241
|
-
0, () => EventDestination$
|
|
1242
|
-
];
|
|
1243
|
-
var IdentityInfoList = [1, n0, _IIL,
|
|
1244
|
-
0, () => IdentityInfo$
|
|
1245
|
-
];
|
|
1246
|
-
var IspPlacements = [1, n0, _IPs,
|
|
1247
|
-
0, () => IspPlacement$
|
|
1248
|
-
];
|
|
1249
|
-
var MessageTagList = [1, n0, _MTL,
|
|
1250
|
-
0, () => MessageTag$
|
|
1251
|
-
];
|
|
1252
|
-
var TagList = [1, n0, _TL,
|
|
1253
|
-
0, () => Tag$
|
|
1254
|
-
];
|
|
1255
|
-
var BlacklistReport = [2, n0, _BR,
|
|
1256
|
-
0, 0, () => BlacklistEntries
|
|
1257
|
-
];
|
|
1258
|
-
var CreateConfigurationSet$ = [9, n0, _CCS,
|
|
1259
|
-
{ [_h]: ["POST", "/v1/email/configuration-sets", 200] }, () => CreateConfigurationSetRequest$, () => CreateConfigurationSetResponse$
|
|
1260
|
-
];
|
|
1261
|
-
var CreateConfigurationSetEventDestination$ = [9, n0, _CCSED,
|
|
1262
|
-
{ [_h]: ["POST", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations", 200] }, () => CreateConfigurationSetEventDestinationRequest$, () => CreateConfigurationSetEventDestinationResponse$
|
|
1263
|
-
];
|
|
1264
|
-
var CreateDedicatedIpPool$ = [9, n0, _CDIP,
|
|
1265
|
-
{ [_h]: ["POST", "/v1/email/dedicated-ip-pools", 200] }, () => CreateDedicatedIpPoolRequest$, () => CreateDedicatedIpPoolResponse$
|
|
1266
|
-
];
|
|
1267
|
-
var CreateDeliverabilityTestReport$ = [9, n0, _CDTR,
|
|
1268
|
-
{ [_h]: ["POST", "/v1/email/deliverability-dashboard/test", 200] }, () => CreateDeliverabilityTestReportRequest$, () => CreateDeliverabilityTestReportResponse$
|
|
1269
|
-
];
|
|
1270
|
-
var CreateEmailIdentity$ = [9, n0, _CEI,
|
|
1271
|
-
{ [_h]: ["POST", "/v1/email/identities", 200] }, () => CreateEmailIdentityRequest$, () => CreateEmailIdentityResponse$
|
|
1272
|
-
];
|
|
1273
|
-
var DeleteConfigurationSet$ = [9, n0, _DCS,
|
|
1274
|
-
{ [_h]: ["DELETE", "/v1/email/configuration-sets/{ConfigurationSetName}", 200] }, () => DeleteConfigurationSetRequest$, () => DeleteConfigurationSetResponse$
|
|
1275
|
-
];
|
|
1276
|
-
var DeleteConfigurationSetEventDestination$ = [9, n0, _DCSED,
|
|
1277
|
-
{ [_h]: ["DELETE", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => DeleteConfigurationSetEventDestinationRequest$, () => DeleteConfigurationSetEventDestinationResponse$
|
|
1278
|
-
];
|
|
1279
|
-
var DeleteDedicatedIpPool$ = [9, n0, _DDIP,
|
|
1280
|
-
{ [_h]: ["DELETE", "/v1/email/dedicated-ip-pools/{PoolName}", 200] }, () => DeleteDedicatedIpPoolRequest$, () => DeleteDedicatedIpPoolResponse$
|
|
1281
|
-
];
|
|
1282
|
-
var DeleteEmailIdentity$ = [9, n0, _DEI,
|
|
1283
|
-
{ [_h]: ["DELETE", "/v1/email/identities/{EmailIdentity}", 200] }, () => DeleteEmailIdentityRequest$, () => DeleteEmailIdentityResponse$
|
|
1284
|
-
];
|
|
1285
|
-
var GetAccount$ = [9, n0, _GA,
|
|
1286
|
-
{ [_h]: ["GET", "/v1/email/account", 200] }, () => GetAccountRequest$, () => GetAccountResponse$
|
|
1287
|
-
];
|
|
1288
|
-
var GetBlacklistReports$ = [9, n0, _GBR,
|
|
1289
|
-
{ [_h]: ["GET", "/v1/email/deliverability-dashboard/blacklist-report", 200] }, () => GetBlacklistReportsRequest$, () => GetBlacklistReportsResponse$
|
|
1290
|
-
];
|
|
1291
|
-
var GetConfigurationSet$ = [9, n0, _GCS,
|
|
1292
|
-
{ [_h]: ["GET", "/v1/email/configuration-sets/{ConfigurationSetName}", 200] }, () => GetConfigurationSetRequest$, () => GetConfigurationSetResponse$
|
|
1293
|
-
];
|
|
1294
|
-
var GetConfigurationSetEventDestinations$ = [9, n0, _GCSED,
|
|
1295
|
-
{ [_h]: ["GET", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations", 200] }, () => GetConfigurationSetEventDestinationsRequest$, () => GetConfigurationSetEventDestinationsResponse$
|
|
1296
|
-
];
|
|
1297
|
-
var GetDedicatedIp$ = [9, n0, _GDI,
|
|
1298
|
-
{ [_h]: ["GET", "/v1/email/dedicated-ips/{Ip}", 200] }, () => GetDedicatedIpRequest$, () => GetDedicatedIpResponse$
|
|
1299
|
-
];
|
|
1300
|
-
var GetDedicatedIps$ = [9, n0, _GDIe,
|
|
1301
|
-
{ [_h]: ["GET", "/v1/email/dedicated-ips", 200] }, () => GetDedicatedIpsRequest$, () => GetDedicatedIpsResponse$
|
|
1302
|
-
];
|
|
1303
|
-
var GetDeliverabilityDashboardOptions$ = [9, n0, _GDDO,
|
|
1304
|
-
{ [_h]: ["GET", "/v1/email/deliverability-dashboard", 200] }, () => GetDeliverabilityDashboardOptionsRequest$, () => GetDeliverabilityDashboardOptionsResponse$
|
|
1305
|
-
];
|
|
1306
|
-
var GetDeliverabilityTestReport$ = [9, n0, _GDTR,
|
|
1307
|
-
{ [_h]: ["GET", "/v1/email/deliverability-dashboard/test-reports/{ReportId}", 200] }, () => GetDeliverabilityTestReportRequest$, () => GetDeliverabilityTestReportResponse$
|
|
1308
|
-
];
|
|
1309
|
-
var GetDomainDeliverabilityCampaign$ = [9, n0, _GDDC,
|
|
1310
|
-
{ [_h]: ["GET", "/v1/email/deliverability-dashboard/campaigns/{CampaignId}", 200] }, () => GetDomainDeliverabilityCampaignRequest$, () => GetDomainDeliverabilityCampaignResponse$
|
|
1311
|
-
];
|
|
1312
|
-
var GetDomainStatisticsReport$ = [9, n0, _GDSR,
|
|
1313
|
-
{ [_h]: ["GET", "/v1/email/deliverability-dashboard/statistics-report/{Domain}", 200] }, () => GetDomainStatisticsReportRequest$, () => GetDomainStatisticsReportResponse$
|
|
1314
|
-
];
|
|
1315
|
-
var GetEmailIdentity$ = [9, n0, _GEI,
|
|
1316
|
-
{ [_h]: ["GET", "/v1/email/identities/{EmailIdentity}", 200] }, () => GetEmailIdentityRequest$, () => GetEmailIdentityResponse$
|
|
1317
|
-
];
|
|
1318
|
-
var ListConfigurationSets$ = [9, n0, _LCS,
|
|
1319
|
-
{ [_h]: ["GET", "/v1/email/configuration-sets", 200] }, () => ListConfigurationSetsRequest$, () => ListConfigurationSetsResponse$
|
|
1320
|
-
];
|
|
1321
|
-
var ListDedicatedIpPools$ = [9, n0, _LDIP,
|
|
1322
|
-
{ [_h]: ["GET", "/v1/email/dedicated-ip-pools", 200] }, () => ListDedicatedIpPoolsRequest$, () => ListDedicatedIpPoolsResponse$
|
|
1323
|
-
];
|
|
1324
|
-
var ListDeliverabilityTestReports$ = [9, n0, _LDTR,
|
|
1325
|
-
{ [_h]: ["GET", "/v1/email/deliverability-dashboard/test-reports", 200] }, () => ListDeliverabilityTestReportsRequest$, () => ListDeliverabilityTestReportsResponse$
|
|
1326
|
-
];
|
|
1327
|
-
var ListDomainDeliverabilityCampaigns$ = [9, n0, _LDDC,
|
|
1328
|
-
{ [_h]: ["GET", "/v1/email/deliverability-dashboard/domains/{SubscribedDomain}/campaigns", 200] }, () => ListDomainDeliverabilityCampaignsRequest$, () => ListDomainDeliverabilityCampaignsResponse$
|
|
1329
|
-
];
|
|
1330
|
-
var ListEmailIdentities$ = [9, n0, _LEI,
|
|
1331
|
-
{ [_h]: ["GET", "/v1/email/identities", 200] }, () => ListEmailIdentitiesRequest$, () => ListEmailIdentitiesResponse$
|
|
1332
|
-
];
|
|
1333
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1334
|
-
{ [_h]: ["GET", "/v1/email/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1335
|
-
];
|
|
1336
|
-
var PutAccountDedicatedIpWarmupAttributes$ = [9, n0, _PADIWA,
|
|
1337
|
-
{ [_h]: ["PUT", "/v1/email/account/dedicated-ips/warmup", 200] }, () => PutAccountDedicatedIpWarmupAttributesRequest$, () => PutAccountDedicatedIpWarmupAttributesResponse$
|
|
1338
|
-
];
|
|
1339
|
-
var PutAccountSendingAttributes$ = [9, n0, _PASA,
|
|
1340
|
-
{ [_h]: ["PUT", "/v1/email/account/sending", 200] }, () => PutAccountSendingAttributesRequest$, () => PutAccountSendingAttributesResponse$
|
|
1341
|
-
];
|
|
1342
|
-
var PutConfigurationSetDeliveryOptions$ = [9, n0, _PCSDO,
|
|
1343
|
-
{ [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/delivery-options", 200] }, () => PutConfigurationSetDeliveryOptionsRequest$, () => PutConfigurationSetDeliveryOptionsResponse$
|
|
1344
|
-
];
|
|
1345
|
-
var PutConfigurationSetReputationOptions$ = [9, n0, _PCSRO,
|
|
1346
|
-
{ [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/reputation-options", 200] }, () => PutConfigurationSetReputationOptionsRequest$, () => PutConfigurationSetReputationOptionsResponse$
|
|
1347
|
-
];
|
|
1348
|
-
var PutConfigurationSetSendingOptions$ = [9, n0, _PCSSO,
|
|
1349
|
-
{ [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/sending", 200] }, () => PutConfigurationSetSendingOptionsRequest$, () => PutConfigurationSetSendingOptionsResponse$
|
|
1350
|
-
];
|
|
1351
|
-
var PutConfigurationSetTrackingOptions$ = [9, n0, _PCSTO,
|
|
1352
|
-
{ [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/tracking-options", 200] }, () => PutConfigurationSetTrackingOptionsRequest$, () => PutConfigurationSetTrackingOptionsResponse$
|
|
1353
|
-
];
|
|
1354
|
-
var PutDedicatedIpInPool$ = [9, n0, _PDIIP,
|
|
1355
|
-
{ [_h]: ["PUT", "/v1/email/dedicated-ips/{Ip}/pool", 200] }, () => PutDedicatedIpInPoolRequest$, () => PutDedicatedIpInPoolResponse$
|
|
1356
|
-
];
|
|
1357
|
-
var PutDedicatedIpWarmupAttributes$ = [9, n0, _PDIWA,
|
|
1358
|
-
{ [_h]: ["PUT", "/v1/email/dedicated-ips/{Ip}/warmup", 200] }, () => PutDedicatedIpWarmupAttributesRequest$, () => PutDedicatedIpWarmupAttributesResponse$
|
|
1359
|
-
];
|
|
1360
|
-
var PutDeliverabilityDashboardOption$ = [9, n0, _PDDO,
|
|
1361
|
-
{ [_h]: ["PUT", "/v1/email/deliverability-dashboard", 200] }, () => PutDeliverabilityDashboardOptionRequest$, () => PutDeliverabilityDashboardOptionResponse$
|
|
1362
|
-
];
|
|
1363
|
-
var PutEmailIdentityDkimAttributes$ = [9, n0, _PEIDA,
|
|
1364
|
-
{ [_h]: ["PUT", "/v1/email/identities/{EmailIdentity}/dkim", 200] }, () => PutEmailIdentityDkimAttributesRequest$, () => PutEmailIdentityDkimAttributesResponse$
|
|
1365
|
-
];
|
|
1366
|
-
var PutEmailIdentityFeedbackAttributes$ = [9, n0, _PEIFA,
|
|
1367
|
-
{ [_h]: ["PUT", "/v1/email/identities/{EmailIdentity}/feedback", 200] }, () => PutEmailIdentityFeedbackAttributesRequest$, () => PutEmailIdentityFeedbackAttributesResponse$
|
|
1368
|
-
];
|
|
1369
|
-
var PutEmailIdentityMailFromAttributes$ = [9, n0, _PEIMFA,
|
|
1370
|
-
{ [_h]: ["PUT", "/v1/email/identities/{EmailIdentity}/mail-from", 200] }, () => PutEmailIdentityMailFromAttributesRequest$, () => PutEmailIdentityMailFromAttributesResponse$
|
|
1371
|
-
];
|
|
1372
|
-
var SendEmail$ = [9, n0, _SEen,
|
|
1373
|
-
{ [_h]: ["POST", "/v1/email/outbound-emails", 200] }, () => SendEmailRequest$, () => SendEmailResponse$
|
|
1374
|
-
];
|
|
1375
|
-
var TagResource$ = [9, n0, _TR,
|
|
1376
|
-
{ [_h]: ["POST", "/v1/email/tags", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1377
|
-
];
|
|
1378
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1379
|
-
{ [_h]: ["DELETE", "/v1/email/tags", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1380
|
-
];
|
|
1381
|
-
var UpdateConfigurationSetEventDestination$ = [9, n0, _UCSED,
|
|
1382
|
-
{ [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => UpdateConfigurationSetEventDestinationRequest$, () => UpdateConfigurationSetEventDestinationResponse$
|
|
1383
|
-
];
|
|
1384
|
-
|
|
1385
116
|
class CreateConfigurationSetCommand extends smithyClient.Command
|
|
1386
117
|
.classBuilder()
|
|
1387
118
|
.ep(commonParams)
|
|
@@ -1390,7 +121,7 @@ class CreateConfigurationSetCommand extends smithyClient.Command
|
|
|
1390
121
|
})
|
|
1391
122
|
.s("AmazonPinpointEmailService", "CreateConfigurationSet", {})
|
|
1392
123
|
.n("PinpointEmailClient", "CreateConfigurationSetCommand")
|
|
1393
|
-
.sc(CreateConfigurationSet$)
|
|
124
|
+
.sc(schemas_0.CreateConfigurationSet$)
|
|
1394
125
|
.build() {
|
|
1395
126
|
}
|
|
1396
127
|
|
|
@@ -1402,7 +133,7 @@ class CreateConfigurationSetEventDestinationCommand extends smithyClient.Command
|
|
|
1402
133
|
})
|
|
1403
134
|
.s("AmazonPinpointEmailService", "CreateConfigurationSetEventDestination", {})
|
|
1404
135
|
.n("PinpointEmailClient", "CreateConfigurationSetEventDestinationCommand")
|
|
1405
|
-
.sc(CreateConfigurationSetEventDestination$)
|
|
136
|
+
.sc(schemas_0.CreateConfigurationSetEventDestination$)
|
|
1406
137
|
.build() {
|
|
1407
138
|
}
|
|
1408
139
|
|
|
@@ -1414,7 +145,7 @@ class CreateDedicatedIpPoolCommand extends smithyClient.Command
|
|
|
1414
145
|
})
|
|
1415
146
|
.s("AmazonPinpointEmailService", "CreateDedicatedIpPool", {})
|
|
1416
147
|
.n("PinpointEmailClient", "CreateDedicatedIpPoolCommand")
|
|
1417
|
-
.sc(CreateDedicatedIpPool$)
|
|
148
|
+
.sc(schemas_0.CreateDedicatedIpPool$)
|
|
1418
149
|
.build() {
|
|
1419
150
|
}
|
|
1420
151
|
|
|
@@ -1426,7 +157,7 @@ class CreateDeliverabilityTestReportCommand extends smithyClient.Command
|
|
|
1426
157
|
})
|
|
1427
158
|
.s("AmazonPinpointEmailService", "CreateDeliverabilityTestReport", {})
|
|
1428
159
|
.n("PinpointEmailClient", "CreateDeliverabilityTestReportCommand")
|
|
1429
|
-
.sc(CreateDeliverabilityTestReport$)
|
|
160
|
+
.sc(schemas_0.CreateDeliverabilityTestReport$)
|
|
1430
161
|
.build() {
|
|
1431
162
|
}
|
|
1432
163
|
|
|
@@ -1438,7 +169,7 @@ class CreateEmailIdentityCommand extends smithyClient.Command
|
|
|
1438
169
|
})
|
|
1439
170
|
.s("AmazonPinpointEmailService", "CreateEmailIdentity", {})
|
|
1440
171
|
.n("PinpointEmailClient", "CreateEmailIdentityCommand")
|
|
1441
|
-
.sc(CreateEmailIdentity$)
|
|
172
|
+
.sc(schemas_0.CreateEmailIdentity$)
|
|
1442
173
|
.build() {
|
|
1443
174
|
}
|
|
1444
175
|
|
|
@@ -1450,7 +181,7 @@ class DeleteConfigurationSetCommand extends smithyClient.Command
|
|
|
1450
181
|
})
|
|
1451
182
|
.s("AmazonPinpointEmailService", "DeleteConfigurationSet", {})
|
|
1452
183
|
.n("PinpointEmailClient", "DeleteConfigurationSetCommand")
|
|
1453
|
-
.sc(DeleteConfigurationSet$)
|
|
184
|
+
.sc(schemas_0.DeleteConfigurationSet$)
|
|
1454
185
|
.build() {
|
|
1455
186
|
}
|
|
1456
187
|
|
|
@@ -1462,7 +193,7 @@ class DeleteConfigurationSetEventDestinationCommand extends smithyClient.Command
|
|
|
1462
193
|
})
|
|
1463
194
|
.s("AmazonPinpointEmailService", "DeleteConfigurationSetEventDestination", {})
|
|
1464
195
|
.n("PinpointEmailClient", "DeleteConfigurationSetEventDestinationCommand")
|
|
1465
|
-
.sc(DeleteConfigurationSetEventDestination$)
|
|
196
|
+
.sc(schemas_0.DeleteConfigurationSetEventDestination$)
|
|
1466
197
|
.build() {
|
|
1467
198
|
}
|
|
1468
199
|
|
|
@@ -1474,7 +205,7 @@ class DeleteDedicatedIpPoolCommand extends smithyClient.Command
|
|
|
1474
205
|
})
|
|
1475
206
|
.s("AmazonPinpointEmailService", "DeleteDedicatedIpPool", {})
|
|
1476
207
|
.n("PinpointEmailClient", "DeleteDedicatedIpPoolCommand")
|
|
1477
|
-
.sc(DeleteDedicatedIpPool$)
|
|
208
|
+
.sc(schemas_0.DeleteDedicatedIpPool$)
|
|
1478
209
|
.build() {
|
|
1479
210
|
}
|
|
1480
211
|
|
|
@@ -1486,7 +217,7 @@ class DeleteEmailIdentityCommand extends smithyClient.Command
|
|
|
1486
217
|
})
|
|
1487
218
|
.s("AmazonPinpointEmailService", "DeleteEmailIdentity", {})
|
|
1488
219
|
.n("PinpointEmailClient", "DeleteEmailIdentityCommand")
|
|
1489
|
-
.sc(DeleteEmailIdentity$)
|
|
220
|
+
.sc(schemas_0.DeleteEmailIdentity$)
|
|
1490
221
|
.build() {
|
|
1491
222
|
}
|
|
1492
223
|
|
|
@@ -1498,7 +229,7 @@ class GetAccountCommand extends smithyClient.Command
|
|
|
1498
229
|
})
|
|
1499
230
|
.s("AmazonPinpointEmailService", "GetAccount", {})
|
|
1500
231
|
.n("PinpointEmailClient", "GetAccountCommand")
|
|
1501
|
-
.sc(GetAccount$)
|
|
232
|
+
.sc(schemas_0.GetAccount$)
|
|
1502
233
|
.build() {
|
|
1503
234
|
}
|
|
1504
235
|
|
|
@@ -1510,7 +241,7 @@ class GetBlacklistReportsCommand extends smithyClient.Command
|
|
|
1510
241
|
})
|
|
1511
242
|
.s("AmazonPinpointEmailService", "GetBlacklistReports", {})
|
|
1512
243
|
.n("PinpointEmailClient", "GetBlacklistReportsCommand")
|
|
1513
|
-
.sc(GetBlacklistReports$)
|
|
244
|
+
.sc(schemas_0.GetBlacklistReports$)
|
|
1514
245
|
.build() {
|
|
1515
246
|
}
|
|
1516
247
|
|
|
@@ -1522,7 +253,7 @@ class GetConfigurationSetCommand extends smithyClient.Command
|
|
|
1522
253
|
})
|
|
1523
254
|
.s("AmazonPinpointEmailService", "GetConfigurationSet", {})
|
|
1524
255
|
.n("PinpointEmailClient", "GetConfigurationSetCommand")
|
|
1525
|
-
.sc(GetConfigurationSet$)
|
|
256
|
+
.sc(schemas_0.GetConfigurationSet$)
|
|
1526
257
|
.build() {
|
|
1527
258
|
}
|
|
1528
259
|
|
|
@@ -1534,7 +265,7 @@ class GetConfigurationSetEventDestinationsCommand extends smithyClient.Command
|
|
|
1534
265
|
})
|
|
1535
266
|
.s("AmazonPinpointEmailService", "GetConfigurationSetEventDestinations", {})
|
|
1536
267
|
.n("PinpointEmailClient", "GetConfigurationSetEventDestinationsCommand")
|
|
1537
|
-
.sc(GetConfigurationSetEventDestinations$)
|
|
268
|
+
.sc(schemas_0.GetConfigurationSetEventDestinations$)
|
|
1538
269
|
.build() {
|
|
1539
270
|
}
|
|
1540
271
|
|
|
@@ -1546,7 +277,7 @@ class GetDedicatedIpCommand extends smithyClient.Command
|
|
|
1546
277
|
})
|
|
1547
278
|
.s("AmazonPinpointEmailService", "GetDedicatedIp", {})
|
|
1548
279
|
.n("PinpointEmailClient", "GetDedicatedIpCommand")
|
|
1549
|
-
.sc(GetDedicatedIp$)
|
|
280
|
+
.sc(schemas_0.GetDedicatedIp$)
|
|
1550
281
|
.build() {
|
|
1551
282
|
}
|
|
1552
283
|
|
|
@@ -1558,7 +289,7 @@ class GetDedicatedIpsCommand extends smithyClient.Command
|
|
|
1558
289
|
})
|
|
1559
290
|
.s("AmazonPinpointEmailService", "GetDedicatedIps", {})
|
|
1560
291
|
.n("PinpointEmailClient", "GetDedicatedIpsCommand")
|
|
1561
|
-
.sc(GetDedicatedIps$)
|
|
292
|
+
.sc(schemas_0.GetDedicatedIps$)
|
|
1562
293
|
.build() {
|
|
1563
294
|
}
|
|
1564
295
|
|
|
@@ -1570,7 +301,7 @@ class GetDeliverabilityDashboardOptionsCommand extends smithyClient.Command
|
|
|
1570
301
|
})
|
|
1571
302
|
.s("AmazonPinpointEmailService", "GetDeliverabilityDashboardOptions", {})
|
|
1572
303
|
.n("PinpointEmailClient", "GetDeliverabilityDashboardOptionsCommand")
|
|
1573
|
-
.sc(GetDeliverabilityDashboardOptions$)
|
|
304
|
+
.sc(schemas_0.GetDeliverabilityDashboardOptions$)
|
|
1574
305
|
.build() {
|
|
1575
306
|
}
|
|
1576
307
|
|
|
@@ -1582,7 +313,7 @@ class GetDeliverabilityTestReportCommand extends smithyClient.Command
|
|
|
1582
313
|
})
|
|
1583
314
|
.s("AmazonPinpointEmailService", "GetDeliverabilityTestReport", {})
|
|
1584
315
|
.n("PinpointEmailClient", "GetDeliverabilityTestReportCommand")
|
|
1585
|
-
.sc(GetDeliverabilityTestReport$)
|
|
316
|
+
.sc(schemas_0.GetDeliverabilityTestReport$)
|
|
1586
317
|
.build() {
|
|
1587
318
|
}
|
|
1588
319
|
|
|
@@ -1594,7 +325,7 @@ class GetDomainDeliverabilityCampaignCommand extends smithyClient.Command
|
|
|
1594
325
|
})
|
|
1595
326
|
.s("AmazonPinpointEmailService", "GetDomainDeliverabilityCampaign", {})
|
|
1596
327
|
.n("PinpointEmailClient", "GetDomainDeliverabilityCampaignCommand")
|
|
1597
|
-
.sc(GetDomainDeliverabilityCampaign$)
|
|
328
|
+
.sc(schemas_0.GetDomainDeliverabilityCampaign$)
|
|
1598
329
|
.build() {
|
|
1599
330
|
}
|
|
1600
331
|
|
|
@@ -1606,7 +337,7 @@ class GetDomainStatisticsReportCommand extends smithyClient.Command
|
|
|
1606
337
|
})
|
|
1607
338
|
.s("AmazonPinpointEmailService", "GetDomainStatisticsReport", {})
|
|
1608
339
|
.n("PinpointEmailClient", "GetDomainStatisticsReportCommand")
|
|
1609
|
-
.sc(GetDomainStatisticsReport$)
|
|
340
|
+
.sc(schemas_0.GetDomainStatisticsReport$)
|
|
1610
341
|
.build() {
|
|
1611
342
|
}
|
|
1612
343
|
|
|
@@ -1618,7 +349,7 @@ class GetEmailIdentityCommand extends smithyClient.Command
|
|
|
1618
349
|
})
|
|
1619
350
|
.s("AmazonPinpointEmailService", "GetEmailIdentity", {})
|
|
1620
351
|
.n("PinpointEmailClient", "GetEmailIdentityCommand")
|
|
1621
|
-
.sc(GetEmailIdentity$)
|
|
352
|
+
.sc(schemas_0.GetEmailIdentity$)
|
|
1622
353
|
.build() {
|
|
1623
354
|
}
|
|
1624
355
|
|
|
@@ -1630,7 +361,7 @@ class ListConfigurationSetsCommand extends smithyClient.Command
|
|
|
1630
361
|
})
|
|
1631
362
|
.s("AmazonPinpointEmailService", "ListConfigurationSets", {})
|
|
1632
363
|
.n("PinpointEmailClient", "ListConfigurationSetsCommand")
|
|
1633
|
-
.sc(ListConfigurationSets$)
|
|
364
|
+
.sc(schemas_0.ListConfigurationSets$)
|
|
1634
365
|
.build() {
|
|
1635
366
|
}
|
|
1636
367
|
|
|
@@ -1642,7 +373,7 @@ class ListDedicatedIpPoolsCommand extends smithyClient.Command
|
|
|
1642
373
|
})
|
|
1643
374
|
.s("AmazonPinpointEmailService", "ListDedicatedIpPools", {})
|
|
1644
375
|
.n("PinpointEmailClient", "ListDedicatedIpPoolsCommand")
|
|
1645
|
-
.sc(ListDedicatedIpPools$)
|
|
376
|
+
.sc(schemas_0.ListDedicatedIpPools$)
|
|
1646
377
|
.build() {
|
|
1647
378
|
}
|
|
1648
379
|
|
|
@@ -1654,7 +385,7 @@ class ListDeliverabilityTestReportsCommand extends smithyClient.Command
|
|
|
1654
385
|
})
|
|
1655
386
|
.s("AmazonPinpointEmailService", "ListDeliverabilityTestReports", {})
|
|
1656
387
|
.n("PinpointEmailClient", "ListDeliverabilityTestReportsCommand")
|
|
1657
|
-
.sc(ListDeliverabilityTestReports$)
|
|
388
|
+
.sc(schemas_0.ListDeliverabilityTestReports$)
|
|
1658
389
|
.build() {
|
|
1659
390
|
}
|
|
1660
391
|
|
|
@@ -1666,7 +397,7 @@ class ListDomainDeliverabilityCampaignsCommand extends smithyClient.Command
|
|
|
1666
397
|
})
|
|
1667
398
|
.s("AmazonPinpointEmailService", "ListDomainDeliverabilityCampaigns", {})
|
|
1668
399
|
.n("PinpointEmailClient", "ListDomainDeliverabilityCampaignsCommand")
|
|
1669
|
-
.sc(ListDomainDeliverabilityCampaigns$)
|
|
400
|
+
.sc(schemas_0.ListDomainDeliverabilityCampaigns$)
|
|
1670
401
|
.build() {
|
|
1671
402
|
}
|
|
1672
403
|
|
|
@@ -1678,7 +409,7 @@ class ListEmailIdentitiesCommand extends smithyClient.Command
|
|
|
1678
409
|
})
|
|
1679
410
|
.s("AmazonPinpointEmailService", "ListEmailIdentities", {})
|
|
1680
411
|
.n("PinpointEmailClient", "ListEmailIdentitiesCommand")
|
|
1681
|
-
.sc(ListEmailIdentities$)
|
|
412
|
+
.sc(schemas_0.ListEmailIdentities$)
|
|
1682
413
|
.build() {
|
|
1683
414
|
}
|
|
1684
415
|
|
|
@@ -1690,7 +421,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1690
421
|
})
|
|
1691
422
|
.s("AmazonPinpointEmailService", "ListTagsForResource", {})
|
|
1692
423
|
.n("PinpointEmailClient", "ListTagsForResourceCommand")
|
|
1693
|
-
.sc(ListTagsForResource$)
|
|
424
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1694
425
|
.build() {
|
|
1695
426
|
}
|
|
1696
427
|
|
|
@@ -1702,7 +433,7 @@ class PutAccountDedicatedIpWarmupAttributesCommand extends smithyClient.Command
|
|
|
1702
433
|
})
|
|
1703
434
|
.s("AmazonPinpointEmailService", "PutAccountDedicatedIpWarmupAttributes", {})
|
|
1704
435
|
.n("PinpointEmailClient", "PutAccountDedicatedIpWarmupAttributesCommand")
|
|
1705
|
-
.sc(PutAccountDedicatedIpWarmupAttributes$)
|
|
436
|
+
.sc(schemas_0.PutAccountDedicatedIpWarmupAttributes$)
|
|
1706
437
|
.build() {
|
|
1707
438
|
}
|
|
1708
439
|
|
|
@@ -1714,7 +445,7 @@ class PutAccountSendingAttributesCommand extends smithyClient.Command
|
|
|
1714
445
|
})
|
|
1715
446
|
.s("AmazonPinpointEmailService", "PutAccountSendingAttributes", {})
|
|
1716
447
|
.n("PinpointEmailClient", "PutAccountSendingAttributesCommand")
|
|
1717
|
-
.sc(PutAccountSendingAttributes$)
|
|
448
|
+
.sc(schemas_0.PutAccountSendingAttributes$)
|
|
1718
449
|
.build() {
|
|
1719
450
|
}
|
|
1720
451
|
|
|
@@ -1726,7 +457,7 @@ class PutConfigurationSetDeliveryOptionsCommand extends smithyClient.Command
|
|
|
1726
457
|
})
|
|
1727
458
|
.s("AmazonPinpointEmailService", "PutConfigurationSetDeliveryOptions", {})
|
|
1728
459
|
.n("PinpointEmailClient", "PutConfigurationSetDeliveryOptionsCommand")
|
|
1729
|
-
.sc(PutConfigurationSetDeliveryOptions$)
|
|
460
|
+
.sc(schemas_0.PutConfigurationSetDeliveryOptions$)
|
|
1730
461
|
.build() {
|
|
1731
462
|
}
|
|
1732
463
|
|
|
@@ -1738,7 +469,7 @@ class PutConfigurationSetReputationOptionsCommand extends smithyClient.Command
|
|
|
1738
469
|
})
|
|
1739
470
|
.s("AmazonPinpointEmailService", "PutConfigurationSetReputationOptions", {})
|
|
1740
471
|
.n("PinpointEmailClient", "PutConfigurationSetReputationOptionsCommand")
|
|
1741
|
-
.sc(PutConfigurationSetReputationOptions$)
|
|
472
|
+
.sc(schemas_0.PutConfigurationSetReputationOptions$)
|
|
1742
473
|
.build() {
|
|
1743
474
|
}
|
|
1744
475
|
|
|
@@ -1750,7 +481,7 @@ class PutConfigurationSetSendingOptionsCommand extends smithyClient.Command
|
|
|
1750
481
|
})
|
|
1751
482
|
.s("AmazonPinpointEmailService", "PutConfigurationSetSendingOptions", {})
|
|
1752
483
|
.n("PinpointEmailClient", "PutConfigurationSetSendingOptionsCommand")
|
|
1753
|
-
.sc(PutConfigurationSetSendingOptions$)
|
|
484
|
+
.sc(schemas_0.PutConfigurationSetSendingOptions$)
|
|
1754
485
|
.build() {
|
|
1755
486
|
}
|
|
1756
487
|
|
|
@@ -1762,7 +493,7 @@ class PutConfigurationSetTrackingOptionsCommand extends smithyClient.Command
|
|
|
1762
493
|
})
|
|
1763
494
|
.s("AmazonPinpointEmailService", "PutConfigurationSetTrackingOptions", {})
|
|
1764
495
|
.n("PinpointEmailClient", "PutConfigurationSetTrackingOptionsCommand")
|
|
1765
|
-
.sc(PutConfigurationSetTrackingOptions$)
|
|
496
|
+
.sc(schemas_0.PutConfigurationSetTrackingOptions$)
|
|
1766
497
|
.build() {
|
|
1767
498
|
}
|
|
1768
499
|
|
|
@@ -1774,7 +505,7 @@ class PutDedicatedIpInPoolCommand extends smithyClient.Command
|
|
|
1774
505
|
})
|
|
1775
506
|
.s("AmazonPinpointEmailService", "PutDedicatedIpInPool", {})
|
|
1776
507
|
.n("PinpointEmailClient", "PutDedicatedIpInPoolCommand")
|
|
1777
|
-
.sc(PutDedicatedIpInPool$)
|
|
508
|
+
.sc(schemas_0.PutDedicatedIpInPool$)
|
|
1778
509
|
.build() {
|
|
1779
510
|
}
|
|
1780
511
|
|
|
@@ -1786,7 +517,7 @@ class PutDedicatedIpWarmupAttributesCommand extends smithyClient.Command
|
|
|
1786
517
|
})
|
|
1787
518
|
.s("AmazonPinpointEmailService", "PutDedicatedIpWarmupAttributes", {})
|
|
1788
519
|
.n("PinpointEmailClient", "PutDedicatedIpWarmupAttributesCommand")
|
|
1789
|
-
.sc(PutDedicatedIpWarmupAttributes$)
|
|
520
|
+
.sc(schemas_0.PutDedicatedIpWarmupAttributes$)
|
|
1790
521
|
.build() {
|
|
1791
522
|
}
|
|
1792
523
|
|
|
@@ -1798,7 +529,7 @@ class PutDeliverabilityDashboardOptionCommand extends smithyClient.Command
|
|
|
1798
529
|
})
|
|
1799
530
|
.s("AmazonPinpointEmailService", "PutDeliverabilityDashboardOption", {})
|
|
1800
531
|
.n("PinpointEmailClient", "PutDeliverabilityDashboardOptionCommand")
|
|
1801
|
-
.sc(PutDeliverabilityDashboardOption$)
|
|
532
|
+
.sc(schemas_0.PutDeliverabilityDashboardOption$)
|
|
1802
533
|
.build() {
|
|
1803
534
|
}
|
|
1804
535
|
|
|
@@ -1810,7 +541,7 @@ class PutEmailIdentityDkimAttributesCommand extends smithyClient.Command
|
|
|
1810
541
|
})
|
|
1811
542
|
.s("AmazonPinpointEmailService", "PutEmailIdentityDkimAttributes", {})
|
|
1812
543
|
.n("PinpointEmailClient", "PutEmailIdentityDkimAttributesCommand")
|
|
1813
|
-
.sc(PutEmailIdentityDkimAttributes$)
|
|
544
|
+
.sc(schemas_0.PutEmailIdentityDkimAttributes$)
|
|
1814
545
|
.build() {
|
|
1815
546
|
}
|
|
1816
547
|
|
|
@@ -1822,7 +553,7 @@ class PutEmailIdentityFeedbackAttributesCommand extends smithyClient.Command
|
|
|
1822
553
|
})
|
|
1823
554
|
.s("AmazonPinpointEmailService", "PutEmailIdentityFeedbackAttributes", {})
|
|
1824
555
|
.n("PinpointEmailClient", "PutEmailIdentityFeedbackAttributesCommand")
|
|
1825
|
-
.sc(PutEmailIdentityFeedbackAttributes$)
|
|
556
|
+
.sc(schemas_0.PutEmailIdentityFeedbackAttributes$)
|
|
1826
557
|
.build() {
|
|
1827
558
|
}
|
|
1828
559
|
|
|
@@ -1834,7 +565,7 @@ class PutEmailIdentityMailFromAttributesCommand extends smithyClient.Command
|
|
|
1834
565
|
})
|
|
1835
566
|
.s("AmazonPinpointEmailService", "PutEmailIdentityMailFromAttributes", {})
|
|
1836
567
|
.n("PinpointEmailClient", "PutEmailIdentityMailFromAttributesCommand")
|
|
1837
|
-
.sc(PutEmailIdentityMailFromAttributes$)
|
|
568
|
+
.sc(schemas_0.PutEmailIdentityMailFromAttributes$)
|
|
1838
569
|
.build() {
|
|
1839
570
|
}
|
|
1840
571
|
|
|
@@ -1846,7 +577,7 @@ class SendEmailCommand extends smithyClient.Command
|
|
|
1846
577
|
})
|
|
1847
578
|
.s("AmazonPinpointEmailService", "SendEmail", {})
|
|
1848
579
|
.n("PinpointEmailClient", "SendEmailCommand")
|
|
1849
|
-
.sc(SendEmail$)
|
|
580
|
+
.sc(schemas_0.SendEmail$)
|
|
1850
581
|
.build() {
|
|
1851
582
|
}
|
|
1852
583
|
|
|
@@ -1858,7 +589,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1858
589
|
})
|
|
1859
590
|
.s("AmazonPinpointEmailService", "TagResource", {})
|
|
1860
591
|
.n("PinpointEmailClient", "TagResourceCommand")
|
|
1861
|
-
.sc(TagResource$)
|
|
592
|
+
.sc(schemas_0.TagResource$)
|
|
1862
593
|
.build() {
|
|
1863
594
|
}
|
|
1864
595
|
|
|
@@ -1870,7 +601,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1870
601
|
})
|
|
1871
602
|
.s("AmazonPinpointEmailService", "UntagResource", {})
|
|
1872
603
|
.n("PinpointEmailClient", "UntagResourceCommand")
|
|
1873
|
-
.sc(UntagResource$)
|
|
604
|
+
.sc(schemas_0.UntagResource$)
|
|
1874
605
|
.build() {
|
|
1875
606
|
}
|
|
1876
607
|
|
|
@@ -1882,7 +613,7 @@ class UpdateConfigurationSetEventDestinationCommand extends smithyClient.Command
|
|
|
1882
613
|
})
|
|
1883
614
|
.s("AmazonPinpointEmailService", "UpdateConfigurationSetEventDestination", {})
|
|
1884
615
|
.n("PinpointEmailClient", "UpdateConfigurationSetEventDestinationCommand")
|
|
1885
|
-
.sc(UpdateConfigurationSetEventDestination$)
|
|
616
|
+
.sc(schemas_0.UpdateConfigurationSetEventDestination$)
|
|
1886
617
|
.build() {
|
|
1887
618
|
}
|
|
1888
619
|
|
|
@@ -2017,243 +748,63 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2017
748
|
enumerable: true,
|
|
2018
749
|
get: function () { return smithyClient.Client; }
|
|
2019
750
|
});
|
|
2020
|
-
exports
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
exports.BadRequestException = BadRequestException;
|
|
2025
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
751
|
+
Object.defineProperty(exports, "PinpointEmailServiceException", {
|
|
752
|
+
enumerable: true,
|
|
753
|
+
get: function () { return PinpointEmailServiceException.PinpointEmailServiceException; }
|
|
754
|
+
});
|
|
2026
755
|
exports.BehaviorOnMxFailure = BehaviorOnMxFailure;
|
|
2027
|
-
exports.BlacklistEntry$ = BlacklistEntry$;
|
|
2028
|
-
exports.Body$ = Body$;
|
|
2029
|
-
exports.CloudWatchDestination$ = CloudWatchDestination$;
|
|
2030
|
-
exports.CloudWatchDimensionConfiguration$ = CloudWatchDimensionConfiguration$;
|
|
2031
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
2032
|
-
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
2033
|
-
exports.Content$ = Content$;
|
|
2034
|
-
exports.CreateConfigurationSet$ = CreateConfigurationSet$;
|
|
2035
756
|
exports.CreateConfigurationSetCommand = CreateConfigurationSetCommand;
|
|
2036
|
-
exports.CreateConfigurationSetEventDestination$ = CreateConfigurationSetEventDestination$;
|
|
2037
757
|
exports.CreateConfigurationSetEventDestinationCommand = CreateConfigurationSetEventDestinationCommand;
|
|
2038
|
-
exports.CreateConfigurationSetEventDestinationRequest$ = CreateConfigurationSetEventDestinationRequest$;
|
|
2039
|
-
exports.CreateConfigurationSetEventDestinationResponse$ = CreateConfigurationSetEventDestinationResponse$;
|
|
2040
|
-
exports.CreateConfigurationSetRequest$ = CreateConfigurationSetRequest$;
|
|
2041
|
-
exports.CreateConfigurationSetResponse$ = CreateConfigurationSetResponse$;
|
|
2042
|
-
exports.CreateDedicatedIpPool$ = CreateDedicatedIpPool$;
|
|
2043
758
|
exports.CreateDedicatedIpPoolCommand = CreateDedicatedIpPoolCommand;
|
|
2044
|
-
exports.CreateDedicatedIpPoolRequest$ = CreateDedicatedIpPoolRequest$;
|
|
2045
|
-
exports.CreateDedicatedIpPoolResponse$ = CreateDedicatedIpPoolResponse$;
|
|
2046
|
-
exports.CreateDeliverabilityTestReport$ = CreateDeliverabilityTestReport$;
|
|
2047
759
|
exports.CreateDeliverabilityTestReportCommand = CreateDeliverabilityTestReportCommand;
|
|
2048
|
-
exports.CreateDeliverabilityTestReportRequest$ = CreateDeliverabilityTestReportRequest$;
|
|
2049
|
-
exports.CreateDeliverabilityTestReportResponse$ = CreateDeliverabilityTestReportResponse$;
|
|
2050
|
-
exports.CreateEmailIdentity$ = CreateEmailIdentity$;
|
|
2051
760
|
exports.CreateEmailIdentityCommand = CreateEmailIdentityCommand;
|
|
2052
|
-
exports.CreateEmailIdentityRequest$ = CreateEmailIdentityRequest$;
|
|
2053
|
-
exports.CreateEmailIdentityResponse$ = CreateEmailIdentityResponse$;
|
|
2054
|
-
exports.DailyVolume$ = DailyVolume$;
|
|
2055
|
-
exports.DedicatedIp$ = DedicatedIp$;
|
|
2056
|
-
exports.DeleteConfigurationSet$ = DeleteConfigurationSet$;
|
|
2057
761
|
exports.DeleteConfigurationSetCommand = DeleteConfigurationSetCommand;
|
|
2058
|
-
exports.DeleteConfigurationSetEventDestination$ = DeleteConfigurationSetEventDestination$;
|
|
2059
762
|
exports.DeleteConfigurationSetEventDestinationCommand = DeleteConfigurationSetEventDestinationCommand;
|
|
2060
|
-
exports.DeleteConfigurationSetEventDestinationRequest$ = DeleteConfigurationSetEventDestinationRequest$;
|
|
2061
|
-
exports.DeleteConfigurationSetEventDestinationResponse$ = DeleteConfigurationSetEventDestinationResponse$;
|
|
2062
|
-
exports.DeleteConfigurationSetRequest$ = DeleteConfigurationSetRequest$;
|
|
2063
|
-
exports.DeleteConfigurationSetResponse$ = DeleteConfigurationSetResponse$;
|
|
2064
|
-
exports.DeleteDedicatedIpPool$ = DeleteDedicatedIpPool$;
|
|
2065
763
|
exports.DeleteDedicatedIpPoolCommand = DeleteDedicatedIpPoolCommand;
|
|
2066
|
-
exports.DeleteDedicatedIpPoolRequest$ = DeleteDedicatedIpPoolRequest$;
|
|
2067
|
-
exports.DeleteDedicatedIpPoolResponse$ = DeleteDedicatedIpPoolResponse$;
|
|
2068
|
-
exports.DeleteEmailIdentity$ = DeleteEmailIdentity$;
|
|
2069
764
|
exports.DeleteEmailIdentityCommand = DeleteEmailIdentityCommand;
|
|
2070
|
-
exports.DeleteEmailIdentityRequest$ = DeleteEmailIdentityRequest$;
|
|
2071
|
-
exports.DeleteEmailIdentityResponse$ = DeleteEmailIdentityResponse$;
|
|
2072
765
|
exports.DeliverabilityDashboardAccountStatus = DeliverabilityDashboardAccountStatus;
|
|
2073
|
-
exports.DeliverabilityTestReport$ = DeliverabilityTestReport$;
|
|
2074
766
|
exports.DeliverabilityTestStatus = DeliverabilityTestStatus;
|
|
2075
|
-
exports.DeliveryOptions$ = DeliveryOptions$;
|
|
2076
|
-
exports.Destination$ = Destination$;
|
|
2077
767
|
exports.DimensionValueSource = DimensionValueSource;
|
|
2078
|
-
exports.DkimAttributes$ = DkimAttributes$;
|
|
2079
768
|
exports.DkimStatus = DkimStatus;
|
|
2080
|
-
exports.DomainDeliverabilityCampaign$ = DomainDeliverabilityCampaign$;
|
|
2081
|
-
exports.DomainDeliverabilityTrackingOption$ = DomainDeliverabilityTrackingOption$;
|
|
2082
|
-
exports.DomainIspPlacement$ = DomainIspPlacement$;
|
|
2083
|
-
exports.EmailContent$ = EmailContent$;
|
|
2084
|
-
exports.EventDestination$ = EventDestination$;
|
|
2085
|
-
exports.EventDestinationDefinition$ = EventDestinationDefinition$;
|
|
2086
769
|
exports.EventType = EventType;
|
|
2087
|
-
exports.GetAccount$ = GetAccount$;
|
|
2088
770
|
exports.GetAccountCommand = GetAccountCommand;
|
|
2089
|
-
exports.GetAccountRequest$ = GetAccountRequest$;
|
|
2090
|
-
exports.GetAccountResponse$ = GetAccountResponse$;
|
|
2091
|
-
exports.GetBlacklistReports$ = GetBlacklistReports$;
|
|
2092
771
|
exports.GetBlacklistReportsCommand = GetBlacklistReportsCommand;
|
|
2093
|
-
exports.GetBlacklistReportsRequest$ = GetBlacklistReportsRequest$;
|
|
2094
|
-
exports.GetBlacklistReportsResponse$ = GetBlacklistReportsResponse$;
|
|
2095
|
-
exports.GetConfigurationSet$ = GetConfigurationSet$;
|
|
2096
772
|
exports.GetConfigurationSetCommand = GetConfigurationSetCommand;
|
|
2097
|
-
exports.GetConfigurationSetEventDestinations$ = GetConfigurationSetEventDestinations$;
|
|
2098
773
|
exports.GetConfigurationSetEventDestinationsCommand = GetConfigurationSetEventDestinationsCommand;
|
|
2099
|
-
exports.GetConfigurationSetEventDestinationsRequest$ = GetConfigurationSetEventDestinationsRequest$;
|
|
2100
|
-
exports.GetConfigurationSetEventDestinationsResponse$ = GetConfigurationSetEventDestinationsResponse$;
|
|
2101
|
-
exports.GetConfigurationSetRequest$ = GetConfigurationSetRequest$;
|
|
2102
|
-
exports.GetConfigurationSetResponse$ = GetConfigurationSetResponse$;
|
|
2103
|
-
exports.GetDedicatedIp$ = GetDedicatedIp$;
|
|
2104
774
|
exports.GetDedicatedIpCommand = GetDedicatedIpCommand;
|
|
2105
|
-
exports.GetDedicatedIpRequest$ = GetDedicatedIpRequest$;
|
|
2106
|
-
exports.GetDedicatedIpResponse$ = GetDedicatedIpResponse$;
|
|
2107
|
-
exports.GetDedicatedIps$ = GetDedicatedIps$;
|
|
2108
775
|
exports.GetDedicatedIpsCommand = GetDedicatedIpsCommand;
|
|
2109
|
-
exports.GetDedicatedIpsRequest$ = GetDedicatedIpsRequest$;
|
|
2110
|
-
exports.GetDedicatedIpsResponse$ = GetDedicatedIpsResponse$;
|
|
2111
|
-
exports.GetDeliverabilityDashboardOptions$ = GetDeliverabilityDashboardOptions$;
|
|
2112
776
|
exports.GetDeliverabilityDashboardOptionsCommand = GetDeliverabilityDashboardOptionsCommand;
|
|
2113
|
-
exports.GetDeliverabilityDashboardOptionsRequest$ = GetDeliverabilityDashboardOptionsRequest$;
|
|
2114
|
-
exports.GetDeliverabilityDashboardOptionsResponse$ = GetDeliverabilityDashboardOptionsResponse$;
|
|
2115
|
-
exports.GetDeliverabilityTestReport$ = GetDeliverabilityTestReport$;
|
|
2116
777
|
exports.GetDeliverabilityTestReportCommand = GetDeliverabilityTestReportCommand;
|
|
2117
|
-
exports.GetDeliverabilityTestReportRequest$ = GetDeliverabilityTestReportRequest$;
|
|
2118
|
-
exports.GetDeliverabilityTestReportResponse$ = GetDeliverabilityTestReportResponse$;
|
|
2119
|
-
exports.GetDomainDeliverabilityCampaign$ = GetDomainDeliverabilityCampaign$;
|
|
2120
778
|
exports.GetDomainDeliverabilityCampaignCommand = GetDomainDeliverabilityCampaignCommand;
|
|
2121
|
-
exports.GetDomainDeliverabilityCampaignRequest$ = GetDomainDeliverabilityCampaignRequest$;
|
|
2122
|
-
exports.GetDomainDeliverabilityCampaignResponse$ = GetDomainDeliverabilityCampaignResponse$;
|
|
2123
|
-
exports.GetDomainStatisticsReport$ = GetDomainStatisticsReport$;
|
|
2124
779
|
exports.GetDomainStatisticsReportCommand = GetDomainStatisticsReportCommand;
|
|
2125
|
-
exports.GetDomainStatisticsReportRequest$ = GetDomainStatisticsReportRequest$;
|
|
2126
|
-
exports.GetDomainStatisticsReportResponse$ = GetDomainStatisticsReportResponse$;
|
|
2127
|
-
exports.GetEmailIdentity$ = GetEmailIdentity$;
|
|
2128
780
|
exports.GetEmailIdentityCommand = GetEmailIdentityCommand;
|
|
2129
|
-
exports.GetEmailIdentityRequest$ = GetEmailIdentityRequest$;
|
|
2130
|
-
exports.GetEmailIdentityResponse$ = GetEmailIdentityResponse$;
|
|
2131
|
-
exports.IdentityInfo$ = IdentityInfo$;
|
|
2132
781
|
exports.IdentityType = IdentityType;
|
|
2133
|
-
exports.InboxPlacementTrackingOption$ = InboxPlacementTrackingOption$;
|
|
2134
|
-
exports.IspPlacement$ = IspPlacement$;
|
|
2135
|
-
exports.KinesisFirehoseDestination$ = KinesisFirehoseDestination$;
|
|
2136
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2137
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
2138
|
-
exports.ListConfigurationSets$ = ListConfigurationSets$;
|
|
2139
782
|
exports.ListConfigurationSetsCommand = ListConfigurationSetsCommand;
|
|
2140
|
-
exports.ListConfigurationSetsRequest$ = ListConfigurationSetsRequest$;
|
|
2141
|
-
exports.ListConfigurationSetsResponse$ = ListConfigurationSetsResponse$;
|
|
2142
|
-
exports.ListDedicatedIpPools$ = ListDedicatedIpPools$;
|
|
2143
783
|
exports.ListDedicatedIpPoolsCommand = ListDedicatedIpPoolsCommand;
|
|
2144
|
-
exports.ListDedicatedIpPoolsRequest$ = ListDedicatedIpPoolsRequest$;
|
|
2145
|
-
exports.ListDedicatedIpPoolsResponse$ = ListDedicatedIpPoolsResponse$;
|
|
2146
|
-
exports.ListDeliverabilityTestReports$ = ListDeliverabilityTestReports$;
|
|
2147
784
|
exports.ListDeliverabilityTestReportsCommand = ListDeliverabilityTestReportsCommand;
|
|
2148
|
-
exports.ListDeliverabilityTestReportsRequest$ = ListDeliverabilityTestReportsRequest$;
|
|
2149
|
-
exports.ListDeliverabilityTestReportsResponse$ = ListDeliverabilityTestReportsResponse$;
|
|
2150
|
-
exports.ListDomainDeliverabilityCampaigns$ = ListDomainDeliverabilityCampaigns$;
|
|
2151
785
|
exports.ListDomainDeliverabilityCampaignsCommand = ListDomainDeliverabilityCampaignsCommand;
|
|
2152
|
-
exports.ListDomainDeliverabilityCampaignsRequest$ = ListDomainDeliverabilityCampaignsRequest$;
|
|
2153
|
-
exports.ListDomainDeliverabilityCampaignsResponse$ = ListDomainDeliverabilityCampaignsResponse$;
|
|
2154
|
-
exports.ListEmailIdentities$ = ListEmailIdentities$;
|
|
2155
786
|
exports.ListEmailIdentitiesCommand = ListEmailIdentitiesCommand;
|
|
2156
|
-
exports.ListEmailIdentitiesRequest$ = ListEmailIdentitiesRequest$;
|
|
2157
|
-
exports.ListEmailIdentitiesResponse$ = ListEmailIdentitiesResponse$;
|
|
2158
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2159
787
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2160
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2161
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2162
|
-
exports.MailFromAttributes$ = MailFromAttributes$;
|
|
2163
|
-
exports.MailFromDomainNotVerifiedException = MailFromDomainNotVerifiedException;
|
|
2164
|
-
exports.MailFromDomainNotVerifiedException$ = MailFromDomainNotVerifiedException$;
|
|
2165
788
|
exports.MailFromDomainStatus = MailFromDomainStatus;
|
|
2166
|
-
exports.Message$ = Message$;
|
|
2167
|
-
exports.MessageRejected = MessageRejected;
|
|
2168
|
-
exports.MessageRejected$ = MessageRejected$;
|
|
2169
|
-
exports.MessageTag$ = MessageTag$;
|
|
2170
|
-
exports.NotFoundException = NotFoundException;
|
|
2171
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
2172
|
-
exports.OverallVolume$ = OverallVolume$;
|
|
2173
|
-
exports.PinpointDestination$ = PinpointDestination$;
|
|
2174
789
|
exports.PinpointEmail = PinpointEmail;
|
|
2175
790
|
exports.PinpointEmailClient = PinpointEmailClient;
|
|
2176
|
-
exports.PinpointEmailServiceException = PinpointEmailServiceException;
|
|
2177
|
-
exports.PinpointEmailServiceException$ = PinpointEmailServiceException$;
|
|
2178
|
-
exports.PlacementStatistics$ = PlacementStatistics$;
|
|
2179
|
-
exports.PutAccountDedicatedIpWarmupAttributes$ = PutAccountDedicatedIpWarmupAttributes$;
|
|
2180
791
|
exports.PutAccountDedicatedIpWarmupAttributesCommand = PutAccountDedicatedIpWarmupAttributesCommand;
|
|
2181
|
-
exports.PutAccountDedicatedIpWarmupAttributesRequest$ = PutAccountDedicatedIpWarmupAttributesRequest$;
|
|
2182
|
-
exports.PutAccountDedicatedIpWarmupAttributesResponse$ = PutAccountDedicatedIpWarmupAttributesResponse$;
|
|
2183
|
-
exports.PutAccountSendingAttributes$ = PutAccountSendingAttributes$;
|
|
2184
792
|
exports.PutAccountSendingAttributesCommand = PutAccountSendingAttributesCommand;
|
|
2185
|
-
exports.PutAccountSendingAttributesRequest$ = PutAccountSendingAttributesRequest$;
|
|
2186
|
-
exports.PutAccountSendingAttributesResponse$ = PutAccountSendingAttributesResponse$;
|
|
2187
|
-
exports.PutConfigurationSetDeliveryOptions$ = PutConfigurationSetDeliveryOptions$;
|
|
2188
793
|
exports.PutConfigurationSetDeliveryOptionsCommand = PutConfigurationSetDeliveryOptionsCommand;
|
|
2189
|
-
exports.PutConfigurationSetDeliveryOptionsRequest$ = PutConfigurationSetDeliveryOptionsRequest$;
|
|
2190
|
-
exports.PutConfigurationSetDeliveryOptionsResponse$ = PutConfigurationSetDeliveryOptionsResponse$;
|
|
2191
|
-
exports.PutConfigurationSetReputationOptions$ = PutConfigurationSetReputationOptions$;
|
|
2192
794
|
exports.PutConfigurationSetReputationOptionsCommand = PutConfigurationSetReputationOptionsCommand;
|
|
2193
|
-
exports.PutConfigurationSetReputationOptionsRequest$ = PutConfigurationSetReputationOptionsRequest$;
|
|
2194
|
-
exports.PutConfigurationSetReputationOptionsResponse$ = PutConfigurationSetReputationOptionsResponse$;
|
|
2195
|
-
exports.PutConfigurationSetSendingOptions$ = PutConfigurationSetSendingOptions$;
|
|
2196
795
|
exports.PutConfigurationSetSendingOptionsCommand = PutConfigurationSetSendingOptionsCommand;
|
|
2197
|
-
exports.PutConfigurationSetSendingOptionsRequest$ = PutConfigurationSetSendingOptionsRequest$;
|
|
2198
|
-
exports.PutConfigurationSetSendingOptionsResponse$ = PutConfigurationSetSendingOptionsResponse$;
|
|
2199
|
-
exports.PutConfigurationSetTrackingOptions$ = PutConfigurationSetTrackingOptions$;
|
|
2200
796
|
exports.PutConfigurationSetTrackingOptionsCommand = PutConfigurationSetTrackingOptionsCommand;
|
|
2201
|
-
exports.PutConfigurationSetTrackingOptionsRequest$ = PutConfigurationSetTrackingOptionsRequest$;
|
|
2202
|
-
exports.PutConfigurationSetTrackingOptionsResponse$ = PutConfigurationSetTrackingOptionsResponse$;
|
|
2203
|
-
exports.PutDedicatedIpInPool$ = PutDedicatedIpInPool$;
|
|
2204
797
|
exports.PutDedicatedIpInPoolCommand = PutDedicatedIpInPoolCommand;
|
|
2205
|
-
exports.PutDedicatedIpInPoolRequest$ = PutDedicatedIpInPoolRequest$;
|
|
2206
|
-
exports.PutDedicatedIpInPoolResponse$ = PutDedicatedIpInPoolResponse$;
|
|
2207
|
-
exports.PutDedicatedIpWarmupAttributes$ = PutDedicatedIpWarmupAttributes$;
|
|
2208
798
|
exports.PutDedicatedIpWarmupAttributesCommand = PutDedicatedIpWarmupAttributesCommand;
|
|
2209
|
-
exports.PutDedicatedIpWarmupAttributesRequest$ = PutDedicatedIpWarmupAttributesRequest$;
|
|
2210
|
-
exports.PutDedicatedIpWarmupAttributesResponse$ = PutDedicatedIpWarmupAttributesResponse$;
|
|
2211
|
-
exports.PutDeliverabilityDashboardOption$ = PutDeliverabilityDashboardOption$;
|
|
2212
799
|
exports.PutDeliverabilityDashboardOptionCommand = PutDeliverabilityDashboardOptionCommand;
|
|
2213
|
-
exports.PutDeliverabilityDashboardOptionRequest$ = PutDeliverabilityDashboardOptionRequest$;
|
|
2214
|
-
exports.PutDeliverabilityDashboardOptionResponse$ = PutDeliverabilityDashboardOptionResponse$;
|
|
2215
|
-
exports.PutEmailIdentityDkimAttributes$ = PutEmailIdentityDkimAttributes$;
|
|
2216
800
|
exports.PutEmailIdentityDkimAttributesCommand = PutEmailIdentityDkimAttributesCommand;
|
|
2217
|
-
exports.PutEmailIdentityDkimAttributesRequest$ = PutEmailIdentityDkimAttributesRequest$;
|
|
2218
|
-
exports.PutEmailIdentityDkimAttributesResponse$ = PutEmailIdentityDkimAttributesResponse$;
|
|
2219
|
-
exports.PutEmailIdentityFeedbackAttributes$ = PutEmailIdentityFeedbackAttributes$;
|
|
2220
801
|
exports.PutEmailIdentityFeedbackAttributesCommand = PutEmailIdentityFeedbackAttributesCommand;
|
|
2221
|
-
exports.PutEmailIdentityFeedbackAttributesRequest$ = PutEmailIdentityFeedbackAttributesRequest$;
|
|
2222
|
-
exports.PutEmailIdentityFeedbackAttributesResponse$ = PutEmailIdentityFeedbackAttributesResponse$;
|
|
2223
|
-
exports.PutEmailIdentityMailFromAttributes$ = PutEmailIdentityMailFromAttributes$;
|
|
2224
802
|
exports.PutEmailIdentityMailFromAttributesCommand = PutEmailIdentityMailFromAttributesCommand;
|
|
2225
|
-
exports.PutEmailIdentityMailFromAttributesRequest$ = PutEmailIdentityMailFromAttributesRequest$;
|
|
2226
|
-
exports.PutEmailIdentityMailFromAttributesResponse$ = PutEmailIdentityMailFromAttributesResponse$;
|
|
2227
|
-
exports.RawMessage$ = RawMessage$;
|
|
2228
|
-
exports.ReputationOptions$ = ReputationOptions$;
|
|
2229
|
-
exports.SendEmail$ = SendEmail$;
|
|
2230
803
|
exports.SendEmailCommand = SendEmailCommand;
|
|
2231
|
-
exports.SendEmailRequest$ = SendEmailRequest$;
|
|
2232
|
-
exports.SendEmailResponse$ = SendEmailResponse$;
|
|
2233
|
-
exports.SendQuota$ = SendQuota$;
|
|
2234
|
-
exports.SendingOptions$ = SendingOptions$;
|
|
2235
|
-
exports.SendingPausedException = SendingPausedException;
|
|
2236
|
-
exports.SendingPausedException$ = SendingPausedException$;
|
|
2237
|
-
exports.SnsDestination$ = SnsDestination$;
|
|
2238
|
-
exports.Tag$ = Tag$;
|
|
2239
|
-
exports.TagResource$ = TagResource$;
|
|
2240
804
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2241
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2242
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2243
|
-
exports.Template$ = Template$;
|
|
2244
805
|
exports.TlsPolicy = TlsPolicy;
|
|
2245
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
2246
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
2247
|
-
exports.TrackingOptions$ = TrackingOptions$;
|
|
2248
|
-
exports.UntagResource$ = UntagResource$;
|
|
2249
806
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2250
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2251
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2252
|
-
exports.UpdateConfigurationSetEventDestination$ = UpdateConfigurationSetEventDestination$;
|
|
2253
807
|
exports.UpdateConfigurationSetEventDestinationCommand = UpdateConfigurationSetEventDestinationCommand;
|
|
2254
|
-
exports.UpdateConfigurationSetEventDestinationRequest$ = UpdateConfigurationSetEventDestinationRequest$;
|
|
2255
|
-
exports.UpdateConfigurationSetEventDestinationResponse$ = UpdateConfigurationSetEventDestinationResponse$;
|
|
2256
|
-
exports.VolumeStatistics$ = VolumeStatistics$;
|
|
2257
808
|
exports.WarmupStatus = WarmupStatus;
|
|
2258
809
|
exports.paginateGetDedicatedIps = paginateGetDedicatedIps;
|
|
2259
810
|
exports.paginateListConfigurationSets = paginateListConfigurationSets;
|
|
@@ -2261,3 +812,15 @@ exports.paginateListDedicatedIpPools = paginateListDedicatedIpPools;
|
|
|
2261
812
|
exports.paginateListDeliverabilityTestReports = paginateListDeliverabilityTestReports;
|
|
2262
813
|
exports.paginateListDomainDeliverabilityCampaigns = paginateListDomainDeliverabilityCampaigns;
|
|
2263
814
|
exports.paginateListEmailIdentities = paginateListEmailIdentities;
|
|
815
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
816
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
817
|
+
enumerable: true,
|
|
818
|
+
get: function () { return schemas_0[k]; }
|
|
819
|
+
});
|
|
820
|
+
});
|
|
821
|
+
Object.keys(errors).forEach(function (k) {
|
|
822
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
823
|
+
enumerable: true,
|
|
824
|
+
get: function () { return errors[k]; }
|
|
825
|
+
});
|
|
826
|
+
});
|