@aws-sdk/client-pinpoint-email 3.1075.0 → 3.1077.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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultPinpointEmailHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateConfigurationSet$, CreateConfigurationSetEventDestination$, CreateDedicatedIpPool$, CreateDeliverabilityTestReport$, CreateEmailIdentity$, DeleteConfigurationSet$, DeleteConfigurationSetEventDestination$, DeleteDedicatedIpPool$, DeleteEmailIdentity$, GetAccount$, GetBlacklistReports$, GetConfigurationSet$, GetConfigurationSetEventDestinations$, GetDedicatedIp$, GetDedicatedIps$, GetDeliverabilityDashboardOptions$, GetDeliverabilityTestReport$, GetDomainDeliverabilityCampaign$, GetDomainStatisticsReport$, GetEmailIdentity$, ListConfigurationSets$, ListDedicatedIpPools$, ListDeliverabilityTestReports$, ListDomainDeliverabilityCampaigns$, ListEmailIdentities$, ListTagsForResource$, PutAccountDedicatedIpWarmupAttributes$, PutAccountSendingAttributes$, PutConfigurationSetDeliveryOptions$, PutConfigurationSetReputationOptions$, PutConfigurationSetSendingOptions$, PutConfigurationSetTrackingOptions$, PutDedicatedIpInPool$, PutDedicatedIpWarmupAttributes$, PutDeliverabilityDashboardOption$, PutEmailIdentityDkimAttributes$, PutEmailIdentityFeedbackAttributes$, PutEmailIdentityMailFromAttributes$, SendEmail$, TagResource$, UntagResource$, UpdateConfigurationSetEventDestination$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { PinpointEmailServiceException } = require("./models/PinpointEmailServiceException");
18
- exports.PinpointEmailServiceException = PinpointEmailServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultPinpointEmailHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "ses",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultPinpointEmailHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1412 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://email-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://email-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://email.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://email.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class PinpointEmailServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, PinpointEmailServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccountSuspendedException extends PinpointEmailServiceException {
141
+ name = "AccountSuspendedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccountSuspendedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccountSuspendedException.prototype);
150
+ }
151
+ }
152
+ class AlreadyExistsException extends PinpointEmailServiceException {
153
+ name = "AlreadyExistsException";
154
+ $fault = "client";
155
+ constructor(opts) {
156
+ super({
157
+ name: "AlreadyExistsException",
158
+ $fault: "client",
159
+ ...opts,
160
+ });
161
+ Object.setPrototypeOf(this, AlreadyExistsException.prototype);
162
+ }
163
+ }
164
+ class BadRequestException extends PinpointEmailServiceException {
165
+ name = "BadRequestException";
166
+ $fault = "client";
167
+ constructor(opts) {
168
+ super({
169
+ name: "BadRequestException",
170
+ $fault: "client",
171
+ ...opts,
172
+ });
173
+ Object.setPrototypeOf(this, BadRequestException.prototype);
174
+ }
175
+ }
176
+ class ConcurrentModificationException extends PinpointEmailServiceException {
177
+ name = "ConcurrentModificationException";
178
+ $fault = "server";
179
+ constructor(opts) {
180
+ super({
181
+ name: "ConcurrentModificationException",
182
+ $fault: "server",
183
+ ...opts,
184
+ });
185
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
186
+ }
187
+ }
188
+ class LimitExceededException extends PinpointEmailServiceException {
189
+ name = "LimitExceededException";
190
+ $fault = "client";
191
+ constructor(opts) {
192
+ super({
193
+ name: "LimitExceededException",
194
+ $fault: "client",
195
+ ...opts,
196
+ });
197
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
198
+ }
199
+ }
200
+ class NotFoundException extends PinpointEmailServiceException {
201
+ name = "NotFoundException";
202
+ $fault = "client";
203
+ constructor(opts) {
204
+ super({
205
+ name: "NotFoundException",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ Object.setPrototypeOf(this, NotFoundException.prototype);
210
+ }
211
+ }
212
+ class TooManyRequestsException extends PinpointEmailServiceException {
213
+ name = "TooManyRequestsException";
214
+ $fault = "client";
215
+ constructor(opts) {
216
+ super({
217
+ name: "TooManyRequestsException",
218
+ $fault: "client",
219
+ ...opts,
220
+ });
221
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
222
+ }
223
+ }
224
+ class MailFromDomainNotVerifiedException extends PinpointEmailServiceException {
225
+ name = "MailFromDomainNotVerifiedException";
226
+ $fault = "client";
227
+ constructor(opts) {
228
+ super({
229
+ name: "MailFromDomainNotVerifiedException",
230
+ $fault: "client",
231
+ ...opts,
232
+ });
233
+ Object.setPrototypeOf(this, MailFromDomainNotVerifiedException.prototype);
234
+ }
235
+ }
236
+ class MessageRejected extends PinpointEmailServiceException {
237
+ name = "MessageRejected";
238
+ $fault = "client";
239
+ constructor(opts) {
240
+ super({
241
+ name: "MessageRejected",
242
+ $fault: "client",
243
+ ...opts,
244
+ });
245
+ Object.setPrototypeOf(this, MessageRejected.prototype);
246
+ }
247
+ }
248
+ class SendingPausedException extends PinpointEmailServiceException {
249
+ name = "SendingPausedException";
250
+ $fault = "client";
251
+ constructor(opts) {
252
+ super({
253
+ name: "SendingPausedException",
254
+ $fault: "client",
255
+ ...opts,
256
+ });
257
+ Object.setPrototypeOf(this, SendingPausedException.prototype);
258
+ }
259
+ }
260
+
261
+ const _AA = "ApplicationArn";
262
+ const _AEE = "AlreadyExistsException";
263
+ const _AS = "AccountStatus";
264
+ const _ASD = "ActiveSubscribedDomains";
265
+ const _ASE = "AccountSuspendedException";
266
+ const _AWE = "AutoWarmupEnabled";
267
+ const _B = "Body";
268
+ const _BA = "BccAddresses";
269
+ const _BE = "BlacklistEntry";
270
+ const _BEl = "BlacklistEntries";
271
+ const _BIN = "BlacklistItemNames";
272
+ const _BOMF = "BehaviorOnMxFailure";
273
+ const _BR = "BlacklistReport";
274
+ const _BRE = "BadRequestException";
275
+ const _C = "Content";
276
+ const _CA = "CcAddresses";
277
+ const _CCS = "CreateConfigurationSet";
278
+ const _CCSED = "CreateConfigurationSetEventDestination";
279
+ const _CCSEDR = "CreateConfigurationSetEventDestinationRequest";
280
+ const _CCSEDRr = "CreateConfigurationSetEventDestinationResponse";
281
+ const _CCSR = "CreateConfigurationSetRequest";
282
+ const _CCSRr = "CreateConfigurationSetResponse";
283
+ const _CD = "CreateDate";
284
+ const _CDIP = "CreateDedicatedIpPool";
285
+ const _CDIPR = "CreateDedicatedIpPoolRequest";
286
+ const _CDIPRr = "CreateDedicatedIpPoolResponse";
287
+ const _CDTR = "CreateDeliverabilityTestReport";
288
+ const _CDTRR = "CreateDeliverabilityTestReportRequest";
289
+ const _CDTRRr = "CreateDeliverabilityTestReportResponse";
290
+ const _CEI = "CreateEmailIdentity";
291
+ const _CEIR = "CreateEmailIdentityRequest";
292
+ const _CEIRr = "CreateEmailIdentityResponse";
293
+ const _CI = "CampaignId";
294
+ const _CME = "ConcurrentModificationException";
295
+ const _CRD = "CustomRedirectDomain";
296
+ const _CS = "ConfigurationSets";
297
+ const _CSN = "ConfigurationSetName";
298
+ const _CWD = "CloudWatchDestination";
299
+ const _CWDC = "CloudWatchDimensionConfiguration";
300
+ const _CWDCl = "CloudWatchDimensionConfigurations";
301
+ const _Ch = "Charset";
302
+ const _D = "Description";
303
+ const _DA = "DkimAttributes";
304
+ const _DC = "DimensionConfigurations";
305
+ const _DCS = "DeleteConfigurationSet";
306
+ const _DCSED = "DeleteConfigurationSetEventDestination";
307
+ const _DCSEDR = "DeleteConfigurationSetEventDestinationRequest";
308
+ const _DCSEDRe = "DeleteConfigurationSetEventDestinationResponse";
309
+ const _DCSR = "DeleteConfigurationSetRequest";
310
+ const _DCSRe = "DeleteConfigurationSetResponse";
311
+ const _DDC = "DomainDeliverabilityCampaign";
312
+ const _DDCL = "DomainDeliverabilityCampaignList";
313
+ const _DDCo = "DomainDeliverabilityCampaigns";
314
+ const _DDIP = "DeleteDedicatedIpPool";
315
+ const _DDIPR = "DeleteDedicatedIpPoolRequest";
316
+ const _DDIPRe = "DeleteDedicatedIpPoolResponse";
317
+ const _DDTO = "DomainDeliverabilityTrackingOption";
318
+ const _DDTOo = "DomainDeliverabilityTrackingOptions";
319
+ const _DDV = "DefaultDimensionValue";
320
+ const _DE = "DashboardEnabled";
321
+ const _DEI = "DeleteEmailIdentity";
322
+ const _DEIR = "DeleteEmailIdentityRequest";
323
+ const _DEIRe = "DeleteEmailIdentityResponse";
324
+ const _DI = "DedicatedIp";
325
+ const _DIAWE = "DedicatedIpAutoWarmupEnabled";
326
+ const _DIL = "DedicatedIpList";
327
+ const _DIP = "DomainIspPlacements";
328
+ const _DIPe = "DedicatedIpPools";
329
+ const _DIPo = "DomainIspPlacement";
330
+ const _DIe = "DedicatedIps";
331
+ const _DN = "DimensionName";
332
+ const _DO = "DeliveryOptions";
333
+ const _DP = "DkimPercentage";
334
+ const _DPN = "DestinationPoolName";
335
+ const _DR = "DeleteRate";
336
+ const _DSA = "DeliveryStreamArn";
337
+ const _DTR = "DeliverabilityTestReport";
338
+ const _DTRe = "DeliverabilityTestReports";
339
+ const _DTS = "DeliverabilityTestStatus";
340
+ const _DV = "DailyVolume";
341
+ const _DVS = "DimensionValueSource";
342
+ const _DVa = "DailyVolumes";
343
+ const _Da = "Data";
344
+ const _De = "Destination";
345
+ const _Do = "Domain";
346
+ const _E = "Esps";
347
+ const _EC = "EmailContent";
348
+ const _ED = "EventDestination";
349
+ const _EDD = "EventDestinationDefinition";
350
+ const _EDN = "EventDestinationName";
351
+ const _EDn = "EndDate";
352
+ const _EDv = "EventDestinations";
353
+ const _EFE = "EmailForwardingEnabled";
354
+ const _EI = "EmailIdentity";
355
+ const _EIm = "EmailIdentities";
356
+ const _ES = "EnforcementStatus";
357
+ const _ET = "EmailTags";
358
+ const _En = "Enabled";
359
+ const _FA = "FromAddress";
360
+ const _FEA = "FromEmailAddress";
361
+ const _FFEA = "FeedbackForwardingEmailAddress";
362
+ const _FFS = "FeedbackForwardingStatus";
363
+ const _FSDT = "FirstSeenDateTime";
364
+ const _G = "Global";
365
+ const _GA = "GetAccount";
366
+ const _GAR = "GetAccountRequest";
367
+ const _GARe = "GetAccountResponse";
368
+ const _GBR = "GetBlacklistReports";
369
+ const _GBRR = "GetBlacklistReportsRequest";
370
+ const _GBRRe = "GetBlacklistReportsResponse";
371
+ const _GCS = "GetConfigurationSet";
372
+ const _GCSED = "GetConfigurationSetEventDestinations";
373
+ const _GCSEDR = "GetConfigurationSetEventDestinationsRequest";
374
+ const _GCSEDRe = "GetConfigurationSetEventDestinationsResponse";
375
+ const _GCSR = "GetConfigurationSetRequest";
376
+ const _GCSRe = "GetConfigurationSetResponse";
377
+ const _GDDC = "GetDomainDeliverabilityCampaign";
378
+ const _GDDCR = "GetDomainDeliverabilityCampaignRequest";
379
+ const _GDDCRe = "GetDomainDeliverabilityCampaignResponse";
380
+ const _GDDO = "GetDeliverabilityDashboardOptions";
381
+ const _GDDOR = "GetDeliverabilityDashboardOptionsRequest";
382
+ const _GDDORe = "GetDeliverabilityDashboardOptionsResponse";
383
+ const _GDI = "GetDedicatedIp";
384
+ const _GDIR = "GetDedicatedIpRequest";
385
+ const _GDIRe = "GetDedicatedIpResponse";
386
+ const _GDIRet = "GetDedicatedIpsRequest";
387
+ const _GDIRete = "GetDedicatedIpsResponse";
388
+ const _GDIe = "GetDedicatedIps";
389
+ const _GDSR = "GetDomainStatisticsReport";
390
+ const _GDSRR = "GetDomainStatisticsReportRequest";
391
+ const _GDSRRe = "GetDomainStatisticsReportResponse";
392
+ const _GDTR = "GetDeliverabilityTestReport";
393
+ const _GDTRR = "GetDeliverabilityTestReportRequest";
394
+ const _GDTRRe = "GetDeliverabilityTestReportResponse";
395
+ const _GEI = "GetEmailIdentity";
396
+ const _GEIR = "GetEmailIdentityRequest";
397
+ const _GEIRe = "GetEmailIdentityResponse";
398
+ const _H = "Html";
399
+ const _I = "Ip";
400
+ const _IC = "InboxCount";
401
+ const _II = "IdentityInfo";
402
+ const _IIL = "IdentityInfoList";
403
+ const _IN = "IspName";
404
+ const _INd = "IdentityName";
405
+ const _IP = "InboxPercentage";
406
+ const _IPTO = "InboxPlacementTrackingOption";
407
+ const _IPs = "IspPlacements";
408
+ const _IPsp = "IspPlacement";
409
+ const _IRA = "IamRoleArn";
410
+ const _IRC = "InboxRawCount";
411
+ const _IT = "IdentityType";
412
+ const _IU = "ImageUrl";
413
+ const _K = "Key";
414
+ const _KFD = "KinesisFirehoseDestination";
415
+ const _LCS = "ListConfigurationSets";
416
+ const _LCSR = "ListConfigurationSetsRequest";
417
+ const _LCSRi = "ListConfigurationSetsResponse";
418
+ const _LDDC = "ListDomainDeliverabilityCampaigns";
419
+ const _LDDCR = "ListDomainDeliverabilityCampaignsRequest";
420
+ const _LDDCRi = "ListDomainDeliverabilityCampaignsResponse";
421
+ const _LDIP = "ListDedicatedIpPools";
422
+ const _LDIPR = "ListDedicatedIpPoolsRequest";
423
+ const _LDIPRi = "ListDedicatedIpPoolsResponse";
424
+ const _LDTR = "ListDeliverabilityTestReports";
425
+ const _LDTRR = "ListDeliverabilityTestReportsRequest";
426
+ const _LDTRRi = "ListDeliverabilityTestReportsResponse";
427
+ const _LEE = "LimitExceededException";
428
+ const _LEI = "ListEmailIdentities";
429
+ const _LEIR = "ListEmailIdentitiesRequest";
430
+ const _LEIRi = "ListEmailIdentitiesResponse";
431
+ const _LFS = "LastFreshStart";
432
+ const _LSDT = "LastSeenDateTime";
433
+ const _LT = "ListingTime";
434
+ const _LTFR = "ListTagsForResource";
435
+ const _LTFRR = "ListTagsForResourceRequest";
436
+ const _LTFRRi = "ListTagsForResourceResponse";
437
+ const _M = "Message";
438
+ const _MET = "MatchingEventTypes";
439
+ const _MFA = "MailFromAttributes";
440
+ const _MFD = "MailFromDomain";
441
+ const _MFDNVE = "MailFromDomainNotVerifiedException";
442
+ const _MFDS = "MailFromDomainStatus";
443
+ const _MHS = "Max24HourSend";
444
+ const _MI = "MessageId";
445
+ const _MP = "MissingPercentage";
446
+ const _MR = "MessageRejected";
447
+ const _MSR = "MaxSendRate";
448
+ const _MT = "MessageTag";
449
+ const _MTL = "MessageTagList";
450
+ const _N = "Name";
451
+ const _NFE = "NotFoundException";
452
+ const _NT = "NextToken";
453
+ const _OP = "OverallPlacement";
454
+ const _OV = "OverallVolume";
455
+ const _PADIWA = "PutAccountDedicatedIpWarmupAttributes";
456
+ const _PADIWAR = "PutAccountDedicatedIpWarmupAttributesRequest";
457
+ const _PADIWARu = "PutAccountDedicatedIpWarmupAttributesResponse";
458
+ const _PAE = "ProductionAccessEnabled";
459
+ const _PASA = "PutAccountSendingAttributes";
460
+ const _PASAR = "PutAccountSendingAttributesRequest";
461
+ const _PASARu = "PutAccountSendingAttributesResponse";
462
+ const _PCSDO = "PutConfigurationSetDeliveryOptions";
463
+ const _PCSDOR = "PutConfigurationSetDeliveryOptionsRequest";
464
+ const _PCSDORu = "PutConfigurationSetDeliveryOptionsResponse";
465
+ const _PCSRO = "PutConfigurationSetReputationOptions";
466
+ const _PCSROR = "PutConfigurationSetReputationOptionsRequest";
467
+ const _PCSRORu = "PutConfigurationSetReputationOptionsResponse";
468
+ const _PCSSO = "PutConfigurationSetSendingOptions";
469
+ const _PCSSOR = "PutConfigurationSetSendingOptionsRequest";
470
+ const _PCSSORu = "PutConfigurationSetSendingOptionsResponse";
471
+ const _PCSTO = "PutConfigurationSetTrackingOptions";
472
+ const _PCSTOR = "PutConfigurationSetTrackingOptionsRequest";
473
+ const _PCSTORu = "PutConfigurationSetTrackingOptionsResponse";
474
+ const _PD = "PinpointDestination";
475
+ const _PDDO = "PutDeliverabilityDashboardOption";
476
+ const _PDDOR = "PutDeliverabilityDashboardOptionRequest";
477
+ const _PDDORu = "PutDeliverabilityDashboardOptionResponse";
478
+ const _PDIIP = "PutDedicatedIpInPool";
479
+ const _PDIIPR = "PutDedicatedIpInPoolRequest";
480
+ const _PDIIPRu = "PutDedicatedIpInPoolResponse";
481
+ const _PDIWA = "PutDedicatedIpWarmupAttributes";
482
+ const _PDIWAR = "PutDedicatedIpWarmupAttributesRequest";
483
+ const _PDIWARu = "PutDedicatedIpWarmupAttributesResponse";
484
+ const _PEIDA = "PutEmailIdentityDkimAttributes";
485
+ const _PEIDAR = "PutEmailIdentityDkimAttributesRequest";
486
+ const _PEIDARu = "PutEmailIdentityDkimAttributesResponse";
487
+ const _PEIFA = "PutEmailIdentityFeedbackAttributes";
488
+ const _PEIFAR = "PutEmailIdentityFeedbackAttributesRequest";
489
+ const _PEIFARu = "PutEmailIdentityFeedbackAttributesResponse";
490
+ const _PEIMFA = "PutEmailIdentityMailFromAttributes";
491
+ const _PEIMFAR = "PutEmailIdentityMailFromAttributesRequest";
492
+ const _PEIMFARu = "PutEmailIdentityMailFromAttributesResponse";
493
+ const _PESD = "PendingExpirationSubscribedDomains";
494
+ const _PI = "ProjectedInbox";
495
+ const _PN = "PoolName";
496
+ const _PS = "PageSize";
497
+ const _PSl = "PlacementStatistics";
498
+ const _PSr = "ProjectedSpam";
499
+ const _PV = "ProjectedVolume";
500
+ const _R = "Raw";
501
+ const _RA = "ResourceArn";
502
+ const _RDR = "ReadDeleteRate";
503
+ const _RI = "ReportId";
504
+ const _RM = "RawMessage";
505
+ const _RME = "ReputationMetricsEnabled";
506
+ const _RN = "RblName";
507
+ const _RNe = "ReportName";
508
+ const _RO = "ReputationOptions";
509
+ const _RR = "ReadRate";
510
+ const _RRP = "ReadRatePercent";
511
+ const _RTA = "ReplyToAddresses";
512
+ const _S = "Subject";
513
+ const _SC = "SpamCount";
514
+ const _SD = "StartDate";
515
+ const _SDn = "SnsDestination";
516
+ const _SDu = "SubscribedDomain";
517
+ const _SDub = "SubscribedDomains";
518
+ const _SE = "SigningEnabled";
519
+ const _SED = "SubscriptionExpiryDate";
520
+ const _SER = "SendEmailRequest";
521
+ const _SERe = "SendEmailResponse";
522
+ const _SEe = "SendingEnabled";
523
+ const _SEen = "SendEmail";
524
+ const _SI = "SendingIps";
525
+ const _SLH = "SentLast24Hours";
526
+ const _SO = "SendingOptions";
527
+ const _SP = "SpamPercentage";
528
+ const _SPE = "SendingPausedException";
529
+ const _SPN = "SendingPoolName";
530
+ const _SPp = "SpfPercentage";
531
+ const _SQ = "SendQuota";
532
+ const _SRC = "SpamRawCount";
533
+ const _SSD = "SubscriptionStartDate";
534
+ const _Si = "Simple";
535
+ const _St = "Status";
536
+ const _T = "Text";
537
+ const _TA = "ToAddresses";
538
+ const _TAe = "TemplateArn";
539
+ const _TAo = "TopicArn";
540
+ const _TD = "TemplateData";
541
+ const _TI = "TrackedIsps";
542
+ const _TK = "TagKeys";
543
+ const _TL = "TagList";
544
+ const _TMRE = "TooManyRequestsException";
545
+ const _TO = "TrackingOptions";
546
+ const _TP = "TlsPolicy";
547
+ const _TR = "TagResource";
548
+ const _TRR = "TagResourceRequest";
549
+ const _TRRa = "TagResourceResponse";
550
+ const _Ta = "Tags";
551
+ const _Tag = "Tag";
552
+ const _Te = "Template";
553
+ const _To = "Tokens";
554
+ const _UCSED = "UpdateConfigurationSetEventDestination";
555
+ const _UCSEDR = "UpdateConfigurationSetEventDestinationRequest";
556
+ const _UCSEDRp = "UpdateConfigurationSetEventDestinationResponse";
557
+ const _UR = "UntagResource";
558
+ const _URR = "UntagResourceRequest";
559
+ const _URRn = "UntagResourceResponse";
560
+ const _V = "Value";
561
+ const _VFSS = "VerifiedForSendingStatus";
562
+ const _VS = "VolumeStatistics";
563
+ const _WP = "WarmupPercentage";
564
+ const _WS = "WarmupStatus";
565
+ const _c = "client";
566
+ const _e = "error";
567
+ const _h = "http";
568
+ const _hE = "httpError";
569
+ const _hQ = "httpQuery";
570
+ const _m = "message";
571
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.pinpointemail";
572
+ const _se = "server";
573
+ const n0 = "com.amazonaws.pinpointemail";
574
+ const _s_registry = TypeRegistry.for(_s);
575
+ var PinpointEmailServiceException$ = [-3, _s, "PinpointEmailServiceException", 0, [], []];
576
+ _s_registry.registerError(PinpointEmailServiceException$, PinpointEmailServiceException);
577
+ const n0_registry = TypeRegistry.for(n0);
578
+ var AccountSuspendedException$ = [-3, n0, _ASE,
579
+ { [_e]: _c, [_hE]: 400 },
580
+ [_m],
581
+ [0]
582
+ ];
583
+ n0_registry.registerError(AccountSuspendedException$, AccountSuspendedException);
584
+ var AlreadyExistsException$ = [-3, n0, _AEE,
585
+ { [_e]: _c, [_hE]: 400 },
586
+ [_m],
587
+ [0]
588
+ ];
589
+ n0_registry.registerError(AlreadyExistsException$, AlreadyExistsException);
590
+ var BadRequestException$ = [-3, n0, _BRE,
591
+ { [_e]: _c, [_hE]: 400 },
592
+ [_m],
593
+ [0]
594
+ ];
595
+ n0_registry.registerError(BadRequestException$, BadRequestException);
596
+ var ConcurrentModificationException$ = [-3, n0, _CME,
597
+ { [_e]: _se, [_hE]: 500 },
598
+ [_m],
599
+ [0]
600
+ ];
601
+ n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
602
+ var LimitExceededException$ = [-3, n0, _LEE,
603
+ { [_e]: _c, [_hE]: 400 },
604
+ [_m],
605
+ [0]
606
+ ];
607
+ n0_registry.registerError(LimitExceededException$, LimitExceededException);
608
+ var MailFromDomainNotVerifiedException$ = [-3, n0, _MFDNVE,
609
+ { [_e]: _c, [_hE]: 400 },
610
+ [_m],
611
+ [0]
612
+ ];
613
+ n0_registry.registerError(MailFromDomainNotVerifiedException$, MailFromDomainNotVerifiedException);
614
+ var MessageRejected$ = [-3, n0, _MR,
615
+ { [_e]: _c, [_hE]: 400 },
616
+ [_m],
617
+ [0]
618
+ ];
619
+ n0_registry.registerError(MessageRejected$, MessageRejected);
620
+ var NotFoundException$ = [-3, n0, _NFE,
621
+ { [_e]: _c, [_hE]: 404 },
622
+ [_m],
623
+ [0]
624
+ ];
625
+ n0_registry.registerError(NotFoundException$, NotFoundException);
626
+ var SendingPausedException$ = [-3, n0, _SPE,
627
+ { [_e]: _c, [_hE]: 400 },
628
+ [_m],
629
+ [0]
630
+ ];
631
+ n0_registry.registerError(SendingPausedException$, SendingPausedException);
632
+ var TooManyRequestsException$ = [-3, n0, _TMRE,
633
+ { [_e]: _c, [_hE]: 429 },
634
+ [_m],
635
+ [0]
636
+ ];
637
+ n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
638
+ const errorTypeRegistries = [
639
+ _s_registry,
640
+ n0_registry,
641
+ ];
642
+ var BlacklistEntry$ = [3, n0, _BE,
643
+ 0,
644
+ [_RN, _LT, _D],
645
+ [0, 4, 0]
646
+ ];
647
+ var Body$ = [3, n0, _B,
648
+ 0,
649
+ [_T, _H],
650
+ [() => Content$, () => Content$]
651
+ ];
652
+ var CloudWatchDestination$ = [3, n0, _CWD,
653
+ 0,
654
+ [_DC],
655
+ [() => CloudWatchDimensionConfigurations], 1
656
+ ];
657
+ var CloudWatchDimensionConfiguration$ = [3, n0, _CWDC,
658
+ 0,
659
+ [_DN, _DVS, _DDV],
660
+ [0, 0, 0], 3
661
+ ];
662
+ var Content$ = [3, n0, _C,
663
+ 0,
664
+ [_Da, _Ch],
665
+ [0, 0], 1
666
+ ];
667
+ var CreateConfigurationSetEventDestinationRequest$ = [3, n0, _CCSEDR,
668
+ 0,
669
+ [_CSN, _EDN, _ED],
670
+ [[0, 1], 0, () => EventDestinationDefinition$], 3
671
+ ];
672
+ var CreateConfigurationSetEventDestinationResponse$ = [3, n0, _CCSEDRr,
673
+ 0,
674
+ [],
675
+ []
676
+ ];
677
+ var CreateConfigurationSetRequest$ = [3, n0, _CCSR,
678
+ 0,
679
+ [_CSN, _TO, _DO, _RO, _SO, _Ta],
680
+ [0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList], 1
681
+ ];
682
+ var CreateConfigurationSetResponse$ = [3, n0, _CCSRr,
683
+ 0,
684
+ [],
685
+ []
686
+ ];
687
+ var CreateDedicatedIpPoolRequest$ = [3, n0, _CDIPR,
688
+ 0,
689
+ [_PN, _Ta],
690
+ [0, () => TagList], 1
691
+ ];
692
+ var CreateDedicatedIpPoolResponse$ = [3, n0, _CDIPRr,
693
+ 0,
694
+ [],
695
+ []
696
+ ];
697
+ var CreateDeliverabilityTestReportRequest$ = [3, n0, _CDTRR,
698
+ 0,
699
+ [_FEA, _C, _RNe, _Ta],
700
+ [0, () => EmailContent$, 0, () => TagList], 2
701
+ ];
702
+ var CreateDeliverabilityTestReportResponse$ = [3, n0, _CDTRRr,
703
+ 0,
704
+ [_RI, _DTS],
705
+ [0, 0], 2
706
+ ];
707
+ var CreateEmailIdentityRequest$ = [3, n0, _CEIR,
708
+ 0,
709
+ [_EI, _Ta],
710
+ [0, () => TagList], 1
711
+ ];
712
+ var CreateEmailIdentityResponse$ = [3, n0, _CEIRr,
713
+ 0,
714
+ [_IT, _VFSS, _DA],
715
+ [0, 2, () => DkimAttributes$]
716
+ ];
717
+ var DailyVolume$ = [3, n0, _DV,
718
+ 0,
719
+ [_SD, _VS, _DIP],
720
+ [4, () => VolumeStatistics$, () => DomainIspPlacements]
721
+ ];
722
+ var DedicatedIp$ = [3, n0, _DI,
723
+ 0,
724
+ [_I, _WS, _WP, _PN],
725
+ [0, 0, 1, 0], 3
726
+ ];
727
+ var DeleteConfigurationSetEventDestinationRequest$ = [3, n0, _DCSEDR,
728
+ 0,
729
+ [_CSN, _EDN],
730
+ [[0, 1], [0, 1]], 2
731
+ ];
732
+ var DeleteConfigurationSetEventDestinationResponse$ = [3, n0, _DCSEDRe,
733
+ 0,
734
+ [],
735
+ []
736
+ ];
737
+ var DeleteConfigurationSetRequest$ = [3, n0, _DCSR,
738
+ 0,
739
+ [_CSN],
740
+ [[0, 1]], 1
741
+ ];
742
+ var DeleteConfigurationSetResponse$ = [3, n0, _DCSRe,
743
+ 0,
744
+ [],
745
+ []
746
+ ];
747
+ var DeleteDedicatedIpPoolRequest$ = [3, n0, _DDIPR,
748
+ 0,
749
+ [_PN],
750
+ [[0, 1]], 1
751
+ ];
752
+ var DeleteDedicatedIpPoolResponse$ = [3, n0, _DDIPRe,
753
+ 0,
754
+ [],
755
+ []
756
+ ];
757
+ var DeleteEmailIdentityRequest$ = [3, n0, _DEIR,
758
+ 0,
759
+ [_EI],
760
+ [[0, 1]], 1
761
+ ];
762
+ var DeleteEmailIdentityResponse$ = [3, n0, _DEIRe,
763
+ 0,
764
+ [],
765
+ []
766
+ ];
767
+ var DeliverabilityTestReport$ = [3, n0, _DTR,
768
+ 0,
769
+ [_RI, _RNe, _S, _FEA, _CD, _DTS],
770
+ [0, 0, 0, 0, 4, 0]
771
+ ];
772
+ var DeliveryOptions$ = [3, n0, _DO,
773
+ 0,
774
+ [_TP, _SPN],
775
+ [0, 0]
776
+ ];
777
+ var Destination$ = [3, n0, _De,
778
+ 0,
779
+ [_TA, _CA, _BA],
780
+ [64 | 0, 64 | 0, 64 | 0]
781
+ ];
782
+ var DkimAttributes$ = [3, n0, _DA,
783
+ 0,
784
+ [_SE, _St, _To],
785
+ [2, 0, 64 | 0]
786
+ ];
787
+ var DomainDeliverabilityCampaign$ = [3, n0, _DDC,
788
+ 0,
789
+ [_CI, _IU, _S, _FA, _SI, _FSDT, _LSDT, _IC, _SC, _RR, _DR, _RDR, _PV, _E],
790
+ [0, 0, 0, 0, 64 | 0, 4, 4, 1, 1, 1, 1, 1, 1, 64 | 0]
791
+ ];
792
+ var DomainDeliverabilityTrackingOption$ = [3, n0, _DDTO,
793
+ 0,
794
+ [_Do, _SSD, _IPTO],
795
+ [0, 4, () => InboxPlacementTrackingOption$]
796
+ ];
797
+ var DomainIspPlacement$ = [3, n0, _DIPo,
798
+ 0,
799
+ [_IN, _IRC, _SRC, _IP, _SP],
800
+ [0, 1, 1, 1, 1]
801
+ ];
802
+ var EmailContent$ = [3, n0, _EC,
803
+ 0,
804
+ [_Si, _R, _Te],
805
+ [() => Message$, () => RawMessage$, () => Template$]
806
+ ];
807
+ var EventDestination$ = [3, n0, _ED,
808
+ 0,
809
+ [_N, _MET, _En, _KFD, _CWD, _SDn, _PD],
810
+ [0, 64 | 0, 2, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SnsDestination$, () => PinpointDestination$], 2
811
+ ];
812
+ var EventDestinationDefinition$ = [3, n0, _EDD,
813
+ 0,
814
+ [_En, _MET, _KFD, _CWD, _SDn, _PD],
815
+ [2, 64 | 0, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SnsDestination$, () => PinpointDestination$]
816
+ ];
817
+ var GetAccountRequest$ = [3, n0, _GAR,
818
+ 0,
819
+ [],
820
+ []
821
+ ];
822
+ var GetAccountResponse$ = [3, n0, _GARe,
823
+ 0,
824
+ [_SQ, _SEe, _DIAWE, _ES, _PAE],
825
+ [() => SendQuota$, 2, 2, 0, 2]
826
+ ];
827
+ var GetBlacklistReportsRequest$ = [3, n0, _GBRR,
828
+ 0,
829
+ [_BIN],
830
+ [[64 | 0, { [_hQ]: _BIN }]], 1
831
+ ];
832
+ var GetBlacklistReportsResponse$ = [3, n0, _GBRRe,
833
+ 0,
834
+ [_BR],
835
+ [() => BlacklistReport], 1
836
+ ];
837
+ var GetConfigurationSetEventDestinationsRequest$ = [3, n0, _GCSEDR,
838
+ 0,
839
+ [_CSN],
840
+ [[0, 1]], 1
841
+ ];
842
+ var GetConfigurationSetEventDestinationsResponse$ = [3, n0, _GCSEDRe,
843
+ 0,
844
+ [_EDv],
845
+ [() => EventDestinations]
846
+ ];
847
+ var GetConfigurationSetRequest$ = [3, n0, _GCSR,
848
+ 0,
849
+ [_CSN],
850
+ [[0, 1]], 1
851
+ ];
852
+ var GetConfigurationSetResponse$ = [3, n0, _GCSRe,
853
+ 0,
854
+ [_CSN, _TO, _DO, _RO, _SO, _Ta],
855
+ [0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList]
856
+ ];
857
+ var GetDedicatedIpRequest$ = [3, n0, _GDIR,
858
+ 0,
859
+ [_I],
860
+ [[0, 1]], 1
861
+ ];
862
+ var GetDedicatedIpResponse$ = [3, n0, _GDIRe,
863
+ 0,
864
+ [_DI],
865
+ [() => DedicatedIp$]
866
+ ];
867
+ var GetDedicatedIpsRequest$ = [3, n0, _GDIRet,
868
+ 0,
869
+ [_PN, _NT, _PS],
870
+ [[0, { [_hQ]: _PN }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
871
+ ];
872
+ var GetDedicatedIpsResponse$ = [3, n0, _GDIRete,
873
+ 0,
874
+ [_DIe, _NT],
875
+ [() => DedicatedIpList, 0]
876
+ ];
877
+ var GetDeliverabilityDashboardOptionsRequest$ = [3, n0, _GDDOR,
878
+ 0,
879
+ [],
880
+ []
881
+ ];
882
+ var GetDeliverabilityDashboardOptionsResponse$ = [3, n0, _GDDORe,
883
+ 0,
884
+ [_DE, _SED, _AS, _ASD, _PESD],
885
+ [2, 4, 0, () => DomainDeliverabilityTrackingOptions, () => DomainDeliverabilityTrackingOptions], 1
886
+ ];
887
+ var GetDeliverabilityTestReportRequest$ = [3, n0, _GDTRR,
888
+ 0,
889
+ [_RI],
890
+ [[0, 1]], 1
891
+ ];
892
+ var GetDeliverabilityTestReportResponse$ = [3, n0, _GDTRRe,
893
+ 0,
894
+ [_DTR, _OP, _IPs, _M, _Ta],
895
+ [() => DeliverabilityTestReport$, () => PlacementStatistics$, () => IspPlacements, 0, () => TagList], 3
896
+ ];
897
+ var GetDomainDeliverabilityCampaignRequest$ = [3, n0, _GDDCR,
898
+ 0,
899
+ [_CI],
900
+ [[0, 1]], 1
901
+ ];
902
+ var GetDomainDeliverabilityCampaignResponse$ = [3, n0, _GDDCRe,
903
+ 0,
904
+ [_DDC],
905
+ [() => DomainDeliverabilityCampaign$], 1
906
+ ];
907
+ var GetDomainStatisticsReportRequest$ = [3, n0, _GDSRR,
908
+ 0,
909
+ [_Do, _SD, _EDn],
910
+ [[0, 1], [4, { [_hQ]: _SD }], [4, { [_hQ]: _EDn }]], 3
911
+ ];
912
+ var GetDomainStatisticsReportResponse$ = [3, n0, _GDSRRe,
913
+ 0,
914
+ [_OV, _DVa],
915
+ [() => OverallVolume$, () => DailyVolumes], 2
916
+ ];
917
+ var GetEmailIdentityRequest$ = [3, n0, _GEIR,
918
+ 0,
919
+ [_EI],
920
+ [[0, 1]], 1
921
+ ];
922
+ var GetEmailIdentityResponse$ = [3, n0, _GEIRe,
923
+ 0,
924
+ [_IT, _FFS, _VFSS, _DA, _MFA, _Ta],
925
+ [0, 2, 2, () => DkimAttributes$, () => MailFromAttributes$, () => TagList]
926
+ ];
927
+ var IdentityInfo$ = [3, n0, _II,
928
+ 0,
929
+ [_IT, _INd, _SEe],
930
+ [0, 0, 2]
931
+ ];
932
+ var InboxPlacementTrackingOption$ = [3, n0, _IPTO,
933
+ 0,
934
+ [_G, _TI],
935
+ [2, 64 | 0]
936
+ ];
937
+ var IspPlacement$ = [3, n0, _IPsp,
938
+ 0,
939
+ [_IN, _PSl],
940
+ [0, () => PlacementStatistics$]
941
+ ];
942
+ var KinesisFirehoseDestination$ = [3, n0, _KFD,
943
+ 0,
944
+ [_IRA, _DSA],
945
+ [0, 0], 2
946
+ ];
947
+ var ListConfigurationSetsRequest$ = [3, n0, _LCSR,
948
+ 0,
949
+ [_NT, _PS],
950
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
951
+ ];
952
+ var ListConfigurationSetsResponse$ = [3, n0, _LCSRi,
953
+ 0,
954
+ [_CS, _NT],
955
+ [64 | 0, 0]
956
+ ];
957
+ var ListDedicatedIpPoolsRequest$ = [3, n0, _LDIPR,
958
+ 0,
959
+ [_NT, _PS],
960
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
961
+ ];
962
+ var ListDedicatedIpPoolsResponse$ = [3, n0, _LDIPRi,
963
+ 0,
964
+ [_DIPe, _NT],
965
+ [64 | 0, 0]
966
+ ];
967
+ var ListDeliverabilityTestReportsRequest$ = [3, n0, _LDTRR,
968
+ 0,
969
+ [_NT, _PS],
970
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
971
+ ];
972
+ var ListDeliverabilityTestReportsResponse$ = [3, n0, _LDTRRi,
973
+ 0,
974
+ [_DTRe, _NT],
975
+ [() => DeliverabilityTestReports, 0], 1
976
+ ];
977
+ var ListDomainDeliverabilityCampaignsRequest$ = [3, n0, _LDDCR,
978
+ 0,
979
+ [_SD, _EDn, _SDu, _NT, _PS],
980
+ [[4, { [_hQ]: _SD }], [4, { [_hQ]: _EDn }], [0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]], 3
981
+ ];
982
+ var ListDomainDeliverabilityCampaignsResponse$ = [3, n0, _LDDCRi,
983
+ 0,
984
+ [_DDCo, _NT],
985
+ [() => DomainDeliverabilityCampaignList, 0], 1
986
+ ];
987
+ var ListEmailIdentitiesRequest$ = [3, n0, _LEIR,
988
+ 0,
989
+ [_NT, _PS],
990
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
991
+ ];
992
+ var ListEmailIdentitiesResponse$ = [3, n0, _LEIRi,
993
+ 0,
994
+ [_EIm, _NT],
995
+ [() => IdentityInfoList, 0]
996
+ ];
997
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
998
+ 0,
999
+ [_RA],
1000
+ [[0, { [_hQ]: _RA }]], 1
1001
+ ];
1002
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1003
+ 0,
1004
+ [_Ta],
1005
+ [() => TagList], 1
1006
+ ];
1007
+ var MailFromAttributes$ = [3, n0, _MFA,
1008
+ 0,
1009
+ [_MFD, _MFDS, _BOMF],
1010
+ [0, 0, 0], 3
1011
+ ];
1012
+ var Message$ = [3, n0, _M,
1013
+ 0,
1014
+ [_S, _B],
1015
+ [() => Content$, () => Body$], 2
1016
+ ];
1017
+ var MessageTag$ = [3, n0, _MT,
1018
+ 0,
1019
+ [_N, _V],
1020
+ [0, 0], 2
1021
+ ];
1022
+ var OverallVolume$ = [3, n0, _OV,
1023
+ 0,
1024
+ [_VS, _RRP, _DIP],
1025
+ [() => VolumeStatistics$, 1, () => DomainIspPlacements]
1026
+ ];
1027
+ var PinpointDestination$ = [3, n0, _PD,
1028
+ 0,
1029
+ [_AA],
1030
+ [0]
1031
+ ];
1032
+ var PlacementStatistics$ = [3, n0, _PSl,
1033
+ 0,
1034
+ [_IP, _SP, _MP, _SPp, _DP],
1035
+ [1, 1, 1, 1, 1]
1036
+ ];
1037
+ var PutAccountDedicatedIpWarmupAttributesRequest$ = [3, n0, _PADIWAR,
1038
+ 0,
1039
+ [_AWE],
1040
+ [2]
1041
+ ];
1042
+ var PutAccountDedicatedIpWarmupAttributesResponse$ = [3, n0, _PADIWARu,
1043
+ 0,
1044
+ [],
1045
+ []
1046
+ ];
1047
+ var PutAccountSendingAttributesRequest$ = [3, n0, _PASAR,
1048
+ 0,
1049
+ [_SEe],
1050
+ [2]
1051
+ ];
1052
+ var PutAccountSendingAttributesResponse$ = [3, n0, _PASARu,
1053
+ 0,
1054
+ [],
1055
+ []
1056
+ ];
1057
+ var PutConfigurationSetDeliveryOptionsRequest$ = [3, n0, _PCSDOR,
1058
+ 0,
1059
+ [_CSN, _TP, _SPN],
1060
+ [[0, 1], 0, 0], 1
1061
+ ];
1062
+ var PutConfigurationSetDeliveryOptionsResponse$ = [3, n0, _PCSDORu,
1063
+ 0,
1064
+ [],
1065
+ []
1066
+ ];
1067
+ var PutConfigurationSetReputationOptionsRequest$ = [3, n0, _PCSROR,
1068
+ 0,
1069
+ [_CSN, _RME],
1070
+ [[0, 1], 2], 1
1071
+ ];
1072
+ var PutConfigurationSetReputationOptionsResponse$ = [3, n0, _PCSRORu,
1073
+ 0,
1074
+ [],
1075
+ []
1076
+ ];
1077
+ var PutConfigurationSetSendingOptionsRequest$ = [3, n0, _PCSSOR,
1078
+ 0,
1079
+ [_CSN, _SEe],
1080
+ [[0, 1], 2], 1
1081
+ ];
1082
+ var PutConfigurationSetSendingOptionsResponse$ = [3, n0, _PCSSORu,
1083
+ 0,
1084
+ [],
1085
+ []
1086
+ ];
1087
+ var PutConfigurationSetTrackingOptionsRequest$ = [3, n0, _PCSTOR,
1088
+ 0,
1089
+ [_CSN, _CRD],
1090
+ [[0, 1], 0], 1
1091
+ ];
1092
+ var PutConfigurationSetTrackingOptionsResponse$ = [3, n0, _PCSTORu,
1093
+ 0,
1094
+ [],
1095
+ []
1096
+ ];
1097
+ var PutDedicatedIpInPoolRequest$ = [3, n0, _PDIIPR,
1098
+ 0,
1099
+ [_I, _DPN],
1100
+ [[0, 1], 0], 2
1101
+ ];
1102
+ var PutDedicatedIpInPoolResponse$ = [3, n0, _PDIIPRu,
1103
+ 0,
1104
+ [],
1105
+ []
1106
+ ];
1107
+ var PutDedicatedIpWarmupAttributesRequest$ = [3, n0, _PDIWAR,
1108
+ 0,
1109
+ [_I, _WP],
1110
+ [[0, 1], 1], 2
1111
+ ];
1112
+ var PutDedicatedIpWarmupAttributesResponse$ = [3, n0, _PDIWARu,
1113
+ 0,
1114
+ [],
1115
+ []
1116
+ ];
1117
+ var PutDeliverabilityDashboardOptionRequest$ = [3, n0, _PDDOR,
1118
+ 0,
1119
+ [_DE, _SDub],
1120
+ [2, () => DomainDeliverabilityTrackingOptions], 1
1121
+ ];
1122
+ var PutDeliverabilityDashboardOptionResponse$ = [3, n0, _PDDORu,
1123
+ 0,
1124
+ [],
1125
+ []
1126
+ ];
1127
+ var PutEmailIdentityDkimAttributesRequest$ = [3, n0, _PEIDAR,
1128
+ 0,
1129
+ [_EI, _SE],
1130
+ [[0, 1], 2], 1
1131
+ ];
1132
+ var PutEmailIdentityDkimAttributesResponse$ = [3, n0, _PEIDARu,
1133
+ 0,
1134
+ [],
1135
+ []
1136
+ ];
1137
+ var PutEmailIdentityFeedbackAttributesRequest$ = [3, n0, _PEIFAR,
1138
+ 0,
1139
+ [_EI, _EFE],
1140
+ [[0, 1], 2], 1
1141
+ ];
1142
+ var PutEmailIdentityFeedbackAttributesResponse$ = [3, n0, _PEIFARu,
1143
+ 0,
1144
+ [],
1145
+ []
1146
+ ];
1147
+ var PutEmailIdentityMailFromAttributesRequest$ = [3, n0, _PEIMFAR,
1148
+ 0,
1149
+ [_EI, _MFD, _BOMF],
1150
+ [[0, 1], 0, 0], 1
1151
+ ];
1152
+ var PutEmailIdentityMailFromAttributesResponse$ = [3, n0, _PEIMFARu,
1153
+ 0,
1154
+ [],
1155
+ []
1156
+ ];
1157
+ var RawMessage$ = [3, n0, _RM,
1158
+ 0,
1159
+ [_Da],
1160
+ [21], 1
1161
+ ];
1162
+ var ReputationOptions$ = [3, n0, _RO,
1163
+ 0,
1164
+ [_RME, _LFS],
1165
+ [2, 4]
1166
+ ];
1167
+ var SendEmailRequest$ = [3, n0, _SER,
1168
+ 0,
1169
+ [_De, _C, _FEA, _RTA, _FFEA, _ET, _CSN],
1170
+ [() => Destination$, () => EmailContent$, 0, 64 | 0, 0, () => MessageTagList, 0], 2
1171
+ ];
1172
+ var SendEmailResponse$ = [3, n0, _SERe,
1173
+ 0,
1174
+ [_MI],
1175
+ [0]
1176
+ ];
1177
+ var SendingOptions$ = [3, n0, _SO,
1178
+ 0,
1179
+ [_SEe],
1180
+ [2]
1181
+ ];
1182
+ var SendQuota$ = [3, n0, _SQ,
1183
+ 0,
1184
+ [_MHS, _MSR, _SLH],
1185
+ [1, 1, 1]
1186
+ ];
1187
+ var SnsDestination$ = [3, n0, _SDn,
1188
+ 0,
1189
+ [_TAo],
1190
+ [0], 1
1191
+ ];
1192
+ var Tag$ = [3, n0, _Tag,
1193
+ 0,
1194
+ [_K, _V],
1195
+ [0, 0], 2
1196
+ ];
1197
+ var TagResourceRequest$ = [3, n0, _TRR,
1198
+ 0,
1199
+ [_RA, _Ta],
1200
+ [0, () => TagList], 2
1201
+ ];
1202
+ var TagResourceResponse$ = [3, n0, _TRRa,
1203
+ 0,
1204
+ [],
1205
+ []
1206
+ ];
1207
+ var Template$ = [3, n0, _Te,
1208
+ 0,
1209
+ [_TAe, _TD],
1210
+ [0, 0]
1211
+ ];
1212
+ var TrackingOptions$ = [3, n0, _TO,
1213
+ 0,
1214
+ [_CRD],
1215
+ [0], 1
1216
+ ];
1217
+ var UntagResourceRequest$ = [3, n0, _URR,
1218
+ 0,
1219
+ [_RA, _TK],
1220
+ [[0, { [_hQ]: _RA }], [64 | 0, { [_hQ]: _TK }]], 2
1221
+ ];
1222
+ var UntagResourceResponse$ = [3, n0, _URRn,
1223
+ 0,
1224
+ [],
1225
+ []
1226
+ ];
1227
+ var UpdateConfigurationSetEventDestinationRequest$ = [3, n0, _UCSEDR,
1228
+ 0,
1229
+ [_CSN, _EDN, _ED],
1230
+ [[0, 1], [0, 1], () => EventDestinationDefinition$], 3
1231
+ ];
1232
+ var UpdateConfigurationSetEventDestinationResponse$ = [3, n0, _UCSEDRp,
1233
+ 0,
1234
+ [],
1235
+ []
1236
+ ];
1237
+ var VolumeStatistics$ = [3, n0, _VS,
1238
+ 0,
1239
+ [_IRC, _SRC, _PI, _PSr],
1240
+ [1, 1, 1, 1]
1241
+ ];
1242
+ var BlacklistEntries = [1, n0, _BEl,
1243
+ 0, () => BlacklistEntry$
1244
+ ];
1245
+ var CloudWatchDimensionConfigurations = [1, n0, _CWDCl,
1246
+ 0, () => CloudWatchDimensionConfiguration$
1247
+ ];
1248
+ var DailyVolumes = [1, n0, _DVa,
1249
+ 0, () => DailyVolume$
1250
+ ];
1251
+ var DedicatedIpList = [1, n0, _DIL,
1252
+ 0, () => DedicatedIp$
1253
+ ];
1254
+ var DeliverabilityTestReports = [1, n0, _DTRe,
1255
+ 0, () => DeliverabilityTestReport$
1256
+ ];
1257
+ var DomainDeliverabilityCampaignList = [1, n0, _DDCL,
1258
+ 0, () => DomainDeliverabilityCampaign$
1259
+ ];
1260
+ var DomainDeliverabilityTrackingOptions = [1, n0, _DDTOo,
1261
+ 0, () => DomainDeliverabilityTrackingOption$
1262
+ ];
1263
+ var DomainIspPlacements = [1, n0, _DIP,
1264
+ 0, () => DomainIspPlacement$
1265
+ ];
1266
+ var EventDestinations = [1, n0, _EDv,
1267
+ 0, () => EventDestination$
1268
+ ];
1269
+ var IdentityInfoList = [1, n0, _IIL,
1270
+ 0, () => IdentityInfo$
1271
+ ];
1272
+ var IspPlacements = [1, n0, _IPs,
1273
+ 0, () => IspPlacement$
1274
+ ];
1275
+ var MessageTagList = [1, n0, _MTL,
1276
+ 0, () => MessageTag$
1277
+ ];
1278
+ var TagList = [1, n0, _TL,
1279
+ 0, () => Tag$
1280
+ ];
1281
+ var BlacklistReport = [2, n0, _BR,
1282
+ 0, 0, () => BlacklistEntries
1283
+ ];
1284
+ var CreateConfigurationSet$ = [9, n0, _CCS,
1285
+ { [_h]: ["POST", "/v1/email/configuration-sets", 200] }, () => CreateConfigurationSetRequest$, () => CreateConfigurationSetResponse$
1286
+ ];
1287
+ var CreateConfigurationSetEventDestination$ = [9, n0, _CCSED,
1288
+ { [_h]: ["POST", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations", 200] }, () => CreateConfigurationSetEventDestinationRequest$, () => CreateConfigurationSetEventDestinationResponse$
1289
+ ];
1290
+ var CreateDedicatedIpPool$ = [9, n0, _CDIP,
1291
+ { [_h]: ["POST", "/v1/email/dedicated-ip-pools", 200] }, () => CreateDedicatedIpPoolRequest$, () => CreateDedicatedIpPoolResponse$
1292
+ ];
1293
+ var CreateDeliverabilityTestReport$ = [9, n0, _CDTR,
1294
+ { [_h]: ["POST", "/v1/email/deliverability-dashboard/test", 200] }, () => CreateDeliverabilityTestReportRequest$, () => CreateDeliverabilityTestReportResponse$
1295
+ ];
1296
+ var CreateEmailIdentity$ = [9, n0, _CEI,
1297
+ { [_h]: ["POST", "/v1/email/identities", 200] }, () => CreateEmailIdentityRequest$, () => CreateEmailIdentityResponse$
1298
+ ];
1299
+ var DeleteConfigurationSet$ = [9, n0, _DCS,
1300
+ { [_h]: ["DELETE", "/v1/email/configuration-sets/{ConfigurationSetName}", 200] }, () => DeleteConfigurationSetRequest$, () => DeleteConfigurationSetResponse$
1301
+ ];
1302
+ var DeleteConfigurationSetEventDestination$ = [9, n0, _DCSED,
1303
+ { [_h]: ["DELETE", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => DeleteConfigurationSetEventDestinationRequest$, () => DeleteConfigurationSetEventDestinationResponse$
1304
+ ];
1305
+ var DeleteDedicatedIpPool$ = [9, n0, _DDIP,
1306
+ { [_h]: ["DELETE", "/v1/email/dedicated-ip-pools/{PoolName}", 200] }, () => DeleteDedicatedIpPoolRequest$, () => DeleteDedicatedIpPoolResponse$
1307
+ ];
1308
+ var DeleteEmailIdentity$ = [9, n0, _DEI,
1309
+ { [_h]: ["DELETE", "/v1/email/identities/{EmailIdentity}", 200] }, () => DeleteEmailIdentityRequest$, () => DeleteEmailIdentityResponse$
1310
+ ];
1311
+ var GetAccount$ = [9, n0, _GA,
1312
+ { [_h]: ["GET", "/v1/email/account", 200] }, () => GetAccountRequest$, () => GetAccountResponse$
1313
+ ];
1314
+ var GetBlacklistReports$ = [9, n0, _GBR,
1315
+ { [_h]: ["GET", "/v1/email/deliverability-dashboard/blacklist-report", 200] }, () => GetBlacklistReportsRequest$, () => GetBlacklistReportsResponse$
1316
+ ];
1317
+ var GetConfigurationSet$ = [9, n0, _GCS,
1318
+ { [_h]: ["GET", "/v1/email/configuration-sets/{ConfigurationSetName}", 200] }, () => GetConfigurationSetRequest$, () => GetConfigurationSetResponse$
1319
+ ];
1320
+ var GetConfigurationSetEventDestinations$ = [9, n0, _GCSED,
1321
+ { [_h]: ["GET", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations", 200] }, () => GetConfigurationSetEventDestinationsRequest$, () => GetConfigurationSetEventDestinationsResponse$
1322
+ ];
1323
+ var GetDedicatedIp$ = [9, n0, _GDI,
1324
+ { [_h]: ["GET", "/v1/email/dedicated-ips/{Ip}", 200] }, () => GetDedicatedIpRequest$, () => GetDedicatedIpResponse$
1325
+ ];
1326
+ var GetDedicatedIps$ = [9, n0, _GDIe,
1327
+ { [_h]: ["GET", "/v1/email/dedicated-ips", 200] }, () => GetDedicatedIpsRequest$, () => GetDedicatedIpsResponse$
1328
+ ];
1329
+ var GetDeliverabilityDashboardOptions$ = [9, n0, _GDDO,
1330
+ { [_h]: ["GET", "/v1/email/deliverability-dashboard", 200] }, () => GetDeliverabilityDashboardOptionsRequest$, () => GetDeliverabilityDashboardOptionsResponse$
1331
+ ];
1332
+ var GetDeliverabilityTestReport$ = [9, n0, _GDTR,
1333
+ { [_h]: ["GET", "/v1/email/deliverability-dashboard/test-reports/{ReportId}", 200] }, () => GetDeliverabilityTestReportRequest$, () => GetDeliverabilityTestReportResponse$
1334
+ ];
1335
+ var GetDomainDeliverabilityCampaign$ = [9, n0, _GDDC,
1336
+ { [_h]: ["GET", "/v1/email/deliverability-dashboard/campaigns/{CampaignId}", 200] }, () => GetDomainDeliverabilityCampaignRequest$, () => GetDomainDeliverabilityCampaignResponse$
1337
+ ];
1338
+ var GetDomainStatisticsReport$ = [9, n0, _GDSR,
1339
+ { [_h]: ["GET", "/v1/email/deliverability-dashboard/statistics-report/{Domain}", 200] }, () => GetDomainStatisticsReportRequest$, () => GetDomainStatisticsReportResponse$
1340
+ ];
1341
+ var GetEmailIdentity$ = [9, n0, _GEI,
1342
+ { [_h]: ["GET", "/v1/email/identities/{EmailIdentity}", 200] }, () => GetEmailIdentityRequest$, () => GetEmailIdentityResponse$
1343
+ ];
1344
+ var ListConfigurationSets$ = [9, n0, _LCS,
1345
+ { [_h]: ["GET", "/v1/email/configuration-sets", 200] }, () => ListConfigurationSetsRequest$, () => ListConfigurationSetsResponse$
1346
+ ];
1347
+ var ListDedicatedIpPools$ = [9, n0, _LDIP,
1348
+ { [_h]: ["GET", "/v1/email/dedicated-ip-pools", 200] }, () => ListDedicatedIpPoolsRequest$, () => ListDedicatedIpPoolsResponse$
1349
+ ];
1350
+ var ListDeliverabilityTestReports$ = [9, n0, _LDTR,
1351
+ { [_h]: ["GET", "/v1/email/deliverability-dashboard/test-reports", 200] }, () => ListDeliverabilityTestReportsRequest$, () => ListDeliverabilityTestReportsResponse$
1352
+ ];
1353
+ var ListDomainDeliverabilityCampaigns$ = [9, n0, _LDDC,
1354
+ { [_h]: ["GET", "/v1/email/deliverability-dashboard/domains/{SubscribedDomain}/campaigns", 200] }, () => ListDomainDeliverabilityCampaignsRequest$, () => ListDomainDeliverabilityCampaignsResponse$
1355
+ ];
1356
+ var ListEmailIdentities$ = [9, n0, _LEI,
1357
+ { [_h]: ["GET", "/v1/email/identities", 200] }, () => ListEmailIdentitiesRequest$, () => ListEmailIdentitiesResponse$
1358
+ ];
1359
+ var ListTagsForResource$ = [9, n0, _LTFR,
1360
+ { [_h]: ["GET", "/v1/email/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1361
+ ];
1362
+ var PutAccountDedicatedIpWarmupAttributes$ = [9, n0, _PADIWA,
1363
+ { [_h]: ["PUT", "/v1/email/account/dedicated-ips/warmup", 200] }, () => PutAccountDedicatedIpWarmupAttributesRequest$, () => PutAccountDedicatedIpWarmupAttributesResponse$
1364
+ ];
1365
+ var PutAccountSendingAttributes$ = [9, n0, _PASA,
1366
+ { [_h]: ["PUT", "/v1/email/account/sending", 200] }, () => PutAccountSendingAttributesRequest$, () => PutAccountSendingAttributesResponse$
1367
+ ];
1368
+ var PutConfigurationSetDeliveryOptions$ = [9, n0, _PCSDO,
1369
+ { [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/delivery-options", 200] }, () => PutConfigurationSetDeliveryOptionsRequest$, () => PutConfigurationSetDeliveryOptionsResponse$
1370
+ ];
1371
+ var PutConfigurationSetReputationOptions$ = [9, n0, _PCSRO,
1372
+ { [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/reputation-options", 200] }, () => PutConfigurationSetReputationOptionsRequest$, () => PutConfigurationSetReputationOptionsResponse$
1373
+ ];
1374
+ var PutConfigurationSetSendingOptions$ = [9, n0, _PCSSO,
1375
+ { [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/sending", 200] }, () => PutConfigurationSetSendingOptionsRequest$, () => PutConfigurationSetSendingOptionsResponse$
1376
+ ];
1377
+ var PutConfigurationSetTrackingOptions$ = [9, n0, _PCSTO,
1378
+ { [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/tracking-options", 200] }, () => PutConfigurationSetTrackingOptionsRequest$, () => PutConfigurationSetTrackingOptionsResponse$
1379
+ ];
1380
+ var PutDedicatedIpInPool$ = [9, n0, _PDIIP,
1381
+ { [_h]: ["PUT", "/v1/email/dedicated-ips/{Ip}/pool", 200] }, () => PutDedicatedIpInPoolRequest$, () => PutDedicatedIpInPoolResponse$
1382
+ ];
1383
+ var PutDedicatedIpWarmupAttributes$ = [9, n0, _PDIWA,
1384
+ { [_h]: ["PUT", "/v1/email/dedicated-ips/{Ip}/warmup", 200] }, () => PutDedicatedIpWarmupAttributesRequest$, () => PutDedicatedIpWarmupAttributesResponse$
1385
+ ];
1386
+ var PutDeliverabilityDashboardOption$ = [9, n0, _PDDO,
1387
+ { [_h]: ["PUT", "/v1/email/deliverability-dashboard", 200] }, () => PutDeliverabilityDashboardOptionRequest$, () => PutDeliverabilityDashboardOptionResponse$
1388
+ ];
1389
+ var PutEmailIdentityDkimAttributes$ = [9, n0, _PEIDA,
1390
+ { [_h]: ["PUT", "/v1/email/identities/{EmailIdentity}/dkim", 200] }, () => PutEmailIdentityDkimAttributesRequest$, () => PutEmailIdentityDkimAttributesResponse$
1391
+ ];
1392
+ var PutEmailIdentityFeedbackAttributes$ = [9, n0, _PEIFA,
1393
+ { [_h]: ["PUT", "/v1/email/identities/{EmailIdentity}/feedback", 200] }, () => PutEmailIdentityFeedbackAttributesRequest$, () => PutEmailIdentityFeedbackAttributesResponse$
1394
+ ];
1395
+ var PutEmailIdentityMailFromAttributes$ = [9, n0, _PEIMFA,
1396
+ { [_h]: ["PUT", "/v1/email/identities/{EmailIdentity}/mail-from", 200] }, () => PutEmailIdentityMailFromAttributesRequest$, () => PutEmailIdentityMailFromAttributesResponse$
1397
+ ];
1398
+ var SendEmail$ = [9, n0, _SEen,
1399
+ { [_h]: ["POST", "/v1/email/outbound-emails", 200] }, () => SendEmailRequest$, () => SendEmailResponse$
1400
+ ];
1401
+ var TagResource$ = [9, n0, _TR,
1402
+ { [_h]: ["POST", "/v1/email/tags", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1403
+ ];
1404
+ var UntagResource$ = [9, n0, _UR,
1405
+ { [_h]: ["DELETE", "/v1/email/tags", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1406
+ ];
1407
+ var UpdateConfigurationSetEventDestination$ = [9, n0, _UCSED,
1408
+ { [_h]: ["PUT", "/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => UpdateConfigurationSetEventDestinationRequest$, () => UpdateConfigurationSetEventDestinationResponse$
1409
+ ];
1410
+
1411
+ const getRuntimeConfig$1 = (config) => {
1412
+ return {
1413
+ apiVersion: "2018-07-26",
1414
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1415
+ base64Encoder: config?.base64Encoder ?? toBase64,
1416
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1417
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1418
+ extensions: config?.extensions ?? [],
1419
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultPinpointEmailHttpAuthSchemeProvider,
1420
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1421
+ {
1422
+ schemeId: "aws.auth#sigv4",
1423
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1424
+ signer: new AwsSdkSigV4Signer(),
1425
+ },
1426
+ ],
1427
+ logger: config?.logger ?? new NoOpLogger(),
1428
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1429
+ protocolSettings: config?.protocolSettings ?? {
1430
+ defaultNamespace: "com.amazonaws.pinpointemail",
1431
+ errorTypeRegistries,
1432
+ version: "2018-07-26",
1433
+ serviceTarget: "AmazonPinpointEmailService",
1434
+ },
1435
+ serviceId: config?.serviceId ?? "Pinpoint Email",
1436
+ sha256: config?.sha256 ?? Sha256,
1437
+ urlParser: config?.urlParser ?? parseUrl,
1438
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1439
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1440
+ };
1441
+ };
1442
+
1443
+ const getRuntimeConfig = (config) => {
1444
+ emitWarningIfUnsupportedVersion(process.version);
1445
+ const defaultsMode = resolveDefaultsModeConfig(config);
1446
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1447
+ const clientSharedValues = getRuntimeConfig$1(config);
1448
+ emitWarningIfUnsupportedVersion$1(process.version);
1449
+ const loaderConfig = {
1450
+ profile: config?.profile,
1451
+ logger: clientSharedValues.logger,
1452
+ };
1453
+ return {
1454
+ ...clientSharedValues,
1455
+ ...config,
1456
+ runtime: "node",
1457
+ defaultsMode,
1458
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1459
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1460
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1461
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1462
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1463
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1464
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1465
+ retryMode: config?.retryMode ??
1466
+ loadConfig({
1467
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1468
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1469
+ }, config),
1470
+ streamCollector: config?.streamCollector ?? streamCollector,
1471
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1472
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1473
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1474
+ };
1475
+ };
1476
+
34
1477
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1478
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1479
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -738,60 +2181,245 @@ const MailFromDomainStatus = {
738
2181
  TEMPORARY_FAILURE: "TEMPORARY_FAILURE",
739
2182
  };
740
2183
 
2184
+ exports.AccountSuspendedException = AccountSuspendedException;
2185
+ exports.AccountSuspendedException$ = AccountSuspendedException$;
2186
+ exports.AlreadyExistsException = AlreadyExistsException;
2187
+ exports.AlreadyExistsException$ = AlreadyExistsException$;
2188
+ exports.BadRequestException = BadRequestException;
2189
+ exports.BadRequestException$ = BadRequestException$;
741
2190
  exports.BehaviorOnMxFailure = BehaviorOnMxFailure;
2191
+ exports.BlacklistEntry$ = BlacklistEntry$;
2192
+ exports.Body$ = Body$;
2193
+ exports.CloudWatchDestination$ = CloudWatchDestination$;
2194
+ exports.CloudWatchDimensionConfiguration$ = CloudWatchDimensionConfiguration$;
2195
+ exports.ConcurrentModificationException = ConcurrentModificationException;
2196
+ exports.ConcurrentModificationException$ = ConcurrentModificationException$;
2197
+ exports.Content$ = Content$;
2198
+ exports.CreateConfigurationSet$ = CreateConfigurationSet$;
742
2199
  exports.CreateConfigurationSetCommand = CreateConfigurationSetCommand;
2200
+ exports.CreateConfigurationSetEventDestination$ = CreateConfigurationSetEventDestination$;
743
2201
  exports.CreateConfigurationSetEventDestinationCommand = CreateConfigurationSetEventDestinationCommand;
2202
+ exports.CreateConfigurationSetEventDestinationRequest$ = CreateConfigurationSetEventDestinationRequest$;
2203
+ exports.CreateConfigurationSetEventDestinationResponse$ = CreateConfigurationSetEventDestinationResponse$;
2204
+ exports.CreateConfigurationSetRequest$ = CreateConfigurationSetRequest$;
2205
+ exports.CreateConfigurationSetResponse$ = CreateConfigurationSetResponse$;
2206
+ exports.CreateDedicatedIpPool$ = CreateDedicatedIpPool$;
744
2207
  exports.CreateDedicatedIpPoolCommand = CreateDedicatedIpPoolCommand;
2208
+ exports.CreateDedicatedIpPoolRequest$ = CreateDedicatedIpPoolRequest$;
2209
+ exports.CreateDedicatedIpPoolResponse$ = CreateDedicatedIpPoolResponse$;
2210
+ exports.CreateDeliverabilityTestReport$ = CreateDeliverabilityTestReport$;
745
2211
  exports.CreateDeliverabilityTestReportCommand = CreateDeliverabilityTestReportCommand;
2212
+ exports.CreateDeliverabilityTestReportRequest$ = CreateDeliverabilityTestReportRequest$;
2213
+ exports.CreateDeliverabilityTestReportResponse$ = CreateDeliverabilityTestReportResponse$;
2214
+ exports.CreateEmailIdentity$ = CreateEmailIdentity$;
746
2215
  exports.CreateEmailIdentityCommand = CreateEmailIdentityCommand;
2216
+ exports.CreateEmailIdentityRequest$ = CreateEmailIdentityRequest$;
2217
+ exports.CreateEmailIdentityResponse$ = CreateEmailIdentityResponse$;
2218
+ exports.DailyVolume$ = DailyVolume$;
2219
+ exports.DedicatedIp$ = DedicatedIp$;
2220
+ exports.DeleteConfigurationSet$ = DeleteConfigurationSet$;
747
2221
  exports.DeleteConfigurationSetCommand = DeleteConfigurationSetCommand;
2222
+ exports.DeleteConfigurationSetEventDestination$ = DeleteConfigurationSetEventDestination$;
748
2223
  exports.DeleteConfigurationSetEventDestinationCommand = DeleteConfigurationSetEventDestinationCommand;
2224
+ exports.DeleteConfigurationSetEventDestinationRequest$ = DeleteConfigurationSetEventDestinationRequest$;
2225
+ exports.DeleteConfigurationSetEventDestinationResponse$ = DeleteConfigurationSetEventDestinationResponse$;
2226
+ exports.DeleteConfigurationSetRequest$ = DeleteConfigurationSetRequest$;
2227
+ exports.DeleteConfigurationSetResponse$ = DeleteConfigurationSetResponse$;
2228
+ exports.DeleteDedicatedIpPool$ = DeleteDedicatedIpPool$;
749
2229
  exports.DeleteDedicatedIpPoolCommand = DeleteDedicatedIpPoolCommand;
2230
+ exports.DeleteDedicatedIpPoolRequest$ = DeleteDedicatedIpPoolRequest$;
2231
+ exports.DeleteDedicatedIpPoolResponse$ = DeleteDedicatedIpPoolResponse$;
2232
+ exports.DeleteEmailIdentity$ = DeleteEmailIdentity$;
750
2233
  exports.DeleteEmailIdentityCommand = DeleteEmailIdentityCommand;
2234
+ exports.DeleteEmailIdentityRequest$ = DeleteEmailIdentityRequest$;
2235
+ exports.DeleteEmailIdentityResponse$ = DeleteEmailIdentityResponse$;
751
2236
  exports.DeliverabilityDashboardAccountStatus = DeliverabilityDashboardAccountStatus;
2237
+ exports.DeliverabilityTestReport$ = DeliverabilityTestReport$;
752
2238
  exports.DeliverabilityTestStatus = DeliverabilityTestStatus;
2239
+ exports.DeliveryOptions$ = DeliveryOptions$;
2240
+ exports.Destination$ = Destination$;
753
2241
  exports.DimensionValueSource = DimensionValueSource;
2242
+ exports.DkimAttributes$ = DkimAttributes$;
754
2243
  exports.DkimStatus = DkimStatus;
2244
+ exports.DomainDeliverabilityCampaign$ = DomainDeliverabilityCampaign$;
2245
+ exports.DomainDeliverabilityTrackingOption$ = DomainDeliverabilityTrackingOption$;
2246
+ exports.DomainIspPlacement$ = DomainIspPlacement$;
2247
+ exports.EmailContent$ = EmailContent$;
2248
+ exports.EventDestination$ = EventDestination$;
2249
+ exports.EventDestinationDefinition$ = EventDestinationDefinition$;
755
2250
  exports.EventType = EventType;
2251
+ exports.GetAccount$ = GetAccount$;
756
2252
  exports.GetAccountCommand = GetAccountCommand;
2253
+ exports.GetAccountRequest$ = GetAccountRequest$;
2254
+ exports.GetAccountResponse$ = GetAccountResponse$;
2255
+ exports.GetBlacklistReports$ = GetBlacklistReports$;
757
2256
  exports.GetBlacklistReportsCommand = GetBlacklistReportsCommand;
2257
+ exports.GetBlacklistReportsRequest$ = GetBlacklistReportsRequest$;
2258
+ exports.GetBlacklistReportsResponse$ = GetBlacklistReportsResponse$;
2259
+ exports.GetConfigurationSet$ = GetConfigurationSet$;
758
2260
  exports.GetConfigurationSetCommand = GetConfigurationSetCommand;
2261
+ exports.GetConfigurationSetEventDestinations$ = GetConfigurationSetEventDestinations$;
759
2262
  exports.GetConfigurationSetEventDestinationsCommand = GetConfigurationSetEventDestinationsCommand;
2263
+ exports.GetConfigurationSetEventDestinationsRequest$ = GetConfigurationSetEventDestinationsRequest$;
2264
+ exports.GetConfigurationSetEventDestinationsResponse$ = GetConfigurationSetEventDestinationsResponse$;
2265
+ exports.GetConfigurationSetRequest$ = GetConfigurationSetRequest$;
2266
+ exports.GetConfigurationSetResponse$ = GetConfigurationSetResponse$;
2267
+ exports.GetDedicatedIp$ = GetDedicatedIp$;
760
2268
  exports.GetDedicatedIpCommand = GetDedicatedIpCommand;
2269
+ exports.GetDedicatedIpRequest$ = GetDedicatedIpRequest$;
2270
+ exports.GetDedicatedIpResponse$ = GetDedicatedIpResponse$;
2271
+ exports.GetDedicatedIps$ = GetDedicatedIps$;
761
2272
  exports.GetDedicatedIpsCommand = GetDedicatedIpsCommand;
2273
+ exports.GetDedicatedIpsRequest$ = GetDedicatedIpsRequest$;
2274
+ exports.GetDedicatedIpsResponse$ = GetDedicatedIpsResponse$;
2275
+ exports.GetDeliverabilityDashboardOptions$ = GetDeliverabilityDashboardOptions$;
762
2276
  exports.GetDeliverabilityDashboardOptionsCommand = GetDeliverabilityDashboardOptionsCommand;
2277
+ exports.GetDeliverabilityDashboardOptionsRequest$ = GetDeliverabilityDashboardOptionsRequest$;
2278
+ exports.GetDeliverabilityDashboardOptionsResponse$ = GetDeliverabilityDashboardOptionsResponse$;
2279
+ exports.GetDeliverabilityTestReport$ = GetDeliverabilityTestReport$;
763
2280
  exports.GetDeliverabilityTestReportCommand = GetDeliverabilityTestReportCommand;
2281
+ exports.GetDeliverabilityTestReportRequest$ = GetDeliverabilityTestReportRequest$;
2282
+ exports.GetDeliverabilityTestReportResponse$ = GetDeliverabilityTestReportResponse$;
2283
+ exports.GetDomainDeliverabilityCampaign$ = GetDomainDeliverabilityCampaign$;
764
2284
  exports.GetDomainDeliverabilityCampaignCommand = GetDomainDeliverabilityCampaignCommand;
2285
+ exports.GetDomainDeliverabilityCampaignRequest$ = GetDomainDeliverabilityCampaignRequest$;
2286
+ exports.GetDomainDeliverabilityCampaignResponse$ = GetDomainDeliverabilityCampaignResponse$;
2287
+ exports.GetDomainStatisticsReport$ = GetDomainStatisticsReport$;
765
2288
  exports.GetDomainStatisticsReportCommand = GetDomainStatisticsReportCommand;
2289
+ exports.GetDomainStatisticsReportRequest$ = GetDomainStatisticsReportRequest$;
2290
+ exports.GetDomainStatisticsReportResponse$ = GetDomainStatisticsReportResponse$;
2291
+ exports.GetEmailIdentity$ = GetEmailIdentity$;
766
2292
  exports.GetEmailIdentityCommand = GetEmailIdentityCommand;
2293
+ exports.GetEmailIdentityRequest$ = GetEmailIdentityRequest$;
2294
+ exports.GetEmailIdentityResponse$ = GetEmailIdentityResponse$;
2295
+ exports.IdentityInfo$ = IdentityInfo$;
767
2296
  exports.IdentityType = IdentityType;
2297
+ exports.InboxPlacementTrackingOption$ = InboxPlacementTrackingOption$;
2298
+ exports.IspPlacement$ = IspPlacement$;
2299
+ exports.KinesisFirehoseDestination$ = KinesisFirehoseDestination$;
2300
+ exports.LimitExceededException = LimitExceededException;
2301
+ exports.LimitExceededException$ = LimitExceededException$;
2302
+ exports.ListConfigurationSets$ = ListConfigurationSets$;
768
2303
  exports.ListConfigurationSetsCommand = ListConfigurationSetsCommand;
2304
+ exports.ListConfigurationSetsRequest$ = ListConfigurationSetsRequest$;
2305
+ exports.ListConfigurationSetsResponse$ = ListConfigurationSetsResponse$;
2306
+ exports.ListDedicatedIpPools$ = ListDedicatedIpPools$;
769
2307
  exports.ListDedicatedIpPoolsCommand = ListDedicatedIpPoolsCommand;
2308
+ exports.ListDedicatedIpPoolsRequest$ = ListDedicatedIpPoolsRequest$;
2309
+ exports.ListDedicatedIpPoolsResponse$ = ListDedicatedIpPoolsResponse$;
2310
+ exports.ListDeliverabilityTestReports$ = ListDeliverabilityTestReports$;
770
2311
  exports.ListDeliverabilityTestReportsCommand = ListDeliverabilityTestReportsCommand;
2312
+ exports.ListDeliverabilityTestReportsRequest$ = ListDeliverabilityTestReportsRequest$;
2313
+ exports.ListDeliverabilityTestReportsResponse$ = ListDeliverabilityTestReportsResponse$;
2314
+ exports.ListDomainDeliverabilityCampaigns$ = ListDomainDeliverabilityCampaigns$;
771
2315
  exports.ListDomainDeliverabilityCampaignsCommand = ListDomainDeliverabilityCampaignsCommand;
2316
+ exports.ListDomainDeliverabilityCampaignsRequest$ = ListDomainDeliverabilityCampaignsRequest$;
2317
+ exports.ListDomainDeliverabilityCampaignsResponse$ = ListDomainDeliverabilityCampaignsResponse$;
2318
+ exports.ListEmailIdentities$ = ListEmailIdentities$;
772
2319
  exports.ListEmailIdentitiesCommand = ListEmailIdentitiesCommand;
2320
+ exports.ListEmailIdentitiesRequest$ = ListEmailIdentitiesRequest$;
2321
+ exports.ListEmailIdentitiesResponse$ = ListEmailIdentitiesResponse$;
2322
+ exports.ListTagsForResource$ = ListTagsForResource$;
773
2323
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2324
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2325
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2326
+ exports.MailFromAttributes$ = MailFromAttributes$;
2327
+ exports.MailFromDomainNotVerifiedException = MailFromDomainNotVerifiedException;
2328
+ exports.MailFromDomainNotVerifiedException$ = MailFromDomainNotVerifiedException$;
774
2329
  exports.MailFromDomainStatus = MailFromDomainStatus;
2330
+ exports.Message$ = Message$;
2331
+ exports.MessageRejected = MessageRejected;
2332
+ exports.MessageRejected$ = MessageRejected$;
2333
+ exports.MessageTag$ = MessageTag$;
2334
+ exports.NotFoundException = NotFoundException;
2335
+ exports.NotFoundException$ = NotFoundException$;
2336
+ exports.OverallVolume$ = OverallVolume$;
2337
+ exports.PinpointDestination$ = PinpointDestination$;
775
2338
  exports.PinpointEmail = PinpointEmail;
776
2339
  exports.PinpointEmailClient = PinpointEmailClient;
2340
+ exports.PinpointEmailServiceException = PinpointEmailServiceException;
2341
+ exports.PinpointEmailServiceException$ = PinpointEmailServiceException$;
2342
+ exports.PlacementStatistics$ = PlacementStatistics$;
2343
+ exports.PutAccountDedicatedIpWarmupAttributes$ = PutAccountDedicatedIpWarmupAttributes$;
777
2344
  exports.PutAccountDedicatedIpWarmupAttributesCommand = PutAccountDedicatedIpWarmupAttributesCommand;
2345
+ exports.PutAccountDedicatedIpWarmupAttributesRequest$ = PutAccountDedicatedIpWarmupAttributesRequest$;
2346
+ exports.PutAccountDedicatedIpWarmupAttributesResponse$ = PutAccountDedicatedIpWarmupAttributesResponse$;
2347
+ exports.PutAccountSendingAttributes$ = PutAccountSendingAttributes$;
778
2348
  exports.PutAccountSendingAttributesCommand = PutAccountSendingAttributesCommand;
2349
+ exports.PutAccountSendingAttributesRequest$ = PutAccountSendingAttributesRequest$;
2350
+ exports.PutAccountSendingAttributesResponse$ = PutAccountSendingAttributesResponse$;
2351
+ exports.PutConfigurationSetDeliveryOptions$ = PutConfigurationSetDeliveryOptions$;
779
2352
  exports.PutConfigurationSetDeliveryOptionsCommand = PutConfigurationSetDeliveryOptionsCommand;
2353
+ exports.PutConfigurationSetDeliveryOptionsRequest$ = PutConfigurationSetDeliveryOptionsRequest$;
2354
+ exports.PutConfigurationSetDeliveryOptionsResponse$ = PutConfigurationSetDeliveryOptionsResponse$;
2355
+ exports.PutConfigurationSetReputationOptions$ = PutConfigurationSetReputationOptions$;
780
2356
  exports.PutConfigurationSetReputationOptionsCommand = PutConfigurationSetReputationOptionsCommand;
2357
+ exports.PutConfigurationSetReputationOptionsRequest$ = PutConfigurationSetReputationOptionsRequest$;
2358
+ exports.PutConfigurationSetReputationOptionsResponse$ = PutConfigurationSetReputationOptionsResponse$;
2359
+ exports.PutConfigurationSetSendingOptions$ = PutConfigurationSetSendingOptions$;
781
2360
  exports.PutConfigurationSetSendingOptionsCommand = PutConfigurationSetSendingOptionsCommand;
2361
+ exports.PutConfigurationSetSendingOptionsRequest$ = PutConfigurationSetSendingOptionsRequest$;
2362
+ exports.PutConfigurationSetSendingOptionsResponse$ = PutConfigurationSetSendingOptionsResponse$;
2363
+ exports.PutConfigurationSetTrackingOptions$ = PutConfigurationSetTrackingOptions$;
782
2364
  exports.PutConfigurationSetTrackingOptionsCommand = PutConfigurationSetTrackingOptionsCommand;
2365
+ exports.PutConfigurationSetTrackingOptionsRequest$ = PutConfigurationSetTrackingOptionsRequest$;
2366
+ exports.PutConfigurationSetTrackingOptionsResponse$ = PutConfigurationSetTrackingOptionsResponse$;
2367
+ exports.PutDedicatedIpInPool$ = PutDedicatedIpInPool$;
783
2368
  exports.PutDedicatedIpInPoolCommand = PutDedicatedIpInPoolCommand;
2369
+ exports.PutDedicatedIpInPoolRequest$ = PutDedicatedIpInPoolRequest$;
2370
+ exports.PutDedicatedIpInPoolResponse$ = PutDedicatedIpInPoolResponse$;
2371
+ exports.PutDedicatedIpWarmupAttributes$ = PutDedicatedIpWarmupAttributes$;
784
2372
  exports.PutDedicatedIpWarmupAttributesCommand = PutDedicatedIpWarmupAttributesCommand;
2373
+ exports.PutDedicatedIpWarmupAttributesRequest$ = PutDedicatedIpWarmupAttributesRequest$;
2374
+ exports.PutDedicatedIpWarmupAttributesResponse$ = PutDedicatedIpWarmupAttributesResponse$;
2375
+ exports.PutDeliverabilityDashboardOption$ = PutDeliverabilityDashboardOption$;
785
2376
  exports.PutDeliverabilityDashboardOptionCommand = PutDeliverabilityDashboardOptionCommand;
2377
+ exports.PutDeliverabilityDashboardOptionRequest$ = PutDeliverabilityDashboardOptionRequest$;
2378
+ exports.PutDeliverabilityDashboardOptionResponse$ = PutDeliverabilityDashboardOptionResponse$;
2379
+ exports.PutEmailIdentityDkimAttributes$ = PutEmailIdentityDkimAttributes$;
786
2380
  exports.PutEmailIdentityDkimAttributesCommand = PutEmailIdentityDkimAttributesCommand;
2381
+ exports.PutEmailIdentityDkimAttributesRequest$ = PutEmailIdentityDkimAttributesRequest$;
2382
+ exports.PutEmailIdentityDkimAttributesResponse$ = PutEmailIdentityDkimAttributesResponse$;
2383
+ exports.PutEmailIdentityFeedbackAttributes$ = PutEmailIdentityFeedbackAttributes$;
787
2384
  exports.PutEmailIdentityFeedbackAttributesCommand = PutEmailIdentityFeedbackAttributesCommand;
2385
+ exports.PutEmailIdentityFeedbackAttributesRequest$ = PutEmailIdentityFeedbackAttributesRequest$;
2386
+ exports.PutEmailIdentityFeedbackAttributesResponse$ = PutEmailIdentityFeedbackAttributesResponse$;
2387
+ exports.PutEmailIdentityMailFromAttributes$ = PutEmailIdentityMailFromAttributes$;
788
2388
  exports.PutEmailIdentityMailFromAttributesCommand = PutEmailIdentityMailFromAttributesCommand;
2389
+ exports.PutEmailIdentityMailFromAttributesRequest$ = PutEmailIdentityMailFromAttributesRequest$;
2390
+ exports.PutEmailIdentityMailFromAttributesResponse$ = PutEmailIdentityMailFromAttributesResponse$;
2391
+ exports.RawMessage$ = RawMessage$;
2392
+ exports.ReputationOptions$ = ReputationOptions$;
2393
+ exports.SendEmail$ = SendEmail$;
789
2394
  exports.SendEmailCommand = SendEmailCommand;
2395
+ exports.SendEmailRequest$ = SendEmailRequest$;
2396
+ exports.SendEmailResponse$ = SendEmailResponse$;
2397
+ exports.SendQuota$ = SendQuota$;
2398
+ exports.SendingOptions$ = SendingOptions$;
2399
+ exports.SendingPausedException = SendingPausedException;
2400
+ exports.SendingPausedException$ = SendingPausedException$;
2401
+ exports.SnsDestination$ = SnsDestination$;
2402
+ exports.Tag$ = Tag$;
2403
+ exports.TagResource$ = TagResource$;
790
2404
  exports.TagResourceCommand = TagResourceCommand;
2405
+ exports.TagResourceRequest$ = TagResourceRequest$;
2406
+ exports.TagResourceResponse$ = TagResourceResponse$;
2407
+ exports.Template$ = Template$;
791
2408
  exports.TlsPolicy = TlsPolicy;
2409
+ exports.TooManyRequestsException = TooManyRequestsException;
2410
+ exports.TooManyRequestsException$ = TooManyRequestsException$;
2411
+ exports.TrackingOptions$ = TrackingOptions$;
2412
+ exports.UntagResource$ = UntagResource$;
792
2413
  exports.UntagResourceCommand = UntagResourceCommand;
2414
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2415
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2416
+ exports.UpdateConfigurationSetEventDestination$ = UpdateConfigurationSetEventDestination$;
793
2417
  exports.UpdateConfigurationSetEventDestinationCommand = UpdateConfigurationSetEventDestinationCommand;
2418
+ exports.UpdateConfigurationSetEventDestinationRequest$ = UpdateConfigurationSetEventDestinationRequest$;
2419
+ exports.UpdateConfigurationSetEventDestinationResponse$ = UpdateConfigurationSetEventDestinationResponse$;
2420
+ exports.VolumeStatistics$ = VolumeStatistics$;
794
2421
  exports.WarmupStatus = WarmupStatus;
2422
+ exports.errorTypeRegistries = errorTypeRegistries;
795
2423
  exports.paginateGetDedicatedIps = paginateGetDedicatedIps;
796
2424
  exports.paginateListConfigurationSets = paginateListConfigurationSets;
797
2425
  exports.paginateListDedicatedIpPools = paginateListDedicatedIpPools;