@aws-sdk/client-ses 3.1075.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 +2761 -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 +9 -9
- 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/SESServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -467
- 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 -39
- package/dist-cjs/schemas/schemas_0.js +0 -2011
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, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, 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 { AwsQueryProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSESHttpAuthSchemeParametersProvider = 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 defaultSESHttpAuthSchemeProvider = (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,2402 @@ 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 SESServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, SESServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccountSendingPausedException extends SESServiceException {
|
|
140
|
+
name = "AccountSendingPausedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccountSendingPausedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccountSendingPausedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class AlreadyExistsException extends SESServiceException {
|
|
152
|
+
name = "AlreadyExistsException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
Name;
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "AlreadyExistsException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
162
|
+
this.Name = opts.Name;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
class CannotDeleteException extends SESServiceException {
|
|
166
|
+
name = "CannotDeleteException";
|
|
167
|
+
$fault = "client";
|
|
168
|
+
Name;
|
|
169
|
+
constructor(opts) {
|
|
170
|
+
super({
|
|
171
|
+
name: "CannotDeleteException",
|
|
172
|
+
$fault: "client",
|
|
173
|
+
...opts,
|
|
174
|
+
});
|
|
175
|
+
Object.setPrototypeOf(this, CannotDeleteException.prototype);
|
|
176
|
+
this.Name = opts.Name;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class LimitExceededException extends SESServiceException {
|
|
180
|
+
name = "LimitExceededException";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "LimitExceededException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class RuleSetDoesNotExistException extends SESServiceException {
|
|
192
|
+
name = "RuleSetDoesNotExistException";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
Name;
|
|
195
|
+
constructor(opts) {
|
|
196
|
+
super({
|
|
197
|
+
name: "RuleSetDoesNotExistException",
|
|
198
|
+
$fault: "client",
|
|
199
|
+
...opts,
|
|
200
|
+
});
|
|
201
|
+
Object.setPrototypeOf(this, RuleSetDoesNotExistException.prototype);
|
|
202
|
+
this.Name = opts.Name;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
class ConfigurationSetAlreadyExistsException extends SESServiceException {
|
|
206
|
+
name = "ConfigurationSetAlreadyExistsException";
|
|
207
|
+
$fault = "client";
|
|
208
|
+
ConfigurationSetName;
|
|
209
|
+
constructor(opts) {
|
|
210
|
+
super({
|
|
211
|
+
name: "ConfigurationSetAlreadyExistsException",
|
|
212
|
+
$fault: "client",
|
|
213
|
+
...opts,
|
|
214
|
+
});
|
|
215
|
+
Object.setPrototypeOf(this, ConfigurationSetAlreadyExistsException.prototype);
|
|
216
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
class ConfigurationSetDoesNotExistException extends SESServiceException {
|
|
220
|
+
name = "ConfigurationSetDoesNotExistException";
|
|
221
|
+
$fault = "client";
|
|
222
|
+
ConfigurationSetName;
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "ConfigurationSetDoesNotExistException",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
Object.setPrototypeOf(this, ConfigurationSetDoesNotExistException.prototype);
|
|
230
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
class ConfigurationSetSendingPausedException extends SESServiceException {
|
|
234
|
+
name = "ConfigurationSetSendingPausedException";
|
|
235
|
+
$fault = "client";
|
|
236
|
+
ConfigurationSetName;
|
|
237
|
+
constructor(opts) {
|
|
238
|
+
super({
|
|
239
|
+
name: "ConfigurationSetSendingPausedException",
|
|
240
|
+
$fault: "client",
|
|
241
|
+
...opts,
|
|
242
|
+
});
|
|
243
|
+
Object.setPrototypeOf(this, ConfigurationSetSendingPausedException.prototype);
|
|
244
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
class InvalidConfigurationSetException extends SESServiceException {
|
|
248
|
+
name = "InvalidConfigurationSetException";
|
|
249
|
+
$fault = "client";
|
|
250
|
+
constructor(opts) {
|
|
251
|
+
super({
|
|
252
|
+
name: "InvalidConfigurationSetException",
|
|
253
|
+
$fault: "client",
|
|
254
|
+
...opts,
|
|
255
|
+
});
|
|
256
|
+
Object.setPrototypeOf(this, InvalidConfigurationSetException.prototype);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
class EventDestinationAlreadyExistsException extends SESServiceException {
|
|
260
|
+
name = "EventDestinationAlreadyExistsException";
|
|
261
|
+
$fault = "client";
|
|
262
|
+
ConfigurationSetName;
|
|
263
|
+
EventDestinationName;
|
|
264
|
+
constructor(opts) {
|
|
265
|
+
super({
|
|
266
|
+
name: "EventDestinationAlreadyExistsException",
|
|
267
|
+
$fault: "client",
|
|
268
|
+
...opts,
|
|
269
|
+
});
|
|
270
|
+
Object.setPrototypeOf(this, EventDestinationAlreadyExistsException.prototype);
|
|
271
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
272
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
class InvalidCloudWatchDestinationException extends SESServiceException {
|
|
276
|
+
name = "InvalidCloudWatchDestinationException";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
ConfigurationSetName;
|
|
279
|
+
EventDestinationName;
|
|
280
|
+
constructor(opts) {
|
|
281
|
+
super({
|
|
282
|
+
name: "InvalidCloudWatchDestinationException",
|
|
283
|
+
$fault: "client",
|
|
284
|
+
...opts,
|
|
285
|
+
});
|
|
286
|
+
Object.setPrototypeOf(this, InvalidCloudWatchDestinationException.prototype);
|
|
287
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
288
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
class InvalidFirehoseDestinationException extends SESServiceException {
|
|
292
|
+
name = "InvalidFirehoseDestinationException";
|
|
293
|
+
$fault = "client";
|
|
294
|
+
ConfigurationSetName;
|
|
295
|
+
EventDestinationName;
|
|
296
|
+
constructor(opts) {
|
|
297
|
+
super({
|
|
298
|
+
name: "InvalidFirehoseDestinationException",
|
|
299
|
+
$fault: "client",
|
|
300
|
+
...opts,
|
|
301
|
+
});
|
|
302
|
+
Object.setPrototypeOf(this, InvalidFirehoseDestinationException.prototype);
|
|
303
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
304
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
class InvalidSNSDestinationException extends SESServiceException {
|
|
308
|
+
name = "InvalidSNSDestinationException";
|
|
309
|
+
$fault = "client";
|
|
310
|
+
ConfigurationSetName;
|
|
311
|
+
EventDestinationName;
|
|
312
|
+
constructor(opts) {
|
|
313
|
+
super({
|
|
314
|
+
name: "InvalidSNSDestinationException",
|
|
315
|
+
$fault: "client",
|
|
316
|
+
...opts,
|
|
317
|
+
});
|
|
318
|
+
Object.setPrototypeOf(this, InvalidSNSDestinationException.prototype);
|
|
319
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
320
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
class InvalidTrackingOptionsException extends SESServiceException {
|
|
324
|
+
name = "InvalidTrackingOptionsException";
|
|
325
|
+
$fault = "client";
|
|
326
|
+
constructor(opts) {
|
|
327
|
+
super({
|
|
328
|
+
name: "InvalidTrackingOptionsException",
|
|
329
|
+
$fault: "client",
|
|
330
|
+
...opts,
|
|
331
|
+
});
|
|
332
|
+
Object.setPrototypeOf(this, InvalidTrackingOptionsException.prototype);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
class TrackingOptionsAlreadyExistsException extends SESServiceException {
|
|
336
|
+
name = "TrackingOptionsAlreadyExistsException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
ConfigurationSetName;
|
|
339
|
+
constructor(opts) {
|
|
340
|
+
super({
|
|
341
|
+
name: "TrackingOptionsAlreadyExistsException",
|
|
342
|
+
$fault: "client",
|
|
343
|
+
...opts,
|
|
344
|
+
});
|
|
345
|
+
Object.setPrototypeOf(this, TrackingOptionsAlreadyExistsException.prototype);
|
|
346
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
class CustomVerificationEmailInvalidContentException extends SESServiceException {
|
|
350
|
+
name = "CustomVerificationEmailInvalidContentException";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
constructor(opts) {
|
|
353
|
+
super({
|
|
354
|
+
name: "CustomVerificationEmailInvalidContentException",
|
|
355
|
+
$fault: "client",
|
|
356
|
+
...opts,
|
|
357
|
+
});
|
|
358
|
+
Object.setPrototypeOf(this, CustomVerificationEmailInvalidContentException.prototype);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
class CustomVerificationEmailTemplateAlreadyExistsException extends SESServiceException {
|
|
362
|
+
name = "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
363
|
+
$fault = "client";
|
|
364
|
+
CustomVerificationEmailTemplateName;
|
|
365
|
+
constructor(opts) {
|
|
366
|
+
super({
|
|
367
|
+
name: "CustomVerificationEmailTemplateAlreadyExistsException",
|
|
368
|
+
$fault: "client",
|
|
369
|
+
...opts,
|
|
370
|
+
});
|
|
371
|
+
Object.setPrototypeOf(this, CustomVerificationEmailTemplateAlreadyExistsException.prototype);
|
|
372
|
+
this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
class FromEmailAddressNotVerifiedException extends SESServiceException {
|
|
376
|
+
name = "FromEmailAddressNotVerifiedException";
|
|
377
|
+
$fault = "client";
|
|
378
|
+
FromEmailAddress;
|
|
379
|
+
constructor(opts) {
|
|
380
|
+
super({
|
|
381
|
+
name: "FromEmailAddressNotVerifiedException",
|
|
382
|
+
$fault: "client",
|
|
383
|
+
...opts,
|
|
384
|
+
});
|
|
385
|
+
Object.setPrototypeOf(this, FromEmailAddressNotVerifiedException.prototype);
|
|
386
|
+
this.FromEmailAddress = opts.FromEmailAddress;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
class InvalidLambdaFunctionException extends SESServiceException {
|
|
390
|
+
name = "InvalidLambdaFunctionException";
|
|
391
|
+
$fault = "client";
|
|
392
|
+
FunctionArn;
|
|
393
|
+
constructor(opts) {
|
|
394
|
+
super({
|
|
395
|
+
name: "InvalidLambdaFunctionException",
|
|
396
|
+
$fault: "client",
|
|
397
|
+
...opts,
|
|
398
|
+
});
|
|
399
|
+
Object.setPrototypeOf(this, InvalidLambdaFunctionException.prototype);
|
|
400
|
+
this.FunctionArn = opts.FunctionArn;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
class InvalidS3ConfigurationException extends SESServiceException {
|
|
404
|
+
name = "InvalidS3ConfigurationException";
|
|
405
|
+
$fault = "client";
|
|
406
|
+
Bucket;
|
|
407
|
+
constructor(opts) {
|
|
408
|
+
super({
|
|
409
|
+
name: "InvalidS3ConfigurationException",
|
|
410
|
+
$fault: "client",
|
|
411
|
+
...opts,
|
|
412
|
+
});
|
|
413
|
+
Object.setPrototypeOf(this, InvalidS3ConfigurationException.prototype);
|
|
414
|
+
this.Bucket = opts.Bucket;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
class InvalidSnsTopicException extends SESServiceException {
|
|
418
|
+
name = "InvalidSnsTopicException";
|
|
419
|
+
$fault = "client";
|
|
420
|
+
Topic;
|
|
421
|
+
constructor(opts) {
|
|
422
|
+
super({
|
|
423
|
+
name: "InvalidSnsTopicException",
|
|
424
|
+
$fault: "client",
|
|
425
|
+
...opts,
|
|
426
|
+
});
|
|
427
|
+
Object.setPrototypeOf(this, InvalidSnsTopicException.prototype);
|
|
428
|
+
this.Topic = opts.Topic;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
class RuleDoesNotExistException extends SESServiceException {
|
|
432
|
+
name = "RuleDoesNotExistException";
|
|
433
|
+
$fault = "client";
|
|
434
|
+
Name;
|
|
435
|
+
constructor(opts) {
|
|
436
|
+
super({
|
|
437
|
+
name: "RuleDoesNotExistException",
|
|
438
|
+
$fault: "client",
|
|
439
|
+
...opts,
|
|
440
|
+
});
|
|
441
|
+
Object.setPrototypeOf(this, RuleDoesNotExistException.prototype);
|
|
442
|
+
this.Name = opts.Name;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
class InvalidTemplateException extends SESServiceException {
|
|
446
|
+
name = "InvalidTemplateException";
|
|
447
|
+
$fault = "client";
|
|
448
|
+
TemplateName;
|
|
449
|
+
constructor(opts) {
|
|
450
|
+
super({
|
|
451
|
+
name: "InvalidTemplateException",
|
|
452
|
+
$fault: "client",
|
|
453
|
+
...opts,
|
|
454
|
+
});
|
|
455
|
+
Object.setPrototypeOf(this, InvalidTemplateException.prototype);
|
|
456
|
+
this.TemplateName = opts.TemplateName;
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
class CustomVerificationEmailTemplateDoesNotExistException extends SESServiceException {
|
|
460
|
+
name = "CustomVerificationEmailTemplateDoesNotExistException";
|
|
461
|
+
$fault = "client";
|
|
462
|
+
CustomVerificationEmailTemplateName;
|
|
463
|
+
constructor(opts) {
|
|
464
|
+
super({
|
|
465
|
+
name: "CustomVerificationEmailTemplateDoesNotExistException",
|
|
466
|
+
$fault: "client",
|
|
467
|
+
...opts,
|
|
468
|
+
});
|
|
469
|
+
Object.setPrototypeOf(this, CustomVerificationEmailTemplateDoesNotExistException.prototype);
|
|
470
|
+
this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
class EventDestinationDoesNotExistException extends SESServiceException {
|
|
474
|
+
name = "EventDestinationDoesNotExistException";
|
|
475
|
+
$fault = "client";
|
|
476
|
+
ConfigurationSetName;
|
|
477
|
+
EventDestinationName;
|
|
478
|
+
constructor(opts) {
|
|
479
|
+
super({
|
|
480
|
+
name: "EventDestinationDoesNotExistException",
|
|
481
|
+
$fault: "client",
|
|
482
|
+
...opts,
|
|
483
|
+
});
|
|
484
|
+
Object.setPrototypeOf(this, EventDestinationDoesNotExistException.prototype);
|
|
485
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
486
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
class TrackingOptionsDoesNotExistException extends SESServiceException {
|
|
490
|
+
name = "TrackingOptionsDoesNotExistException";
|
|
491
|
+
$fault = "client";
|
|
492
|
+
ConfigurationSetName;
|
|
493
|
+
constructor(opts) {
|
|
494
|
+
super({
|
|
495
|
+
name: "TrackingOptionsDoesNotExistException",
|
|
496
|
+
$fault: "client",
|
|
497
|
+
...opts,
|
|
498
|
+
});
|
|
499
|
+
Object.setPrototypeOf(this, TrackingOptionsDoesNotExistException.prototype);
|
|
500
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
class TemplateDoesNotExistException extends SESServiceException {
|
|
504
|
+
name = "TemplateDoesNotExistException";
|
|
505
|
+
$fault = "client";
|
|
506
|
+
TemplateName;
|
|
507
|
+
constructor(opts) {
|
|
508
|
+
super({
|
|
509
|
+
name: "TemplateDoesNotExistException",
|
|
510
|
+
$fault: "client",
|
|
511
|
+
...opts,
|
|
512
|
+
});
|
|
513
|
+
Object.setPrototypeOf(this, TemplateDoesNotExistException.prototype);
|
|
514
|
+
this.TemplateName = opts.TemplateName;
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
class InvalidDeliveryOptionsException extends SESServiceException {
|
|
518
|
+
name = "InvalidDeliveryOptionsException";
|
|
519
|
+
$fault = "client";
|
|
520
|
+
constructor(opts) {
|
|
521
|
+
super({
|
|
522
|
+
name: "InvalidDeliveryOptionsException",
|
|
523
|
+
$fault: "client",
|
|
524
|
+
...opts,
|
|
525
|
+
});
|
|
526
|
+
Object.setPrototypeOf(this, InvalidDeliveryOptionsException.prototype);
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
class InvalidPolicyException extends SESServiceException {
|
|
530
|
+
name = "InvalidPolicyException";
|
|
531
|
+
$fault = "client";
|
|
532
|
+
constructor(opts) {
|
|
533
|
+
super({
|
|
534
|
+
name: "InvalidPolicyException",
|
|
535
|
+
$fault: "client",
|
|
536
|
+
...opts,
|
|
537
|
+
});
|
|
538
|
+
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
class InvalidRenderingParameterException extends SESServiceException {
|
|
542
|
+
name = "InvalidRenderingParameterException";
|
|
543
|
+
$fault = "client";
|
|
544
|
+
TemplateName;
|
|
545
|
+
constructor(opts) {
|
|
546
|
+
super({
|
|
547
|
+
name: "InvalidRenderingParameterException",
|
|
548
|
+
$fault: "client",
|
|
549
|
+
...opts,
|
|
550
|
+
});
|
|
551
|
+
Object.setPrototypeOf(this, InvalidRenderingParameterException.prototype);
|
|
552
|
+
this.TemplateName = opts.TemplateName;
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
class MailFromDomainNotVerifiedException extends SESServiceException {
|
|
556
|
+
name = "MailFromDomainNotVerifiedException";
|
|
557
|
+
$fault = "client";
|
|
558
|
+
constructor(opts) {
|
|
559
|
+
super({
|
|
560
|
+
name: "MailFromDomainNotVerifiedException",
|
|
561
|
+
$fault: "client",
|
|
562
|
+
...opts,
|
|
563
|
+
});
|
|
564
|
+
Object.setPrototypeOf(this, MailFromDomainNotVerifiedException.prototype);
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
class MessageRejected extends SESServiceException {
|
|
568
|
+
name = "MessageRejected";
|
|
569
|
+
$fault = "client";
|
|
570
|
+
constructor(opts) {
|
|
571
|
+
super({
|
|
572
|
+
name: "MessageRejected",
|
|
573
|
+
$fault: "client",
|
|
574
|
+
...opts,
|
|
575
|
+
});
|
|
576
|
+
Object.setPrototypeOf(this, MessageRejected.prototype);
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
class MissingRenderingAttributeException extends SESServiceException {
|
|
580
|
+
name = "MissingRenderingAttributeException";
|
|
581
|
+
$fault = "client";
|
|
582
|
+
TemplateName;
|
|
583
|
+
constructor(opts) {
|
|
584
|
+
super({
|
|
585
|
+
name: "MissingRenderingAttributeException",
|
|
586
|
+
$fault: "client",
|
|
587
|
+
...opts,
|
|
588
|
+
});
|
|
589
|
+
Object.setPrototypeOf(this, MissingRenderingAttributeException.prototype);
|
|
590
|
+
this.TemplateName = opts.TemplateName;
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
class ProductionAccessNotGrantedException extends SESServiceException {
|
|
594
|
+
name = "ProductionAccessNotGrantedException";
|
|
595
|
+
$fault = "client";
|
|
596
|
+
constructor(opts) {
|
|
597
|
+
super({
|
|
598
|
+
name: "ProductionAccessNotGrantedException",
|
|
599
|
+
$fault: "client",
|
|
600
|
+
...opts,
|
|
601
|
+
});
|
|
602
|
+
Object.setPrototypeOf(this, ProductionAccessNotGrantedException.prototype);
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
const _A = "After";
|
|
607
|
+
const _AD = "ArrivalDate";
|
|
608
|
+
const _AEE = "AlreadyExistsException";
|
|
609
|
+
const _AHA = "AddHeaderAction";
|
|
610
|
+
const _ASPE = "AccountSendingPausedException";
|
|
611
|
+
const _Ac = "Actions";
|
|
612
|
+
const _Act = "Action";
|
|
613
|
+
const _B = "Bucket";
|
|
614
|
+
const _BA = "BounceAction";
|
|
615
|
+
const _BAc = "BccAddresses";
|
|
616
|
+
const _BED = "BulkEmailDestination";
|
|
617
|
+
const _BEDL = "BulkEmailDestinationList";
|
|
618
|
+
const _BEDS = "BulkEmailDestinationStatus";
|
|
619
|
+
const _BEDSL = "BulkEmailDestinationStatusList";
|
|
620
|
+
const _BN = "BucketName";
|
|
621
|
+
const _BOMXF = "BehaviorOnMXFailure";
|
|
622
|
+
const _BRI = "BouncedRecipientInfo";
|
|
623
|
+
const _BRIL = "BouncedRecipientInfoList";
|
|
624
|
+
const _BS = "BounceSender";
|
|
625
|
+
const _BSA = "BounceSenderArn";
|
|
626
|
+
const _BT = "BounceType";
|
|
627
|
+
const _BTo = "BounceTopic";
|
|
628
|
+
const _Bo = "Body";
|
|
629
|
+
const _Bou = "Bounces";
|
|
630
|
+
const _C = "Content";
|
|
631
|
+
const _CA = "ConnectAction";
|
|
632
|
+
const _CAc = "CcAddresses";
|
|
633
|
+
const _CCS = "CreateConfigurationSet";
|
|
634
|
+
const _CCSED = "CreateConfigurationSetEventDestination";
|
|
635
|
+
const _CCSEDR = "CreateConfigurationSetEventDestinationRequest";
|
|
636
|
+
const _CCSEDRr = "CreateConfigurationSetEventDestinationResponse";
|
|
637
|
+
const _CCSR = "CreateConfigurationSetRequest";
|
|
638
|
+
const _CCSRr = "CreateConfigurationSetResponse";
|
|
639
|
+
const _CCSTO = "CreateConfigurationSetTrackingOptions";
|
|
640
|
+
const _CCSTOR = "CreateConfigurationSetTrackingOptionsRequest";
|
|
641
|
+
const _CCSTORr = "CreateConfigurationSetTrackingOptionsResponse";
|
|
642
|
+
const _CCVET = "CreateCustomVerificationEmailTemplate";
|
|
643
|
+
const _CCVETR = "CreateCustomVerificationEmailTemplateRequest";
|
|
644
|
+
const _CDE = "CannotDeleteException";
|
|
645
|
+
const _CRD = "CustomRedirectDomain";
|
|
646
|
+
const _CRF = "CreateReceiptFilter";
|
|
647
|
+
const _CRFR = "CreateReceiptFilterRequest";
|
|
648
|
+
const _CRFRr = "CreateReceiptFilterResponse";
|
|
649
|
+
const _CRR = "CreateReceiptRule";
|
|
650
|
+
const _CRRR = "CreateReceiptRuleRequest";
|
|
651
|
+
const _CRRRr = "CreateReceiptRuleResponse";
|
|
652
|
+
const _CRRS = "CloneReceiptRuleSet";
|
|
653
|
+
const _CRRSR = "CloneReceiptRuleSetRequest";
|
|
654
|
+
const _CRRSRl = "CloneReceiptRuleSetResponse";
|
|
655
|
+
const _CRRSRr = "CreateReceiptRuleSetRequest";
|
|
656
|
+
const _CRRSRre = "CreateReceiptRuleSetResponse";
|
|
657
|
+
const _CRRSr = "CreateReceiptRuleSet";
|
|
658
|
+
const _CS = "ConfigurationSet";
|
|
659
|
+
const _CSAEE = "ConfigurationSetAlreadyExistsException";
|
|
660
|
+
const _CSAN = "ConfigurationSetAttributeNames";
|
|
661
|
+
const _CSDNEE = "ConfigurationSetDoesNotExistException";
|
|
662
|
+
const _CSN = "ConfigurationSetName";
|
|
663
|
+
const _CSSPE = "ConfigurationSetSendingPausedException";
|
|
664
|
+
const _CSo = "ConfigurationSets";
|
|
665
|
+
const _CT = "ComplaintTopic";
|
|
666
|
+
const _CTR = "CreateTemplateRequest";
|
|
667
|
+
const _CTRr = "CreateTemplateResponse";
|
|
668
|
+
const _CTr = "CreatedTimestamp";
|
|
669
|
+
const _CTre = "CreateTemplate";
|
|
670
|
+
const _CVEICE = "CustomVerificationEmailInvalidContentException";
|
|
671
|
+
const _CVET = "CustomVerificationEmailTemplate";
|
|
672
|
+
const _CVETAEE = "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
673
|
+
const _CVETDNEE = "CustomVerificationEmailTemplateDoesNotExistException";
|
|
674
|
+
const _CVETN = "CustomVerificationEmailTemplateName";
|
|
675
|
+
const _CVETu = "CustomVerificationEmailTemplates";
|
|
676
|
+
const _CWD = "CloudWatchDestination";
|
|
677
|
+
const _CWDC = "CloudWatchDimensionConfiguration";
|
|
678
|
+
const _CWDCl = "CloudWatchDimensionConfigurations";
|
|
679
|
+
const _Ch = "Charset";
|
|
680
|
+
const _Ci = "Cidr";
|
|
681
|
+
const _Co = "Complaints";
|
|
682
|
+
const _D = "Destination";
|
|
683
|
+
const _DA = "DkimAttributes";
|
|
684
|
+
const _DARRS = "DescribeActiveReceiptRuleSet";
|
|
685
|
+
const _DARRSR = "DescribeActiveReceiptRuleSetRequest";
|
|
686
|
+
const _DARRSRe = "DescribeActiveReceiptRuleSetResponse";
|
|
687
|
+
const _DAe = "DeliveryAttempts";
|
|
688
|
+
const _DC = "DimensionConfigurations";
|
|
689
|
+
const _DCS = "DeleteConfigurationSet";
|
|
690
|
+
const _DCSED = "DeleteConfigurationSetEventDestination";
|
|
691
|
+
const _DCSEDR = "DeleteConfigurationSetEventDestinationRequest";
|
|
692
|
+
const _DCSEDRe = "DeleteConfigurationSetEventDestinationResponse";
|
|
693
|
+
const _DCSR = "DeleteConfigurationSetRequest";
|
|
694
|
+
const _DCSRe = "DeleteConfigurationSetResponse";
|
|
695
|
+
const _DCSRes = "DescribeConfigurationSetRequest";
|
|
696
|
+
const _DCSResc = "DescribeConfigurationSetResponse";
|
|
697
|
+
const _DCSTO = "DeleteConfigurationSetTrackingOptions";
|
|
698
|
+
const _DCSTOR = "DeleteConfigurationSetTrackingOptionsRequest";
|
|
699
|
+
const _DCSTORe = "DeleteConfigurationSetTrackingOptionsResponse";
|
|
700
|
+
const _DCSe = "DescribeConfigurationSet";
|
|
701
|
+
const _DCVET = "DeleteCustomVerificationEmailTemplate";
|
|
702
|
+
const _DCVETR = "DeleteCustomVerificationEmailTemplateRequest";
|
|
703
|
+
const _DCi = "DiagnosticCode";
|
|
704
|
+
const _DDV = "DefaultDimensionValue";
|
|
705
|
+
const _DE = "DkimEnabled";
|
|
706
|
+
const _DI = "DeleteIdentity";
|
|
707
|
+
const _DIP = "DeleteIdentityPolicy";
|
|
708
|
+
const _DIPR = "DeleteIdentityPolicyRequest";
|
|
709
|
+
const _DIPRe = "DeleteIdentityPolicyResponse";
|
|
710
|
+
const _DIR = "DeleteIdentityRequest";
|
|
711
|
+
const _DIRe = "DeleteIdentityResponse";
|
|
712
|
+
const _DN = "DimensionName";
|
|
713
|
+
const _DO = "DeliveryOptions";
|
|
714
|
+
const _DRF = "DeleteReceiptFilter";
|
|
715
|
+
const _DRFR = "DeleteReceiptFilterRequest";
|
|
716
|
+
const _DRFRe = "DeleteReceiptFilterResponse";
|
|
717
|
+
const _DRR = "DeleteReceiptRule";
|
|
718
|
+
const _DRRR = "DeleteReceiptRuleRequest";
|
|
719
|
+
const _DRRRe = "DeleteReceiptRuleResponse";
|
|
720
|
+
const _DRRRes = "DescribeReceiptRuleRequest";
|
|
721
|
+
const _DRRResc = "DescribeReceiptRuleResponse";
|
|
722
|
+
const _DRRS = "DeleteReceiptRuleSet";
|
|
723
|
+
const _DRRSR = "DeleteReceiptRuleSetRequest";
|
|
724
|
+
const _DRRSRe = "DeleteReceiptRuleSetResponse";
|
|
725
|
+
const _DRRSRes = "DescribeReceiptRuleSetRequest";
|
|
726
|
+
const _DRRSResc = "DescribeReceiptRuleSetResponse";
|
|
727
|
+
const _DRRSe = "DescribeReceiptRuleSet";
|
|
728
|
+
const _DRRe = "DescribeReceiptRule";
|
|
729
|
+
const _DSARN = "DeliveryStreamARN";
|
|
730
|
+
const _DT = "DkimTokens";
|
|
731
|
+
const _DTD = "DefaultTemplateData";
|
|
732
|
+
const _DTR = "DeleteTemplateRequest";
|
|
733
|
+
const _DTRe = "DeleteTemplateResponse";
|
|
734
|
+
const _DTe = "DeliveryTopic";
|
|
735
|
+
const _DTef = "DefaultTags";
|
|
736
|
+
const _DTel = "DeleteTemplate";
|
|
737
|
+
const _DVEA = "DeleteVerifiedEmailAddress";
|
|
738
|
+
const _DVEAR = "DeleteVerifiedEmailAddressRequest";
|
|
739
|
+
const _DVS = "DimensionValueSource";
|
|
740
|
+
const _DVSk = "DkimVerificationStatus";
|
|
741
|
+
const _Da = "Data";
|
|
742
|
+
const _De = "Destinations";
|
|
743
|
+
const _Do = "Domain";
|
|
744
|
+
const _E = "Error";
|
|
745
|
+
const _EA = "EmailAddress";
|
|
746
|
+
const _ED = "EventDestination";
|
|
747
|
+
const _EDAEE = "EventDestinationAlreadyExistsException";
|
|
748
|
+
const _EDDNEE = "EventDestinationDoesNotExistException";
|
|
749
|
+
const _EDN = "EventDestinationName";
|
|
750
|
+
const _EDv = "EventDestinations";
|
|
751
|
+
const _EF = "ExtensionField";
|
|
752
|
+
const _EFL = "ExtensionFieldList";
|
|
753
|
+
const _EFx = "ExtensionFields";
|
|
754
|
+
const _En = "Enabled";
|
|
755
|
+
const _Enc = "Encoding";
|
|
756
|
+
const _Ex = "Explanation";
|
|
757
|
+
const _F = "Filter";
|
|
758
|
+
const _FA = "FunctionArn";
|
|
759
|
+
const _FAr = "FromArn";
|
|
760
|
+
const _FE = "ForwardingEnabled";
|
|
761
|
+
const _FEA = "FromEmailAddress";
|
|
762
|
+
const _FEANVE = "FromEmailAddressNotVerifiedException";
|
|
763
|
+
const _FN = "FilterName";
|
|
764
|
+
const _FR = "FinalRecipient";
|
|
765
|
+
const _FRURL = "FailureRedirectionURL";
|
|
766
|
+
const _Fi = "Filters";
|
|
767
|
+
const _GASE = "GetAccountSendingEnabled";
|
|
768
|
+
const _GASER = "GetAccountSendingEnabledResponse";
|
|
769
|
+
const _GCVET = "GetCustomVerificationEmailTemplate";
|
|
770
|
+
const _GCVETR = "GetCustomVerificationEmailTemplateRequest";
|
|
771
|
+
const _GCVETRe = "GetCustomVerificationEmailTemplateResponse";
|
|
772
|
+
const _GIDA = "GetIdentityDkimAttributes";
|
|
773
|
+
const _GIDAR = "GetIdentityDkimAttributesRequest";
|
|
774
|
+
const _GIDARe = "GetIdentityDkimAttributesResponse";
|
|
775
|
+
const _GIMFDA = "GetIdentityMailFromDomainAttributes";
|
|
776
|
+
const _GIMFDAR = "GetIdentityMailFromDomainAttributesRequest";
|
|
777
|
+
const _GIMFDARe = "GetIdentityMailFromDomainAttributesResponse";
|
|
778
|
+
const _GINA = "GetIdentityNotificationAttributes";
|
|
779
|
+
const _GINAR = "GetIdentityNotificationAttributesRequest";
|
|
780
|
+
const _GINARe = "GetIdentityNotificationAttributesResponse";
|
|
781
|
+
const _GIP = "GetIdentityPolicies";
|
|
782
|
+
const _GIPR = "GetIdentityPoliciesRequest";
|
|
783
|
+
const _GIPRe = "GetIdentityPoliciesResponse";
|
|
784
|
+
const _GIVA = "GetIdentityVerificationAttributes";
|
|
785
|
+
const _GIVAR = "GetIdentityVerificationAttributesRequest";
|
|
786
|
+
const _GIVARe = "GetIdentityVerificationAttributesResponse";
|
|
787
|
+
const _GSQ = "GetSendQuota";
|
|
788
|
+
const _GSQR = "GetSendQuotaResponse";
|
|
789
|
+
const _GSS = "GetSendStatistics";
|
|
790
|
+
const _GSSR = "GetSendStatisticsResponse";
|
|
791
|
+
const _GT = "GetTemplate";
|
|
792
|
+
const _GTR = "GetTemplateRequest";
|
|
793
|
+
const _GTRe = "GetTemplateResponse";
|
|
794
|
+
const _H = "Html";
|
|
795
|
+
const _HIBNE = "HeadersInBounceNotificationsEnabled";
|
|
796
|
+
const _HICNE = "HeadersInComplaintNotificationsEnabled";
|
|
797
|
+
const _HIDNE = "HeadersInDeliveryNotificationsEnabled";
|
|
798
|
+
const _HN = "HeaderName";
|
|
799
|
+
const _HP = "HtmlPart";
|
|
800
|
+
const _HV = "HeaderValue";
|
|
801
|
+
const _I = "Identity";
|
|
802
|
+
const _IAMRARN = "IAMRoleARN";
|
|
803
|
+
const _IARN = "InstanceARN";
|
|
804
|
+
const _ICSE = "InvalidConfigurationSetException";
|
|
805
|
+
const _ICWDE = "InvalidCloudWatchDestinationException";
|
|
806
|
+
const _IDA = "IdentityDkimAttributes";
|
|
807
|
+
const _IDOE = "InvalidDeliveryOptionsException";
|
|
808
|
+
const _IF = "IpFilter";
|
|
809
|
+
const _IFDE = "InvalidFirehoseDestinationException";
|
|
810
|
+
const _ILFE = "InvalidLambdaFunctionException";
|
|
811
|
+
const _IMFDA = "IdentityMailFromDomainAttributes";
|
|
812
|
+
const _INA = "IdentityNotificationAttributes";
|
|
813
|
+
const _IPE = "InvalidPolicyException";
|
|
814
|
+
const _IRA = "IamRoleArn";
|
|
815
|
+
const _IRPE = "InvalidRenderingParameterException";
|
|
816
|
+
const _ISCE = "InvalidS3ConfigurationException";
|
|
817
|
+
const _ISNSDE = "InvalidSNSDestinationException";
|
|
818
|
+
const _ISTE = "InvalidSnsTopicException";
|
|
819
|
+
const _IT = "InvocationType";
|
|
820
|
+
const _ITE = "InvalidTemplateException";
|
|
821
|
+
const _ITOE = "InvalidTrackingOptionsException";
|
|
822
|
+
const _ITd = "IdentityType";
|
|
823
|
+
const _IVA = "IdentityVerificationAttributes";
|
|
824
|
+
const _Id = "Identities";
|
|
825
|
+
const _KFD = "KinesisFirehoseDestination";
|
|
826
|
+
const _KKA = "KmsKeyArn";
|
|
827
|
+
const _LA = "LambdaAction";
|
|
828
|
+
const _LAD = "LastAttemptDate";
|
|
829
|
+
const _LCS = "ListConfigurationSets";
|
|
830
|
+
const _LCSR = "ListConfigurationSetsRequest";
|
|
831
|
+
const _LCSRi = "ListConfigurationSetsResponse";
|
|
832
|
+
const _LCVET = "ListCustomVerificationEmailTemplates";
|
|
833
|
+
const _LCVETR = "ListCustomVerificationEmailTemplatesRequest";
|
|
834
|
+
const _LCVETRi = "ListCustomVerificationEmailTemplatesResponse";
|
|
835
|
+
const _LEE = "LimitExceededException";
|
|
836
|
+
const _LFS = "LastFreshStart";
|
|
837
|
+
const _LI = "ListIdentities";
|
|
838
|
+
const _LIP = "ListIdentityPolicies";
|
|
839
|
+
const _LIPR = "ListIdentityPoliciesRequest";
|
|
840
|
+
const _LIPRi = "ListIdentityPoliciesResponse";
|
|
841
|
+
const _LIR = "ListIdentitiesRequest";
|
|
842
|
+
const _LIRi = "ListIdentitiesResponse";
|
|
843
|
+
const _LRF = "ListReceiptFilters";
|
|
844
|
+
const _LRFR = "ListReceiptFiltersRequest";
|
|
845
|
+
const _LRFRi = "ListReceiptFiltersResponse";
|
|
846
|
+
const _LRRS = "ListReceiptRuleSets";
|
|
847
|
+
const _LRRSR = "ListReceiptRuleSetsRequest";
|
|
848
|
+
const _LRRSRi = "ListReceiptRuleSetsResponse";
|
|
849
|
+
const _LT = "ListTemplates";
|
|
850
|
+
const _LTR = "ListTemplatesRequest";
|
|
851
|
+
const _LTRi = "ListTemplatesResponse";
|
|
852
|
+
const _LVEA = "ListVerifiedEmailAddresses";
|
|
853
|
+
const _LVEAR = "ListVerifiedEmailAddressesResponse";
|
|
854
|
+
const _M = "Message";
|
|
855
|
+
const _MD = "MessageDsn";
|
|
856
|
+
const _MET = "MatchingEventTypes";
|
|
857
|
+
const _MFD = "MailFromDomain";
|
|
858
|
+
const _MFDA = "MailFromDomainAttributes";
|
|
859
|
+
const _MFDNVE = "MailFromDomainNotVerifiedException";
|
|
860
|
+
const _MFDS = "MailFromDomainStatus";
|
|
861
|
+
const _MHS = "Max24HourSend";
|
|
862
|
+
const _MI = "MessageId";
|
|
863
|
+
const _MIa = "MaxItems";
|
|
864
|
+
const _MR = "MessageRejected";
|
|
865
|
+
const _MRAE = "MissingRenderingAttributeException";
|
|
866
|
+
const _MRa = "MaxResults";
|
|
867
|
+
const _MSR = "MaxSendRate";
|
|
868
|
+
const _MT = "MessageTag";
|
|
869
|
+
const _MTL = "MessageTagList";
|
|
870
|
+
const _Me = "Metadata";
|
|
871
|
+
const _N = "Name";
|
|
872
|
+
const _NA = "NotificationAttributes";
|
|
873
|
+
const _NT = "NextToken";
|
|
874
|
+
const _NTo = "NotificationType";
|
|
875
|
+
const _OA = "OrganizationArn";
|
|
876
|
+
const _OKP = "ObjectKeyPrefix";
|
|
877
|
+
const _OMI = "OriginalMessageId";
|
|
878
|
+
const _ORSN = "OriginalRuleSetName";
|
|
879
|
+
const _P = "Policies";
|
|
880
|
+
const _PANGE = "ProductionAccessNotGrantedException";
|
|
881
|
+
const _PCSDO = "PutConfigurationSetDeliveryOptions";
|
|
882
|
+
const _PCSDOR = "PutConfigurationSetDeliveryOptionsRequest";
|
|
883
|
+
const _PCSDORu = "PutConfigurationSetDeliveryOptionsResponse";
|
|
884
|
+
const _PIP = "PutIdentityPolicy";
|
|
885
|
+
const _PIPR = "PutIdentityPolicyRequest";
|
|
886
|
+
const _PIPRu = "PutIdentityPolicyResponse";
|
|
887
|
+
const _PN = "PolicyName";
|
|
888
|
+
const _PNo = "PolicyNames";
|
|
889
|
+
const _Po = "Policy";
|
|
890
|
+
const _R = "Recipient";
|
|
891
|
+
const _RA = "RecipientArn";
|
|
892
|
+
const _RAL = "ReceiptActionsList";
|
|
893
|
+
const _RAe = "ReceiptAction";
|
|
894
|
+
const _RDF = "RecipientDsnFields";
|
|
895
|
+
const _RDNEE = "RuleDoesNotExistException";
|
|
896
|
+
const _RF = "ReceiptFilter";
|
|
897
|
+
const _RFL = "ReceiptFilterList";
|
|
898
|
+
const _RIF = "ReceiptIpFilter";
|
|
899
|
+
const _RM = "ReportingMta";
|
|
900
|
+
const _RME = "ReputationMetricsEnabled";
|
|
901
|
+
const _RMa = "RawMessage";
|
|
902
|
+
const _RMe = "RemoteMta";
|
|
903
|
+
const _RN = "RuleName";
|
|
904
|
+
const _RNu = "RuleNames";
|
|
905
|
+
const _RO = "ReputationOptions";
|
|
906
|
+
const _RP = "ReturnPath";
|
|
907
|
+
const _RPA = "ReturnPathArn";
|
|
908
|
+
const _RR = "ReceiptRule";
|
|
909
|
+
const _RRL = "ReceiptRulesList";
|
|
910
|
+
const _RRRS = "ReorderReceiptRuleSet";
|
|
911
|
+
const _RRRSR = "ReorderReceiptRuleSetRequest";
|
|
912
|
+
const _RRRSRe = "ReorderReceiptRuleSetResponse";
|
|
913
|
+
const _RRSL = "ReceiptRuleSetsLists";
|
|
914
|
+
const _RRSM = "ReceiptRuleSetMetadata";
|
|
915
|
+
const _RS = "RuleSets";
|
|
916
|
+
const _RSDNEE = "RuleSetDoesNotExistException";
|
|
917
|
+
const _RSN = "RuleSetName";
|
|
918
|
+
const _RT = "ReplacementTags";
|
|
919
|
+
const _RTA = "ReplyToAddresses";
|
|
920
|
+
const _RTD = "ReplacementTemplateData";
|
|
921
|
+
const _RTe = "RenderedTemplate";
|
|
922
|
+
const _Re = "Recipients";
|
|
923
|
+
const _Rej = "Rejects";
|
|
924
|
+
const _Ru = "Rule";
|
|
925
|
+
const _Rul = "Rules";
|
|
926
|
+
const _S = "Sender";
|
|
927
|
+
const _SA = "S3Action";
|
|
928
|
+
const _SARRS = "SetActiveReceiptRuleSet";
|
|
929
|
+
const _SARRSR = "SetActiveReceiptRuleSetRequest";
|
|
930
|
+
const _SARRSRe = "SetActiveReceiptRuleSetResponse";
|
|
931
|
+
const _SAo = "SourceArn";
|
|
932
|
+
const _SAt = "StopAction";
|
|
933
|
+
const _SB = "SendBounce";
|
|
934
|
+
const _SBR = "SendBounceRequest";
|
|
935
|
+
const _SBRe = "SendBounceResponse";
|
|
936
|
+
const _SBTE = "SendBulkTemplatedEmail";
|
|
937
|
+
const _SBTER = "SendBulkTemplatedEmailRequest";
|
|
938
|
+
const _SBTERe = "SendBulkTemplatedEmailResponse";
|
|
939
|
+
const _SC = "StatusCode";
|
|
940
|
+
const _SCVE = "SendCustomVerificationEmail";
|
|
941
|
+
const _SCVER = "SendCustomVerificationEmailRequest";
|
|
942
|
+
const _SCVERe = "SendCustomVerificationEmailResponse";
|
|
943
|
+
const _SDP = "SendDataPoints";
|
|
944
|
+
const _SDPL = "SendDataPointList";
|
|
945
|
+
const _SDPe = "SendDataPoint";
|
|
946
|
+
const _SE = "ScanEnabled";
|
|
947
|
+
const _SER = "SendEmailRequest";
|
|
948
|
+
const _SERe = "SendEmailResponse";
|
|
949
|
+
const _SEe = "SendingEnabled";
|
|
950
|
+
const _SEen = "SendEmail";
|
|
951
|
+
const _SIDE = "SetIdentityDkimEnabled";
|
|
952
|
+
const _SIDER = "SetIdentityDkimEnabledRequest";
|
|
953
|
+
const _SIDERe = "SetIdentityDkimEnabledResponse";
|
|
954
|
+
const _SIFFE = "SetIdentityFeedbackForwardingEnabled";
|
|
955
|
+
const _SIFFER = "SetIdentityFeedbackForwardingEnabledRequest";
|
|
956
|
+
const _SIFFERe = "SetIdentityFeedbackForwardingEnabledResponse";
|
|
957
|
+
const _SIHINE = "SetIdentityHeadersInNotificationsEnabled";
|
|
958
|
+
const _SIHINER = "SetIdentityHeadersInNotificationsEnabledRequest";
|
|
959
|
+
const _SIHINERe = "SetIdentityHeadersInNotificationsEnabledResponse";
|
|
960
|
+
const _SIMFD = "SetIdentityMailFromDomain";
|
|
961
|
+
const _SIMFDR = "SetIdentityMailFromDomainRequest";
|
|
962
|
+
const _SIMFDRe = "SetIdentityMailFromDomainResponse";
|
|
963
|
+
const _SINT = "SetIdentityNotificationTopic";
|
|
964
|
+
const _SINTR = "SetIdentityNotificationTopicRequest";
|
|
965
|
+
const _SINTRe = "SetIdentityNotificationTopicResponse";
|
|
966
|
+
const _SLH = "SentLast24Hours";
|
|
967
|
+
const _SNSA = "SNSAction";
|
|
968
|
+
const _SNSD = "SNSDestination";
|
|
969
|
+
const _SP = "SubjectPart";
|
|
970
|
+
const _SRC = "SmtpReplyCode";
|
|
971
|
+
const _SRE = "SendRawEmail";
|
|
972
|
+
const _SRER = "SendRawEmailRequest";
|
|
973
|
+
const _SRERe = "SendRawEmailResponse";
|
|
974
|
+
const _SRRP = "SetReceiptRulePosition";
|
|
975
|
+
const _SRRPR = "SetReceiptRulePositionRequest";
|
|
976
|
+
const _SRRPRe = "SetReceiptRulePositionResponse";
|
|
977
|
+
const _SRURL = "SuccessRedirectionURL";
|
|
978
|
+
const _ST = "SnsTopic";
|
|
979
|
+
const _STE = "SendTemplatedEmail";
|
|
980
|
+
const _STER = "SendTemplatedEmailRequest";
|
|
981
|
+
const _STERe = "SendTemplatedEmailResponse";
|
|
982
|
+
const _Sc = "Scope";
|
|
983
|
+
const _So = "Source";
|
|
984
|
+
const _St = "Status";
|
|
985
|
+
const _Su = "Subject";
|
|
986
|
+
const _T = "Topic";
|
|
987
|
+
const _TA = "TopicArn";
|
|
988
|
+
const _TARN = "TopicARN";
|
|
989
|
+
const _TAe = "TemplateArn";
|
|
990
|
+
const _TAo = "ToAddresses";
|
|
991
|
+
const _TC = "TemplateContent";
|
|
992
|
+
const _TD = "TemplateData";
|
|
993
|
+
const _TDNEE = "TemplateDoesNotExistException";
|
|
994
|
+
const _TM = "TemplatesMetadata";
|
|
995
|
+
const _TML = "TemplateMetadataList";
|
|
996
|
+
const _TMe = "TemplateMetadata";
|
|
997
|
+
const _TN = "TemplateName";
|
|
998
|
+
const _TO = "TrackingOptions";
|
|
999
|
+
const _TOAEE = "TrackingOptionsAlreadyExistsException";
|
|
1000
|
+
const _TODNEE = "TrackingOptionsDoesNotExistException";
|
|
1001
|
+
const _TP = "TlsPolicy";
|
|
1002
|
+
const _TPe = "TextPart";
|
|
1003
|
+
const _TRT = "TestRenderTemplate";
|
|
1004
|
+
const _TRTR = "TestRenderTemplateRequest";
|
|
1005
|
+
const _TRTRe = "TestRenderTemplateResponse";
|
|
1006
|
+
const _TS = "TemplateSubject";
|
|
1007
|
+
const _Ta = "Tags";
|
|
1008
|
+
const _Te = "Text";
|
|
1009
|
+
const _Tem = "Template";
|
|
1010
|
+
const _Ti = "Timestamp";
|
|
1011
|
+
const _UASE = "UpdateAccountSendingEnabled";
|
|
1012
|
+
const _UASER = "UpdateAccountSendingEnabledRequest";
|
|
1013
|
+
const _UCSED = "UpdateConfigurationSetEventDestination";
|
|
1014
|
+
const _UCSEDR = "UpdateConfigurationSetEventDestinationRequest";
|
|
1015
|
+
const _UCSEDRp = "UpdateConfigurationSetEventDestinationResponse";
|
|
1016
|
+
const _UCSRME = "UpdateConfigurationSetReputationMetricsEnabled";
|
|
1017
|
+
const _UCSRMER = "UpdateConfigurationSetReputationMetricsEnabledRequest";
|
|
1018
|
+
const _UCSSE = "UpdateConfigurationSetSendingEnabled";
|
|
1019
|
+
const _UCSSER = "UpdateConfigurationSetSendingEnabledRequest";
|
|
1020
|
+
const _UCSTO = "UpdateConfigurationSetTrackingOptions";
|
|
1021
|
+
const _UCSTOR = "UpdateConfigurationSetTrackingOptionsRequest";
|
|
1022
|
+
const _UCSTORp = "UpdateConfigurationSetTrackingOptionsResponse";
|
|
1023
|
+
const _UCVET = "UpdateCustomVerificationEmailTemplate";
|
|
1024
|
+
const _UCVETR = "UpdateCustomVerificationEmailTemplateRequest";
|
|
1025
|
+
const _URR = "UpdateReceiptRule";
|
|
1026
|
+
const _URRR = "UpdateReceiptRuleRequest";
|
|
1027
|
+
const _URRRp = "UpdateReceiptRuleResponse";
|
|
1028
|
+
const _UT = "UpdateTemplate";
|
|
1029
|
+
const _UTR = "UpdateTemplateRequest";
|
|
1030
|
+
const _UTRp = "UpdateTemplateResponse";
|
|
1031
|
+
const _V = "Value";
|
|
1032
|
+
const _VA = "VerificationAttributes";
|
|
1033
|
+
const _VDD = "VerifyDomainDkim";
|
|
1034
|
+
const _VDDR = "VerifyDomainDkimRequest";
|
|
1035
|
+
const _VDDRe = "VerifyDomainDkimResponse";
|
|
1036
|
+
const _VDI = "VerifyDomainIdentity";
|
|
1037
|
+
const _VDIR = "VerifyDomainIdentityRequest";
|
|
1038
|
+
const _VDIRe = "VerifyDomainIdentityResponse";
|
|
1039
|
+
const _VEA = "VerifiedEmailAddresses";
|
|
1040
|
+
const _VEAR = "VerifyEmailAddressRequest";
|
|
1041
|
+
const _VEAe = "VerifyEmailAddress";
|
|
1042
|
+
const _VEI = "VerifyEmailIdentity";
|
|
1043
|
+
const _VEIR = "VerifyEmailIdentityRequest";
|
|
1044
|
+
const _VEIRe = "VerifyEmailIdentityResponse";
|
|
1045
|
+
const _VS = "VerificationStatus";
|
|
1046
|
+
const _VT = "VerificationToken";
|
|
1047
|
+
const _WA = "WorkmailAction";
|
|
1048
|
+
const _aQE = "awsQueryError";
|
|
1049
|
+
const _c = "client";
|
|
1050
|
+
const _e = "error";
|
|
1051
|
+
const _hE = "httpError";
|
|
1052
|
+
const _m = "message";
|
|
1053
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.ses";
|
|
1054
|
+
const n0 = "com.amazonaws.ses";
|
|
1055
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1056
|
+
var SESServiceException$ = [-3, _s, "SESServiceException", 0, [], []];
|
|
1057
|
+
_s_registry.registerError(SESServiceException$, SESServiceException);
|
|
1058
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1059
|
+
var AccountSendingPausedException$ = [-3, n0, _ASPE,
|
|
1060
|
+
{ [_aQE]: [`AccountSendingPausedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1061
|
+
[_m],
|
|
1062
|
+
[0]
|
|
1063
|
+
];
|
|
1064
|
+
n0_registry.registerError(AccountSendingPausedException$, AccountSendingPausedException);
|
|
1065
|
+
var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
1066
|
+
{ [_aQE]: [`AlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1067
|
+
[_N, _m],
|
|
1068
|
+
[0, 0]
|
|
1069
|
+
];
|
|
1070
|
+
n0_registry.registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
1071
|
+
var CannotDeleteException$ = [-3, n0, _CDE,
|
|
1072
|
+
{ [_aQE]: [`CannotDelete`, 400], [_e]: _c, [_hE]: 400 },
|
|
1073
|
+
[_N, _m],
|
|
1074
|
+
[0, 0]
|
|
1075
|
+
];
|
|
1076
|
+
n0_registry.registerError(CannotDeleteException$, CannotDeleteException);
|
|
1077
|
+
var ConfigurationSetAlreadyExistsException$ = [-3, n0, _CSAEE,
|
|
1078
|
+
{ [_aQE]: [`ConfigurationSetAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1079
|
+
[_CSN, _m],
|
|
1080
|
+
[0, 0]
|
|
1081
|
+
];
|
|
1082
|
+
n0_registry.registerError(ConfigurationSetAlreadyExistsException$, ConfigurationSetAlreadyExistsException);
|
|
1083
|
+
var ConfigurationSetDoesNotExistException$ = [-3, n0, _CSDNEE,
|
|
1084
|
+
{ [_aQE]: [`ConfigurationSetDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1085
|
+
[_CSN, _m],
|
|
1086
|
+
[0, 0]
|
|
1087
|
+
];
|
|
1088
|
+
n0_registry.registerError(ConfigurationSetDoesNotExistException$, ConfigurationSetDoesNotExistException);
|
|
1089
|
+
var ConfigurationSetSendingPausedException$ = [-3, n0, _CSSPE,
|
|
1090
|
+
{ [_aQE]: [`ConfigurationSetSendingPausedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1091
|
+
[_CSN, _m],
|
|
1092
|
+
[0, 0]
|
|
1093
|
+
];
|
|
1094
|
+
n0_registry.registerError(ConfigurationSetSendingPausedException$, ConfigurationSetSendingPausedException);
|
|
1095
|
+
var CustomVerificationEmailInvalidContentException$ = [-3, n0, _CVEICE,
|
|
1096
|
+
{ [_aQE]: [`CustomVerificationEmailInvalidContent`, 400], [_e]: _c, [_hE]: 400 },
|
|
1097
|
+
[_m],
|
|
1098
|
+
[0]
|
|
1099
|
+
];
|
|
1100
|
+
n0_registry.registerError(CustomVerificationEmailInvalidContentException$, CustomVerificationEmailInvalidContentException);
|
|
1101
|
+
var CustomVerificationEmailTemplateAlreadyExistsException$ = [-3, n0, _CVETAEE,
|
|
1102
|
+
{ [_aQE]: [`CustomVerificationEmailTemplateAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1103
|
+
[_CVETN, _m],
|
|
1104
|
+
[0, 0]
|
|
1105
|
+
];
|
|
1106
|
+
n0_registry.registerError(CustomVerificationEmailTemplateAlreadyExistsException$, CustomVerificationEmailTemplateAlreadyExistsException);
|
|
1107
|
+
var CustomVerificationEmailTemplateDoesNotExistException$ = [-3, n0, _CVETDNEE,
|
|
1108
|
+
{ [_aQE]: [`CustomVerificationEmailTemplateDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1109
|
+
[_CVETN, _m],
|
|
1110
|
+
[0, 0]
|
|
1111
|
+
];
|
|
1112
|
+
n0_registry.registerError(CustomVerificationEmailTemplateDoesNotExistException$, CustomVerificationEmailTemplateDoesNotExistException);
|
|
1113
|
+
var EventDestinationAlreadyExistsException$ = [-3, n0, _EDAEE,
|
|
1114
|
+
{ [_aQE]: [`EventDestinationAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1115
|
+
[_CSN, _EDN, _m],
|
|
1116
|
+
[0, 0, 0]
|
|
1117
|
+
];
|
|
1118
|
+
n0_registry.registerError(EventDestinationAlreadyExistsException$, EventDestinationAlreadyExistsException);
|
|
1119
|
+
var EventDestinationDoesNotExistException$ = [-3, n0, _EDDNEE,
|
|
1120
|
+
{ [_aQE]: [`EventDestinationDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1121
|
+
[_CSN, _EDN, _m],
|
|
1122
|
+
[0, 0, 0]
|
|
1123
|
+
];
|
|
1124
|
+
n0_registry.registerError(EventDestinationDoesNotExistException$, EventDestinationDoesNotExistException);
|
|
1125
|
+
var FromEmailAddressNotVerifiedException$ = [-3, n0, _FEANVE,
|
|
1126
|
+
{ [_aQE]: [`FromEmailAddressNotVerified`, 400], [_e]: _c, [_hE]: 400 },
|
|
1127
|
+
[_FEA, _m],
|
|
1128
|
+
[0, 0]
|
|
1129
|
+
];
|
|
1130
|
+
n0_registry.registerError(FromEmailAddressNotVerifiedException$, FromEmailAddressNotVerifiedException);
|
|
1131
|
+
var InvalidCloudWatchDestinationException$ = [-3, n0, _ICWDE,
|
|
1132
|
+
{ [_aQE]: [`InvalidCloudWatchDestination`, 400], [_e]: _c, [_hE]: 400 },
|
|
1133
|
+
[_CSN, _EDN, _m],
|
|
1134
|
+
[0, 0, 0]
|
|
1135
|
+
];
|
|
1136
|
+
n0_registry.registerError(InvalidCloudWatchDestinationException$, InvalidCloudWatchDestinationException);
|
|
1137
|
+
var InvalidConfigurationSetException$ = [-3, n0, _ICSE,
|
|
1138
|
+
{ [_aQE]: [`InvalidConfigurationSet`, 400], [_e]: _c, [_hE]: 400 },
|
|
1139
|
+
[_m],
|
|
1140
|
+
[0]
|
|
1141
|
+
];
|
|
1142
|
+
n0_registry.registerError(InvalidConfigurationSetException$, InvalidConfigurationSetException);
|
|
1143
|
+
var InvalidDeliveryOptionsException$ = [-3, n0, _IDOE,
|
|
1144
|
+
{ [_aQE]: [`InvalidDeliveryOptions`, 400], [_e]: _c, [_hE]: 400 },
|
|
1145
|
+
[_m],
|
|
1146
|
+
[0]
|
|
1147
|
+
];
|
|
1148
|
+
n0_registry.registerError(InvalidDeliveryOptionsException$, InvalidDeliveryOptionsException);
|
|
1149
|
+
var InvalidFirehoseDestinationException$ = [-3, n0, _IFDE,
|
|
1150
|
+
{ [_aQE]: [`InvalidFirehoseDestination`, 400], [_e]: _c, [_hE]: 400 },
|
|
1151
|
+
[_CSN, _EDN, _m],
|
|
1152
|
+
[0, 0, 0]
|
|
1153
|
+
];
|
|
1154
|
+
n0_registry.registerError(InvalidFirehoseDestinationException$, InvalidFirehoseDestinationException);
|
|
1155
|
+
var InvalidLambdaFunctionException$ = [-3, n0, _ILFE,
|
|
1156
|
+
{ [_aQE]: [`InvalidLambdaFunction`, 400], [_e]: _c, [_hE]: 400 },
|
|
1157
|
+
[_FA, _m],
|
|
1158
|
+
[0, 0]
|
|
1159
|
+
];
|
|
1160
|
+
n0_registry.registerError(InvalidLambdaFunctionException$, InvalidLambdaFunctionException);
|
|
1161
|
+
var InvalidPolicyException$ = [-3, n0, _IPE,
|
|
1162
|
+
{ [_aQE]: [`InvalidPolicy`, 400], [_e]: _c, [_hE]: 400 },
|
|
1163
|
+
[_m],
|
|
1164
|
+
[0]
|
|
1165
|
+
];
|
|
1166
|
+
n0_registry.registerError(InvalidPolicyException$, InvalidPolicyException);
|
|
1167
|
+
var InvalidRenderingParameterException$ = [-3, n0, _IRPE,
|
|
1168
|
+
{ [_aQE]: [`InvalidRenderingParameter`, 400], [_e]: _c, [_hE]: 400 },
|
|
1169
|
+
[_TN, _m],
|
|
1170
|
+
[0, 0]
|
|
1171
|
+
];
|
|
1172
|
+
n0_registry.registerError(InvalidRenderingParameterException$, InvalidRenderingParameterException);
|
|
1173
|
+
var InvalidS3ConfigurationException$ = [-3, n0, _ISCE,
|
|
1174
|
+
{ [_aQE]: [`InvalidS3Configuration`, 400], [_e]: _c, [_hE]: 400 },
|
|
1175
|
+
[_B, _m],
|
|
1176
|
+
[0, 0]
|
|
1177
|
+
];
|
|
1178
|
+
n0_registry.registerError(InvalidS3ConfigurationException$, InvalidS3ConfigurationException);
|
|
1179
|
+
var InvalidSNSDestinationException$ = [-3, n0, _ISNSDE,
|
|
1180
|
+
{ [_aQE]: [`InvalidSNSDestination`, 400], [_e]: _c, [_hE]: 400 },
|
|
1181
|
+
[_CSN, _EDN, _m],
|
|
1182
|
+
[0, 0, 0]
|
|
1183
|
+
];
|
|
1184
|
+
n0_registry.registerError(InvalidSNSDestinationException$, InvalidSNSDestinationException);
|
|
1185
|
+
var InvalidSnsTopicException$ = [-3, n0, _ISTE,
|
|
1186
|
+
{ [_aQE]: [`InvalidSnsTopic`, 400], [_e]: _c, [_hE]: 400 },
|
|
1187
|
+
[_T, _m],
|
|
1188
|
+
[0, 0]
|
|
1189
|
+
];
|
|
1190
|
+
n0_registry.registerError(InvalidSnsTopicException$, InvalidSnsTopicException);
|
|
1191
|
+
var InvalidTemplateException$ = [-3, n0, _ITE,
|
|
1192
|
+
{ [_aQE]: [`InvalidTemplate`, 400], [_e]: _c, [_hE]: 400 },
|
|
1193
|
+
[_TN, _m],
|
|
1194
|
+
[0, 0]
|
|
1195
|
+
];
|
|
1196
|
+
n0_registry.registerError(InvalidTemplateException$, InvalidTemplateException);
|
|
1197
|
+
var InvalidTrackingOptionsException$ = [-3, n0, _ITOE,
|
|
1198
|
+
{ [_aQE]: [`InvalidTrackingOptions`, 400], [_e]: _c, [_hE]: 400 },
|
|
1199
|
+
[_m],
|
|
1200
|
+
[0]
|
|
1201
|
+
];
|
|
1202
|
+
n0_registry.registerError(InvalidTrackingOptionsException$, InvalidTrackingOptionsException);
|
|
1203
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1204
|
+
{ [_aQE]: [`LimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1205
|
+
[_m],
|
|
1206
|
+
[0]
|
|
1207
|
+
];
|
|
1208
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
1209
|
+
var MailFromDomainNotVerifiedException$ = [-3, n0, _MFDNVE,
|
|
1210
|
+
{ [_aQE]: [`MailFromDomainNotVerifiedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1211
|
+
[_m],
|
|
1212
|
+
[0]
|
|
1213
|
+
];
|
|
1214
|
+
n0_registry.registerError(MailFromDomainNotVerifiedException$, MailFromDomainNotVerifiedException);
|
|
1215
|
+
var MessageRejected$ = [-3, n0, _MR,
|
|
1216
|
+
{ [_aQE]: [`MessageRejected`, 400], [_e]: _c, [_hE]: 400 },
|
|
1217
|
+
[_m],
|
|
1218
|
+
[0]
|
|
1219
|
+
];
|
|
1220
|
+
n0_registry.registerError(MessageRejected$, MessageRejected);
|
|
1221
|
+
var MissingRenderingAttributeException$ = [-3, n0, _MRAE,
|
|
1222
|
+
{ [_aQE]: [`MissingRenderingAttribute`, 400], [_e]: _c, [_hE]: 400 },
|
|
1223
|
+
[_TN, _m],
|
|
1224
|
+
[0, 0]
|
|
1225
|
+
];
|
|
1226
|
+
n0_registry.registerError(MissingRenderingAttributeException$, MissingRenderingAttributeException);
|
|
1227
|
+
var ProductionAccessNotGrantedException$ = [-3, n0, _PANGE,
|
|
1228
|
+
{ [_aQE]: [`ProductionAccessNotGranted`, 400], [_e]: _c, [_hE]: 400 },
|
|
1229
|
+
[_m],
|
|
1230
|
+
[0]
|
|
1231
|
+
];
|
|
1232
|
+
n0_registry.registerError(ProductionAccessNotGrantedException$, ProductionAccessNotGrantedException);
|
|
1233
|
+
var RuleDoesNotExistException$ = [-3, n0, _RDNEE,
|
|
1234
|
+
{ [_aQE]: [`RuleDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1235
|
+
[_N, _m],
|
|
1236
|
+
[0, 0]
|
|
1237
|
+
];
|
|
1238
|
+
n0_registry.registerError(RuleDoesNotExistException$, RuleDoesNotExistException);
|
|
1239
|
+
var RuleSetDoesNotExistException$ = [-3, n0, _RSDNEE,
|
|
1240
|
+
{ [_aQE]: [`RuleSetDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1241
|
+
[_N, _m],
|
|
1242
|
+
[0, 0]
|
|
1243
|
+
];
|
|
1244
|
+
n0_registry.registerError(RuleSetDoesNotExistException$, RuleSetDoesNotExistException);
|
|
1245
|
+
var TemplateDoesNotExistException$ = [-3, n0, _TDNEE,
|
|
1246
|
+
{ [_aQE]: [`TemplateDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1247
|
+
[_TN, _m],
|
|
1248
|
+
[0, 0]
|
|
1249
|
+
];
|
|
1250
|
+
n0_registry.registerError(TemplateDoesNotExistException$, TemplateDoesNotExistException);
|
|
1251
|
+
var TrackingOptionsAlreadyExistsException$ = [-3, n0, _TOAEE,
|
|
1252
|
+
{ [_aQE]: [`TrackingOptionsAlreadyExistsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1253
|
+
[_CSN, _m],
|
|
1254
|
+
[0, 0]
|
|
1255
|
+
];
|
|
1256
|
+
n0_registry.registerError(TrackingOptionsAlreadyExistsException$, TrackingOptionsAlreadyExistsException);
|
|
1257
|
+
var TrackingOptionsDoesNotExistException$ = [-3, n0, _TODNEE,
|
|
1258
|
+
{ [_aQE]: [`TrackingOptionsDoesNotExistException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1259
|
+
[_CSN, _m],
|
|
1260
|
+
[0, 0]
|
|
1261
|
+
];
|
|
1262
|
+
n0_registry.registerError(TrackingOptionsDoesNotExistException$, TrackingOptionsDoesNotExistException);
|
|
1263
|
+
const errorTypeRegistries = [
|
|
1264
|
+
_s_registry,
|
|
1265
|
+
n0_registry,
|
|
1266
|
+
];
|
|
1267
|
+
var AddHeaderAction$ = [3, n0, _AHA,
|
|
1268
|
+
0,
|
|
1269
|
+
[_HN, _HV],
|
|
1270
|
+
[0, 0], 2
|
|
1271
|
+
];
|
|
1272
|
+
var Body$ = [3, n0, _Bo,
|
|
1273
|
+
0,
|
|
1274
|
+
[_Te, _H],
|
|
1275
|
+
[() => Content$, () => Content$]
|
|
1276
|
+
];
|
|
1277
|
+
var BounceAction$ = [3, n0, _BA,
|
|
1278
|
+
0,
|
|
1279
|
+
[_SRC, _M, _S, _TA, _SC],
|
|
1280
|
+
[0, 0, 0, 0, 0], 3
|
|
1281
|
+
];
|
|
1282
|
+
var BouncedRecipientInfo$ = [3, n0, _BRI,
|
|
1283
|
+
0,
|
|
1284
|
+
[_R, _RA, _BT, _RDF],
|
|
1285
|
+
[0, 0, 0, () => RecipientDsnFields$], 1
|
|
1286
|
+
];
|
|
1287
|
+
var BulkEmailDestination$ = [3, n0, _BED,
|
|
1288
|
+
0,
|
|
1289
|
+
[_D, _RT, _RTD],
|
|
1290
|
+
[() => Destination$, () => MessageTagList, 0], 1
|
|
1291
|
+
];
|
|
1292
|
+
var BulkEmailDestinationStatus$ = [3, n0, _BEDS,
|
|
1293
|
+
0,
|
|
1294
|
+
[_St, _E, _MI],
|
|
1295
|
+
[0, 0, 0]
|
|
1296
|
+
];
|
|
1297
|
+
var CloneReceiptRuleSetRequest$ = [3, n0, _CRRSR,
|
|
1298
|
+
0,
|
|
1299
|
+
[_RSN, _ORSN],
|
|
1300
|
+
[0, 0], 2
|
|
1301
|
+
];
|
|
1302
|
+
var CloneReceiptRuleSetResponse$ = [3, n0, _CRRSRl,
|
|
1303
|
+
0,
|
|
1304
|
+
[],
|
|
1305
|
+
[]
|
|
1306
|
+
];
|
|
1307
|
+
var CloudWatchDestination$ = [3, n0, _CWD,
|
|
1308
|
+
0,
|
|
1309
|
+
[_DC],
|
|
1310
|
+
[() => CloudWatchDimensionConfigurations], 1
|
|
1311
|
+
];
|
|
1312
|
+
var CloudWatchDimensionConfiguration$ = [3, n0, _CWDC,
|
|
1313
|
+
0,
|
|
1314
|
+
[_DN, _DVS, _DDV],
|
|
1315
|
+
[0, 0, 0], 3
|
|
1316
|
+
];
|
|
1317
|
+
var ConfigurationSet$ = [3, n0, _CS,
|
|
1318
|
+
0,
|
|
1319
|
+
[_N],
|
|
1320
|
+
[0], 1
|
|
1321
|
+
];
|
|
1322
|
+
var ConnectAction$ = [3, n0, _CA,
|
|
1323
|
+
0,
|
|
1324
|
+
[_IARN, _IAMRARN],
|
|
1325
|
+
[0, 0], 2
|
|
1326
|
+
];
|
|
1327
|
+
var Content$ = [3, n0, _C,
|
|
1328
|
+
0,
|
|
1329
|
+
[_Da, _Ch],
|
|
1330
|
+
[0, 0], 1
|
|
1331
|
+
];
|
|
1332
|
+
var CreateConfigurationSetEventDestinationRequest$ = [3, n0, _CCSEDR,
|
|
1333
|
+
0,
|
|
1334
|
+
[_CSN, _ED],
|
|
1335
|
+
[0, () => EventDestination$], 2
|
|
1336
|
+
];
|
|
1337
|
+
var CreateConfigurationSetEventDestinationResponse$ = [3, n0, _CCSEDRr,
|
|
1338
|
+
0,
|
|
1339
|
+
[],
|
|
1340
|
+
[]
|
|
1341
|
+
];
|
|
1342
|
+
var CreateConfigurationSetRequest$ = [3, n0, _CCSR,
|
|
1343
|
+
0,
|
|
1344
|
+
[_CS],
|
|
1345
|
+
[() => ConfigurationSet$], 1
|
|
1346
|
+
];
|
|
1347
|
+
var CreateConfigurationSetResponse$ = [3, n0, _CCSRr,
|
|
1348
|
+
0,
|
|
1349
|
+
[],
|
|
1350
|
+
[]
|
|
1351
|
+
];
|
|
1352
|
+
var CreateConfigurationSetTrackingOptionsRequest$ = [3, n0, _CCSTOR,
|
|
1353
|
+
0,
|
|
1354
|
+
[_CSN, _TO],
|
|
1355
|
+
[0, () => TrackingOptions$], 2
|
|
1356
|
+
];
|
|
1357
|
+
var CreateConfigurationSetTrackingOptionsResponse$ = [3, n0, _CCSTORr,
|
|
1358
|
+
0,
|
|
1359
|
+
[],
|
|
1360
|
+
[]
|
|
1361
|
+
];
|
|
1362
|
+
var CreateCustomVerificationEmailTemplateRequest$ = [3, n0, _CCVETR,
|
|
1363
|
+
0,
|
|
1364
|
+
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL],
|
|
1365
|
+
[0, 0, 0, 0, 0, 0], 6
|
|
1366
|
+
];
|
|
1367
|
+
var CreateReceiptFilterRequest$ = [3, n0, _CRFR,
|
|
1368
|
+
0,
|
|
1369
|
+
[_F],
|
|
1370
|
+
[() => ReceiptFilter$], 1
|
|
1371
|
+
];
|
|
1372
|
+
var CreateReceiptFilterResponse$ = [3, n0, _CRFRr,
|
|
1373
|
+
0,
|
|
1374
|
+
[],
|
|
1375
|
+
[]
|
|
1376
|
+
];
|
|
1377
|
+
var CreateReceiptRuleRequest$ = [3, n0, _CRRR,
|
|
1378
|
+
0,
|
|
1379
|
+
[_RSN, _Ru, _A],
|
|
1380
|
+
[0, () => ReceiptRule$, 0], 2
|
|
1381
|
+
];
|
|
1382
|
+
var CreateReceiptRuleResponse$ = [3, n0, _CRRRr,
|
|
1383
|
+
0,
|
|
1384
|
+
[],
|
|
1385
|
+
[]
|
|
1386
|
+
];
|
|
1387
|
+
var CreateReceiptRuleSetRequest$ = [3, n0, _CRRSRr,
|
|
1388
|
+
0,
|
|
1389
|
+
[_RSN],
|
|
1390
|
+
[0], 1
|
|
1391
|
+
];
|
|
1392
|
+
var CreateReceiptRuleSetResponse$ = [3, n0, _CRRSRre,
|
|
1393
|
+
0,
|
|
1394
|
+
[],
|
|
1395
|
+
[]
|
|
1396
|
+
];
|
|
1397
|
+
var CreateTemplateRequest$ = [3, n0, _CTR,
|
|
1398
|
+
0,
|
|
1399
|
+
[_Tem],
|
|
1400
|
+
[() => Template$], 1
|
|
1401
|
+
];
|
|
1402
|
+
var CreateTemplateResponse$ = [3, n0, _CTRr,
|
|
1403
|
+
0,
|
|
1404
|
+
[],
|
|
1405
|
+
[]
|
|
1406
|
+
];
|
|
1407
|
+
var CustomVerificationEmailTemplate$ = [3, n0, _CVET,
|
|
1408
|
+
0,
|
|
1409
|
+
[_TN, _FEA, _TS, _SRURL, _FRURL],
|
|
1410
|
+
[0, 0, 0, 0, 0]
|
|
1411
|
+
];
|
|
1412
|
+
var DeleteConfigurationSetEventDestinationRequest$ = [3, n0, _DCSEDR,
|
|
1413
|
+
0,
|
|
1414
|
+
[_CSN, _EDN],
|
|
1415
|
+
[0, 0], 2
|
|
1416
|
+
];
|
|
1417
|
+
var DeleteConfigurationSetEventDestinationResponse$ = [3, n0, _DCSEDRe,
|
|
1418
|
+
0,
|
|
1419
|
+
[],
|
|
1420
|
+
[]
|
|
1421
|
+
];
|
|
1422
|
+
var DeleteConfigurationSetRequest$ = [3, n0, _DCSR,
|
|
1423
|
+
0,
|
|
1424
|
+
[_CSN],
|
|
1425
|
+
[0], 1
|
|
1426
|
+
];
|
|
1427
|
+
var DeleteConfigurationSetResponse$ = [3, n0, _DCSRe,
|
|
1428
|
+
0,
|
|
1429
|
+
[],
|
|
1430
|
+
[]
|
|
1431
|
+
];
|
|
1432
|
+
var DeleteConfigurationSetTrackingOptionsRequest$ = [3, n0, _DCSTOR,
|
|
1433
|
+
0,
|
|
1434
|
+
[_CSN],
|
|
1435
|
+
[0], 1
|
|
1436
|
+
];
|
|
1437
|
+
var DeleteConfigurationSetTrackingOptionsResponse$ = [3, n0, _DCSTORe,
|
|
1438
|
+
0,
|
|
1439
|
+
[],
|
|
1440
|
+
[]
|
|
1441
|
+
];
|
|
1442
|
+
var DeleteCustomVerificationEmailTemplateRequest$ = [3, n0, _DCVETR,
|
|
1443
|
+
0,
|
|
1444
|
+
[_TN],
|
|
1445
|
+
[0], 1
|
|
1446
|
+
];
|
|
1447
|
+
var DeleteIdentityPolicyRequest$ = [3, n0, _DIPR,
|
|
1448
|
+
0,
|
|
1449
|
+
[_I, _PN],
|
|
1450
|
+
[0, 0], 2
|
|
1451
|
+
];
|
|
1452
|
+
var DeleteIdentityPolicyResponse$ = [3, n0, _DIPRe,
|
|
1453
|
+
0,
|
|
1454
|
+
[],
|
|
1455
|
+
[]
|
|
1456
|
+
];
|
|
1457
|
+
var DeleteIdentityRequest$ = [3, n0, _DIR,
|
|
1458
|
+
0,
|
|
1459
|
+
[_I],
|
|
1460
|
+
[0], 1
|
|
1461
|
+
];
|
|
1462
|
+
var DeleteIdentityResponse$ = [3, n0, _DIRe,
|
|
1463
|
+
0,
|
|
1464
|
+
[],
|
|
1465
|
+
[]
|
|
1466
|
+
];
|
|
1467
|
+
var DeleteReceiptFilterRequest$ = [3, n0, _DRFR,
|
|
1468
|
+
0,
|
|
1469
|
+
[_FN],
|
|
1470
|
+
[0], 1
|
|
1471
|
+
];
|
|
1472
|
+
var DeleteReceiptFilterResponse$ = [3, n0, _DRFRe,
|
|
1473
|
+
0,
|
|
1474
|
+
[],
|
|
1475
|
+
[]
|
|
1476
|
+
];
|
|
1477
|
+
var DeleteReceiptRuleRequest$ = [3, n0, _DRRR,
|
|
1478
|
+
0,
|
|
1479
|
+
[_RSN, _RN],
|
|
1480
|
+
[0, 0], 2
|
|
1481
|
+
];
|
|
1482
|
+
var DeleteReceiptRuleResponse$ = [3, n0, _DRRRe,
|
|
1483
|
+
0,
|
|
1484
|
+
[],
|
|
1485
|
+
[]
|
|
1486
|
+
];
|
|
1487
|
+
var DeleteReceiptRuleSetRequest$ = [3, n0, _DRRSR,
|
|
1488
|
+
0,
|
|
1489
|
+
[_RSN],
|
|
1490
|
+
[0], 1
|
|
1491
|
+
];
|
|
1492
|
+
var DeleteReceiptRuleSetResponse$ = [3, n0, _DRRSRe,
|
|
1493
|
+
0,
|
|
1494
|
+
[],
|
|
1495
|
+
[]
|
|
1496
|
+
];
|
|
1497
|
+
var DeleteTemplateRequest$ = [3, n0, _DTR,
|
|
1498
|
+
0,
|
|
1499
|
+
[_TN],
|
|
1500
|
+
[0], 1
|
|
1501
|
+
];
|
|
1502
|
+
var DeleteTemplateResponse$ = [3, n0, _DTRe,
|
|
1503
|
+
0,
|
|
1504
|
+
[],
|
|
1505
|
+
[]
|
|
1506
|
+
];
|
|
1507
|
+
var DeleteVerifiedEmailAddressRequest$ = [3, n0, _DVEAR,
|
|
1508
|
+
0,
|
|
1509
|
+
[_EA],
|
|
1510
|
+
[0], 1
|
|
1511
|
+
];
|
|
1512
|
+
var DeliveryOptions$ = [3, n0, _DO,
|
|
1513
|
+
0,
|
|
1514
|
+
[_TP],
|
|
1515
|
+
[0]
|
|
1516
|
+
];
|
|
1517
|
+
var DescribeActiveReceiptRuleSetRequest$ = [3, n0, _DARRSR,
|
|
1518
|
+
0,
|
|
1519
|
+
[],
|
|
1520
|
+
[]
|
|
1521
|
+
];
|
|
1522
|
+
var DescribeActiveReceiptRuleSetResponse$ = [3, n0, _DARRSRe,
|
|
1523
|
+
0,
|
|
1524
|
+
[_Me, _Rul],
|
|
1525
|
+
[() => ReceiptRuleSetMetadata$, () => ReceiptRulesList]
|
|
1526
|
+
];
|
|
1527
|
+
var DescribeConfigurationSetRequest$ = [3, n0, _DCSRes,
|
|
1528
|
+
0,
|
|
1529
|
+
[_CSN, _CSAN],
|
|
1530
|
+
[0, 64 | 0], 1
|
|
1531
|
+
];
|
|
1532
|
+
var DescribeConfigurationSetResponse$ = [3, n0, _DCSResc,
|
|
1533
|
+
0,
|
|
1534
|
+
[_CS, _EDv, _TO, _DO, _RO],
|
|
1535
|
+
[() => ConfigurationSet$, () => EventDestinations, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$]
|
|
1536
|
+
];
|
|
1537
|
+
var DescribeReceiptRuleRequest$ = [3, n0, _DRRRes,
|
|
1538
|
+
0,
|
|
1539
|
+
[_RSN, _RN],
|
|
1540
|
+
[0, 0], 2
|
|
1541
|
+
];
|
|
1542
|
+
var DescribeReceiptRuleResponse$ = [3, n0, _DRRResc,
|
|
1543
|
+
0,
|
|
1544
|
+
[_Ru],
|
|
1545
|
+
[() => ReceiptRule$]
|
|
1546
|
+
];
|
|
1547
|
+
var DescribeReceiptRuleSetRequest$ = [3, n0, _DRRSRes,
|
|
1548
|
+
0,
|
|
1549
|
+
[_RSN],
|
|
1550
|
+
[0], 1
|
|
1551
|
+
];
|
|
1552
|
+
var DescribeReceiptRuleSetResponse$ = [3, n0, _DRRSResc,
|
|
1553
|
+
0,
|
|
1554
|
+
[_Me, _Rul],
|
|
1555
|
+
[() => ReceiptRuleSetMetadata$, () => ReceiptRulesList]
|
|
1556
|
+
];
|
|
1557
|
+
var Destination$ = [3, n0, _D,
|
|
1558
|
+
0,
|
|
1559
|
+
[_TAo, _CAc, _BAc],
|
|
1560
|
+
[64 | 0, 64 | 0, 64 | 0]
|
|
1561
|
+
];
|
|
1562
|
+
var EventDestination$ = [3, n0, _ED,
|
|
1563
|
+
0,
|
|
1564
|
+
[_N, _MET, _En, _KFD, _CWD, _SNSD],
|
|
1565
|
+
[0, 64 | 0, 2, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SNSDestination$], 2
|
|
1566
|
+
];
|
|
1567
|
+
var ExtensionField$ = [3, n0, _EF,
|
|
1568
|
+
0,
|
|
1569
|
+
[_N, _V],
|
|
1570
|
+
[0, 0], 2
|
|
1571
|
+
];
|
|
1572
|
+
var GetAccountSendingEnabledResponse$ = [3, n0, _GASER,
|
|
1573
|
+
0,
|
|
1574
|
+
[_En],
|
|
1575
|
+
[2]
|
|
1576
|
+
];
|
|
1577
|
+
var GetCustomVerificationEmailTemplateRequest$ = [3, n0, _GCVETR,
|
|
1578
|
+
0,
|
|
1579
|
+
[_TN],
|
|
1580
|
+
[0], 1
|
|
1581
|
+
];
|
|
1582
|
+
var GetCustomVerificationEmailTemplateResponse$ = [3, n0, _GCVETRe,
|
|
1583
|
+
0,
|
|
1584
|
+
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL],
|
|
1585
|
+
[0, 0, 0, 0, 0, 0]
|
|
1586
|
+
];
|
|
1587
|
+
var GetIdentityDkimAttributesRequest$ = [3, n0, _GIDAR,
|
|
1588
|
+
0,
|
|
1589
|
+
[_Id],
|
|
1590
|
+
[64 | 0], 1
|
|
1591
|
+
];
|
|
1592
|
+
var GetIdentityDkimAttributesResponse$ = [3, n0, _GIDARe,
|
|
1593
|
+
0,
|
|
1594
|
+
[_DA],
|
|
1595
|
+
[() => DkimAttributes], 1
|
|
1596
|
+
];
|
|
1597
|
+
var GetIdentityMailFromDomainAttributesRequest$ = [3, n0, _GIMFDAR,
|
|
1598
|
+
0,
|
|
1599
|
+
[_Id],
|
|
1600
|
+
[64 | 0], 1
|
|
1601
|
+
];
|
|
1602
|
+
var GetIdentityMailFromDomainAttributesResponse$ = [3, n0, _GIMFDARe,
|
|
1603
|
+
0,
|
|
1604
|
+
[_MFDA],
|
|
1605
|
+
[() => MailFromDomainAttributes], 1
|
|
1606
|
+
];
|
|
1607
|
+
var GetIdentityNotificationAttributesRequest$ = [3, n0, _GINAR,
|
|
1608
|
+
0,
|
|
1609
|
+
[_Id],
|
|
1610
|
+
[64 | 0], 1
|
|
1611
|
+
];
|
|
1612
|
+
var GetIdentityNotificationAttributesResponse$ = [3, n0, _GINARe,
|
|
1613
|
+
0,
|
|
1614
|
+
[_NA],
|
|
1615
|
+
[() => NotificationAttributes], 1
|
|
1616
|
+
];
|
|
1617
|
+
var GetIdentityPoliciesRequest$ = [3, n0, _GIPR,
|
|
1618
|
+
0,
|
|
1619
|
+
[_I, _PNo],
|
|
1620
|
+
[0, 64 | 0], 2
|
|
1621
|
+
];
|
|
1622
|
+
var GetIdentityPoliciesResponse$ = [3, n0, _GIPRe,
|
|
1623
|
+
0,
|
|
1624
|
+
[_P],
|
|
1625
|
+
[128 | 0], 1
|
|
1626
|
+
];
|
|
1627
|
+
var GetIdentityVerificationAttributesRequest$ = [3, n0, _GIVAR,
|
|
1628
|
+
0,
|
|
1629
|
+
[_Id],
|
|
1630
|
+
[64 | 0], 1
|
|
1631
|
+
];
|
|
1632
|
+
var GetIdentityVerificationAttributesResponse$ = [3, n0, _GIVARe,
|
|
1633
|
+
0,
|
|
1634
|
+
[_VA],
|
|
1635
|
+
[() => VerificationAttributes], 1
|
|
1636
|
+
];
|
|
1637
|
+
var GetSendQuotaResponse$ = [3, n0, _GSQR,
|
|
1638
|
+
0,
|
|
1639
|
+
[_MHS, _MSR, _SLH],
|
|
1640
|
+
[1, 1, 1]
|
|
1641
|
+
];
|
|
1642
|
+
var GetSendStatisticsResponse$ = [3, n0, _GSSR,
|
|
1643
|
+
0,
|
|
1644
|
+
[_SDP],
|
|
1645
|
+
[() => SendDataPointList]
|
|
1646
|
+
];
|
|
1647
|
+
var GetTemplateRequest$ = [3, n0, _GTR,
|
|
1648
|
+
0,
|
|
1649
|
+
[_TN],
|
|
1650
|
+
[0], 1
|
|
1651
|
+
];
|
|
1652
|
+
var GetTemplateResponse$ = [3, n0, _GTRe,
|
|
1653
|
+
0,
|
|
1654
|
+
[_Tem],
|
|
1655
|
+
[() => Template$]
|
|
1656
|
+
];
|
|
1657
|
+
var IdentityDkimAttributes$ = [3, n0, _IDA,
|
|
1658
|
+
0,
|
|
1659
|
+
[_DE, _DVSk, _DT],
|
|
1660
|
+
[2, 0, 64 | 0], 2
|
|
1661
|
+
];
|
|
1662
|
+
var IdentityMailFromDomainAttributes$ = [3, n0, _IMFDA,
|
|
1663
|
+
0,
|
|
1664
|
+
[_MFD, _MFDS, _BOMXF],
|
|
1665
|
+
[0, 0, 0], 3
|
|
1666
|
+
];
|
|
1667
|
+
var IdentityNotificationAttributes$ = [3, n0, _INA,
|
|
1668
|
+
0,
|
|
1669
|
+
[_BTo, _CT, _DTe, _FE, _HIBNE, _HICNE, _HIDNE],
|
|
1670
|
+
[0, 0, 0, 2, 2, 2, 2], 4
|
|
1671
|
+
];
|
|
1672
|
+
var IdentityVerificationAttributes$ = [3, n0, _IVA,
|
|
1673
|
+
0,
|
|
1674
|
+
[_VS, _VT],
|
|
1675
|
+
[0, 0], 1
|
|
1676
|
+
];
|
|
1677
|
+
var KinesisFirehoseDestination$ = [3, n0, _KFD,
|
|
1678
|
+
0,
|
|
1679
|
+
[_IAMRARN, _DSARN],
|
|
1680
|
+
[0, 0], 2
|
|
1681
|
+
];
|
|
1682
|
+
var LambdaAction$ = [3, n0, _LA,
|
|
1683
|
+
0,
|
|
1684
|
+
[_FA, _TA, _IT],
|
|
1685
|
+
[0, 0, 0], 1
|
|
1686
|
+
];
|
|
1687
|
+
var ListConfigurationSetsRequest$ = [3, n0, _LCSR,
|
|
1688
|
+
0,
|
|
1689
|
+
[_NT, _MIa],
|
|
1690
|
+
[0, 1]
|
|
1691
|
+
];
|
|
1692
|
+
var ListConfigurationSetsResponse$ = [3, n0, _LCSRi,
|
|
1693
|
+
0,
|
|
1694
|
+
[_CSo, _NT],
|
|
1695
|
+
[() => ConfigurationSets, 0]
|
|
1696
|
+
];
|
|
1697
|
+
var ListCustomVerificationEmailTemplatesRequest$ = [3, n0, _LCVETR,
|
|
1698
|
+
0,
|
|
1699
|
+
[_NT, _MRa],
|
|
1700
|
+
[0, 1]
|
|
1701
|
+
];
|
|
1702
|
+
var ListCustomVerificationEmailTemplatesResponse$ = [3, n0, _LCVETRi,
|
|
1703
|
+
0,
|
|
1704
|
+
[_CVETu, _NT],
|
|
1705
|
+
[() => CustomVerificationEmailTemplates, 0]
|
|
1706
|
+
];
|
|
1707
|
+
var ListIdentitiesRequest$ = [3, n0, _LIR,
|
|
1708
|
+
0,
|
|
1709
|
+
[_ITd, _NT, _MIa],
|
|
1710
|
+
[0, 0, 1]
|
|
1711
|
+
];
|
|
1712
|
+
var ListIdentitiesResponse$ = [3, n0, _LIRi,
|
|
1713
|
+
0,
|
|
1714
|
+
[_Id, _NT],
|
|
1715
|
+
[64 | 0, 0], 1
|
|
1716
|
+
];
|
|
1717
|
+
var ListIdentityPoliciesRequest$ = [3, n0, _LIPR,
|
|
1718
|
+
0,
|
|
1719
|
+
[_I],
|
|
1720
|
+
[0], 1
|
|
1721
|
+
];
|
|
1722
|
+
var ListIdentityPoliciesResponse$ = [3, n0, _LIPRi,
|
|
1723
|
+
0,
|
|
1724
|
+
[_PNo],
|
|
1725
|
+
[64 | 0], 1
|
|
1726
|
+
];
|
|
1727
|
+
var ListReceiptFiltersRequest$ = [3, n0, _LRFR,
|
|
1728
|
+
0,
|
|
1729
|
+
[],
|
|
1730
|
+
[]
|
|
1731
|
+
];
|
|
1732
|
+
var ListReceiptFiltersResponse$ = [3, n0, _LRFRi,
|
|
1733
|
+
0,
|
|
1734
|
+
[_Fi],
|
|
1735
|
+
[() => ReceiptFilterList]
|
|
1736
|
+
];
|
|
1737
|
+
var ListReceiptRuleSetsRequest$ = [3, n0, _LRRSR,
|
|
1738
|
+
0,
|
|
1739
|
+
[_NT],
|
|
1740
|
+
[0]
|
|
1741
|
+
];
|
|
1742
|
+
var ListReceiptRuleSetsResponse$ = [3, n0, _LRRSRi,
|
|
1743
|
+
0,
|
|
1744
|
+
[_RS, _NT],
|
|
1745
|
+
[() => ReceiptRuleSetsLists, 0]
|
|
1746
|
+
];
|
|
1747
|
+
var ListTemplatesRequest$ = [3, n0, _LTR,
|
|
1748
|
+
0,
|
|
1749
|
+
[_NT, _MIa],
|
|
1750
|
+
[0, 1]
|
|
1751
|
+
];
|
|
1752
|
+
var ListTemplatesResponse$ = [3, n0, _LTRi,
|
|
1753
|
+
0,
|
|
1754
|
+
[_TM, _NT],
|
|
1755
|
+
[() => TemplateMetadataList, 0]
|
|
1756
|
+
];
|
|
1757
|
+
var ListVerifiedEmailAddressesResponse$ = [3, n0, _LVEAR,
|
|
1758
|
+
0,
|
|
1759
|
+
[_VEA],
|
|
1760
|
+
[64 | 0]
|
|
1761
|
+
];
|
|
1762
|
+
var Message$ = [3, n0, _M,
|
|
1763
|
+
0,
|
|
1764
|
+
[_Su, _Bo],
|
|
1765
|
+
[() => Content$, () => Body$], 2
|
|
1766
|
+
];
|
|
1767
|
+
var MessageDsn$ = [3, n0, _MD,
|
|
1768
|
+
0,
|
|
1769
|
+
[_RM, _AD, _EFx],
|
|
1770
|
+
[0, 4, () => ExtensionFieldList], 1
|
|
1771
|
+
];
|
|
1772
|
+
var MessageTag$ = [3, n0, _MT,
|
|
1773
|
+
0,
|
|
1774
|
+
[_N, _V],
|
|
1775
|
+
[0, 0], 2
|
|
1776
|
+
];
|
|
1777
|
+
var PutConfigurationSetDeliveryOptionsRequest$ = [3, n0, _PCSDOR,
|
|
1778
|
+
0,
|
|
1779
|
+
[_CSN, _DO],
|
|
1780
|
+
[0, () => DeliveryOptions$], 1
|
|
1781
|
+
];
|
|
1782
|
+
var PutConfigurationSetDeliveryOptionsResponse$ = [3, n0, _PCSDORu,
|
|
1783
|
+
0,
|
|
1784
|
+
[],
|
|
1785
|
+
[]
|
|
1786
|
+
];
|
|
1787
|
+
var PutIdentityPolicyRequest$ = [3, n0, _PIPR,
|
|
1788
|
+
0,
|
|
1789
|
+
[_I, _PN, _Po],
|
|
1790
|
+
[0, 0, 0], 3
|
|
1791
|
+
];
|
|
1792
|
+
var PutIdentityPolicyResponse$ = [3, n0, _PIPRu,
|
|
1793
|
+
0,
|
|
1794
|
+
[],
|
|
1795
|
+
[]
|
|
1796
|
+
];
|
|
1797
|
+
var RawMessage$ = [3, n0, _RMa,
|
|
1798
|
+
0,
|
|
1799
|
+
[_Da],
|
|
1800
|
+
[21], 1
|
|
1801
|
+
];
|
|
1802
|
+
var ReceiptAction$ = [3, n0, _RAe,
|
|
1803
|
+
0,
|
|
1804
|
+
[_SA, _BA, _WA, _LA, _SAt, _AHA, _SNSA, _CA],
|
|
1805
|
+
[() => S3Action$, () => BounceAction$, () => WorkmailAction$, () => LambdaAction$, () => StopAction$, () => AddHeaderAction$, () => SNSAction$, () => ConnectAction$]
|
|
1806
|
+
];
|
|
1807
|
+
var ReceiptFilter$ = [3, n0, _RF,
|
|
1808
|
+
0,
|
|
1809
|
+
[_N, _IF],
|
|
1810
|
+
[0, () => ReceiptIpFilter$], 2
|
|
1811
|
+
];
|
|
1812
|
+
var ReceiptIpFilter$ = [3, n0, _RIF,
|
|
1813
|
+
0,
|
|
1814
|
+
[_Po, _Ci],
|
|
1815
|
+
[0, 0], 2
|
|
1816
|
+
];
|
|
1817
|
+
var ReceiptRule$ = [3, n0, _RR,
|
|
1818
|
+
0,
|
|
1819
|
+
[_N, _En, _TP, _Re, _Ac, _SE],
|
|
1820
|
+
[0, 2, 0, 64 | 0, () => ReceiptActionsList, 2], 1
|
|
1821
|
+
];
|
|
1822
|
+
var ReceiptRuleSetMetadata$ = [3, n0, _RRSM,
|
|
1823
|
+
0,
|
|
1824
|
+
[_N, _CTr],
|
|
1825
|
+
[0, 4]
|
|
1826
|
+
];
|
|
1827
|
+
var RecipientDsnFields$ = [3, n0, _RDF,
|
|
1828
|
+
0,
|
|
1829
|
+
[_Act, _St, _FR, _RMe, _DCi, _LAD, _EFx],
|
|
1830
|
+
[0, 0, 0, 0, 0, 4, () => ExtensionFieldList], 2
|
|
1831
|
+
];
|
|
1832
|
+
var ReorderReceiptRuleSetRequest$ = [3, n0, _RRRSR,
|
|
1833
|
+
0,
|
|
1834
|
+
[_RSN, _RNu],
|
|
1835
|
+
[0, 64 | 0], 2
|
|
1836
|
+
];
|
|
1837
|
+
var ReorderReceiptRuleSetResponse$ = [3, n0, _RRRSRe,
|
|
1838
|
+
0,
|
|
1839
|
+
[],
|
|
1840
|
+
[]
|
|
1841
|
+
];
|
|
1842
|
+
var ReputationOptions$ = [3, n0, _RO,
|
|
1843
|
+
0,
|
|
1844
|
+
[_SEe, _RME, _LFS],
|
|
1845
|
+
[2, 2, 4]
|
|
1846
|
+
];
|
|
1847
|
+
var S3Action$ = [3, n0, _SA,
|
|
1848
|
+
0,
|
|
1849
|
+
[_BN, _TA, _OKP, _KKA, _IRA],
|
|
1850
|
+
[0, 0, 0, 0, 0], 1
|
|
1851
|
+
];
|
|
1852
|
+
var SendBounceRequest$ = [3, n0, _SBR,
|
|
1853
|
+
0,
|
|
1854
|
+
[_OMI, _BS, _BRIL, _Ex, _MD, _BSA],
|
|
1855
|
+
[0, 0, () => BouncedRecipientInfoList, 0, () => MessageDsn$, 0], 3
|
|
1856
|
+
];
|
|
1857
|
+
var SendBounceResponse$ = [3, n0, _SBRe,
|
|
1858
|
+
0,
|
|
1859
|
+
[_MI],
|
|
1860
|
+
[0]
|
|
1861
|
+
];
|
|
1862
|
+
var SendBulkTemplatedEmailRequest$ = [3, n0, _SBTER,
|
|
1863
|
+
0,
|
|
1864
|
+
[_So, _Tem, _DTD, _De, _SAo, _RTA, _RP, _RPA, _CSN, _DTef, _TAe],
|
|
1865
|
+
[0, 0, 0, () => BulkEmailDestinationList, 0, 64 | 0, 0, 0, 0, () => MessageTagList, 0], 4
|
|
1866
|
+
];
|
|
1867
|
+
var SendBulkTemplatedEmailResponse$ = [3, n0, _SBTERe,
|
|
1868
|
+
0,
|
|
1869
|
+
[_St],
|
|
1870
|
+
[() => BulkEmailDestinationStatusList], 1
|
|
1871
|
+
];
|
|
1872
|
+
var SendCustomVerificationEmailRequest$ = [3, n0, _SCVER,
|
|
1873
|
+
0,
|
|
1874
|
+
[_EA, _TN, _CSN],
|
|
1875
|
+
[0, 0, 0], 2
|
|
1876
|
+
];
|
|
1877
|
+
var SendCustomVerificationEmailResponse$ = [3, n0, _SCVERe,
|
|
1878
|
+
0,
|
|
1879
|
+
[_MI],
|
|
1880
|
+
[0]
|
|
1881
|
+
];
|
|
1882
|
+
var SendDataPoint$ = [3, n0, _SDPe,
|
|
1883
|
+
0,
|
|
1884
|
+
[_Ti, _DAe, _Bou, _Co, _Rej],
|
|
1885
|
+
[4, 1, 1, 1, 1]
|
|
1886
|
+
];
|
|
1887
|
+
var SendEmailRequest$ = [3, n0, _SER,
|
|
1888
|
+
0,
|
|
1889
|
+
[_So, _D, _M, _RTA, _RP, _SAo, _RPA, _Ta, _CSN],
|
|
1890
|
+
[0, () => Destination$, () => Message$, 64 | 0, 0, 0, 0, () => MessageTagList, 0], 3
|
|
1891
|
+
];
|
|
1892
|
+
var SendEmailResponse$ = [3, n0, _SERe,
|
|
1893
|
+
0,
|
|
1894
|
+
[_MI],
|
|
1895
|
+
[0], 1
|
|
1896
|
+
];
|
|
1897
|
+
var SendRawEmailRequest$ = [3, n0, _SRER,
|
|
1898
|
+
0,
|
|
1899
|
+
[_RMa, _So, _De, _FAr, _SAo, _RPA, _Ta, _CSN],
|
|
1900
|
+
[() => RawMessage$, 0, 64 | 0, 0, 0, 0, () => MessageTagList, 0], 1
|
|
1901
|
+
];
|
|
1902
|
+
var SendRawEmailResponse$ = [3, n0, _SRERe,
|
|
1903
|
+
0,
|
|
1904
|
+
[_MI],
|
|
1905
|
+
[0], 1
|
|
1906
|
+
];
|
|
1907
|
+
var SendTemplatedEmailRequest$ = [3, n0, _STER,
|
|
1908
|
+
0,
|
|
1909
|
+
[_So, _D, _Tem, _TD, _RTA, _RP, _SAo, _RPA, _Ta, _CSN, _TAe],
|
|
1910
|
+
[0, () => Destination$, 0, 0, 64 | 0, 0, 0, 0, () => MessageTagList, 0, 0], 4
|
|
1911
|
+
];
|
|
1912
|
+
var SendTemplatedEmailResponse$ = [3, n0, _STERe,
|
|
1913
|
+
0,
|
|
1914
|
+
[_MI],
|
|
1915
|
+
[0], 1
|
|
1916
|
+
];
|
|
1917
|
+
var SetActiveReceiptRuleSetRequest$ = [3, n0, _SARRSR,
|
|
1918
|
+
0,
|
|
1919
|
+
[_RSN],
|
|
1920
|
+
[0]
|
|
1921
|
+
];
|
|
1922
|
+
var SetActiveReceiptRuleSetResponse$ = [3, n0, _SARRSRe,
|
|
1923
|
+
0,
|
|
1924
|
+
[],
|
|
1925
|
+
[]
|
|
1926
|
+
];
|
|
1927
|
+
var SetIdentityDkimEnabledRequest$ = [3, n0, _SIDER,
|
|
1928
|
+
0,
|
|
1929
|
+
[_I, _DE],
|
|
1930
|
+
[0, 2], 2
|
|
1931
|
+
];
|
|
1932
|
+
var SetIdentityDkimEnabledResponse$ = [3, n0, _SIDERe,
|
|
1933
|
+
0,
|
|
1934
|
+
[],
|
|
1935
|
+
[]
|
|
1936
|
+
];
|
|
1937
|
+
var SetIdentityFeedbackForwardingEnabledRequest$ = [3, n0, _SIFFER,
|
|
1938
|
+
0,
|
|
1939
|
+
[_I, _FE],
|
|
1940
|
+
[0, 2], 2
|
|
1941
|
+
];
|
|
1942
|
+
var SetIdentityFeedbackForwardingEnabledResponse$ = [3, n0, _SIFFERe,
|
|
1943
|
+
0,
|
|
1944
|
+
[],
|
|
1945
|
+
[]
|
|
1946
|
+
];
|
|
1947
|
+
var SetIdentityHeadersInNotificationsEnabledRequest$ = [3, n0, _SIHINER,
|
|
1948
|
+
0,
|
|
1949
|
+
[_I, _NTo, _En],
|
|
1950
|
+
[0, 0, 2], 3
|
|
1951
|
+
];
|
|
1952
|
+
var SetIdentityHeadersInNotificationsEnabledResponse$ = [3, n0, _SIHINERe,
|
|
1953
|
+
0,
|
|
1954
|
+
[],
|
|
1955
|
+
[]
|
|
1956
|
+
];
|
|
1957
|
+
var SetIdentityMailFromDomainRequest$ = [3, n0, _SIMFDR,
|
|
1958
|
+
0,
|
|
1959
|
+
[_I, _MFD, _BOMXF],
|
|
1960
|
+
[0, 0, 0], 1
|
|
1961
|
+
];
|
|
1962
|
+
var SetIdentityMailFromDomainResponse$ = [3, n0, _SIMFDRe,
|
|
1963
|
+
0,
|
|
1964
|
+
[],
|
|
1965
|
+
[]
|
|
1966
|
+
];
|
|
1967
|
+
var SetIdentityNotificationTopicRequest$ = [3, n0, _SINTR,
|
|
1968
|
+
0,
|
|
1969
|
+
[_I, _NTo, _ST],
|
|
1970
|
+
[0, 0, 0], 2
|
|
1971
|
+
];
|
|
1972
|
+
var SetIdentityNotificationTopicResponse$ = [3, n0, _SINTRe,
|
|
1973
|
+
0,
|
|
1974
|
+
[],
|
|
1975
|
+
[]
|
|
1976
|
+
];
|
|
1977
|
+
var SetReceiptRulePositionRequest$ = [3, n0, _SRRPR,
|
|
1978
|
+
0,
|
|
1979
|
+
[_RSN, _RN, _A],
|
|
1980
|
+
[0, 0, 0], 2
|
|
1981
|
+
];
|
|
1982
|
+
var SetReceiptRulePositionResponse$ = [3, n0, _SRRPRe,
|
|
1983
|
+
0,
|
|
1984
|
+
[],
|
|
1985
|
+
[]
|
|
1986
|
+
];
|
|
1987
|
+
var SNSAction$ = [3, n0, _SNSA,
|
|
1988
|
+
0,
|
|
1989
|
+
[_TA, _Enc],
|
|
1990
|
+
[0, 0], 1
|
|
1991
|
+
];
|
|
1992
|
+
var SNSDestination$ = [3, n0, _SNSD,
|
|
1993
|
+
0,
|
|
1994
|
+
[_TARN],
|
|
1995
|
+
[0], 1
|
|
1996
|
+
];
|
|
1997
|
+
var StopAction$ = [3, n0, _SAt,
|
|
1998
|
+
0,
|
|
1999
|
+
[_Sc, _TA],
|
|
2000
|
+
[0, 0], 1
|
|
2001
|
+
];
|
|
2002
|
+
var Template$ = [3, n0, _Tem,
|
|
2003
|
+
0,
|
|
2004
|
+
[_TN, _SP, _TPe, _HP],
|
|
2005
|
+
[0, 0, 0, 0], 1
|
|
2006
|
+
];
|
|
2007
|
+
var TemplateMetadata$ = [3, n0, _TMe,
|
|
2008
|
+
0,
|
|
2009
|
+
[_N, _CTr],
|
|
2010
|
+
[0, 4]
|
|
2011
|
+
];
|
|
2012
|
+
var TestRenderTemplateRequest$ = [3, n0, _TRTR,
|
|
2013
|
+
0,
|
|
2014
|
+
[_TN, _TD],
|
|
2015
|
+
[0, 0], 2
|
|
2016
|
+
];
|
|
2017
|
+
var TestRenderTemplateResponse$ = [3, n0, _TRTRe,
|
|
2018
|
+
0,
|
|
2019
|
+
[_RTe],
|
|
2020
|
+
[0]
|
|
2021
|
+
];
|
|
2022
|
+
var TrackingOptions$ = [3, n0, _TO,
|
|
2023
|
+
0,
|
|
2024
|
+
[_CRD],
|
|
2025
|
+
[0]
|
|
2026
|
+
];
|
|
2027
|
+
var UpdateAccountSendingEnabledRequest$ = [3, n0, _UASER,
|
|
2028
|
+
0,
|
|
2029
|
+
[_En],
|
|
2030
|
+
[2]
|
|
2031
|
+
];
|
|
2032
|
+
var UpdateConfigurationSetEventDestinationRequest$ = [3, n0, _UCSEDR,
|
|
2033
|
+
0,
|
|
2034
|
+
[_CSN, _ED],
|
|
2035
|
+
[0, () => EventDestination$], 2
|
|
2036
|
+
];
|
|
2037
|
+
var UpdateConfigurationSetEventDestinationResponse$ = [3, n0, _UCSEDRp,
|
|
2038
|
+
0,
|
|
2039
|
+
[],
|
|
2040
|
+
[]
|
|
2041
|
+
];
|
|
2042
|
+
var UpdateConfigurationSetReputationMetricsEnabledRequest$ = [3, n0, _UCSRMER,
|
|
2043
|
+
0,
|
|
2044
|
+
[_CSN, _En],
|
|
2045
|
+
[0, 2], 2
|
|
2046
|
+
];
|
|
2047
|
+
var UpdateConfigurationSetSendingEnabledRequest$ = [3, n0, _UCSSER,
|
|
2048
|
+
0,
|
|
2049
|
+
[_CSN, _En],
|
|
2050
|
+
[0, 2], 2
|
|
2051
|
+
];
|
|
2052
|
+
var UpdateConfigurationSetTrackingOptionsRequest$ = [3, n0, _UCSTOR,
|
|
2053
|
+
0,
|
|
2054
|
+
[_CSN, _TO],
|
|
2055
|
+
[0, () => TrackingOptions$], 2
|
|
2056
|
+
];
|
|
2057
|
+
var UpdateConfigurationSetTrackingOptionsResponse$ = [3, n0, _UCSTORp,
|
|
2058
|
+
0,
|
|
2059
|
+
[],
|
|
2060
|
+
[]
|
|
2061
|
+
];
|
|
2062
|
+
var UpdateCustomVerificationEmailTemplateRequest$ = [3, n0, _UCVETR,
|
|
2063
|
+
0,
|
|
2064
|
+
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL],
|
|
2065
|
+
[0, 0, 0, 0, 0, 0], 1
|
|
2066
|
+
];
|
|
2067
|
+
var UpdateReceiptRuleRequest$ = [3, n0, _URRR,
|
|
2068
|
+
0,
|
|
2069
|
+
[_RSN, _Ru],
|
|
2070
|
+
[0, () => ReceiptRule$], 2
|
|
2071
|
+
];
|
|
2072
|
+
var UpdateReceiptRuleResponse$ = [3, n0, _URRRp,
|
|
2073
|
+
0,
|
|
2074
|
+
[],
|
|
2075
|
+
[]
|
|
2076
|
+
];
|
|
2077
|
+
var UpdateTemplateRequest$ = [3, n0, _UTR,
|
|
2078
|
+
0,
|
|
2079
|
+
[_Tem],
|
|
2080
|
+
[() => Template$], 1
|
|
2081
|
+
];
|
|
2082
|
+
var UpdateTemplateResponse$ = [3, n0, _UTRp,
|
|
2083
|
+
0,
|
|
2084
|
+
[],
|
|
2085
|
+
[]
|
|
2086
|
+
];
|
|
2087
|
+
var VerifyDomainDkimRequest$ = [3, n0, _VDDR,
|
|
2088
|
+
0,
|
|
2089
|
+
[_Do],
|
|
2090
|
+
[0], 1
|
|
2091
|
+
];
|
|
2092
|
+
var VerifyDomainDkimResponse$ = [3, n0, _VDDRe,
|
|
2093
|
+
0,
|
|
2094
|
+
[_DT],
|
|
2095
|
+
[64 | 0], 1
|
|
2096
|
+
];
|
|
2097
|
+
var VerifyDomainIdentityRequest$ = [3, n0, _VDIR,
|
|
2098
|
+
0,
|
|
2099
|
+
[_Do],
|
|
2100
|
+
[0], 1
|
|
2101
|
+
];
|
|
2102
|
+
var VerifyDomainIdentityResponse$ = [3, n0, _VDIRe,
|
|
2103
|
+
0,
|
|
2104
|
+
[_VT],
|
|
2105
|
+
[0], 1
|
|
2106
|
+
];
|
|
2107
|
+
var VerifyEmailAddressRequest$ = [3, n0, _VEAR,
|
|
2108
|
+
0,
|
|
2109
|
+
[_EA],
|
|
2110
|
+
[0], 1
|
|
2111
|
+
];
|
|
2112
|
+
var VerifyEmailIdentityRequest$ = [3, n0, _VEIR,
|
|
2113
|
+
0,
|
|
2114
|
+
[_EA],
|
|
2115
|
+
[0], 1
|
|
2116
|
+
];
|
|
2117
|
+
var VerifyEmailIdentityResponse$ = [3, n0, _VEIRe,
|
|
2118
|
+
0,
|
|
2119
|
+
[],
|
|
2120
|
+
[]
|
|
2121
|
+
];
|
|
2122
|
+
var WorkmailAction$ = [3, n0, _WA,
|
|
2123
|
+
0,
|
|
2124
|
+
[_OA, _TA],
|
|
2125
|
+
[0, 0], 1
|
|
2126
|
+
];
|
|
2127
|
+
var __Unit = "unit";
|
|
2128
|
+
var BouncedRecipientInfoList = [1, n0, _BRIL,
|
|
2129
|
+
0, () => BouncedRecipientInfo$
|
|
2130
|
+
];
|
|
2131
|
+
var BulkEmailDestinationList = [1, n0, _BEDL,
|
|
2132
|
+
0, () => BulkEmailDestination$
|
|
2133
|
+
];
|
|
2134
|
+
var BulkEmailDestinationStatusList = [1, n0, _BEDSL,
|
|
2135
|
+
0, () => BulkEmailDestinationStatus$
|
|
2136
|
+
];
|
|
2137
|
+
var CloudWatchDimensionConfigurations = [1, n0, _CWDCl,
|
|
2138
|
+
0, () => CloudWatchDimensionConfiguration$
|
|
2139
|
+
];
|
|
2140
|
+
var ConfigurationSets = [1, n0, _CSo,
|
|
2141
|
+
0, () => ConfigurationSet$
|
|
2142
|
+
];
|
|
2143
|
+
var CustomVerificationEmailTemplates = [1, n0, _CVETu,
|
|
2144
|
+
0, () => CustomVerificationEmailTemplate$
|
|
2145
|
+
];
|
|
2146
|
+
var EventDestinations = [1, n0, _EDv,
|
|
2147
|
+
0, () => EventDestination$
|
|
2148
|
+
];
|
|
2149
|
+
var ExtensionFieldList = [1, n0, _EFL,
|
|
2150
|
+
0, () => ExtensionField$
|
|
2151
|
+
];
|
|
2152
|
+
var MessageTagList = [1, n0, _MTL,
|
|
2153
|
+
0, () => MessageTag$
|
|
2154
|
+
];
|
|
2155
|
+
var ReceiptActionsList = [1, n0, _RAL,
|
|
2156
|
+
0, () => ReceiptAction$
|
|
2157
|
+
];
|
|
2158
|
+
var ReceiptFilterList = [1, n0, _RFL,
|
|
2159
|
+
0, () => ReceiptFilter$
|
|
2160
|
+
];
|
|
2161
|
+
var ReceiptRuleSetsLists = [1, n0, _RRSL,
|
|
2162
|
+
0, () => ReceiptRuleSetMetadata$
|
|
2163
|
+
];
|
|
2164
|
+
var ReceiptRulesList = [1, n0, _RRL,
|
|
2165
|
+
0, () => ReceiptRule$
|
|
2166
|
+
];
|
|
2167
|
+
var SendDataPointList = [1, n0, _SDPL,
|
|
2168
|
+
0, () => SendDataPoint$
|
|
2169
|
+
];
|
|
2170
|
+
var TemplateMetadataList = [1, n0, _TML,
|
|
2171
|
+
0, () => TemplateMetadata$
|
|
2172
|
+
];
|
|
2173
|
+
var DkimAttributes = [2, n0, _DA,
|
|
2174
|
+
0, 0, () => IdentityDkimAttributes$
|
|
2175
|
+
];
|
|
2176
|
+
var MailFromDomainAttributes = [2, n0, _MFDA,
|
|
2177
|
+
0, 0, () => IdentityMailFromDomainAttributes$
|
|
2178
|
+
];
|
|
2179
|
+
var NotificationAttributes = [2, n0, _NA,
|
|
2180
|
+
0, 0, () => IdentityNotificationAttributes$
|
|
2181
|
+
];
|
|
2182
|
+
var VerificationAttributes = [2, n0, _VA,
|
|
2183
|
+
0, 0, () => IdentityVerificationAttributes$
|
|
2184
|
+
];
|
|
2185
|
+
var CloneReceiptRuleSet$ = [9, n0, _CRRS,
|
|
2186
|
+
0, () => CloneReceiptRuleSetRequest$, () => CloneReceiptRuleSetResponse$
|
|
2187
|
+
];
|
|
2188
|
+
var CreateConfigurationSet$ = [9, n0, _CCS,
|
|
2189
|
+
0, () => CreateConfigurationSetRequest$, () => CreateConfigurationSetResponse$
|
|
2190
|
+
];
|
|
2191
|
+
var CreateConfigurationSetEventDestination$ = [9, n0, _CCSED,
|
|
2192
|
+
0, () => CreateConfigurationSetEventDestinationRequest$, () => CreateConfigurationSetEventDestinationResponse$
|
|
2193
|
+
];
|
|
2194
|
+
var CreateConfigurationSetTrackingOptions$ = [9, n0, _CCSTO,
|
|
2195
|
+
0, () => CreateConfigurationSetTrackingOptionsRequest$, () => CreateConfigurationSetTrackingOptionsResponse$
|
|
2196
|
+
];
|
|
2197
|
+
var CreateCustomVerificationEmailTemplate$ = [9, n0, _CCVET,
|
|
2198
|
+
0, () => CreateCustomVerificationEmailTemplateRequest$, () => __Unit
|
|
2199
|
+
];
|
|
2200
|
+
var CreateReceiptFilter$ = [9, n0, _CRF,
|
|
2201
|
+
0, () => CreateReceiptFilterRequest$, () => CreateReceiptFilterResponse$
|
|
2202
|
+
];
|
|
2203
|
+
var CreateReceiptRule$ = [9, n0, _CRR,
|
|
2204
|
+
0, () => CreateReceiptRuleRequest$, () => CreateReceiptRuleResponse$
|
|
2205
|
+
];
|
|
2206
|
+
var CreateReceiptRuleSet$ = [9, n0, _CRRSr,
|
|
2207
|
+
0, () => CreateReceiptRuleSetRequest$, () => CreateReceiptRuleSetResponse$
|
|
2208
|
+
];
|
|
2209
|
+
var CreateTemplate$ = [9, n0, _CTre,
|
|
2210
|
+
0, () => CreateTemplateRequest$, () => CreateTemplateResponse$
|
|
2211
|
+
];
|
|
2212
|
+
var DeleteConfigurationSet$ = [9, n0, _DCS,
|
|
2213
|
+
0, () => DeleteConfigurationSetRequest$, () => DeleteConfigurationSetResponse$
|
|
2214
|
+
];
|
|
2215
|
+
var DeleteConfigurationSetEventDestination$ = [9, n0, _DCSED,
|
|
2216
|
+
0, () => DeleteConfigurationSetEventDestinationRequest$, () => DeleteConfigurationSetEventDestinationResponse$
|
|
2217
|
+
];
|
|
2218
|
+
var DeleteConfigurationSetTrackingOptions$ = [9, n0, _DCSTO,
|
|
2219
|
+
0, () => DeleteConfigurationSetTrackingOptionsRequest$, () => DeleteConfigurationSetTrackingOptionsResponse$
|
|
2220
|
+
];
|
|
2221
|
+
var DeleteCustomVerificationEmailTemplate$ = [9, n0, _DCVET,
|
|
2222
|
+
0, () => DeleteCustomVerificationEmailTemplateRequest$, () => __Unit
|
|
2223
|
+
];
|
|
2224
|
+
var DeleteIdentity$ = [9, n0, _DI,
|
|
2225
|
+
0, () => DeleteIdentityRequest$, () => DeleteIdentityResponse$
|
|
2226
|
+
];
|
|
2227
|
+
var DeleteIdentityPolicy$ = [9, n0, _DIP,
|
|
2228
|
+
0, () => DeleteIdentityPolicyRequest$, () => DeleteIdentityPolicyResponse$
|
|
2229
|
+
];
|
|
2230
|
+
var DeleteReceiptFilter$ = [9, n0, _DRF,
|
|
2231
|
+
0, () => DeleteReceiptFilterRequest$, () => DeleteReceiptFilterResponse$
|
|
2232
|
+
];
|
|
2233
|
+
var DeleteReceiptRule$ = [9, n0, _DRR,
|
|
2234
|
+
0, () => DeleteReceiptRuleRequest$, () => DeleteReceiptRuleResponse$
|
|
2235
|
+
];
|
|
2236
|
+
var DeleteReceiptRuleSet$ = [9, n0, _DRRS,
|
|
2237
|
+
0, () => DeleteReceiptRuleSetRequest$, () => DeleteReceiptRuleSetResponse$
|
|
2238
|
+
];
|
|
2239
|
+
var DeleteTemplate$ = [9, n0, _DTel,
|
|
2240
|
+
0, () => DeleteTemplateRequest$, () => DeleteTemplateResponse$
|
|
2241
|
+
];
|
|
2242
|
+
var DeleteVerifiedEmailAddress$ = [9, n0, _DVEA,
|
|
2243
|
+
0, () => DeleteVerifiedEmailAddressRequest$, () => __Unit
|
|
2244
|
+
];
|
|
2245
|
+
var DescribeActiveReceiptRuleSet$ = [9, n0, _DARRS,
|
|
2246
|
+
0, () => DescribeActiveReceiptRuleSetRequest$, () => DescribeActiveReceiptRuleSetResponse$
|
|
2247
|
+
];
|
|
2248
|
+
var DescribeConfigurationSet$ = [9, n0, _DCSe,
|
|
2249
|
+
0, () => DescribeConfigurationSetRequest$, () => DescribeConfigurationSetResponse$
|
|
2250
|
+
];
|
|
2251
|
+
var DescribeReceiptRule$ = [9, n0, _DRRe,
|
|
2252
|
+
0, () => DescribeReceiptRuleRequest$, () => DescribeReceiptRuleResponse$
|
|
2253
|
+
];
|
|
2254
|
+
var DescribeReceiptRuleSet$ = [9, n0, _DRRSe,
|
|
2255
|
+
0, () => DescribeReceiptRuleSetRequest$, () => DescribeReceiptRuleSetResponse$
|
|
2256
|
+
];
|
|
2257
|
+
var GetAccountSendingEnabled$ = [9, n0, _GASE,
|
|
2258
|
+
0, () => __Unit, () => GetAccountSendingEnabledResponse$
|
|
2259
|
+
];
|
|
2260
|
+
var GetCustomVerificationEmailTemplate$ = [9, n0, _GCVET,
|
|
2261
|
+
0, () => GetCustomVerificationEmailTemplateRequest$, () => GetCustomVerificationEmailTemplateResponse$
|
|
2262
|
+
];
|
|
2263
|
+
var GetIdentityDkimAttributes$ = [9, n0, _GIDA,
|
|
2264
|
+
0, () => GetIdentityDkimAttributesRequest$, () => GetIdentityDkimAttributesResponse$
|
|
2265
|
+
];
|
|
2266
|
+
var GetIdentityMailFromDomainAttributes$ = [9, n0, _GIMFDA,
|
|
2267
|
+
0, () => GetIdentityMailFromDomainAttributesRequest$, () => GetIdentityMailFromDomainAttributesResponse$
|
|
2268
|
+
];
|
|
2269
|
+
var GetIdentityNotificationAttributes$ = [9, n0, _GINA,
|
|
2270
|
+
0, () => GetIdentityNotificationAttributesRequest$, () => GetIdentityNotificationAttributesResponse$
|
|
2271
|
+
];
|
|
2272
|
+
var GetIdentityPolicies$ = [9, n0, _GIP,
|
|
2273
|
+
0, () => GetIdentityPoliciesRequest$, () => GetIdentityPoliciesResponse$
|
|
2274
|
+
];
|
|
2275
|
+
var GetIdentityVerificationAttributes$ = [9, n0, _GIVA,
|
|
2276
|
+
0, () => GetIdentityVerificationAttributesRequest$, () => GetIdentityVerificationAttributesResponse$
|
|
2277
|
+
];
|
|
2278
|
+
var GetSendQuota$ = [9, n0, _GSQ,
|
|
2279
|
+
0, () => __Unit, () => GetSendQuotaResponse$
|
|
2280
|
+
];
|
|
2281
|
+
var GetSendStatistics$ = [9, n0, _GSS,
|
|
2282
|
+
0, () => __Unit, () => GetSendStatisticsResponse$
|
|
2283
|
+
];
|
|
2284
|
+
var GetTemplate$ = [9, n0, _GT,
|
|
2285
|
+
0, () => GetTemplateRequest$, () => GetTemplateResponse$
|
|
2286
|
+
];
|
|
2287
|
+
var ListConfigurationSets$ = [9, n0, _LCS,
|
|
2288
|
+
0, () => ListConfigurationSetsRequest$, () => ListConfigurationSetsResponse$
|
|
2289
|
+
];
|
|
2290
|
+
var ListCustomVerificationEmailTemplates$ = [9, n0, _LCVET,
|
|
2291
|
+
0, () => ListCustomVerificationEmailTemplatesRequest$, () => ListCustomVerificationEmailTemplatesResponse$
|
|
2292
|
+
];
|
|
2293
|
+
var ListIdentities$ = [9, n0, _LI,
|
|
2294
|
+
0, () => ListIdentitiesRequest$, () => ListIdentitiesResponse$
|
|
2295
|
+
];
|
|
2296
|
+
var ListIdentityPolicies$ = [9, n0, _LIP,
|
|
2297
|
+
0, () => ListIdentityPoliciesRequest$, () => ListIdentityPoliciesResponse$
|
|
2298
|
+
];
|
|
2299
|
+
var ListReceiptFilters$ = [9, n0, _LRF,
|
|
2300
|
+
0, () => ListReceiptFiltersRequest$, () => ListReceiptFiltersResponse$
|
|
2301
|
+
];
|
|
2302
|
+
var ListReceiptRuleSets$ = [9, n0, _LRRS,
|
|
2303
|
+
0, () => ListReceiptRuleSetsRequest$, () => ListReceiptRuleSetsResponse$
|
|
2304
|
+
];
|
|
2305
|
+
var ListTemplates$ = [9, n0, _LT,
|
|
2306
|
+
0, () => ListTemplatesRequest$, () => ListTemplatesResponse$
|
|
2307
|
+
];
|
|
2308
|
+
var ListVerifiedEmailAddresses$ = [9, n0, _LVEA,
|
|
2309
|
+
0, () => __Unit, () => ListVerifiedEmailAddressesResponse$
|
|
2310
|
+
];
|
|
2311
|
+
var PutConfigurationSetDeliveryOptions$ = [9, n0, _PCSDO,
|
|
2312
|
+
0, () => PutConfigurationSetDeliveryOptionsRequest$, () => PutConfigurationSetDeliveryOptionsResponse$
|
|
2313
|
+
];
|
|
2314
|
+
var PutIdentityPolicy$ = [9, n0, _PIP,
|
|
2315
|
+
0, () => PutIdentityPolicyRequest$, () => PutIdentityPolicyResponse$
|
|
2316
|
+
];
|
|
2317
|
+
var ReorderReceiptRuleSet$ = [9, n0, _RRRS,
|
|
2318
|
+
0, () => ReorderReceiptRuleSetRequest$, () => ReorderReceiptRuleSetResponse$
|
|
2319
|
+
];
|
|
2320
|
+
var SendBounce$ = [9, n0, _SB,
|
|
2321
|
+
0, () => SendBounceRequest$, () => SendBounceResponse$
|
|
2322
|
+
];
|
|
2323
|
+
var SendBulkTemplatedEmail$ = [9, n0, _SBTE,
|
|
2324
|
+
0, () => SendBulkTemplatedEmailRequest$, () => SendBulkTemplatedEmailResponse$
|
|
2325
|
+
];
|
|
2326
|
+
var SendCustomVerificationEmail$ = [9, n0, _SCVE,
|
|
2327
|
+
0, () => SendCustomVerificationEmailRequest$, () => SendCustomVerificationEmailResponse$
|
|
2328
|
+
];
|
|
2329
|
+
var SendEmail$ = [9, n0, _SEen,
|
|
2330
|
+
0, () => SendEmailRequest$, () => SendEmailResponse$
|
|
2331
|
+
];
|
|
2332
|
+
var SendRawEmail$ = [9, n0, _SRE,
|
|
2333
|
+
0, () => SendRawEmailRequest$, () => SendRawEmailResponse$
|
|
2334
|
+
];
|
|
2335
|
+
var SendTemplatedEmail$ = [9, n0, _STE,
|
|
2336
|
+
0, () => SendTemplatedEmailRequest$, () => SendTemplatedEmailResponse$
|
|
2337
|
+
];
|
|
2338
|
+
var SetActiveReceiptRuleSet$ = [9, n0, _SARRS,
|
|
2339
|
+
0, () => SetActiveReceiptRuleSetRequest$, () => SetActiveReceiptRuleSetResponse$
|
|
2340
|
+
];
|
|
2341
|
+
var SetIdentityDkimEnabled$ = [9, n0, _SIDE,
|
|
2342
|
+
0, () => SetIdentityDkimEnabledRequest$, () => SetIdentityDkimEnabledResponse$
|
|
2343
|
+
];
|
|
2344
|
+
var SetIdentityFeedbackForwardingEnabled$ = [9, n0, _SIFFE,
|
|
2345
|
+
0, () => SetIdentityFeedbackForwardingEnabledRequest$, () => SetIdentityFeedbackForwardingEnabledResponse$
|
|
2346
|
+
];
|
|
2347
|
+
var SetIdentityHeadersInNotificationsEnabled$ = [9, n0, _SIHINE,
|
|
2348
|
+
0, () => SetIdentityHeadersInNotificationsEnabledRequest$, () => SetIdentityHeadersInNotificationsEnabledResponse$
|
|
2349
|
+
];
|
|
2350
|
+
var SetIdentityMailFromDomain$ = [9, n0, _SIMFD,
|
|
2351
|
+
0, () => SetIdentityMailFromDomainRequest$, () => SetIdentityMailFromDomainResponse$
|
|
2352
|
+
];
|
|
2353
|
+
var SetIdentityNotificationTopic$ = [9, n0, _SINT,
|
|
2354
|
+
0, () => SetIdentityNotificationTopicRequest$, () => SetIdentityNotificationTopicResponse$
|
|
2355
|
+
];
|
|
2356
|
+
var SetReceiptRulePosition$ = [9, n0, _SRRP,
|
|
2357
|
+
0, () => SetReceiptRulePositionRequest$, () => SetReceiptRulePositionResponse$
|
|
2358
|
+
];
|
|
2359
|
+
var TestRenderTemplate$ = [9, n0, _TRT,
|
|
2360
|
+
0, () => TestRenderTemplateRequest$, () => TestRenderTemplateResponse$
|
|
2361
|
+
];
|
|
2362
|
+
var UpdateAccountSendingEnabled$ = [9, n0, _UASE,
|
|
2363
|
+
0, () => UpdateAccountSendingEnabledRequest$, () => __Unit
|
|
2364
|
+
];
|
|
2365
|
+
var UpdateConfigurationSetEventDestination$ = [9, n0, _UCSED,
|
|
2366
|
+
0, () => UpdateConfigurationSetEventDestinationRequest$, () => UpdateConfigurationSetEventDestinationResponse$
|
|
2367
|
+
];
|
|
2368
|
+
var UpdateConfigurationSetReputationMetricsEnabled$ = [9, n0, _UCSRME,
|
|
2369
|
+
0, () => UpdateConfigurationSetReputationMetricsEnabledRequest$, () => __Unit
|
|
2370
|
+
];
|
|
2371
|
+
var UpdateConfigurationSetSendingEnabled$ = [9, n0, _UCSSE,
|
|
2372
|
+
0, () => UpdateConfigurationSetSendingEnabledRequest$, () => __Unit
|
|
2373
|
+
];
|
|
2374
|
+
var UpdateConfigurationSetTrackingOptions$ = [9, n0, _UCSTO,
|
|
2375
|
+
0, () => UpdateConfigurationSetTrackingOptionsRequest$, () => UpdateConfigurationSetTrackingOptionsResponse$
|
|
2376
|
+
];
|
|
2377
|
+
var UpdateCustomVerificationEmailTemplate$ = [9, n0, _UCVET,
|
|
2378
|
+
0, () => UpdateCustomVerificationEmailTemplateRequest$, () => __Unit
|
|
2379
|
+
];
|
|
2380
|
+
var UpdateReceiptRule$ = [9, n0, _URR,
|
|
2381
|
+
0, () => UpdateReceiptRuleRequest$, () => UpdateReceiptRuleResponse$
|
|
2382
|
+
];
|
|
2383
|
+
var UpdateTemplate$ = [9, n0, _UT,
|
|
2384
|
+
0, () => UpdateTemplateRequest$, () => UpdateTemplateResponse$
|
|
2385
|
+
];
|
|
2386
|
+
var VerifyDomainDkim$ = [9, n0, _VDD,
|
|
2387
|
+
0, () => VerifyDomainDkimRequest$, () => VerifyDomainDkimResponse$
|
|
2388
|
+
];
|
|
2389
|
+
var VerifyDomainIdentity$ = [9, n0, _VDI,
|
|
2390
|
+
0, () => VerifyDomainIdentityRequest$, () => VerifyDomainIdentityResponse$
|
|
2391
|
+
];
|
|
2392
|
+
var VerifyEmailAddress$ = [9, n0, _VEAe,
|
|
2393
|
+
0, () => VerifyEmailAddressRequest$, () => __Unit
|
|
2394
|
+
];
|
|
2395
|
+
var VerifyEmailIdentity$ = [9, n0, _VEI,
|
|
2396
|
+
0, () => VerifyEmailIdentityRequest$, () => VerifyEmailIdentityResponse$
|
|
2397
|
+
];
|
|
2398
|
+
|
|
2399
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2400
|
+
return {
|
|
2401
|
+
apiVersion: "2010-12-01",
|
|
2402
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2403
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2404
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2405
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2406
|
+
extensions: config?.extensions ?? [],
|
|
2407
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSESHttpAuthSchemeProvider,
|
|
2408
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2409
|
+
{
|
|
2410
|
+
schemeId: "aws.auth#sigv4",
|
|
2411
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2412
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2413
|
+
},
|
|
2414
|
+
],
|
|
2415
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2416
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
2417
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2418
|
+
defaultNamespace: "com.amazonaws.ses",
|
|
2419
|
+
errorTypeRegistries,
|
|
2420
|
+
xmlNamespace: "http://ses.amazonaws.com/doc/2010-12-01/",
|
|
2421
|
+
version: "2010-12-01",
|
|
2422
|
+
serviceTarget: "SimpleEmailService",
|
|
2423
|
+
},
|
|
2424
|
+
serviceId: config?.serviceId ?? "SES",
|
|
2425
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2426
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2427
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2428
|
+
};
|
|
2429
|
+
};
|
|
2430
|
+
|
|
2431
|
+
const getRuntimeConfig = (config) => {
|
|
2432
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2433
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2434
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2435
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2436
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2437
|
+
const loaderConfig = {
|
|
2438
|
+
profile: config?.profile,
|
|
2439
|
+
logger: clientSharedValues.logger,
|
|
2440
|
+
};
|
|
2441
|
+
return {
|
|
2442
|
+
...clientSharedValues,
|
|
2443
|
+
...config,
|
|
2444
|
+
runtime: "node",
|
|
2445
|
+
defaultsMode,
|
|
2446
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2447
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2448
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2449
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2450
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2451
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2452
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2453
|
+
retryMode: config?.retryMode ??
|
|
2454
|
+
loadConfig({
|
|
2455
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2456
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2457
|
+
}, config),
|
|
2458
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2459
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2460
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2461
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2462
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2463
|
+
};
|
|
2464
|
+
};
|
|
2465
|
+
|
|
34
2466
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2467
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2468
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1186,95 +3618,409 @@ const NotificationType = {
|
|
|
1186
3618
|
Delivery: "Delivery",
|
|
1187
3619
|
};
|
|
1188
3620
|
|
|
3621
|
+
exports.AccountSendingPausedException = AccountSendingPausedException;
|
|
3622
|
+
exports.AccountSendingPausedException$ = AccountSendingPausedException$;
|
|
3623
|
+
exports.AddHeaderAction$ = AddHeaderAction$;
|
|
3624
|
+
exports.AlreadyExistsException = AlreadyExistsException;
|
|
3625
|
+
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
1189
3626
|
exports.BehaviorOnMXFailure = BehaviorOnMXFailure;
|
|
3627
|
+
exports.Body$ = Body$;
|
|
3628
|
+
exports.BounceAction$ = BounceAction$;
|
|
1190
3629
|
exports.BounceType = BounceType;
|
|
3630
|
+
exports.BouncedRecipientInfo$ = BouncedRecipientInfo$;
|
|
3631
|
+
exports.BulkEmailDestination$ = BulkEmailDestination$;
|
|
3632
|
+
exports.BulkEmailDestinationStatus$ = BulkEmailDestinationStatus$;
|
|
1191
3633
|
exports.BulkEmailStatus = BulkEmailStatus;
|
|
3634
|
+
exports.CannotDeleteException = CannotDeleteException;
|
|
3635
|
+
exports.CannotDeleteException$ = CannotDeleteException$;
|
|
3636
|
+
exports.CloneReceiptRuleSet$ = CloneReceiptRuleSet$;
|
|
1192
3637
|
exports.CloneReceiptRuleSetCommand = CloneReceiptRuleSetCommand;
|
|
3638
|
+
exports.CloneReceiptRuleSetRequest$ = CloneReceiptRuleSetRequest$;
|
|
3639
|
+
exports.CloneReceiptRuleSetResponse$ = CloneReceiptRuleSetResponse$;
|
|
3640
|
+
exports.CloudWatchDestination$ = CloudWatchDestination$;
|
|
3641
|
+
exports.CloudWatchDimensionConfiguration$ = CloudWatchDimensionConfiguration$;
|
|
3642
|
+
exports.ConfigurationSet$ = ConfigurationSet$;
|
|
3643
|
+
exports.ConfigurationSetAlreadyExistsException = ConfigurationSetAlreadyExistsException;
|
|
3644
|
+
exports.ConfigurationSetAlreadyExistsException$ = ConfigurationSetAlreadyExistsException$;
|
|
1193
3645
|
exports.ConfigurationSetAttribute = ConfigurationSetAttribute;
|
|
3646
|
+
exports.ConfigurationSetDoesNotExistException = ConfigurationSetDoesNotExistException;
|
|
3647
|
+
exports.ConfigurationSetDoesNotExistException$ = ConfigurationSetDoesNotExistException$;
|
|
3648
|
+
exports.ConfigurationSetSendingPausedException = ConfigurationSetSendingPausedException;
|
|
3649
|
+
exports.ConfigurationSetSendingPausedException$ = ConfigurationSetSendingPausedException$;
|
|
3650
|
+
exports.ConnectAction$ = ConnectAction$;
|
|
3651
|
+
exports.Content$ = Content$;
|
|
3652
|
+
exports.CreateConfigurationSet$ = CreateConfigurationSet$;
|
|
1194
3653
|
exports.CreateConfigurationSetCommand = CreateConfigurationSetCommand;
|
|
3654
|
+
exports.CreateConfigurationSetEventDestination$ = CreateConfigurationSetEventDestination$;
|
|
1195
3655
|
exports.CreateConfigurationSetEventDestinationCommand = CreateConfigurationSetEventDestinationCommand;
|
|
3656
|
+
exports.CreateConfigurationSetEventDestinationRequest$ = CreateConfigurationSetEventDestinationRequest$;
|
|
3657
|
+
exports.CreateConfigurationSetEventDestinationResponse$ = CreateConfigurationSetEventDestinationResponse$;
|
|
3658
|
+
exports.CreateConfigurationSetRequest$ = CreateConfigurationSetRequest$;
|
|
3659
|
+
exports.CreateConfigurationSetResponse$ = CreateConfigurationSetResponse$;
|
|
3660
|
+
exports.CreateConfigurationSetTrackingOptions$ = CreateConfigurationSetTrackingOptions$;
|
|
1196
3661
|
exports.CreateConfigurationSetTrackingOptionsCommand = CreateConfigurationSetTrackingOptionsCommand;
|
|
3662
|
+
exports.CreateConfigurationSetTrackingOptionsRequest$ = CreateConfigurationSetTrackingOptionsRequest$;
|
|
3663
|
+
exports.CreateConfigurationSetTrackingOptionsResponse$ = CreateConfigurationSetTrackingOptionsResponse$;
|
|
3664
|
+
exports.CreateCustomVerificationEmailTemplate$ = CreateCustomVerificationEmailTemplate$;
|
|
1197
3665
|
exports.CreateCustomVerificationEmailTemplateCommand = CreateCustomVerificationEmailTemplateCommand;
|
|
3666
|
+
exports.CreateCustomVerificationEmailTemplateRequest$ = CreateCustomVerificationEmailTemplateRequest$;
|
|
3667
|
+
exports.CreateReceiptFilter$ = CreateReceiptFilter$;
|
|
1198
3668
|
exports.CreateReceiptFilterCommand = CreateReceiptFilterCommand;
|
|
3669
|
+
exports.CreateReceiptFilterRequest$ = CreateReceiptFilterRequest$;
|
|
3670
|
+
exports.CreateReceiptFilterResponse$ = CreateReceiptFilterResponse$;
|
|
3671
|
+
exports.CreateReceiptRule$ = CreateReceiptRule$;
|
|
1199
3672
|
exports.CreateReceiptRuleCommand = CreateReceiptRuleCommand;
|
|
3673
|
+
exports.CreateReceiptRuleRequest$ = CreateReceiptRuleRequest$;
|
|
3674
|
+
exports.CreateReceiptRuleResponse$ = CreateReceiptRuleResponse$;
|
|
3675
|
+
exports.CreateReceiptRuleSet$ = CreateReceiptRuleSet$;
|
|
1200
3676
|
exports.CreateReceiptRuleSetCommand = CreateReceiptRuleSetCommand;
|
|
3677
|
+
exports.CreateReceiptRuleSetRequest$ = CreateReceiptRuleSetRequest$;
|
|
3678
|
+
exports.CreateReceiptRuleSetResponse$ = CreateReceiptRuleSetResponse$;
|
|
3679
|
+
exports.CreateTemplate$ = CreateTemplate$;
|
|
1201
3680
|
exports.CreateTemplateCommand = CreateTemplateCommand;
|
|
3681
|
+
exports.CreateTemplateRequest$ = CreateTemplateRequest$;
|
|
3682
|
+
exports.CreateTemplateResponse$ = CreateTemplateResponse$;
|
|
1202
3683
|
exports.CustomMailFromStatus = CustomMailFromStatus;
|
|
3684
|
+
exports.CustomVerificationEmailInvalidContentException = CustomVerificationEmailInvalidContentException;
|
|
3685
|
+
exports.CustomVerificationEmailInvalidContentException$ = CustomVerificationEmailInvalidContentException$;
|
|
3686
|
+
exports.CustomVerificationEmailTemplate$ = CustomVerificationEmailTemplate$;
|
|
3687
|
+
exports.CustomVerificationEmailTemplateAlreadyExistsException = CustomVerificationEmailTemplateAlreadyExistsException;
|
|
3688
|
+
exports.CustomVerificationEmailTemplateAlreadyExistsException$ = CustomVerificationEmailTemplateAlreadyExistsException$;
|
|
3689
|
+
exports.CustomVerificationEmailTemplateDoesNotExistException = CustomVerificationEmailTemplateDoesNotExistException;
|
|
3690
|
+
exports.CustomVerificationEmailTemplateDoesNotExistException$ = CustomVerificationEmailTemplateDoesNotExistException$;
|
|
3691
|
+
exports.DeleteConfigurationSet$ = DeleteConfigurationSet$;
|
|
1203
3692
|
exports.DeleteConfigurationSetCommand = DeleteConfigurationSetCommand;
|
|
3693
|
+
exports.DeleteConfigurationSetEventDestination$ = DeleteConfigurationSetEventDestination$;
|
|
1204
3694
|
exports.DeleteConfigurationSetEventDestinationCommand = DeleteConfigurationSetEventDestinationCommand;
|
|
3695
|
+
exports.DeleteConfigurationSetEventDestinationRequest$ = DeleteConfigurationSetEventDestinationRequest$;
|
|
3696
|
+
exports.DeleteConfigurationSetEventDestinationResponse$ = DeleteConfigurationSetEventDestinationResponse$;
|
|
3697
|
+
exports.DeleteConfigurationSetRequest$ = DeleteConfigurationSetRequest$;
|
|
3698
|
+
exports.DeleteConfigurationSetResponse$ = DeleteConfigurationSetResponse$;
|
|
3699
|
+
exports.DeleteConfigurationSetTrackingOptions$ = DeleteConfigurationSetTrackingOptions$;
|
|
1205
3700
|
exports.DeleteConfigurationSetTrackingOptionsCommand = DeleteConfigurationSetTrackingOptionsCommand;
|
|
3701
|
+
exports.DeleteConfigurationSetTrackingOptionsRequest$ = DeleteConfigurationSetTrackingOptionsRequest$;
|
|
3702
|
+
exports.DeleteConfigurationSetTrackingOptionsResponse$ = DeleteConfigurationSetTrackingOptionsResponse$;
|
|
3703
|
+
exports.DeleteCustomVerificationEmailTemplate$ = DeleteCustomVerificationEmailTemplate$;
|
|
1206
3704
|
exports.DeleteCustomVerificationEmailTemplateCommand = DeleteCustomVerificationEmailTemplateCommand;
|
|
3705
|
+
exports.DeleteCustomVerificationEmailTemplateRequest$ = DeleteCustomVerificationEmailTemplateRequest$;
|
|
3706
|
+
exports.DeleteIdentity$ = DeleteIdentity$;
|
|
1207
3707
|
exports.DeleteIdentityCommand = DeleteIdentityCommand;
|
|
3708
|
+
exports.DeleteIdentityPolicy$ = DeleteIdentityPolicy$;
|
|
1208
3709
|
exports.DeleteIdentityPolicyCommand = DeleteIdentityPolicyCommand;
|
|
3710
|
+
exports.DeleteIdentityPolicyRequest$ = DeleteIdentityPolicyRequest$;
|
|
3711
|
+
exports.DeleteIdentityPolicyResponse$ = DeleteIdentityPolicyResponse$;
|
|
3712
|
+
exports.DeleteIdentityRequest$ = DeleteIdentityRequest$;
|
|
3713
|
+
exports.DeleteIdentityResponse$ = DeleteIdentityResponse$;
|
|
3714
|
+
exports.DeleteReceiptFilter$ = DeleteReceiptFilter$;
|
|
1209
3715
|
exports.DeleteReceiptFilterCommand = DeleteReceiptFilterCommand;
|
|
3716
|
+
exports.DeleteReceiptFilterRequest$ = DeleteReceiptFilterRequest$;
|
|
3717
|
+
exports.DeleteReceiptFilterResponse$ = DeleteReceiptFilterResponse$;
|
|
3718
|
+
exports.DeleteReceiptRule$ = DeleteReceiptRule$;
|
|
1210
3719
|
exports.DeleteReceiptRuleCommand = DeleteReceiptRuleCommand;
|
|
3720
|
+
exports.DeleteReceiptRuleRequest$ = DeleteReceiptRuleRequest$;
|
|
3721
|
+
exports.DeleteReceiptRuleResponse$ = DeleteReceiptRuleResponse$;
|
|
3722
|
+
exports.DeleteReceiptRuleSet$ = DeleteReceiptRuleSet$;
|
|
1211
3723
|
exports.DeleteReceiptRuleSetCommand = DeleteReceiptRuleSetCommand;
|
|
3724
|
+
exports.DeleteReceiptRuleSetRequest$ = DeleteReceiptRuleSetRequest$;
|
|
3725
|
+
exports.DeleteReceiptRuleSetResponse$ = DeleteReceiptRuleSetResponse$;
|
|
3726
|
+
exports.DeleteTemplate$ = DeleteTemplate$;
|
|
1212
3727
|
exports.DeleteTemplateCommand = DeleteTemplateCommand;
|
|
3728
|
+
exports.DeleteTemplateRequest$ = DeleteTemplateRequest$;
|
|
3729
|
+
exports.DeleteTemplateResponse$ = DeleteTemplateResponse$;
|
|
3730
|
+
exports.DeleteVerifiedEmailAddress$ = DeleteVerifiedEmailAddress$;
|
|
1213
3731
|
exports.DeleteVerifiedEmailAddressCommand = DeleteVerifiedEmailAddressCommand;
|
|
3732
|
+
exports.DeleteVerifiedEmailAddressRequest$ = DeleteVerifiedEmailAddressRequest$;
|
|
3733
|
+
exports.DeliveryOptions$ = DeliveryOptions$;
|
|
3734
|
+
exports.DescribeActiveReceiptRuleSet$ = DescribeActiveReceiptRuleSet$;
|
|
1214
3735
|
exports.DescribeActiveReceiptRuleSetCommand = DescribeActiveReceiptRuleSetCommand;
|
|
3736
|
+
exports.DescribeActiveReceiptRuleSetRequest$ = DescribeActiveReceiptRuleSetRequest$;
|
|
3737
|
+
exports.DescribeActiveReceiptRuleSetResponse$ = DescribeActiveReceiptRuleSetResponse$;
|
|
3738
|
+
exports.DescribeConfigurationSet$ = DescribeConfigurationSet$;
|
|
1215
3739
|
exports.DescribeConfigurationSetCommand = DescribeConfigurationSetCommand;
|
|
3740
|
+
exports.DescribeConfigurationSetRequest$ = DescribeConfigurationSetRequest$;
|
|
3741
|
+
exports.DescribeConfigurationSetResponse$ = DescribeConfigurationSetResponse$;
|
|
3742
|
+
exports.DescribeReceiptRule$ = DescribeReceiptRule$;
|
|
1216
3743
|
exports.DescribeReceiptRuleCommand = DescribeReceiptRuleCommand;
|
|
3744
|
+
exports.DescribeReceiptRuleRequest$ = DescribeReceiptRuleRequest$;
|
|
3745
|
+
exports.DescribeReceiptRuleResponse$ = DescribeReceiptRuleResponse$;
|
|
3746
|
+
exports.DescribeReceiptRuleSet$ = DescribeReceiptRuleSet$;
|
|
1217
3747
|
exports.DescribeReceiptRuleSetCommand = DescribeReceiptRuleSetCommand;
|
|
3748
|
+
exports.DescribeReceiptRuleSetRequest$ = DescribeReceiptRuleSetRequest$;
|
|
3749
|
+
exports.DescribeReceiptRuleSetResponse$ = DescribeReceiptRuleSetResponse$;
|
|
3750
|
+
exports.Destination$ = Destination$;
|
|
1218
3751
|
exports.DimensionValueSource = DimensionValueSource;
|
|
1219
3752
|
exports.DsnAction = DsnAction;
|
|
3753
|
+
exports.EventDestination$ = EventDestination$;
|
|
3754
|
+
exports.EventDestinationAlreadyExistsException = EventDestinationAlreadyExistsException;
|
|
3755
|
+
exports.EventDestinationAlreadyExistsException$ = EventDestinationAlreadyExistsException$;
|
|
3756
|
+
exports.EventDestinationDoesNotExistException = EventDestinationDoesNotExistException;
|
|
3757
|
+
exports.EventDestinationDoesNotExistException$ = EventDestinationDoesNotExistException$;
|
|
1220
3758
|
exports.EventType = EventType;
|
|
3759
|
+
exports.ExtensionField$ = ExtensionField$;
|
|
3760
|
+
exports.FromEmailAddressNotVerifiedException = FromEmailAddressNotVerifiedException;
|
|
3761
|
+
exports.FromEmailAddressNotVerifiedException$ = FromEmailAddressNotVerifiedException$;
|
|
3762
|
+
exports.GetAccountSendingEnabled$ = GetAccountSendingEnabled$;
|
|
1221
3763
|
exports.GetAccountSendingEnabledCommand = GetAccountSendingEnabledCommand;
|
|
3764
|
+
exports.GetAccountSendingEnabledResponse$ = GetAccountSendingEnabledResponse$;
|
|
3765
|
+
exports.GetCustomVerificationEmailTemplate$ = GetCustomVerificationEmailTemplate$;
|
|
1222
3766
|
exports.GetCustomVerificationEmailTemplateCommand = GetCustomVerificationEmailTemplateCommand;
|
|
3767
|
+
exports.GetCustomVerificationEmailTemplateRequest$ = GetCustomVerificationEmailTemplateRequest$;
|
|
3768
|
+
exports.GetCustomVerificationEmailTemplateResponse$ = GetCustomVerificationEmailTemplateResponse$;
|
|
3769
|
+
exports.GetIdentityDkimAttributes$ = GetIdentityDkimAttributes$;
|
|
1223
3770
|
exports.GetIdentityDkimAttributesCommand = GetIdentityDkimAttributesCommand;
|
|
3771
|
+
exports.GetIdentityDkimAttributesRequest$ = GetIdentityDkimAttributesRequest$;
|
|
3772
|
+
exports.GetIdentityDkimAttributesResponse$ = GetIdentityDkimAttributesResponse$;
|
|
3773
|
+
exports.GetIdentityMailFromDomainAttributes$ = GetIdentityMailFromDomainAttributes$;
|
|
1224
3774
|
exports.GetIdentityMailFromDomainAttributesCommand = GetIdentityMailFromDomainAttributesCommand;
|
|
3775
|
+
exports.GetIdentityMailFromDomainAttributesRequest$ = GetIdentityMailFromDomainAttributesRequest$;
|
|
3776
|
+
exports.GetIdentityMailFromDomainAttributesResponse$ = GetIdentityMailFromDomainAttributesResponse$;
|
|
3777
|
+
exports.GetIdentityNotificationAttributes$ = GetIdentityNotificationAttributes$;
|
|
1225
3778
|
exports.GetIdentityNotificationAttributesCommand = GetIdentityNotificationAttributesCommand;
|
|
3779
|
+
exports.GetIdentityNotificationAttributesRequest$ = GetIdentityNotificationAttributesRequest$;
|
|
3780
|
+
exports.GetIdentityNotificationAttributesResponse$ = GetIdentityNotificationAttributesResponse$;
|
|
3781
|
+
exports.GetIdentityPolicies$ = GetIdentityPolicies$;
|
|
1226
3782
|
exports.GetIdentityPoliciesCommand = GetIdentityPoliciesCommand;
|
|
3783
|
+
exports.GetIdentityPoliciesRequest$ = GetIdentityPoliciesRequest$;
|
|
3784
|
+
exports.GetIdentityPoliciesResponse$ = GetIdentityPoliciesResponse$;
|
|
3785
|
+
exports.GetIdentityVerificationAttributes$ = GetIdentityVerificationAttributes$;
|
|
1227
3786
|
exports.GetIdentityVerificationAttributesCommand = GetIdentityVerificationAttributesCommand;
|
|
3787
|
+
exports.GetIdentityVerificationAttributesRequest$ = GetIdentityVerificationAttributesRequest$;
|
|
3788
|
+
exports.GetIdentityVerificationAttributesResponse$ = GetIdentityVerificationAttributesResponse$;
|
|
3789
|
+
exports.GetSendQuota$ = GetSendQuota$;
|
|
1228
3790
|
exports.GetSendQuotaCommand = GetSendQuotaCommand;
|
|
3791
|
+
exports.GetSendQuotaResponse$ = GetSendQuotaResponse$;
|
|
3792
|
+
exports.GetSendStatistics$ = GetSendStatistics$;
|
|
1229
3793
|
exports.GetSendStatisticsCommand = GetSendStatisticsCommand;
|
|
3794
|
+
exports.GetSendStatisticsResponse$ = GetSendStatisticsResponse$;
|
|
3795
|
+
exports.GetTemplate$ = GetTemplate$;
|
|
1230
3796
|
exports.GetTemplateCommand = GetTemplateCommand;
|
|
3797
|
+
exports.GetTemplateRequest$ = GetTemplateRequest$;
|
|
3798
|
+
exports.GetTemplateResponse$ = GetTemplateResponse$;
|
|
3799
|
+
exports.IdentityDkimAttributes$ = IdentityDkimAttributes$;
|
|
3800
|
+
exports.IdentityMailFromDomainAttributes$ = IdentityMailFromDomainAttributes$;
|
|
3801
|
+
exports.IdentityNotificationAttributes$ = IdentityNotificationAttributes$;
|
|
1231
3802
|
exports.IdentityType = IdentityType;
|
|
3803
|
+
exports.IdentityVerificationAttributes$ = IdentityVerificationAttributes$;
|
|
3804
|
+
exports.InvalidCloudWatchDestinationException = InvalidCloudWatchDestinationException;
|
|
3805
|
+
exports.InvalidCloudWatchDestinationException$ = InvalidCloudWatchDestinationException$;
|
|
3806
|
+
exports.InvalidConfigurationSetException = InvalidConfigurationSetException;
|
|
3807
|
+
exports.InvalidConfigurationSetException$ = InvalidConfigurationSetException$;
|
|
3808
|
+
exports.InvalidDeliveryOptionsException = InvalidDeliveryOptionsException;
|
|
3809
|
+
exports.InvalidDeliveryOptionsException$ = InvalidDeliveryOptionsException$;
|
|
3810
|
+
exports.InvalidFirehoseDestinationException = InvalidFirehoseDestinationException;
|
|
3811
|
+
exports.InvalidFirehoseDestinationException$ = InvalidFirehoseDestinationException$;
|
|
3812
|
+
exports.InvalidLambdaFunctionException = InvalidLambdaFunctionException;
|
|
3813
|
+
exports.InvalidLambdaFunctionException$ = InvalidLambdaFunctionException$;
|
|
3814
|
+
exports.InvalidPolicyException = InvalidPolicyException;
|
|
3815
|
+
exports.InvalidPolicyException$ = InvalidPolicyException$;
|
|
3816
|
+
exports.InvalidRenderingParameterException = InvalidRenderingParameterException;
|
|
3817
|
+
exports.InvalidRenderingParameterException$ = InvalidRenderingParameterException$;
|
|
3818
|
+
exports.InvalidS3ConfigurationException = InvalidS3ConfigurationException;
|
|
3819
|
+
exports.InvalidS3ConfigurationException$ = InvalidS3ConfigurationException$;
|
|
3820
|
+
exports.InvalidSNSDestinationException = InvalidSNSDestinationException;
|
|
3821
|
+
exports.InvalidSNSDestinationException$ = InvalidSNSDestinationException$;
|
|
3822
|
+
exports.InvalidSnsTopicException = InvalidSnsTopicException;
|
|
3823
|
+
exports.InvalidSnsTopicException$ = InvalidSnsTopicException$;
|
|
3824
|
+
exports.InvalidTemplateException = InvalidTemplateException;
|
|
3825
|
+
exports.InvalidTemplateException$ = InvalidTemplateException$;
|
|
3826
|
+
exports.InvalidTrackingOptionsException = InvalidTrackingOptionsException;
|
|
3827
|
+
exports.InvalidTrackingOptionsException$ = InvalidTrackingOptionsException$;
|
|
1232
3828
|
exports.InvocationType = InvocationType;
|
|
3829
|
+
exports.KinesisFirehoseDestination$ = KinesisFirehoseDestination$;
|
|
3830
|
+
exports.LambdaAction$ = LambdaAction$;
|
|
3831
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3832
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
3833
|
+
exports.ListConfigurationSets$ = ListConfigurationSets$;
|
|
1233
3834
|
exports.ListConfigurationSetsCommand = ListConfigurationSetsCommand;
|
|
3835
|
+
exports.ListConfigurationSetsRequest$ = ListConfigurationSetsRequest$;
|
|
3836
|
+
exports.ListConfigurationSetsResponse$ = ListConfigurationSetsResponse$;
|
|
3837
|
+
exports.ListCustomVerificationEmailTemplates$ = ListCustomVerificationEmailTemplates$;
|
|
1234
3838
|
exports.ListCustomVerificationEmailTemplatesCommand = ListCustomVerificationEmailTemplatesCommand;
|
|
3839
|
+
exports.ListCustomVerificationEmailTemplatesRequest$ = ListCustomVerificationEmailTemplatesRequest$;
|
|
3840
|
+
exports.ListCustomVerificationEmailTemplatesResponse$ = ListCustomVerificationEmailTemplatesResponse$;
|
|
3841
|
+
exports.ListIdentities$ = ListIdentities$;
|
|
1235
3842
|
exports.ListIdentitiesCommand = ListIdentitiesCommand;
|
|
3843
|
+
exports.ListIdentitiesRequest$ = ListIdentitiesRequest$;
|
|
3844
|
+
exports.ListIdentitiesResponse$ = ListIdentitiesResponse$;
|
|
3845
|
+
exports.ListIdentityPolicies$ = ListIdentityPolicies$;
|
|
1236
3846
|
exports.ListIdentityPoliciesCommand = ListIdentityPoliciesCommand;
|
|
3847
|
+
exports.ListIdentityPoliciesRequest$ = ListIdentityPoliciesRequest$;
|
|
3848
|
+
exports.ListIdentityPoliciesResponse$ = ListIdentityPoliciesResponse$;
|
|
3849
|
+
exports.ListReceiptFilters$ = ListReceiptFilters$;
|
|
1237
3850
|
exports.ListReceiptFiltersCommand = ListReceiptFiltersCommand;
|
|
3851
|
+
exports.ListReceiptFiltersRequest$ = ListReceiptFiltersRequest$;
|
|
3852
|
+
exports.ListReceiptFiltersResponse$ = ListReceiptFiltersResponse$;
|
|
3853
|
+
exports.ListReceiptRuleSets$ = ListReceiptRuleSets$;
|
|
1238
3854
|
exports.ListReceiptRuleSetsCommand = ListReceiptRuleSetsCommand;
|
|
3855
|
+
exports.ListReceiptRuleSetsRequest$ = ListReceiptRuleSetsRequest$;
|
|
3856
|
+
exports.ListReceiptRuleSetsResponse$ = ListReceiptRuleSetsResponse$;
|
|
3857
|
+
exports.ListTemplates$ = ListTemplates$;
|
|
1239
3858
|
exports.ListTemplatesCommand = ListTemplatesCommand;
|
|
3859
|
+
exports.ListTemplatesRequest$ = ListTemplatesRequest$;
|
|
3860
|
+
exports.ListTemplatesResponse$ = ListTemplatesResponse$;
|
|
3861
|
+
exports.ListVerifiedEmailAddresses$ = ListVerifiedEmailAddresses$;
|
|
1240
3862
|
exports.ListVerifiedEmailAddressesCommand = ListVerifiedEmailAddressesCommand;
|
|
3863
|
+
exports.ListVerifiedEmailAddressesResponse$ = ListVerifiedEmailAddressesResponse$;
|
|
3864
|
+
exports.MailFromDomainNotVerifiedException = MailFromDomainNotVerifiedException;
|
|
3865
|
+
exports.MailFromDomainNotVerifiedException$ = MailFromDomainNotVerifiedException$;
|
|
3866
|
+
exports.Message$ = Message$;
|
|
3867
|
+
exports.MessageDsn$ = MessageDsn$;
|
|
3868
|
+
exports.MessageRejected = MessageRejected;
|
|
3869
|
+
exports.MessageRejected$ = MessageRejected$;
|
|
3870
|
+
exports.MessageTag$ = MessageTag$;
|
|
3871
|
+
exports.MissingRenderingAttributeException = MissingRenderingAttributeException;
|
|
3872
|
+
exports.MissingRenderingAttributeException$ = MissingRenderingAttributeException$;
|
|
1241
3873
|
exports.NotificationType = NotificationType;
|
|
3874
|
+
exports.ProductionAccessNotGrantedException = ProductionAccessNotGrantedException;
|
|
3875
|
+
exports.ProductionAccessNotGrantedException$ = ProductionAccessNotGrantedException$;
|
|
3876
|
+
exports.PutConfigurationSetDeliveryOptions$ = PutConfigurationSetDeliveryOptions$;
|
|
1242
3877
|
exports.PutConfigurationSetDeliveryOptionsCommand = PutConfigurationSetDeliveryOptionsCommand;
|
|
3878
|
+
exports.PutConfigurationSetDeliveryOptionsRequest$ = PutConfigurationSetDeliveryOptionsRequest$;
|
|
3879
|
+
exports.PutConfigurationSetDeliveryOptionsResponse$ = PutConfigurationSetDeliveryOptionsResponse$;
|
|
3880
|
+
exports.PutIdentityPolicy$ = PutIdentityPolicy$;
|
|
1243
3881
|
exports.PutIdentityPolicyCommand = PutIdentityPolicyCommand;
|
|
3882
|
+
exports.PutIdentityPolicyRequest$ = PutIdentityPolicyRequest$;
|
|
3883
|
+
exports.PutIdentityPolicyResponse$ = PutIdentityPolicyResponse$;
|
|
3884
|
+
exports.RawMessage$ = RawMessage$;
|
|
3885
|
+
exports.ReceiptAction$ = ReceiptAction$;
|
|
3886
|
+
exports.ReceiptFilter$ = ReceiptFilter$;
|
|
1244
3887
|
exports.ReceiptFilterPolicy = ReceiptFilterPolicy;
|
|
3888
|
+
exports.ReceiptIpFilter$ = ReceiptIpFilter$;
|
|
3889
|
+
exports.ReceiptRule$ = ReceiptRule$;
|
|
3890
|
+
exports.ReceiptRuleSetMetadata$ = ReceiptRuleSetMetadata$;
|
|
3891
|
+
exports.RecipientDsnFields$ = RecipientDsnFields$;
|
|
3892
|
+
exports.ReorderReceiptRuleSet$ = ReorderReceiptRuleSet$;
|
|
1245
3893
|
exports.ReorderReceiptRuleSetCommand = ReorderReceiptRuleSetCommand;
|
|
3894
|
+
exports.ReorderReceiptRuleSetRequest$ = ReorderReceiptRuleSetRequest$;
|
|
3895
|
+
exports.ReorderReceiptRuleSetResponse$ = ReorderReceiptRuleSetResponse$;
|
|
3896
|
+
exports.ReputationOptions$ = ReputationOptions$;
|
|
3897
|
+
exports.RuleDoesNotExistException = RuleDoesNotExistException;
|
|
3898
|
+
exports.RuleDoesNotExistException$ = RuleDoesNotExistException$;
|
|
3899
|
+
exports.RuleSetDoesNotExistException = RuleSetDoesNotExistException;
|
|
3900
|
+
exports.RuleSetDoesNotExistException$ = RuleSetDoesNotExistException$;
|
|
3901
|
+
exports.S3Action$ = S3Action$;
|
|
1246
3902
|
exports.SES = SES;
|
|
1247
3903
|
exports.SESClient = SESClient;
|
|
3904
|
+
exports.SESServiceException = SESServiceException;
|
|
3905
|
+
exports.SESServiceException$ = SESServiceException$;
|
|
3906
|
+
exports.SNSAction$ = SNSAction$;
|
|
1248
3907
|
exports.SNSActionEncoding = SNSActionEncoding;
|
|
3908
|
+
exports.SNSDestination$ = SNSDestination$;
|
|
3909
|
+
exports.SendBounce$ = SendBounce$;
|
|
1249
3910
|
exports.SendBounceCommand = SendBounceCommand;
|
|
3911
|
+
exports.SendBounceRequest$ = SendBounceRequest$;
|
|
3912
|
+
exports.SendBounceResponse$ = SendBounceResponse$;
|
|
3913
|
+
exports.SendBulkTemplatedEmail$ = SendBulkTemplatedEmail$;
|
|
1250
3914
|
exports.SendBulkTemplatedEmailCommand = SendBulkTemplatedEmailCommand;
|
|
3915
|
+
exports.SendBulkTemplatedEmailRequest$ = SendBulkTemplatedEmailRequest$;
|
|
3916
|
+
exports.SendBulkTemplatedEmailResponse$ = SendBulkTemplatedEmailResponse$;
|
|
3917
|
+
exports.SendCustomVerificationEmail$ = SendCustomVerificationEmail$;
|
|
1251
3918
|
exports.SendCustomVerificationEmailCommand = SendCustomVerificationEmailCommand;
|
|
3919
|
+
exports.SendCustomVerificationEmailRequest$ = SendCustomVerificationEmailRequest$;
|
|
3920
|
+
exports.SendCustomVerificationEmailResponse$ = SendCustomVerificationEmailResponse$;
|
|
3921
|
+
exports.SendDataPoint$ = SendDataPoint$;
|
|
3922
|
+
exports.SendEmail$ = SendEmail$;
|
|
1252
3923
|
exports.SendEmailCommand = SendEmailCommand;
|
|
3924
|
+
exports.SendEmailRequest$ = SendEmailRequest$;
|
|
3925
|
+
exports.SendEmailResponse$ = SendEmailResponse$;
|
|
3926
|
+
exports.SendRawEmail$ = SendRawEmail$;
|
|
1253
3927
|
exports.SendRawEmailCommand = SendRawEmailCommand;
|
|
3928
|
+
exports.SendRawEmailRequest$ = SendRawEmailRequest$;
|
|
3929
|
+
exports.SendRawEmailResponse$ = SendRawEmailResponse$;
|
|
3930
|
+
exports.SendTemplatedEmail$ = SendTemplatedEmail$;
|
|
1254
3931
|
exports.SendTemplatedEmailCommand = SendTemplatedEmailCommand;
|
|
3932
|
+
exports.SendTemplatedEmailRequest$ = SendTemplatedEmailRequest$;
|
|
3933
|
+
exports.SendTemplatedEmailResponse$ = SendTemplatedEmailResponse$;
|
|
3934
|
+
exports.SetActiveReceiptRuleSet$ = SetActiveReceiptRuleSet$;
|
|
1255
3935
|
exports.SetActiveReceiptRuleSetCommand = SetActiveReceiptRuleSetCommand;
|
|
3936
|
+
exports.SetActiveReceiptRuleSetRequest$ = SetActiveReceiptRuleSetRequest$;
|
|
3937
|
+
exports.SetActiveReceiptRuleSetResponse$ = SetActiveReceiptRuleSetResponse$;
|
|
3938
|
+
exports.SetIdentityDkimEnabled$ = SetIdentityDkimEnabled$;
|
|
1256
3939
|
exports.SetIdentityDkimEnabledCommand = SetIdentityDkimEnabledCommand;
|
|
3940
|
+
exports.SetIdentityDkimEnabledRequest$ = SetIdentityDkimEnabledRequest$;
|
|
3941
|
+
exports.SetIdentityDkimEnabledResponse$ = SetIdentityDkimEnabledResponse$;
|
|
3942
|
+
exports.SetIdentityFeedbackForwardingEnabled$ = SetIdentityFeedbackForwardingEnabled$;
|
|
1257
3943
|
exports.SetIdentityFeedbackForwardingEnabledCommand = SetIdentityFeedbackForwardingEnabledCommand;
|
|
3944
|
+
exports.SetIdentityFeedbackForwardingEnabledRequest$ = SetIdentityFeedbackForwardingEnabledRequest$;
|
|
3945
|
+
exports.SetIdentityFeedbackForwardingEnabledResponse$ = SetIdentityFeedbackForwardingEnabledResponse$;
|
|
3946
|
+
exports.SetIdentityHeadersInNotificationsEnabled$ = SetIdentityHeadersInNotificationsEnabled$;
|
|
1258
3947
|
exports.SetIdentityHeadersInNotificationsEnabledCommand = SetIdentityHeadersInNotificationsEnabledCommand;
|
|
3948
|
+
exports.SetIdentityHeadersInNotificationsEnabledRequest$ = SetIdentityHeadersInNotificationsEnabledRequest$;
|
|
3949
|
+
exports.SetIdentityHeadersInNotificationsEnabledResponse$ = SetIdentityHeadersInNotificationsEnabledResponse$;
|
|
3950
|
+
exports.SetIdentityMailFromDomain$ = SetIdentityMailFromDomain$;
|
|
1259
3951
|
exports.SetIdentityMailFromDomainCommand = SetIdentityMailFromDomainCommand;
|
|
3952
|
+
exports.SetIdentityMailFromDomainRequest$ = SetIdentityMailFromDomainRequest$;
|
|
3953
|
+
exports.SetIdentityMailFromDomainResponse$ = SetIdentityMailFromDomainResponse$;
|
|
3954
|
+
exports.SetIdentityNotificationTopic$ = SetIdentityNotificationTopic$;
|
|
1260
3955
|
exports.SetIdentityNotificationTopicCommand = SetIdentityNotificationTopicCommand;
|
|
3956
|
+
exports.SetIdentityNotificationTopicRequest$ = SetIdentityNotificationTopicRequest$;
|
|
3957
|
+
exports.SetIdentityNotificationTopicResponse$ = SetIdentityNotificationTopicResponse$;
|
|
3958
|
+
exports.SetReceiptRulePosition$ = SetReceiptRulePosition$;
|
|
1261
3959
|
exports.SetReceiptRulePositionCommand = SetReceiptRulePositionCommand;
|
|
3960
|
+
exports.SetReceiptRulePositionRequest$ = SetReceiptRulePositionRequest$;
|
|
3961
|
+
exports.SetReceiptRulePositionResponse$ = SetReceiptRulePositionResponse$;
|
|
3962
|
+
exports.StopAction$ = StopAction$;
|
|
1262
3963
|
exports.StopScope = StopScope;
|
|
3964
|
+
exports.Template$ = Template$;
|
|
3965
|
+
exports.TemplateDoesNotExistException = TemplateDoesNotExistException;
|
|
3966
|
+
exports.TemplateDoesNotExistException$ = TemplateDoesNotExistException$;
|
|
3967
|
+
exports.TemplateMetadata$ = TemplateMetadata$;
|
|
3968
|
+
exports.TestRenderTemplate$ = TestRenderTemplate$;
|
|
1263
3969
|
exports.TestRenderTemplateCommand = TestRenderTemplateCommand;
|
|
3970
|
+
exports.TestRenderTemplateRequest$ = TestRenderTemplateRequest$;
|
|
3971
|
+
exports.TestRenderTemplateResponse$ = TestRenderTemplateResponse$;
|
|
1264
3972
|
exports.TlsPolicy = TlsPolicy;
|
|
3973
|
+
exports.TrackingOptions$ = TrackingOptions$;
|
|
3974
|
+
exports.TrackingOptionsAlreadyExistsException = TrackingOptionsAlreadyExistsException;
|
|
3975
|
+
exports.TrackingOptionsAlreadyExistsException$ = TrackingOptionsAlreadyExistsException$;
|
|
3976
|
+
exports.TrackingOptionsDoesNotExistException = TrackingOptionsDoesNotExistException;
|
|
3977
|
+
exports.TrackingOptionsDoesNotExistException$ = TrackingOptionsDoesNotExistException$;
|
|
3978
|
+
exports.UpdateAccountSendingEnabled$ = UpdateAccountSendingEnabled$;
|
|
1265
3979
|
exports.UpdateAccountSendingEnabledCommand = UpdateAccountSendingEnabledCommand;
|
|
3980
|
+
exports.UpdateAccountSendingEnabledRequest$ = UpdateAccountSendingEnabledRequest$;
|
|
3981
|
+
exports.UpdateConfigurationSetEventDestination$ = UpdateConfigurationSetEventDestination$;
|
|
1266
3982
|
exports.UpdateConfigurationSetEventDestinationCommand = UpdateConfigurationSetEventDestinationCommand;
|
|
3983
|
+
exports.UpdateConfigurationSetEventDestinationRequest$ = UpdateConfigurationSetEventDestinationRequest$;
|
|
3984
|
+
exports.UpdateConfigurationSetEventDestinationResponse$ = UpdateConfigurationSetEventDestinationResponse$;
|
|
3985
|
+
exports.UpdateConfigurationSetReputationMetricsEnabled$ = UpdateConfigurationSetReputationMetricsEnabled$;
|
|
1267
3986
|
exports.UpdateConfigurationSetReputationMetricsEnabledCommand = UpdateConfigurationSetReputationMetricsEnabledCommand;
|
|
3987
|
+
exports.UpdateConfigurationSetReputationMetricsEnabledRequest$ = UpdateConfigurationSetReputationMetricsEnabledRequest$;
|
|
3988
|
+
exports.UpdateConfigurationSetSendingEnabled$ = UpdateConfigurationSetSendingEnabled$;
|
|
1268
3989
|
exports.UpdateConfigurationSetSendingEnabledCommand = UpdateConfigurationSetSendingEnabledCommand;
|
|
3990
|
+
exports.UpdateConfigurationSetSendingEnabledRequest$ = UpdateConfigurationSetSendingEnabledRequest$;
|
|
3991
|
+
exports.UpdateConfigurationSetTrackingOptions$ = UpdateConfigurationSetTrackingOptions$;
|
|
1269
3992
|
exports.UpdateConfigurationSetTrackingOptionsCommand = UpdateConfigurationSetTrackingOptionsCommand;
|
|
3993
|
+
exports.UpdateConfigurationSetTrackingOptionsRequest$ = UpdateConfigurationSetTrackingOptionsRequest$;
|
|
3994
|
+
exports.UpdateConfigurationSetTrackingOptionsResponse$ = UpdateConfigurationSetTrackingOptionsResponse$;
|
|
3995
|
+
exports.UpdateCustomVerificationEmailTemplate$ = UpdateCustomVerificationEmailTemplate$;
|
|
1270
3996
|
exports.UpdateCustomVerificationEmailTemplateCommand = UpdateCustomVerificationEmailTemplateCommand;
|
|
3997
|
+
exports.UpdateCustomVerificationEmailTemplateRequest$ = UpdateCustomVerificationEmailTemplateRequest$;
|
|
3998
|
+
exports.UpdateReceiptRule$ = UpdateReceiptRule$;
|
|
1271
3999
|
exports.UpdateReceiptRuleCommand = UpdateReceiptRuleCommand;
|
|
4000
|
+
exports.UpdateReceiptRuleRequest$ = UpdateReceiptRuleRequest$;
|
|
4001
|
+
exports.UpdateReceiptRuleResponse$ = UpdateReceiptRuleResponse$;
|
|
4002
|
+
exports.UpdateTemplate$ = UpdateTemplate$;
|
|
1272
4003
|
exports.UpdateTemplateCommand = UpdateTemplateCommand;
|
|
4004
|
+
exports.UpdateTemplateRequest$ = UpdateTemplateRequest$;
|
|
4005
|
+
exports.UpdateTemplateResponse$ = UpdateTemplateResponse$;
|
|
1273
4006
|
exports.VerificationStatus = VerificationStatus;
|
|
4007
|
+
exports.VerifyDomainDkim$ = VerifyDomainDkim$;
|
|
1274
4008
|
exports.VerifyDomainDkimCommand = VerifyDomainDkimCommand;
|
|
4009
|
+
exports.VerifyDomainDkimRequest$ = VerifyDomainDkimRequest$;
|
|
4010
|
+
exports.VerifyDomainDkimResponse$ = VerifyDomainDkimResponse$;
|
|
4011
|
+
exports.VerifyDomainIdentity$ = VerifyDomainIdentity$;
|
|
1275
4012
|
exports.VerifyDomainIdentityCommand = VerifyDomainIdentityCommand;
|
|
4013
|
+
exports.VerifyDomainIdentityRequest$ = VerifyDomainIdentityRequest$;
|
|
4014
|
+
exports.VerifyDomainIdentityResponse$ = VerifyDomainIdentityResponse$;
|
|
4015
|
+
exports.VerifyEmailAddress$ = VerifyEmailAddress$;
|
|
1276
4016
|
exports.VerifyEmailAddressCommand = VerifyEmailAddressCommand;
|
|
4017
|
+
exports.VerifyEmailAddressRequest$ = VerifyEmailAddressRequest$;
|
|
4018
|
+
exports.VerifyEmailIdentity$ = VerifyEmailIdentity$;
|
|
1277
4019
|
exports.VerifyEmailIdentityCommand = VerifyEmailIdentityCommand;
|
|
4020
|
+
exports.VerifyEmailIdentityRequest$ = VerifyEmailIdentityRequest$;
|
|
4021
|
+
exports.VerifyEmailIdentityResponse$ = VerifyEmailIdentityResponse$;
|
|
4022
|
+
exports.WorkmailAction$ = WorkmailAction$;
|
|
4023
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1278
4024
|
exports.paginateListCustomVerificationEmailTemplates = paginateListCustomVerificationEmailTemplates;
|
|
1279
4025
|
exports.paginateListIdentities = paginateListIdentities;
|
|
1280
4026
|
exports.waitForIdentityExists = waitForIdentityExists;
|