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