@aws-sdk/client-sns 3.1074.0 → 3.1076.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1855 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -52
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SNSServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -415
- 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 -1179
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsQueryProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSNSHttpAuthSchemeParametersProvider = 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: "sns",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSNSHttpAuthSchemeProvider = (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,1613 @@ 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 m = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { [m]: "Region" }, k = {}, l = [j];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [h]],
|
|
79
|
+
[c, l],
|
|
80
|
+
["aws.partition", l, d],
|
|
81
|
+
[e, [{ [m]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [m]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
|
|
85
|
+
[g, [j, "us-gov-east-1"]],
|
|
86
|
+
[g, [j, "us-gov-west-1"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[h, k],
|
|
93
|
+
["https://sns-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://sns.us-gov-east-1.amazonaws.com", k],
|
|
96
|
+
["https://sns.us-gov-west-1.amazonaws.com", k],
|
|
97
|
+
["https://sns-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
98
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
99
|
+
["https://sns.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
100
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
101
|
+
["https://sns.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
102
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
103
|
+
]
|
|
104
|
+
};
|
|
105
|
+
const root = 2;
|
|
106
|
+
const r = 100_000_000;
|
|
107
|
+
const nodes = new Int32Array([
|
|
108
|
+
-1, 1, -1,
|
|
109
|
+
0, 14, 3,
|
|
110
|
+
1, 4, r + 13,
|
|
111
|
+
2, 5, r + 13,
|
|
112
|
+
3, 8, 6,
|
|
113
|
+
4, 7, r + 12,
|
|
114
|
+
5, r + 10, r + 11,
|
|
115
|
+
4, 12, 9,
|
|
116
|
+
6, 10, r + 9,
|
|
117
|
+
7, r + 6, 11,
|
|
118
|
+
8, r + 7, r + 8,
|
|
119
|
+
5, 13, r + 5,
|
|
120
|
+
6, r + 4, r + 5,
|
|
121
|
+
3, r + 1, 15,
|
|
122
|
+
4, r + 2, r + 3,
|
|
123
|
+
]);
|
|
124
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
125
|
+
|
|
126
|
+
const cache = new EndpointCache({
|
|
127
|
+
size: 50,
|
|
128
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
129
|
+
});
|
|
130
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
131
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
132
|
+
endpointParams: endpointParams,
|
|
133
|
+
logger: context.logger,
|
|
134
|
+
}));
|
|
135
|
+
};
|
|
136
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
137
|
+
|
|
138
|
+
class SNSServiceException extends ServiceException {
|
|
139
|
+
constructor(options) {
|
|
140
|
+
super(options);
|
|
141
|
+
Object.setPrototypeOf(this, SNSServiceException.prototype);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
class AuthorizationErrorException extends SNSServiceException {
|
|
146
|
+
name = "AuthorizationErrorException";
|
|
147
|
+
$fault = "client";
|
|
148
|
+
constructor(opts) {
|
|
149
|
+
super({
|
|
150
|
+
name: "AuthorizationErrorException",
|
|
151
|
+
$fault: "client",
|
|
152
|
+
...opts,
|
|
153
|
+
});
|
|
154
|
+
Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
class InternalErrorException extends SNSServiceException {
|
|
158
|
+
name = "InternalErrorException";
|
|
159
|
+
$fault = "server";
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "InternalErrorException",
|
|
163
|
+
$fault: "server",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
class InvalidParameterException extends SNSServiceException {
|
|
170
|
+
name = "InvalidParameterException";
|
|
171
|
+
$fault = "client";
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "InvalidParameterException",
|
|
175
|
+
$fault: "client",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class NotFoundException extends SNSServiceException {
|
|
182
|
+
name = "NotFoundException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
constructor(opts) {
|
|
185
|
+
super({
|
|
186
|
+
name: "NotFoundException",
|
|
187
|
+
$fault: "client",
|
|
188
|
+
...opts,
|
|
189
|
+
});
|
|
190
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
class ThrottledException extends SNSServiceException {
|
|
194
|
+
name = "ThrottledException";
|
|
195
|
+
$fault = "client";
|
|
196
|
+
constructor(opts) {
|
|
197
|
+
super({
|
|
198
|
+
name: "ThrottledException",
|
|
199
|
+
$fault: "client",
|
|
200
|
+
...opts,
|
|
201
|
+
});
|
|
202
|
+
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
class FilterPolicyLimitExceededException extends SNSServiceException {
|
|
206
|
+
name = "FilterPolicyLimitExceededException";
|
|
207
|
+
$fault = "client";
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "FilterPolicyLimitExceededException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, FilterPolicyLimitExceededException.prototype);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
class ReplayLimitExceededException extends SNSServiceException {
|
|
218
|
+
name = "ReplayLimitExceededException";
|
|
219
|
+
$fault = "client";
|
|
220
|
+
constructor(opts) {
|
|
221
|
+
super({
|
|
222
|
+
name: "ReplayLimitExceededException",
|
|
223
|
+
$fault: "client",
|
|
224
|
+
...opts,
|
|
225
|
+
});
|
|
226
|
+
Object.setPrototypeOf(this, ReplayLimitExceededException.prototype);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
class SubscriptionLimitExceededException extends SNSServiceException {
|
|
230
|
+
name = "SubscriptionLimitExceededException";
|
|
231
|
+
$fault = "client";
|
|
232
|
+
constructor(opts) {
|
|
233
|
+
super({
|
|
234
|
+
name: "SubscriptionLimitExceededException",
|
|
235
|
+
$fault: "client",
|
|
236
|
+
...opts,
|
|
237
|
+
});
|
|
238
|
+
Object.setPrototypeOf(this, SubscriptionLimitExceededException.prototype);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
class OptedOutException extends SNSServiceException {
|
|
242
|
+
name = "OptedOutException";
|
|
243
|
+
$fault = "client";
|
|
244
|
+
constructor(opts) {
|
|
245
|
+
super({
|
|
246
|
+
name: "OptedOutException",
|
|
247
|
+
$fault: "client",
|
|
248
|
+
...opts,
|
|
249
|
+
});
|
|
250
|
+
Object.setPrototypeOf(this, OptedOutException.prototype);
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
class UserErrorException extends SNSServiceException {
|
|
254
|
+
name = "UserErrorException";
|
|
255
|
+
$fault = "client";
|
|
256
|
+
constructor(opts) {
|
|
257
|
+
super({
|
|
258
|
+
name: "UserErrorException",
|
|
259
|
+
$fault: "client",
|
|
260
|
+
...opts,
|
|
261
|
+
});
|
|
262
|
+
Object.setPrototypeOf(this, UserErrorException.prototype);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class ConcurrentAccessException extends SNSServiceException {
|
|
266
|
+
name = "ConcurrentAccessException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
constructor(opts) {
|
|
269
|
+
super({
|
|
270
|
+
name: "ConcurrentAccessException",
|
|
271
|
+
$fault: "client",
|
|
272
|
+
...opts,
|
|
273
|
+
});
|
|
274
|
+
Object.setPrototypeOf(this, ConcurrentAccessException.prototype);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
class InvalidSecurityException extends SNSServiceException {
|
|
278
|
+
name = "InvalidSecurityException";
|
|
279
|
+
$fault = "client";
|
|
280
|
+
constructor(opts) {
|
|
281
|
+
super({
|
|
282
|
+
name: "InvalidSecurityException",
|
|
283
|
+
$fault: "client",
|
|
284
|
+
...opts,
|
|
285
|
+
});
|
|
286
|
+
Object.setPrototypeOf(this, InvalidSecurityException.prototype);
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
class StaleTagException extends SNSServiceException {
|
|
290
|
+
name = "StaleTagException";
|
|
291
|
+
$fault = "client";
|
|
292
|
+
constructor(opts) {
|
|
293
|
+
super({
|
|
294
|
+
name: "StaleTagException",
|
|
295
|
+
$fault: "client",
|
|
296
|
+
...opts,
|
|
297
|
+
});
|
|
298
|
+
Object.setPrototypeOf(this, StaleTagException.prototype);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
class TagLimitExceededException extends SNSServiceException {
|
|
302
|
+
name = "TagLimitExceededException";
|
|
303
|
+
$fault = "client";
|
|
304
|
+
constructor(opts) {
|
|
305
|
+
super({
|
|
306
|
+
name: "TagLimitExceededException",
|
|
307
|
+
$fault: "client",
|
|
308
|
+
...opts,
|
|
309
|
+
});
|
|
310
|
+
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
class TagPolicyException extends SNSServiceException {
|
|
314
|
+
name = "TagPolicyException";
|
|
315
|
+
$fault = "client";
|
|
316
|
+
constructor(opts) {
|
|
317
|
+
super({
|
|
318
|
+
name: "TagPolicyException",
|
|
319
|
+
$fault: "client",
|
|
320
|
+
...opts,
|
|
321
|
+
});
|
|
322
|
+
Object.setPrototypeOf(this, TagPolicyException.prototype);
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
class TopicLimitExceededException extends SNSServiceException {
|
|
326
|
+
name = "TopicLimitExceededException";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
constructor(opts) {
|
|
329
|
+
super({
|
|
330
|
+
name: "TopicLimitExceededException",
|
|
331
|
+
$fault: "client",
|
|
332
|
+
...opts,
|
|
333
|
+
});
|
|
334
|
+
Object.setPrototypeOf(this, TopicLimitExceededException.prototype);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
class ResourceNotFoundException extends SNSServiceException {
|
|
338
|
+
name = "ResourceNotFoundException";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
constructor(opts) {
|
|
341
|
+
super({
|
|
342
|
+
name: "ResourceNotFoundException",
|
|
343
|
+
$fault: "client",
|
|
344
|
+
...opts,
|
|
345
|
+
});
|
|
346
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
class InvalidStateException extends SNSServiceException {
|
|
350
|
+
name = "InvalidStateException";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
constructor(opts) {
|
|
353
|
+
super({
|
|
354
|
+
name: "InvalidStateException",
|
|
355
|
+
$fault: "client",
|
|
356
|
+
...opts,
|
|
357
|
+
});
|
|
358
|
+
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
class ValidationException extends SNSServiceException {
|
|
362
|
+
name = "ValidationException";
|
|
363
|
+
$fault = "client";
|
|
364
|
+
Message;
|
|
365
|
+
constructor(opts) {
|
|
366
|
+
super({
|
|
367
|
+
name: "ValidationException",
|
|
368
|
+
$fault: "client",
|
|
369
|
+
...opts,
|
|
370
|
+
});
|
|
371
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
372
|
+
this.Message = opts.Message;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
class EndpointDisabledException extends SNSServiceException {
|
|
376
|
+
name = "EndpointDisabledException";
|
|
377
|
+
$fault = "client";
|
|
378
|
+
constructor(opts) {
|
|
379
|
+
super({
|
|
380
|
+
name: "EndpointDisabledException",
|
|
381
|
+
$fault: "client",
|
|
382
|
+
...opts,
|
|
383
|
+
});
|
|
384
|
+
Object.setPrototypeOf(this, EndpointDisabledException.prototype);
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
class InvalidParameterValueException extends SNSServiceException {
|
|
388
|
+
name = "InvalidParameterValueException";
|
|
389
|
+
$fault = "client";
|
|
390
|
+
constructor(opts) {
|
|
391
|
+
super({
|
|
392
|
+
name: "InvalidParameterValueException",
|
|
393
|
+
$fault: "client",
|
|
394
|
+
...opts,
|
|
395
|
+
});
|
|
396
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
class KMSAccessDeniedException extends SNSServiceException {
|
|
400
|
+
name = "KMSAccessDeniedException";
|
|
401
|
+
$fault = "client";
|
|
402
|
+
constructor(opts) {
|
|
403
|
+
super({
|
|
404
|
+
name: "KMSAccessDeniedException",
|
|
405
|
+
$fault: "client",
|
|
406
|
+
...opts,
|
|
407
|
+
});
|
|
408
|
+
Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
class KMSDisabledException extends SNSServiceException {
|
|
412
|
+
name = "KMSDisabledException";
|
|
413
|
+
$fault = "client";
|
|
414
|
+
constructor(opts) {
|
|
415
|
+
super({
|
|
416
|
+
name: "KMSDisabledException",
|
|
417
|
+
$fault: "client",
|
|
418
|
+
...opts,
|
|
419
|
+
});
|
|
420
|
+
Object.setPrototypeOf(this, KMSDisabledException.prototype);
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
class KMSInvalidStateException extends SNSServiceException {
|
|
424
|
+
name = "KMSInvalidStateException";
|
|
425
|
+
$fault = "client";
|
|
426
|
+
constructor(opts) {
|
|
427
|
+
super({
|
|
428
|
+
name: "KMSInvalidStateException",
|
|
429
|
+
$fault: "client",
|
|
430
|
+
...opts,
|
|
431
|
+
});
|
|
432
|
+
Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
class KMSNotFoundException extends SNSServiceException {
|
|
436
|
+
name = "KMSNotFoundException";
|
|
437
|
+
$fault = "client";
|
|
438
|
+
constructor(opts) {
|
|
439
|
+
super({
|
|
440
|
+
name: "KMSNotFoundException",
|
|
441
|
+
$fault: "client",
|
|
442
|
+
...opts,
|
|
443
|
+
});
|
|
444
|
+
Object.setPrototypeOf(this, KMSNotFoundException.prototype);
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
class KMSOptInRequired extends SNSServiceException {
|
|
448
|
+
name = "KMSOptInRequired";
|
|
449
|
+
$fault = "client";
|
|
450
|
+
constructor(opts) {
|
|
451
|
+
super({
|
|
452
|
+
name: "KMSOptInRequired",
|
|
453
|
+
$fault: "client",
|
|
454
|
+
...opts,
|
|
455
|
+
});
|
|
456
|
+
Object.setPrototypeOf(this, KMSOptInRequired.prototype);
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
class KMSThrottlingException extends SNSServiceException {
|
|
460
|
+
name = "KMSThrottlingException";
|
|
461
|
+
$fault = "client";
|
|
462
|
+
constructor(opts) {
|
|
463
|
+
super({
|
|
464
|
+
name: "KMSThrottlingException",
|
|
465
|
+
$fault: "client",
|
|
466
|
+
...opts,
|
|
467
|
+
});
|
|
468
|
+
Object.setPrototypeOf(this, KMSThrottlingException.prototype);
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
class PlatformApplicationDisabledException extends SNSServiceException {
|
|
472
|
+
name = "PlatformApplicationDisabledException";
|
|
473
|
+
$fault = "client";
|
|
474
|
+
constructor(opts) {
|
|
475
|
+
super({
|
|
476
|
+
name: "PlatformApplicationDisabledException",
|
|
477
|
+
$fault: "client",
|
|
478
|
+
...opts,
|
|
479
|
+
});
|
|
480
|
+
Object.setPrototypeOf(this, PlatformApplicationDisabledException.prototype);
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
class BatchEntryIdsNotDistinctException extends SNSServiceException {
|
|
484
|
+
name = "BatchEntryIdsNotDistinctException";
|
|
485
|
+
$fault = "client";
|
|
486
|
+
constructor(opts) {
|
|
487
|
+
super({
|
|
488
|
+
name: "BatchEntryIdsNotDistinctException",
|
|
489
|
+
$fault: "client",
|
|
490
|
+
...opts,
|
|
491
|
+
});
|
|
492
|
+
Object.setPrototypeOf(this, BatchEntryIdsNotDistinctException.prototype);
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
class BatchRequestTooLongException extends SNSServiceException {
|
|
496
|
+
name = "BatchRequestTooLongException";
|
|
497
|
+
$fault = "client";
|
|
498
|
+
constructor(opts) {
|
|
499
|
+
super({
|
|
500
|
+
name: "BatchRequestTooLongException",
|
|
501
|
+
$fault: "client",
|
|
502
|
+
...opts,
|
|
503
|
+
});
|
|
504
|
+
Object.setPrototypeOf(this, BatchRequestTooLongException.prototype);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
class EmptyBatchRequestException extends SNSServiceException {
|
|
508
|
+
name = "EmptyBatchRequestException";
|
|
509
|
+
$fault = "client";
|
|
510
|
+
constructor(opts) {
|
|
511
|
+
super({
|
|
512
|
+
name: "EmptyBatchRequestException",
|
|
513
|
+
$fault: "client",
|
|
514
|
+
...opts,
|
|
515
|
+
});
|
|
516
|
+
Object.setPrototypeOf(this, EmptyBatchRequestException.prototype);
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
class InvalidBatchEntryIdException extends SNSServiceException {
|
|
520
|
+
name = "InvalidBatchEntryIdException";
|
|
521
|
+
$fault = "client";
|
|
522
|
+
constructor(opts) {
|
|
523
|
+
super({
|
|
524
|
+
name: "InvalidBatchEntryIdException",
|
|
525
|
+
$fault: "client",
|
|
526
|
+
...opts,
|
|
527
|
+
});
|
|
528
|
+
Object.setPrototypeOf(this, InvalidBatchEntryIdException.prototype);
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
class TooManyEntriesInBatchRequestException extends SNSServiceException {
|
|
532
|
+
name = "TooManyEntriesInBatchRequestException";
|
|
533
|
+
$fault = "client";
|
|
534
|
+
constructor(opts) {
|
|
535
|
+
super({
|
|
536
|
+
name: "TooManyEntriesInBatchRequestException",
|
|
537
|
+
$fault: "client",
|
|
538
|
+
...opts,
|
|
539
|
+
});
|
|
540
|
+
Object.setPrototypeOf(this, TooManyEntriesInBatchRequestException.prototype);
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
class VerificationException extends SNSServiceException {
|
|
544
|
+
name = "VerificationException";
|
|
545
|
+
$fault = "client";
|
|
546
|
+
Message;
|
|
547
|
+
Status;
|
|
548
|
+
constructor(opts) {
|
|
549
|
+
super({
|
|
550
|
+
name: "VerificationException",
|
|
551
|
+
$fault: "client",
|
|
552
|
+
...opts,
|
|
553
|
+
});
|
|
554
|
+
Object.setPrototypeOf(this, VerificationException.prototype);
|
|
555
|
+
this.Message = opts.Message;
|
|
556
|
+
this.Status = opts.Status;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
const _A = "Attributes";
|
|
561
|
+
const _AEE = "AuthorizationErrorException";
|
|
562
|
+
const _AN = "ActionName";
|
|
563
|
+
const _ANt = "AttributeName";
|
|
564
|
+
const _AOU = "AuthenticateOnUnsubscribe";
|
|
565
|
+
const _AP = "AddPermission";
|
|
566
|
+
const _API = "AddPermissionInput";
|
|
567
|
+
const _AV = "AttributeValue";
|
|
568
|
+
const _AWSAI = "AWSAccountId";
|
|
569
|
+
const _BEINDE = "BatchEntryIdsNotDistinctException";
|
|
570
|
+
const _BREE = "BatchResultErrorEntry";
|
|
571
|
+
const _BREEL = "BatchResultErrorEntryList";
|
|
572
|
+
const _BRTLE = "BatchRequestTooLongException";
|
|
573
|
+
const _BV = "BinaryValue";
|
|
574
|
+
const _C = "Code";
|
|
575
|
+
const _CA = "CreatedAt";
|
|
576
|
+
const _CAE = "ConcurrentAccessException";
|
|
577
|
+
const _CER = "CreateEndpointResponse";
|
|
578
|
+
const _CIPNIOO = "CheckIfPhoneNumberIsOptedOut";
|
|
579
|
+
const _CIPNIOOI = "CheckIfPhoneNumberIsOptedOutInput";
|
|
580
|
+
const _CIPNIOOR = "CheckIfPhoneNumberIsOptedOutResponse";
|
|
581
|
+
const _CPA = "CreatePlatformApplication";
|
|
582
|
+
const _CPAI = "CreatePlatformApplicationInput";
|
|
583
|
+
const _CPAR = "CreatePlatformApplicationResponse";
|
|
584
|
+
const _CPE = "CreatePlatformEndpoint";
|
|
585
|
+
const _CPEI = "CreatePlatformEndpointInput";
|
|
586
|
+
const _CS = "ConfirmSubscription";
|
|
587
|
+
const _CSI = "ConfirmSubscriptionInput";
|
|
588
|
+
const _CSMSSPN = "CreateSMSSandboxPhoneNumber";
|
|
589
|
+
const _CSMSSPNI = "CreateSMSSandboxPhoneNumberInput";
|
|
590
|
+
const _CSMSSPNR = "CreateSMSSandboxPhoneNumberResult";
|
|
591
|
+
const _CSR = "ConfirmSubscriptionResponse";
|
|
592
|
+
const _CT = "CreateTopic";
|
|
593
|
+
const _CTI = "CreateTopicInput";
|
|
594
|
+
const _CTR = "CreateTopicResponse";
|
|
595
|
+
const _CUD = "CustomUserData";
|
|
596
|
+
const _DE = "DeleteEndpoint";
|
|
597
|
+
const _DEI = "DeleteEndpointInput";
|
|
598
|
+
const _DPA = "DeletePlatformApplication";
|
|
599
|
+
const _DPAI = "DeletePlatformApplicationInput";
|
|
600
|
+
const _DPP = "DataProtectionPolicy";
|
|
601
|
+
const _DSMSSPN = "DeleteSMSSandboxPhoneNumber";
|
|
602
|
+
const _DSMSSPNI = "DeleteSMSSandboxPhoneNumberInput";
|
|
603
|
+
const _DSMSSPNR = "DeleteSMSSandboxPhoneNumberResult";
|
|
604
|
+
const _DT = "DataType";
|
|
605
|
+
const _DTI = "DeleteTopicInput";
|
|
606
|
+
const _DTe = "DeleteTopic";
|
|
607
|
+
const _E = "Endpoint";
|
|
608
|
+
const _EA = "EndpointArn";
|
|
609
|
+
const _EBRE = "EmptyBatchRequestException";
|
|
610
|
+
const _EDE = "EndpointDisabledException";
|
|
611
|
+
const _En = "Endpoints";
|
|
612
|
+
const _F = "Failed";
|
|
613
|
+
const _FPLEE = "FilterPolicyLimitExceededException";
|
|
614
|
+
const _GDPP = "GetDataProtectionPolicy";
|
|
615
|
+
const _GDPPI = "GetDataProtectionPolicyInput";
|
|
616
|
+
const _GDPPR = "GetDataProtectionPolicyResponse";
|
|
617
|
+
const _GEA = "GetEndpointAttributes";
|
|
618
|
+
const _GEAI = "GetEndpointAttributesInput";
|
|
619
|
+
const _GEAR = "GetEndpointAttributesResponse";
|
|
620
|
+
const _GPAA = "GetPlatformApplicationAttributes";
|
|
621
|
+
const _GPAAI = "GetPlatformApplicationAttributesInput";
|
|
622
|
+
const _GPAAR = "GetPlatformApplicationAttributesResponse";
|
|
623
|
+
const _GSA = "GetSubscriptionAttributes";
|
|
624
|
+
const _GSAI = "GetSubscriptionAttributesInput";
|
|
625
|
+
const _GSAR = "GetSubscriptionAttributesResponse";
|
|
626
|
+
const _GSMSA = "GetSMSAttributes";
|
|
627
|
+
const _GSMSAI = "GetSMSAttributesInput";
|
|
628
|
+
const _GSMSAR = "GetSMSAttributesResponse";
|
|
629
|
+
const _GSMSSAS = "GetSMSSandboxAccountStatus";
|
|
630
|
+
const _GSMSSASI = "GetSMSSandboxAccountStatusInput";
|
|
631
|
+
const _GSMSSASR = "GetSMSSandboxAccountStatusResult";
|
|
632
|
+
const _GTA = "GetTopicAttributes";
|
|
633
|
+
const _GTAI = "GetTopicAttributesInput";
|
|
634
|
+
const _GTAR = "GetTopicAttributesResponse";
|
|
635
|
+
const _I = "Id";
|
|
636
|
+
const _IBEIE = "InvalidBatchEntryIdException";
|
|
637
|
+
const _ICC = "Iso2CountryCode";
|
|
638
|
+
const _IEE = "InternalErrorException";
|
|
639
|
+
const _IIS = "IsInSandbox";
|
|
640
|
+
const _IPE = "InvalidParameterException";
|
|
641
|
+
const _IPVE = "InvalidParameterValueException";
|
|
642
|
+
const _ISE = "InvalidSecurityException";
|
|
643
|
+
const _ISEn = "InvalidStateException";
|
|
644
|
+
const _K = "Key";
|
|
645
|
+
const _KMSADE = "KMSAccessDeniedException";
|
|
646
|
+
const _KMSDE = "KMSDisabledException";
|
|
647
|
+
const _KMSISE = "KMSInvalidStateException";
|
|
648
|
+
const _KMSNFE = "KMSNotFoundException";
|
|
649
|
+
const _KMSOIR = "KMSOptInRequired";
|
|
650
|
+
const _KMSTE = "KMSThrottlingException";
|
|
651
|
+
const _L = "Label";
|
|
652
|
+
const _LC = "LanguageCode";
|
|
653
|
+
const _LEBPA = "ListEndpointsByPlatformApplication";
|
|
654
|
+
const _LEBPAI = "ListEndpointsByPlatformApplicationInput";
|
|
655
|
+
const _LEBPAR = "ListEndpointsByPlatformApplicationResponse";
|
|
656
|
+
const _LOE = "ListOfEndpoints";
|
|
657
|
+
const _LON = "ListOriginationNumbers";
|
|
658
|
+
const _LONR = "ListOriginationNumbersRequest";
|
|
659
|
+
const _LONRi = "ListOriginationNumbersResult";
|
|
660
|
+
const _LOPA = "ListOfPlatformApplications";
|
|
661
|
+
const _LPA = "ListPlatformApplications";
|
|
662
|
+
const _LPAI = "ListPlatformApplicationsInput";
|
|
663
|
+
const _LPAR = "ListPlatformApplicationsResponse";
|
|
664
|
+
const _LPNOO = "ListPhoneNumbersOptedOut";
|
|
665
|
+
const _LPNOOI = "ListPhoneNumbersOptedOutInput";
|
|
666
|
+
const _LPNOOR = "ListPhoneNumbersOptedOutResponse";
|
|
667
|
+
const _LS = "ListSubscriptions";
|
|
668
|
+
const _LSBT = "ListSubscriptionsByTopic";
|
|
669
|
+
const _LSBTI = "ListSubscriptionsByTopicInput";
|
|
670
|
+
const _LSBTR = "ListSubscriptionsByTopicResponse";
|
|
671
|
+
const _LSI = "ListSubscriptionsInput";
|
|
672
|
+
const _LSMSSPN = "ListSMSSandboxPhoneNumbers";
|
|
673
|
+
const _LSMSSPNI = "ListSMSSandboxPhoneNumbersInput";
|
|
674
|
+
const _LSMSSPNR = "ListSMSSandboxPhoneNumbersResult";
|
|
675
|
+
const _LSR = "ListSubscriptionsResponse";
|
|
676
|
+
const _LT = "ListTopics";
|
|
677
|
+
const _LTFR = "ListTagsForResource";
|
|
678
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
679
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
680
|
+
const _LTI = "ListTopicsInput";
|
|
681
|
+
const _LTR = "ListTopicsResponse";
|
|
682
|
+
const _M = "Message";
|
|
683
|
+
const _MA = "MessageAttributes";
|
|
684
|
+
const _MAM = "MessageAttributeMap";
|
|
685
|
+
const _MAV = "MessageAttributeValue";
|
|
686
|
+
const _MDI = "MessageDeduplicationId";
|
|
687
|
+
const _MGI = "MessageGroupId";
|
|
688
|
+
const _MI = "MessageId";
|
|
689
|
+
const _MR = "MaxResults";
|
|
690
|
+
const _MS = "MessageStructure";
|
|
691
|
+
const _N = "Name";
|
|
692
|
+
const _NC = "NumberCapabilities";
|
|
693
|
+
const _NFE = "NotFoundException";
|
|
694
|
+
const _NT = "NextToken";
|
|
695
|
+
const _O = "Owner";
|
|
696
|
+
const _OIPN = "OptInPhoneNumber";
|
|
697
|
+
const _OIPNI = "OptInPhoneNumberInput";
|
|
698
|
+
const _OIPNR = "OptInPhoneNumberResponse";
|
|
699
|
+
const _OOE = "OptedOutException";
|
|
700
|
+
const _OTP = "OneTimePassword";
|
|
701
|
+
const _P = "Platform";
|
|
702
|
+
const _PA = "PlatformApplications";
|
|
703
|
+
const _PAA = "PlatformApplicationArn";
|
|
704
|
+
const _PADE = "PlatformApplicationDisabledException";
|
|
705
|
+
const _PAl = "PlatformApplication";
|
|
706
|
+
const _PB = "PublishBatch";
|
|
707
|
+
const _PBI = "PublishBatchInput";
|
|
708
|
+
const _PBR = "PublishBatchResponse";
|
|
709
|
+
const _PBRE = "PublishBatchRequestEntries";
|
|
710
|
+
const _PBREL = "PublishBatchRequestEntryList";
|
|
711
|
+
const _PBRELu = "PublishBatchResultEntryList";
|
|
712
|
+
const _PBREu = "PublishBatchRequestEntry";
|
|
713
|
+
const _PBREub = "PublishBatchResultEntry";
|
|
714
|
+
const _PDPP = "PutDataProtectionPolicy";
|
|
715
|
+
const _PDPPI = "PutDataProtectionPolicyInput";
|
|
716
|
+
const _PI = "PublishInput";
|
|
717
|
+
const _PN = "PhoneNumber";
|
|
718
|
+
const _PNI = "PhoneNumberInformation";
|
|
719
|
+
const _PNIL = "PhoneNumberInformationList";
|
|
720
|
+
const _PNL = "PhoneNumberList";
|
|
721
|
+
const _PNS = "PhoneNumberString";
|
|
722
|
+
const _PNh = "PhoneNumbers";
|
|
723
|
+
const _PR = "PublishResponse";
|
|
724
|
+
const _Pr = "Protocol";
|
|
725
|
+
const _Pu = "Publish";
|
|
726
|
+
const _RA = "ResourceArn";
|
|
727
|
+
const _RLEE = "ReplayLimitExceededException";
|
|
728
|
+
const _RNFE = "ResourceNotFoundException";
|
|
729
|
+
const _RP = "RemovePermission";
|
|
730
|
+
const _RPI = "RemovePermissionInput";
|
|
731
|
+
const _RSA = "ReturnSubscriptionArn";
|
|
732
|
+
const _RT = "RouteType";
|
|
733
|
+
const _S = "Status";
|
|
734
|
+
const _SA = "SubscriptionArn";
|
|
735
|
+
const _SEA = "SetEndpointAttributes";
|
|
736
|
+
const _SEAI = "SetEndpointAttributesInput";
|
|
737
|
+
const _SF = "SenderFault";
|
|
738
|
+
const _SI = "SubscribeInput";
|
|
739
|
+
const _SL = "SubscriptionsList";
|
|
740
|
+
const _SLEE = "SubscriptionLimitExceededException";
|
|
741
|
+
const _SMSSPN = "SMSSandboxPhoneNumber";
|
|
742
|
+
const _SMSSPNL = "SMSSandboxPhoneNumberList";
|
|
743
|
+
const _SN = "SequenceNumber";
|
|
744
|
+
const _SPAA = "SetPlatformApplicationAttributes";
|
|
745
|
+
const _SPAAI = "SetPlatformApplicationAttributesInput";
|
|
746
|
+
const _SR = "SubscribeResponse";
|
|
747
|
+
const _SSA = "SetSubscriptionAttributes";
|
|
748
|
+
const _SSAI = "SetSubscriptionAttributesInput";
|
|
749
|
+
const _SSMSA = "SetSMSAttributes";
|
|
750
|
+
const _SSMSAI = "SetSMSAttributesInput";
|
|
751
|
+
const _SSMSAR = "SetSMSAttributesResponse";
|
|
752
|
+
const _STA = "SetTopicAttributes";
|
|
753
|
+
const _STAI = "SetTopicAttributesInput";
|
|
754
|
+
const _STE = "StaleTagException";
|
|
755
|
+
const _SV = "StringValue";
|
|
756
|
+
const _Su = "Subscriptions";
|
|
757
|
+
const _Sub = "Subject";
|
|
758
|
+
const _Subs = "Subscription";
|
|
759
|
+
const _Subsc = "Subscribe";
|
|
760
|
+
const _Suc = "Successful";
|
|
761
|
+
const _T = "Token";
|
|
762
|
+
const _TA = "TopicArn";
|
|
763
|
+
const _TAa = "TargetArn";
|
|
764
|
+
const _TE = "ThrottledException";
|
|
765
|
+
const _TK = "TagKeys";
|
|
766
|
+
const _TL = "TagList";
|
|
767
|
+
const _TLEE = "TagLimitExceededException";
|
|
768
|
+
const _TLEEo = "TopicLimitExceededException";
|
|
769
|
+
const _TLo = "TopicsList";
|
|
770
|
+
const _TMEIBRE = "TooManyEntriesInBatchRequestException";
|
|
771
|
+
const _TPE = "TagPolicyException";
|
|
772
|
+
const _TR = "TagResource";
|
|
773
|
+
const _TRR = "TagResourceRequest";
|
|
774
|
+
const _TRRa = "TagResourceResponse";
|
|
775
|
+
const _Ta = "Tags";
|
|
776
|
+
const _Tag = "Tag";
|
|
777
|
+
const _To = "Topics";
|
|
778
|
+
const _Top = "Topic";
|
|
779
|
+
const _U = "Unsubscribe";
|
|
780
|
+
const _UEE = "UserErrorException";
|
|
781
|
+
const _UI = "UnsubscribeInput";
|
|
782
|
+
const _UR = "UntagResource";
|
|
783
|
+
const _URR = "UntagResourceRequest";
|
|
784
|
+
const _URRn = "UntagResourceResponse";
|
|
785
|
+
const _V = "Value";
|
|
786
|
+
const _VE = "ValidationException";
|
|
787
|
+
const _VEe = "VerificationException";
|
|
788
|
+
const _VSMSSPN = "VerifySMSSandboxPhoneNumber";
|
|
789
|
+
const _VSMSSPNI = "VerifySMSSandboxPhoneNumberInput";
|
|
790
|
+
const _VSMSSPNR = "VerifySMSSandboxPhoneNumberResult";
|
|
791
|
+
const _a = "attributes";
|
|
792
|
+
const _aQE = "awsQueryError";
|
|
793
|
+
const _c = "client";
|
|
794
|
+
const _e = "error";
|
|
795
|
+
const _hE = "httpError";
|
|
796
|
+
const _iOO = "isOptedOut";
|
|
797
|
+
const _m = "message";
|
|
798
|
+
const _nT = "nextToken";
|
|
799
|
+
const _pN = "phoneNumber";
|
|
800
|
+
const _pNh = "phoneNumbers";
|
|
801
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.sns";
|
|
802
|
+
const _se = "server";
|
|
803
|
+
const _xN = "xmlName";
|
|
804
|
+
const n0 = "com.amazonaws.sns";
|
|
805
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
806
|
+
var SNSServiceException$ = [-3, _s, "SNSServiceException", 0, [], []];
|
|
807
|
+
_s_registry.registerError(SNSServiceException$, SNSServiceException);
|
|
808
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
809
|
+
var AuthorizationErrorException$ = [-3, n0, _AEE,
|
|
810
|
+
{ [_aQE]: [`AuthorizationError`, 403], [_e]: _c, [_hE]: 403 },
|
|
811
|
+
[_m],
|
|
812
|
+
[0]
|
|
813
|
+
];
|
|
814
|
+
n0_registry.registerError(AuthorizationErrorException$, AuthorizationErrorException);
|
|
815
|
+
var BatchEntryIdsNotDistinctException$ = [-3, n0, _BEINDE,
|
|
816
|
+
{ [_aQE]: [`BatchEntryIdsNotDistinct`, 400], [_e]: _c, [_hE]: 400 },
|
|
817
|
+
[_m],
|
|
818
|
+
[0]
|
|
819
|
+
];
|
|
820
|
+
n0_registry.registerError(BatchEntryIdsNotDistinctException$, BatchEntryIdsNotDistinctException);
|
|
821
|
+
var BatchRequestTooLongException$ = [-3, n0, _BRTLE,
|
|
822
|
+
{ [_aQE]: [`BatchRequestTooLong`, 400], [_e]: _c, [_hE]: 400 },
|
|
823
|
+
[_m],
|
|
824
|
+
[0]
|
|
825
|
+
];
|
|
826
|
+
n0_registry.registerError(BatchRequestTooLongException$, BatchRequestTooLongException);
|
|
827
|
+
var ConcurrentAccessException$ = [-3, n0, _CAE,
|
|
828
|
+
{ [_aQE]: [`ConcurrentAccess`, 400], [_e]: _c, [_hE]: 400 },
|
|
829
|
+
[_m],
|
|
830
|
+
[0]
|
|
831
|
+
];
|
|
832
|
+
n0_registry.registerError(ConcurrentAccessException$, ConcurrentAccessException);
|
|
833
|
+
var EmptyBatchRequestException$ = [-3, n0, _EBRE,
|
|
834
|
+
{ [_aQE]: [`EmptyBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
835
|
+
[_m],
|
|
836
|
+
[0]
|
|
837
|
+
];
|
|
838
|
+
n0_registry.registerError(EmptyBatchRequestException$, EmptyBatchRequestException);
|
|
839
|
+
var EndpointDisabledException$ = [-3, n0, _EDE,
|
|
840
|
+
{ [_aQE]: [`EndpointDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
841
|
+
[_m],
|
|
842
|
+
[0]
|
|
843
|
+
];
|
|
844
|
+
n0_registry.registerError(EndpointDisabledException$, EndpointDisabledException);
|
|
845
|
+
var FilterPolicyLimitExceededException$ = [-3, n0, _FPLEE,
|
|
846
|
+
{ [_aQE]: [`FilterPolicyLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
847
|
+
[_m],
|
|
848
|
+
[0]
|
|
849
|
+
];
|
|
850
|
+
n0_registry.registerError(FilterPolicyLimitExceededException$, FilterPolicyLimitExceededException);
|
|
851
|
+
var InternalErrorException$ = [-3, n0, _IEE,
|
|
852
|
+
{ [_aQE]: [`InternalError`, 500], [_e]: _se, [_hE]: 500 },
|
|
853
|
+
[_m],
|
|
854
|
+
[0]
|
|
855
|
+
];
|
|
856
|
+
n0_registry.registerError(InternalErrorException$, InternalErrorException);
|
|
857
|
+
var InvalidBatchEntryIdException$ = [-3, n0, _IBEIE,
|
|
858
|
+
{ [_aQE]: [`InvalidBatchEntryId`, 400], [_e]: _c, [_hE]: 400 },
|
|
859
|
+
[_m],
|
|
860
|
+
[0]
|
|
861
|
+
];
|
|
862
|
+
n0_registry.registerError(InvalidBatchEntryIdException$, InvalidBatchEntryIdException);
|
|
863
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
864
|
+
{ [_aQE]: [`InvalidParameter`, 400], [_e]: _c, [_hE]: 400 },
|
|
865
|
+
[_m],
|
|
866
|
+
[0]
|
|
867
|
+
];
|
|
868
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
869
|
+
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
870
|
+
{ [_aQE]: [`ParameterValueInvalid`, 400], [_e]: _c, [_hE]: 400 },
|
|
871
|
+
[_m],
|
|
872
|
+
[0]
|
|
873
|
+
];
|
|
874
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
875
|
+
var InvalidSecurityException$ = [-3, n0, _ISE,
|
|
876
|
+
{ [_aQE]: [`InvalidSecurity`, 403], [_e]: _c, [_hE]: 403 },
|
|
877
|
+
[_m],
|
|
878
|
+
[0]
|
|
879
|
+
];
|
|
880
|
+
n0_registry.registerError(InvalidSecurityException$, InvalidSecurityException);
|
|
881
|
+
var InvalidStateException$ = [-3, n0, _ISEn,
|
|
882
|
+
{ [_aQE]: [`InvalidState`, 400], [_e]: _c, [_hE]: 400 },
|
|
883
|
+
[_m],
|
|
884
|
+
[0]
|
|
885
|
+
];
|
|
886
|
+
n0_registry.registerError(InvalidStateException$, InvalidStateException);
|
|
887
|
+
var KMSAccessDeniedException$ = [-3, n0, _KMSADE,
|
|
888
|
+
{ [_aQE]: [`KMSAccessDenied`, 400], [_e]: _c, [_hE]: 400 },
|
|
889
|
+
[_m],
|
|
890
|
+
[0]
|
|
891
|
+
];
|
|
892
|
+
n0_registry.registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
|
|
893
|
+
var KMSDisabledException$ = [-3, n0, _KMSDE,
|
|
894
|
+
{ [_aQE]: [`KMSDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
895
|
+
[_m],
|
|
896
|
+
[0]
|
|
897
|
+
];
|
|
898
|
+
n0_registry.registerError(KMSDisabledException$, KMSDisabledException);
|
|
899
|
+
var KMSInvalidStateException$ = [-3, n0, _KMSISE,
|
|
900
|
+
{ [_aQE]: [`KMSInvalidState`, 400], [_e]: _c, [_hE]: 400 },
|
|
901
|
+
[_m],
|
|
902
|
+
[0]
|
|
903
|
+
];
|
|
904
|
+
n0_registry.registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
905
|
+
var KMSNotFoundException$ = [-3, n0, _KMSNFE,
|
|
906
|
+
{ [_aQE]: [`KMSNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
907
|
+
[_m],
|
|
908
|
+
[0]
|
|
909
|
+
];
|
|
910
|
+
n0_registry.registerError(KMSNotFoundException$, KMSNotFoundException);
|
|
911
|
+
var KMSOptInRequired$ = [-3, n0, _KMSOIR,
|
|
912
|
+
{ [_aQE]: [`KMSOptInRequired`, 403], [_e]: _c, [_hE]: 403 },
|
|
913
|
+
[_m],
|
|
914
|
+
[0]
|
|
915
|
+
];
|
|
916
|
+
n0_registry.registerError(KMSOptInRequired$, KMSOptInRequired);
|
|
917
|
+
var KMSThrottlingException$ = [-3, n0, _KMSTE,
|
|
918
|
+
{ [_aQE]: [`KMSThrottling`, 400], [_e]: _c, [_hE]: 400 },
|
|
919
|
+
[_m],
|
|
920
|
+
[0]
|
|
921
|
+
];
|
|
922
|
+
n0_registry.registerError(KMSThrottlingException$, KMSThrottlingException);
|
|
923
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
924
|
+
{ [_aQE]: [`NotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
925
|
+
[_m],
|
|
926
|
+
[0]
|
|
927
|
+
];
|
|
928
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
929
|
+
var OptedOutException$ = [-3, n0, _OOE,
|
|
930
|
+
{ [_aQE]: [`OptedOut`, 400], [_e]: _c, [_hE]: 400 },
|
|
931
|
+
[_m],
|
|
932
|
+
[0]
|
|
933
|
+
];
|
|
934
|
+
n0_registry.registerError(OptedOutException$, OptedOutException);
|
|
935
|
+
var PlatformApplicationDisabledException$ = [-3, n0, _PADE,
|
|
936
|
+
{ [_aQE]: [`PlatformApplicationDisabled`, 400], [_e]: _c, [_hE]: 400 },
|
|
937
|
+
[_m],
|
|
938
|
+
[0]
|
|
939
|
+
];
|
|
940
|
+
n0_registry.registerError(PlatformApplicationDisabledException$, PlatformApplicationDisabledException);
|
|
941
|
+
var ReplayLimitExceededException$ = [-3, n0, _RLEE,
|
|
942
|
+
{ [_aQE]: [`ReplayLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
943
|
+
[_m],
|
|
944
|
+
[0]
|
|
945
|
+
];
|
|
946
|
+
n0_registry.registerError(ReplayLimitExceededException$, ReplayLimitExceededException);
|
|
947
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
948
|
+
{ [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
949
|
+
[_m],
|
|
950
|
+
[0]
|
|
951
|
+
];
|
|
952
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
953
|
+
var StaleTagException$ = [-3, n0, _STE,
|
|
954
|
+
{ [_aQE]: [`StaleTag`, 400], [_e]: _c, [_hE]: 400 },
|
|
955
|
+
[_m],
|
|
956
|
+
[0]
|
|
957
|
+
];
|
|
958
|
+
n0_registry.registerError(StaleTagException$, StaleTagException);
|
|
959
|
+
var SubscriptionLimitExceededException$ = [-3, n0, _SLEE,
|
|
960
|
+
{ [_aQE]: [`SubscriptionLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
961
|
+
[_m],
|
|
962
|
+
[0]
|
|
963
|
+
];
|
|
964
|
+
n0_registry.registerError(SubscriptionLimitExceededException$, SubscriptionLimitExceededException);
|
|
965
|
+
var TagLimitExceededException$ = [-3, n0, _TLEE,
|
|
966
|
+
{ [_aQE]: [`TagLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
967
|
+
[_m],
|
|
968
|
+
[0]
|
|
969
|
+
];
|
|
970
|
+
n0_registry.registerError(TagLimitExceededException$, TagLimitExceededException);
|
|
971
|
+
var TagPolicyException$ = [-3, n0, _TPE,
|
|
972
|
+
{ [_aQE]: [`TagPolicy`, 400], [_e]: _c, [_hE]: 400 },
|
|
973
|
+
[_m],
|
|
974
|
+
[0]
|
|
975
|
+
];
|
|
976
|
+
n0_registry.registerError(TagPolicyException$, TagPolicyException);
|
|
977
|
+
var ThrottledException$ = [-3, n0, _TE,
|
|
978
|
+
{ [_aQE]: [`Throttled`, 429], [_e]: _c, [_hE]: 429 },
|
|
979
|
+
[_m],
|
|
980
|
+
[0]
|
|
981
|
+
];
|
|
982
|
+
n0_registry.registerError(ThrottledException$, ThrottledException);
|
|
983
|
+
var TooManyEntriesInBatchRequestException$ = [-3, n0, _TMEIBRE,
|
|
984
|
+
{ [_aQE]: [`TooManyEntriesInBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
985
|
+
[_m],
|
|
986
|
+
[0]
|
|
987
|
+
];
|
|
988
|
+
n0_registry.registerError(TooManyEntriesInBatchRequestException$, TooManyEntriesInBatchRequestException);
|
|
989
|
+
var TopicLimitExceededException$ = [-3, n0, _TLEEo,
|
|
990
|
+
{ [_aQE]: [`TopicLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
|
|
991
|
+
[_m],
|
|
992
|
+
[0]
|
|
993
|
+
];
|
|
994
|
+
n0_registry.registerError(TopicLimitExceededException$, TopicLimitExceededException);
|
|
995
|
+
var UserErrorException$ = [-3, n0, _UEE,
|
|
996
|
+
{ [_aQE]: [`UserError`, 400], [_e]: _c, [_hE]: 400 },
|
|
997
|
+
[_m],
|
|
998
|
+
[0]
|
|
999
|
+
];
|
|
1000
|
+
n0_registry.registerError(UserErrorException$, UserErrorException);
|
|
1001
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
1002
|
+
{ [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1003
|
+
[_M],
|
|
1004
|
+
[0], 1
|
|
1005
|
+
];
|
|
1006
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
1007
|
+
var VerificationException$ = [-3, n0, _VEe,
|
|
1008
|
+
{ [_e]: _c },
|
|
1009
|
+
[_M, _S],
|
|
1010
|
+
[0, 0], 2
|
|
1011
|
+
];
|
|
1012
|
+
n0_registry.registerError(VerificationException$, VerificationException);
|
|
1013
|
+
const errorTypeRegistries = [
|
|
1014
|
+
_s_registry,
|
|
1015
|
+
n0_registry,
|
|
1016
|
+
];
|
|
1017
|
+
var PhoneNumber = [0, n0, _PN, 8, 0];
|
|
1018
|
+
var PhoneNumberString = [0, n0, _PNS, 8, 0];
|
|
1019
|
+
var AddPermissionInput$ = [3, n0, _API,
|
|
1020
|
+
0,
|
|
1021
|
+
[_TA, _L, _AWSAI, _AN],
|
|
1022
|
+
[0, 0, 64 | 0, 64 | 0], 4
|
|
1023
|
+
];
|
|
1024
|
+
var BatchResultErrorEntry$ = [3, n0, _BREE,
|
|
1025
|
+
0,
|
|
1026
|
+
[_I, _C, _SF, _M],
|
|
1027
|
+
[0, 0, 2, 0], 3
|
|
1028
|
+
];
|
|
1029
|
+
var CheckIfPhoneNumberIsOptedOutInput$ = [3, n0, _CIPNIOOI,
|
|
1030
|
+
0,
|
|
1031
|
+
[_pN],
|
|
1032
|
+
[[() => PhoneNumber, 0]], 1
|
|
1033
|
+
];
|
|
1034
|
+
var CheckIfPhoneNumberIsOptedOutResponse$ = [3, n0, _CIPNIOOR,
|
|
1035
|
+
0,
|
|
1036
|
+
[_iOO],
|
|
1037
|
+
[2]
|
|
1038
|
+
];
|
|
1039
|
+
var ConfirmSubscriptionInput$ = [3, n0, _CSI,
|
|
1040
|
+
0,
|
|
1041
|
+
[_TA, _T, _AOU],
|
|
1042
|
+
[0, 0, 0], 2
|
|
1043
|
+
];
|
|
1044
|
+
var ConfirmSubscriptionResponse$ = [3, n0, _CSR,
|
|
1045
|
+
0,
|
|
1046
|
+
[_SA],
|
|
1047
|
+
[0]
|
|
1048
|
+
];
|
|
1049
|
+
var CreateEndpointResponse$ = [3, n0, _CER,
|
|
1050
|
+
0,
|
|
1051
|
+
[_EA],
|
|
1052
|
+
[0]
|
|
1053
|
+
];
|
|
1054
|
+
var CreatePlatformApplicationInput$ = [3, n0, _CPAI,
|
|
1055
|
+
0,
|
|
1056
|
+
[_N, _P, _A],
|
|
1057
|
+
[0, 0, 128 | 0], 3
|
|
1058
|
+
];
|
|
1059
|
+
var CreatePlatformApplicationResponse$ = [3, n0, _CPAR,
|
|
1060
|
+
0,
|
|
1061
|
+
[_PAA],
|
|
1062
|
+
[0]
|
|
1063
|
+
];
|
|
1064
|
+
var CreatePlatformEndpointInput$ = [3, n0, _CPEI,
|
|
1065
|
+
0,
|
|
1066
|
+
[_PAA, _T, _CUD, _A],
|
|
1067
|
+
[0, 0, 0, 128 | 0], 2
|
|
1068
|
+
];
|
|
1069
|
+
var CreateSMSSandboxPhoneNumberInput$ = [3, n0, _CSMSSPNI,
|
|
1070
|
+
0,
|
|
1071
|
+
[_PN, _LC],
|
|
1072
|
+
[[() => PhoneNumberString, 0], 0], 1
|
|
1073
|
+
];
|
|
1074
|
+
var CreateSMSSandboxPhoneNumberResult$ = [3, n0, _CSMSSPNR,
|
|
1075
|
+
0,
|
|
1076
|
+
[],
|
|
1077
|
+
[]
|
|
1078
|
+
];
|
|
1079
|
+
var CreateTopicInput$ = [3, n0, _CTI,
|
|
1080
|
+
0,
|
|
1081
|
+
[_N, _A, _Ta, _DPP],
|
|
1082
|
+
[0, 128 | 0, () => TagList, 0], 1
|
|
1083
|
+
];
|
|
1084
|
+
var CreateTopicResponse$ = [3, n0, _CTR,
|
|
1085
|
+
0,
|
|
1086
|
+
[_TA],
|
|
1087
|
+
[0]
|
|
1088
|
+
];
|
|
1089
|
+
var DeleteEndpointInput$ = [3, n0, _DEI,
|
|
1090
|
+
0,
|
|
1091
|
+
[_EA],
|
|
1092
|
+
[0], 1
|
|
1093
|
+
];
|
|
1094
|
+
var DeletePlatformApplicationInput$ = [3, n0, _DPAI,
|
|
1095
|
+
0,
|
|
1096
|
+
[_PAA],
|
|
1097
|
+
[0], 1
|
|
1098
|
+
];
|
|
1099
|
+
var DeleteSMSSandboxPhoneNumberInput$ = [3, n0, _DSMSSPNI,
|
|
1100
|
+
0,
|
|
1101
|
+
[_PN],
|
|
1102
|
+
[[() => PhoneNumberString, 0]], 1
|
|
1103
|
+
];
|
|
1104
|
+
var DeleteSMSSandboxPhoneNumberResult$ = [3, n0, _DSMSSPNR,
|
|
1105
|
+
0,
|
|
1106
|
+
[],
|
|
1107
|
+
[]
|
|
1108
|
+
];
|
|
1109
|
+
var DeleteTopicInput$ = [3, n0, _DTI,
|
|
1110
|
+
0,
|
|
1111
|
+
[_TA],
|
|
1112
|
+
[0], 1
|
|
1113
|
+
];
|
|
1114
|
+
var Endpoint$ = [3, n0, _E,
|
|
1115
|
+
0,
|
|
1116
|
+
[_EA, _A],
|
|
1117
|
+
[0, 128 | 0]
|
|
1118
|
+
];
|
|
1119
|
+
var GetDataProtectionPolicyInput$ = [3, n0, _GDPPI,
|
|
1120
|
+
0,
|
|
1121
|
+
[_RA],
|
|
1122
|
+
[0], 1
|
|
1123
|
+
];
|
|
1124
|
+
var GetDataProtectionPolicyResponse$ = [3, n0, _GDPPR,
|
|
1125
|
+
0,
|
|
1126
|
+
[_DPP],
|
|
1127
|
+
[0]
|
|
1128
|
+
];
|
|
1129
|
+
var GetEndpointAttributesInput$ = [3, n0, _GEAI,
|
|
1130
|
+
0,
|
|
1131
|
+
[_EA],
|
|
1132
|
+
[0], 1
|
|
1133
|
+
];
|
|
1134
|
+
var GetEndpointAttributesResponse$ = [3, n0, _GEAR,
|
|
1135
|
+
0,
|
|
1136
|
+
[_A],
|
|
1137
|
+
[128 | 0]
|
|
1138
|
+
];
|
|
1139
|
+
var GetPlatformApplicationAttributesInput$ = [3, n0, _GPAAI,
|
|
1140
|
+
0,
|
|
1141
|
+
[_PAA],
|
|
1142
|
+
[0], 1
|
|
1143
|
+
];
|
|
1144
|
+
var GetPlatformApplicationAttributesResponse$ = [3, n0, _GPAAR,
|
|
1145
|
+
0,
|
|
1146
|
+
[_A],
|
|
1147
|
+
[128 | 0]
|
|
1148
|
+
];
|
|
1149
|
+
var GetSMSAttributesInput$ = [3, n0, _GSMSAI,
|
|
1150
|
+
0,
|
|
1151
|
+
[_a],
|
|
1152
|
+
[64 | 0]
|
|
1153
|
+
];
|
|
1154
|
+
var GetSMSAttributesResponse$ = [3, n0, _GSMSAR,
|
|
1155
|
+
0,
|
|
1156
|
+
[_a],
|
|
1157
|
+
[128 | 0]
|
|
1158
|
+
];
|
|
1159
|
+
var GetSMSSandboxAccountStatusInput$ = [3, n0, _GSMSSASI,
|
|
1160
|
+
0,
|
|
1161
|
+
[],
|
|
1162
|
+
[]
|
|
1163
|
+
];
|
|
1164
|
+
var GetSMSSandboxAccountStatusResult$ = [3, n0, _GSMSSASR,
|
|
1165
|
+
0,
|
|
1166
|
+
[_IIS],
|
|
1167
|
+
[2], 1
|
|
1168
|
+
];
|
|
1169
|
+
var GetSubscriptionAttributesInput$ = [3, n0, _GSAI,
|
|
1170
|
+
0,
|
|
1171
|
+
[_SA],
|
|
1172
|
+
[0], 1
|
|
1173
|
+
];
|
|
1174
|
+
var GetSubscriptionAttributesResponse$ = [3, n0, _GSAR,
|
|
1175
|
+
0,
|
|
1176
|
+
[_A],
|
|
1177
|
+
[128 | 0]
|
|
1178
|
+
];
|
|
1179
|
+
var GetTopicAttributesInput$ = [3, n0, _GTAI,
|
|
1180
|
+
0,
|
|
1181
|
+
[_TA],
|
|
1182
|
+
[0], 1
|
|
1183
|
+
];
|
|
1184
|
+
var GetTopicAttributesResponse$ = [3, n0, _GTAR,
|
|
1185
|
+
0,
|
|
1186
|
+
[_A],
|
|
1187
|
+
[128 | 0]
|
|
1188
|
+
];
|
|
1189
|
+
var ListEndpointsByPlatformApplicationInput$ = [3, n0, _LEBPAI,
|
|
1190
|
+
0,
|
|
1191
|
+
[_PAA, _NT],
|
|
1192
|
+
[0, 0], 1
|
|
1193
|
+
];
|
|
1194
|
+
var ListEndpointsByPlatformApplicationResponse$ = [3, n0, _LEBPAR,
|
|
1195
|
+
0,
|
|
1196
|
+
[_En, _NT],
|
|
1197
|
+
[() => ListOfEndpoints, 0]
|
|
1198
|
+
];
|
|
1199
|
+
var ListOriginationNumbersRequest$ = [3, n0, _LONR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_NT, _MR],
|
|
1202
|
+
[0, 1]
|
|
1203
|
+
];
|
|
1204
|
+
var ListOriginationNumbersResult$ = [3, n0, _LONRi,
|
|
1205
|
+
0,
|
|
1206
|
+
[_NT, _PNh],
|
|
1207
|
+
[0, [() => PhoneNumberInformationList, 0]]
|
|
1208
|
+
];
|
|
1209
|
+
var ListPhoneNumbersOptedOutInput$ = [3, n0, _LPNOOI,
|
|
1210
|
+
0,
|
|
1211
|
+
[_nT],
|
|
1212
|
+
[0]
|
|
1213
|
+
];
|
|
1214
|
+
var ListPhoneNumbersOptedOutResponse$ = [3, n0, _LPNOOR,
|
|
1215
|
+
0,
|
|
1216
|
+
[_pNh, _nT],
|
|
1217
|
+
[[() => PhoneNumberList, 0], 0]
|
|
1218
|
+
];
|
|
1219
|
+
var ListPlatformApplicationsInput$ = [3, n0, _LPAI,
|
|
1220
|
+
0,
|
|
1221
|
+
[_NT],
|
|
1222
|
+
[0]
|
|
1223
|
+
];
|
|
1224
|
+
var ListPlatformApplicationsResponse$ = [3, n0, _LPAR,
|
|
1225
|
+
0,
|
|
1226
|
+
[_PA, _NT],
|
|
1227
|
+
[() => ListOfPlatformApplications, 0]
|
|
1228
|
+
];
|
|
1229
|
+
var ListSMSSandboxPhoneNumbersInput$ = [3, n0, _LSMSSPNI,
|
|
1230
|
+
0,
|
|
1231
|
+
[_NT, _MR],
|
|
1232
|
+
[0, 1]
|
|
1233
|
+
];
|
|
1234
|
+
var ListSMSSandboxPhoneNumbersResult$ = [3, n0, _LSMSSPNR,
|
|
1235
|
+
0,
|
|
1236
|
+
[_PNh, _NT],
|
|
1237
|
+
[[() => SMSSandboxPhoneNumberList, 0], 0], 1
|
|
1238
|
+
];
|
|
1239
|
+
var ListSubscriptionsByTopicInput$ = [3, n0, _LSBTI,
|
|
1240
|
+
0,
|
|
1241
|
+
[_TA, _NT],
|
|
1242
|
+
[0, 0], 1
|
|
1243
|
+
];
|
|
1244
|
+
var ListSubscriptionsByTopicResponse$ = [3, n0, _LSBTR,
|
|
1245
|
+
0,
|
|
1246
|
+
[_Su, _NT],
|
|
1247
|
+
[() => SubscriptionsList, 0]
|
|
1248
|
+
];
|
|
1249
|
+
var ListSubscriptionsInput$ = [3, n0, _LSI,
|
|
1250
|
+
0,
|
|
1251
|
+
[_NT],
|
|
1252
|
+
[0]
|
|
1253
|
+
];
|
|
1254
|
+
var ListSubscriptionsResponse$ = [3, n0, _LSR,
|
|
1255
|
+
0,
|
|
1256
|
+
[_Su, _NT],
|
|
1257
|
+
[() => SubscriptionsList, 0]
|
|
1258
|
+
];
|
|
1259
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1260
|
+
0,
|
|
1261
|
+
[_RA],
|
|
1262
|
+
[0], 1
|
|
1263
|
+
];
|
|
1264
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1265
|
+
0,
|
|
1266
|
+
[_Ta],
|
|
1267
|
+
[() => TagList]
|
|
1268
|
+
];
|
|
1269
|
+
var ListTopicsInput$ = [3, n0, _LTI,
|
|
1270
|
+
0,
|
|
1271
|
+
[_NT],
|
|
1272
|
+
[0]
|
|
1273
|
+
];
|
|
1274
|
+
var ListTopicsResponse$ = [3, n0, _LTR,
|
|
1275
|
+
0,
|
|
1276
|
+
[_To, _NT],
|
|
1277
|
+
[() => TopicsList, 0]
|
|
1278
|
+
];
|
|
1279
|
+
var MessageAttributeValue$ = [3, n0, _MAV,
|
|
1280
|
+
0,
|
|
1281
|
+
[_DT, _SV, _BV],
|
|
1282
|
+
[0, 0, 21], 1
|
|
1283
|
+
];
|
|
1284
|
+
var OptInPhoneNumberInput$ = [3, n0, _OIPNI,
|
|
1285
|
+
0,
|
|
1286
|
+
[_pN],
|
|
1287
|
+
[[() => PhoneNumber, 0]], 1
|
|
1288
|
+
];
|
|
1289
|
+
var OptInPhoneNumberResponse$ = [3, n0, _OIPNR,
|
|
1290
|
+
0,
|
|
1291
|
+
[],
|
|
1292
|
+
[]
|
|
1293
|
+
];
|
|
1294
|
+
var PhoneNumberInformation$ = [3, n0, _PNI,
|
|
1295
|
+
0,
|
|
1296
|
+
[_CA, _PN, _S, _ICC, _RT, _NC],
|
|
1297
|
+
[4, [() => PhoneNumber, 0], 0, 0, 0, 64 | 0]
|
|
1298
|
+
];
|
|
1299
|
+
var PlatformApplication$ = [3, n0, _PAl,
|
|
1300
|
+
0,
|
|
1301
|
+
[_PAA, _A],
|
|
1302
|
+
[0, 128 | 0]
|
|
1303
|
+
];
|
|
1304
|
+
var PublishBatchInput$ = [3, n0, _PBI,
|
|
1305
|
+
0,
|
|
1306
|
+
[_TA, _PBRE],
|
|
1307
|
+
[0, [() => PublishBatchRequestEntryList, 0]], 2
|
|
1308
|
+
];
|
|
1309
|
+
var PublishBatchRequestEntry$ = [3, n0, _PBREu,
|
|
1310
|
+
0,
|
|
1311
|
+
[_I, _M, _Sub, _MS, _MA, _MDI, _MGI],
|
|
1312
|
+
[0, 0, 0, 0, [() => MessageAttributeMap, 0], 0, 0], 2
|
|
1313
|
+
];
|
|
1314
|
+
var PublishBatchResponse$ = [3, n0, _PBR,
|
|
1315
|
+
0,
|
|
1316
|
+
[_Suc, _F],
|
|
1317
|
+
[() => PublishBatchResultEntryList, () => BatchResultErrorEntryList]
|
|
1318
|
+
];
|
|
1319
|
+
var PublishBatchResultEntry$ = [3, n0, _PBREub,
|
|
1320
|
+
0,
|
|
1321
|
+
[_I, _MI, _SN],
|
|
1322
|
+
[0, 0, 0]
|
|
1323
|
+
];
|
|
1324
|
+
var PublishInput$ = [3, n0, _PI,
|
|
1325
|
+
0,
|
|
1326
|
+
[_M, _TA, _TAa, _PN, _Sub, _MS, _MA, _MDI, _MGI],
|
|
1327
|
+
[0, 0, 0, [() => PhoneNumber, 0], 0, 0, [() => MessageAttributeMap, 0], 0, 0], 1
|
|
1328
|
+
];
|
|
1329
|
+
var PublishResponse$ = [3, n0, _PR,
|
|
1330
|
+
0,
|
|
1331
|
+
[_MI, _SN],
|
|
1332
|
+
[0, 0]
|
|
1333
|
+
];
|
|
1334
|
+
var PutDataProtectionPolicyInput$ = [3, n0, _PDPPI,
|
|
1335
|
+
0,
|
|
1336
|
+
[_RA, _DPP],
|
|
1337
|
+
[0, 0], 2
|
|
1338
|
+
];
|
|
1339
|
+
var RemovePermissionInput$ = [3, n0, _RPI,
|
|
1340
|
+
0,
|
|
1341
|
+
[_TA, _L],
|
|
1342
|
+
[0, 0], 2
|
|
1343
|
+
];
|
|
1344
|
+
var SetEndpointAttributesInput$ = [3, n0, _SEAI,
|
|
1345
|
+
0,
|
|
1346
|
+
[_EA, _A],
|
|
1347
|
+
[0, 128 | 0], 2
|
|
1348
|
+
];
|
|
1349
|
+
var SetPlatformApplicationAttributesInput$ = [3, n0, _SPAAI,
|
|
1350
|
+
0,
|
|
1351
|
+
[_PAA, _A],
|
|
1352
|
+
[0, 128 | 0], 2
|
|
1353
|
+
];
|
|
1354
|
+
var SetSMSAttributesInput$ = [3, n0, _SSMSAI,
|
|
1355
|
+
0,
|
|
1356
|
+
[_a],
|
|
1357
|
+
[128 | 0], 1
|
|
1358
|
+
];
|
|
1359
|
+
var SetSMSAttributesResponse$ = [3, n0, _SSMSAR,
|
|
1360
|
+
0,
|
|
1361
|
+
[],
|
|
1362
|
+
[]
|
|
1363
|
+
];
|
|
1364
|
+
var SetSubscriptionAttributesInput$ = [3, n0, _SSAI,
|
|
1365
|
+
0,
|
|
1366
|
+
[_SA, _ANt, _AV],
|
|
1367
|
+
[0, 0, 0], 2
|
|
1368
|
+
];
|
|
1369
|
+
var SetTopicAttributesInput$ = [3, n0, _STAI,
|
|
1370
|
+
0,
|
|
1371
|
+
[_TA, _ANt, _AV],
|
|
1372
|
+
[0, 0, 0], 2
|
|
1373
|
+
];
|
|
1374
|
+
var SMSSandboxPhoneNumber$ = [3, n0, _SMSSPN,
|
|
1375
|
+
0,
|
|
1376
|
+
[_PN, _S],
|
|
1377
|
+
[[() => PhoneNumberString, 0], 0]
|
|
1378
|
+
];
|
|
1379
|
+
var SubscribeInput$ = [3, n0, _SI,
|
|
1380
|
+
0,
|
|
1381
|
+
[_TA, _Pr, _E, _A, _RSA],
|
|
1382
|
+
[0, 0, 0, 128 | 0, 2], 2
|
|
1383
|
+
];
|
|
1384
|
+
var SubscribeResponse$ = [3, n0, _SR,
|
|
1385
|
+
0,
|
|
1386
|
+
[_SA],
|
|
1387
|
+
[0]
|
|
1388
|
+
];
|
|
1389
|
+
var Subscription$ = [3, n0, _Subs,
|
|
1390
|
+
0,
|
|
1391
|
+
[_SA, _O, _Pr, _E, _TA],
|
|
1392
|
+
[0, 0, 0, 0, 0]
|
|
1393
|
+
];
|
|
1394
|
+
var Tag$ = [3, n0, _Tag,
|
|
1395
|
+
0,
|
|
1396
|
+
[_K, _V],
|
|
1397
|
+
[0, 0], 2
|
|
1398
|
+
];
|
|
1399
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1400
|
+
0,
|
|
1401
|
+
[_RA, _Ta],
|
|
1402
|
+
[0, () => TagList], 2
|
|
1403
|
+
];
|
|
1404
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1405
|
+
0,
|
|
1406
|
+
[],
|
|
1407
|
+
[]
|
|
1408
|
+
];
|
|
1409
|
+
var Topic$ = [3, n0, _Top,
|
|
1410
|
+
0,
|
|
1411
|
+
[_TA],
|
|
1412
|
+
[0]
|
|
1413
|
+
];
|
|
1414
|
+
var UnsubscribeInput$ = [3, n0, _UI,
|
|
1415
|
+
0,
|
|
1416
|
+
[_SA],
|
|
1417
|
+
[0], 1
|
|
1418
|
+
];
|
|
1419
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1420
|
+
0,
|
|
1421
|
+
[_RA, _TK],
|
|
1422
|
+
[0, 64 | 0], 2
|
|
1423
|
+
];
|
|
1424
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1425
|
+
0,
|
|
1426
|
+
[],
|
|
1427
|
+
[]
|
|
1428
|
+
];
|
|
1429
|
+
var VerifySMSSandboxPhoneNumberInput$ = [3, n0, _VSMSSPNI,
|
|
1430
|
+
0,
|
|
1431
|
+
[_PN, _OTP],
|
|
1432
|
+
[[() => PhoneNumberString, 0], 0], 2
|
|
1433
|
+
];
|
|
1434
|
+
var VerifySMSSandboxPhoneNumberResult$ = [3, n0, _VSMSSPNR,
|
|
1435
|
+
0,
|
|
1436
|
+
[],
|
|
1437
|
+
[]
|
|
1438
|
+
];
|
|
1439
|
+
var __Unit = "unit";
|
|
1440
|
+
var BatchResultErrorEntryList = [1, n0, _BREEL,
|
|
1441
|
+
0, () => BatchResultErrorEntry$
|
|
1442
|
+
];
|
|
1443
|
+
var ListOfEndpoints = [1, n0, _LOE,
|
|
1444
|
+
0, () => Endpoint$
|
|
1445
|
+
];
|
|
1446
|
+
var ListOfPlatformApplications = [1, n0, _LOPA,
|
|
1447
|
+
0, () => PlatformApplication$
|
|
1448
|
+
];
|
|
1449
|
+
var PhoneNumberInformationList = [1, n0, _PNIL,
|
|
1450
|
+
0, [() => PhoneNumberInformation$,
|
|
1451
|
+
0]
|
|
1452
|
+
];
|
|
1453
|
+
var PhoneNumberList = [1, n0, _PNL,
|
|
1454
|
+
0, [() => PhoneNumber,
|
|
1455
|
+
0]
|
|
1456
|
+
];
|
|
1457
|
+
var PublishBatchRequestEntryList = [1, n0, _PBREL,
|
|
1458
|
+
0, [() => PublishBatchRequestEntry$,
|
|
1459
|
+
0]
|
|
1460
|
+
];
|
|
1461
|
+
var PublishBatchResultEntryList = [1, n0, _PBRELu,
|
|
1462
|
+
0, () => PublishBatchResultEntry$
|
|
1463
|
+
];
|
|
1464
|
+
var SMSSandboxPhoneNumberList = [1, n0, _SMSSPNL,
|
|
1465
|
+
0, [() => SMSSandboxPhoneNumber$,
|
|
1466
|
+
0]
|
|
1467
|
+
];
|
|
1468
|
+
var SubscriptionsList = [1, n0, _SL,
|
|
1469
|
+
0, () => Subscription$
|
|
1470
|
+
];
|
|
1471
|
+
var TagList = [1, n0, _TL,
|
|
1472
|
+
0, () => Tag$
|
|
1473
|
+
];
|
|
1474
|
+
var TopicsList = [1, n0, _TLo,
|
|
1475
|
+
0, () => Topic$
|
|
1476
|
+
];
|
|
1477
|
+
var MessageAttributeMap = [2, n0, _MAM,
|
|
1478
|
+
0, [0,
|
|
1479
|
+
{ [_xN]: _N }],
|
|
1480
|
+
[() => MessageAttributeValue$,
|
|
1481
|
+
{ [_xN]: _V }]
|
|
1482
|
+
];
|
|
1483
|
+
var AddPermission$ = [9, n0, _AP,
|
|
1484
|
+
0, () => AddPermissionInput$, () => __Unit
|
|
1485
|
+
];
|
|
1486
|
+
var CheckIfPhoneNumberIsOptedOut$ = [9, n0, _CIPNIOO,
|
|
1487
|
+
0, () => CheckIfPhoneNumberIsOptedOutInput$, () => CheckIfPhoneNumberIsOptedOutResponse$
|
|
1488
|
+
];
|
|
1489
|
+
var ConfirmSubscription$ = [9, n0, _CS,
|
|
1490
|
+
0, () => ConfirmSubscriptionInput$, () => ConfirmSubscriptionResponse$
|
|
1491
|
+
];
|
|
1492
|
+
var CreatePlatformApplication$ = [9, n0, _CPA,
|
|
1493
|
+
0, () => CreatePlatformApplicationInput$, () => CreatePlatformApplicationResponse$
|
|
1494
|
+
];
|
|
1495
|
+
var CreatePlatformEndpoint$ = [9, n0, _CPE,
|
|
1496
|
+
0, () => CreatePlatformEndpointInput$, () => CreateEndpointResponse$
|
|
1497
|
+
];
|
|
1498
|
+
var CreateSMSSandboxPhoneNumber$ = [9, n0, _CSMSSPN,
|
|
1499
|
+
0, () => CreateSMSSandboxPhoneNumberInput$, () => CreateSMSSandboxPhoneNumberResult$
|
|
1500
|
+
];
|
|
1501
|
+
var CreateTopic$ = [9, n0, _CT,
|
|
1502
|
+
0, () => CreateTopicInput$, () => CreateTopicResponse$
|
|
1503
|
+
];
|
|
1504
|
+
var DeleteEndpoint$ = [9, n0, _DE,
|
|
1505
|
+
0, () => DeleteEndpointInput$, () => __Unit
|
|
1506
|
+
];
|
|
1507
|
+
var DeletePlatformApplication$ = [9, n0, _DPA,
|
|
1508
|
+
0, () => DeletePlatformApplicationInput$, () => __Unit
|
|
1509
|
+
];
|
|
1510
|
+
var DeleteSMSSandboxPhoneNumber$ = [9, n0, _DSMSSPN,
|
|
1511
|
+
0, () => DeleteSMSSandboxPhoneNumberInput$, () => DeleteSMSSandboxPhoneNumberResult$
|
|
1512
|
+
];
|
|
1513
|
+
var DeleteTopic$ = [9, n0, _DTe,
|
|
1514
|
+
0, () => DeleteTopicInput$, () => __Unit
|
|
1515
|
+
];
|
|
1516
|
+
var GetDataProtectionPolicy$ = [9, n0, _GDPP,
|
|
1517
|
+
0, () => GetDataProtectionPolicyInput$, () => GetDataProtectionPolicyResponse$
|
|
1518
|
+
];
|
|
1519
|
+
var GetEndpointAttributes$ = [9, n0, _GEA,
|
|
1520
|
+
0, () => GetEndpointAttributesInput$, () => GetEndpointAttributesResponse$
|
|
1521
|
+
];
|
|
1522
|
+
var GetPlatformApplicationAttributes$ = [9, n0, _GPAA,
|
|
1523
|
+
0, () => GetPlatformApplicationAttributesInput$, () => GetPlatformApplicationAttributesResponse$
|
|
1524
|
+
];
|
|
1525
|
+
var GetSMSAttributes$ = [9, n0, _GSMSA,
|
|
1526
|
+
0, () => GetSMSAttributesInput$, () => GetSMSAttributesResponse$
|
|
1527
|
+
];
|
|
1528
|
+
var GetSMSSandboxAccountStatus$ = [9, n0, _GSMSSAS,
|
|
1529
|
+
0, () => GetSMSSandboxAccountStatusInput$, () => GetSMSSandboxAccountStatusResult$
|
|
1530
|
+
];
|
|
1531
|
+
var GetSubscriptionAttributes$ = [9, n0, _GSA,
|
|
1532
|
+
0, () => GetSubscriptionAttributesInput$, () => GetSubscriptionAttributesResponse$
|
|
1533
|
+
];
|
|
1534
|
+
var GetTopicAttributes$ = [9, n0, _GTA,
|
|
1535
|
+
0, () => GetTopicAttributesInput$, () => GetTopicAttributesResponse$
|
|
1536
|
+
];
|
|
1537
|
+
var ListEndpointsByPlatformApplication$ = [9, n0, _LEBPA,
|
|
1538
|
+
0, () => ListEndpointsByPlatformApplicationInput$, () => ListEndpointsByPlatformApplicationResponse$
|
|
1539
|
+
];
|
|
1540
|
+
var ListOriginationNumbers$ = [9, n0, _LON,
|
|
1541
|
+
0, () => ListOriginationNumbersRequest$, () => ListOriginationNumbersResult$
|
|
1542
|
+
];
|
|
1543
|
+
var ListPhoneNumbersOptedOut$ = [9, n0, _LPNOO,
|
|
1544
|
+
0, () => ListPhoneNumbersOptedOutInput$, () => ListPhoneNumbersOptedOutResponse$
|
|
1545
|
+
];
|
|
1546
|
+
var ListPlatformApplications$ = [9, n0, _LPA,
|
|
1547
|
+
0, () => ListPlatformApplicationsInput$, () => ListPlatformApplicationsResponse$
|
|
1548
|
+
];
|
|
1549
|
+
var ListSMSSandboxPhoneNumbers$ = [9, n0, _LSMSSPN,
|
|
1550
|
+
0, () => ListSMSSandboxPhoneNumbersInput$, () => ListSMSSandboxPhoneNumbersResult$
|
|
1551
|
+
];
|
|
1552
|
+
var ListSubscriptions$ = [9, n0, _LS,
|
|
1553
|
+
0, () => ListSubscriptionsInput$, () => ListSubscriptionsResponse$
|
|
1554
|
+
];
|
|
1555
|
+
var ListSubscriptionsByTopic$ = [9, n0, _LSBT,
|
|
1556
|
+
0, () => ListSubscriptionsByTopicInput$, () => ListSubscriptionsByTopicResponse$
|
|
1557
|
+
];
|
|
1558
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1559
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1560
|
+
];
|
|
1561
|
+
var ListTopics$ = [9, n0, _LT,
|
|
1562
|
+
0, () => ListTopicsInput$, () => ListTopicsResponse$
|
|
1563
|
+
];
|
|
1564
|
+
var OptInPhoneNumber$ = [9, n0, _OIPN,
|
|
1565
|
+
0, () => OptInPhoneNumberInput$, () => OptInPhoneNumberResponse$
|
|
1566
|
+
];
|
|
1567
|
+
var Publish$ = [9, n0, _Pu,
|
|
1568
|
+
0, () => PublishInput$, () => PublishResponse$
|
|
1569
|
+
];
|
|
1570
|
+
var PublishBatch$ = [9, n0, _PB,
|
|
1571
|
+
0, () => PublishBatchInput$, () => PublishBatchResponse$
|
|
1572
|
+
];
|
|
1573
|
+
var PutDataProtectionPolicy$ = [9, n0, _PDPP,
|
|
1574
|
+
0, () => PutDataProtectionPolicyInput$, () => __Unit
|
|
1575
|
+
];
|
|
1576
|
+
var RemovePermission$ = [9, n0, _RP,
|
|
1577
|
+
0, () => RemovePermissionInput$, () => __Unit
|
|
1578
|
+
];
|
|
1579
|
+
var SetEndpointAttributes$ = [9, n0, _SEA,
|
|
1580
|
+
0, () => SetEndpointAttributesInput$, () => __Unit
|
|
1581
|
+
];
|
|
1582
|
+
var SetPlatformApplicationAttributes$ = [9, n0, _SPAA,
|
|
1583
|
+
0, () => SetPlatformApplicationAttributesInput$, () => __Unit
|
|
1584
|
+
];
|
|
1585
|
+
var SetSMSAttributes$ = [9, n0, _SSMSA,
|
|
1586
|
+
0, () => SetSMSAttributesInput$, () => SetSMSAttributesResponse$
|
|
1587
|
+
];
|
|
1588
|
+
var SetSubscriptionAttributes$ = [9, n0, _SSA,
|
|
1589
|
+
0, () => SetSubscriptionAttributesInput$, () => __Unit
|
|
1590
|
+
];
|
|
1591
|
+
var SetTopicAttributes$ = [9, n0, _STA,
|
|
1592
|
+
0, () => SetTopicAttributesInput$, () => __Unit
|
|
1593
|
+
];
|
|
1594
|
+
var Subscribe$ = [9, n0, _Subsc,
|
|
1595
|
+
0, () => SubscribeInput$, () => SubscribeResponse$
|
|
1596
|
+
];
|
|
1597
|
+
var TagResource$ = [9, n0, _TR,
|
|
1598
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1599
|
+
];
|
|
1600
|
+
var Unsubscribe$ = [9, n0, _U,
|
|
1601
|
+
0, () => UnsubscribeInput$, () => __Unit
|
|
1602
|
+
];
|
|
1603
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1604
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1605
|
+
];
|
|
1606
|
+
var VerifySMSSandboxPhoneNumber$ = [9, n0, _VSMSSPN,
|
|
1607
|
+
0, () => VerifySMSSandboxPhoneNumberInput$, () => VerifySMSSandboxPhoneNumberResult$
|
|
1608
|
+
];
|
|
1609
|
+
|
|
1610
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1611
|
+
return {
|
|
1612
|
+
apiVersion: "2010-03-31",
|
|
1613
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1614
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1615
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1616
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1617
|
+
extensions: config?.extensions ?? [],
|
|
1618
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSNSHttpAuthSchemeProvider,
|
|
1619
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1620
|
+
{
|
|
1621
|
+
schemeId: "aws.auth#sigv4",
|
|
1622
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1623
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1624
|
+
},
|
|
1625
|
+
],
|
|
1626
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1627
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
1628
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1629
|
+
defaultNamespace: "com.amazonaws.sns",
|
|
1630
|
+
errorTypeRegistries,
|
|
1631
|
+
xmlNamespace: "http://sns.amazonaws.com/doc/2010-03-31/",
|
|
1632
|
+
version: "2010-03-31",
|
|
1633
|
+
serviceTarget: "AmazonSimpleNotificationService",
|
|
1634
|
+
},
|
|
1635
|
+
serviceId: config?.serviceId ?? "SNS",
|
|
1636
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1637
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1638
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1639
|
+
};
|
|
1640
|
+
};
|
|
1641
|
+
|
|
1642
|
+
const getRuntimeConfig = (config) => {
|
|
1643
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1644
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1645
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1646
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1647
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1648
|
+
const loaderConfig = {
|
|
1649
|
+
profile: config?.profile,
|
|
1650
|
+
logger: clientSharedValues.logger,
|
|
1651
|
+
};
|
|
1652
|
+
return {
|
|
1653
|
+
...clientSharedValues,
|
|
1654
|
+
...config,
|
|
1655
|
+
runtime: "node",
|
|
1656
|
+
defaultsMode,
|
|
1657
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1658
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1659
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1660
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1661
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1662
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1663
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1664
|
+
retryMode: config?.retryMode ??
|
|
1665
|
+
loadConfig({
|
|
1666
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1667
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1668
|
+
}, config),
|
|
1669
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1670
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1671
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1672
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1673
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
|
|
34
1677
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1678
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1679
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -719,54 +2362,251 @@ const SMSSandboxPhoneNumberVerificationStatus = {
|
|
|
719
2362
|
Verified: "Verified",
|
|
720
2363
|
};
|
|
721
2364
|
|
|
2365
|
+
exports.AddPermission$ = AddPermission$;
|
|
722
2366
|
exports.AddPermissionCommand = AddPermissionCommand;
|
|
2367
|
+
exports.AddPermissionInput$ = AddPermissionInput$;
|
|
2368
|
+
exports.AuthorizationErrorException = AuthorizationErrorException;
|
|
2369
|
+
exports.AuthorizationErrorException$ = AuthorizationErrorException$;
|
|
2370
|
+
exports.BatchEntryIdsNotDistinctException = BatchEntryIdsNotDistinctException;
|
|
2371
|
+
exports.BatchEntryIdsNotDistinctException$ = BatchEntryIdsNotDistinctException$;
|
|
2372
|
+
exports.BatchRequestTooLongException = BatchRequestTooLongException;
|
|
2373
|
+
exports.BatchRequestTooLongException$ = BatchRequestTooLongException$;
|
|
2374
|
+
exports.BatchResultErrorEntry$ = BatchResultErrorEntry$;
|
|
2375
|
+
exports.CheckIfPhoneNumberIsOptedOut$ = CheckIfPhoneNumberIsOptedOut$;
|
|
723
2376
|
exports.CheckIfPhoneNumberIsOptedOutCommand = CheckIfPhoneNumberIsOptedOutCommand;
|
|
2377
|
+
exports.CheckIfPhoneNumberIsOptedOutInput$ = CheckIfPhoneNumberIsOptedOutInput$;
|
|
2378
|
+
exports.CheckIfPhoneNumberIsOptedOutResponse$ = CheckIfPhoneNumberIsOptedOutResponse$;
|
|
2379
|
+
exports.ConcurrentAccessException = ConcurrentAccessException;
|
|
2380
|
+
exports.ConcurrentAccessException$ = ConcurrentAccessException$;
|
|
2381
|
+
exports.ConfirmSubscription$ = ConfirmSubscription$;
|
|
724
2382
|
exports.ConfirmSubscriptionCommand = ConfirmSubscriptionCommand;
|
|
2383
|
+
exports.ConfirmSubscriptionInput$ = ConfirmSubscriptionInput$;
|
|
2384
|
+
exports.ConfirmSubscriptionResponse$ = ConfirmSubscriptionResponse$;
|
|
2385
|
+
exports.CreateEndpointResponse$ = CreateEndpointResponse$;
|
|
2386
|
+
exports.CreatePlatformApplication$ = CreatePlatformApplication$;
|
|
725
2387
|
exports.CreatePlatformApplicationCommand = CreatePlatformApplicationCommand;
|
|
2388
|
+
exports.CreatePlatformApplicationInput$ = CreatePlatformApplicationInput$;
|
|
2389
|
+
exports.CreatePlatformApplicationResponse$ = CreatePlatformApplicationResponse$;
|
|
2390
|
+
exports.CreatePlatformEndpoint$ = CreatePlatformEndpoint$;
|
|
726
2391
|
exports.CreatePlatformEndpointCommand = CreatePlatformEndpointCommand;
|
|
2392
|
+
exports.CreatePlatformEndpointInput$ = CreatePlatformEndpointInput$;
|
|
2393
|
+
exports.CreateSMSSandboxPhoneNumber$ = CreateSMSSandboxPhoneNumber$;
|
|
727
2394
|
exports.CreateSMSSandboxPhoneNumberCommand = CreateSMSSandboxPhoneNumberCommand;
|
|
2395
|
+
exports.CreateSMSSandboxPhoneNumberInput$ = CreateSMSSandboxPhoneNumberInput$;
|
|
2396
|
+
exports.CreateSMSSandboxPhoneNumberResult$ = CreateSMSSandboxPhoneNumberResult$;
|
|
2397
|
+
exports.CreateTopic$ = CreateTopic$;
|
|
728
2398
|
exports.CreateTopicCommand = CreateTopicCommand;
|
|
2399
|
+
exports.CreateTopicInput$ = CreateTopicInput$;
|
|
2400
|
+
exports.CreateTopicResponse$ = CreateTopicResponse$;
|
|
2401
|
+
exports.DeleteEndpoint$ = DeleteEndpoint$;
|
|
729
2402
|
exports.DeleteEndpointCommand = DeleteEndpointCommand;
|
|
2403
|
+
exports.DeleteEndpointInput$ = DeleteEndpointInput$;
|
|
2404
|
+
exports.DeletePlatformApplication$ = DeletePlatformApplication$;
|
|
730
2405
|
exports.DeletePlatformApplicationCommand = DeletePlatformApplicationCommand;
|
|
2406
|
+
exports.DeletePlatformApplicationInput$ = DeletePlatformApplicationInput$;
|
|
2407
|
+
exports.DeleteSMSSandboxPhoneNumber$ = DeleteSMSSandboxPhoneNumber$;
|
|
731
2408
|
exports.DeleteSMSSandboxPhoneNumberCommand = DeleteSMSSandboxPhoneNumberCommand;
|
|
2409
|
+
exports.DeleteSMSSandboxPhoneNumberInput$ = DeleteSMSSandboxPhoneNumberInput$;
|
|
2410
|
+
exports.DeleteSMSSandboxPhoneNumberResult$ = DeleteSMSSandboxPhoneNumberResult$;
|
|
2411
|
+
exports.DeleteTopic$ = DeleteTopic$;
|
|
732
2412
|
exports.DeleteTopicCommand = DeleteTopicCommand;
|
|
2413
|
+
exports.DeleteTopicInput$ = DeleteTopicInput$;
|
|
2414
|
+
exports.EmptyBatchRequestException = EmptyBatchRequestException;
|
|
2415
|
+
exports.EmptyBatchRequestException$ = EmptyBatchRequestException$;
|
|
2416
|
+
exports.Endpoint$ = Endpoint$;
|
|
2417
|
+
exports.EndpointDisabledException = EndpointDisabledException;
|
|
2418
|
+
exports.EndpointDisabledException$ = EndpointDisabledException$;
|
|
2419
|
+
exports.FilterPolicyLimitExceededException = FilterPolicyLimitExceededException;
|
|
2420
|
+
exports.FilterPolicyLimitExceededException$ = FilterPolicyLimitExceededException$;
|
|
2421
|
+
exports.GetDataProtectionPolicy$ = GetDataProtectionPolicy$;
|
|
733
2422
|
exports.GetDataProtectionPolicyCommand = GetDataProtectionPolicyCommand;
|
|
2423
|
+
exports.GetDataProtectionPolicyInput$ = GetDataProtectionPolicyInput$;
|
|
2424
|
+
exports.GetDataProtectionPolicyResponse$ = GetDataProtectionPolicyResponse$;
|
|
2425
|
+
exports.GetEndpointAttributes$ = GetEndpointAttributes$;
|
|
734
2426
|
exports.GetEndpointAttributesCommand = GetEndpointAttributesCommand;
|
|
2427
|
+
exports.GetEndpointAttributesInput$ = GetEndpointAttributesInput$;
|
|
2428
|
+
exports.GetEndpointAttributesResponse$ = GetEndpointAttributesResponse$;
|
|
2429
|
+
exports.GetPlatformApplicationAttributes$ = GetPlatformApplicationAttributes$;
|
|
735
2430
|
exports.GetPlatformApplicationAttributesCommand = GetPlatformApplicationAttributesCommand;
|
|
2431
|
+
exports.GetPlatformApplicationAttributesInput$ = GetPlatformApplicationAttributesInput$;
|
|
2432
|
+
exports.GetPlatformApplicationAttributesResponse$ = GetPlatformApplicationAttributesResponse$;
|
|
2433
|
+
exports.GetSMSAttributes$ = GetSMSAttributes$;
|
|
736
2434
|
exports.GetSMSAttributesCommand = GetSMSAttributesCommand;
|
|
2435
|
+
exports.GetSMSAttributesInput$ = GetSMSAttributesInput$;
|
|
2436
|
+
exports.GetSMSAttributesResponse$ = GetSMSAttributesResponse$;
|
|
2437
|
+
exports.GetSMSSandboxAccountStatus$ = GetSMSSandboxAccountStatus$;
|
|
737
2438
|
exports.GetSMSSandboxAccountStatusCommand = GetSMSSandboxAccountStatusCommand;
|
|
2439
|
+
exports.GetSMSSandboxAccountStatusInput$ = GetSMSSandboxAccountStatusInput$;
|
|
2440
|
+
exports.GetSMSSandboxAccountStatusResult$ = GetSMSSandboxAccountStatusResult$;
|
|
2441
|
+
exports.GetSubscriptionAttributes$ = GetSubscriptionAttributes$;
|
|
738
2442
|
exports.GetSubscriptionAttributesCommand = GetSubscriptionAttributesCommand;
|
|
2443
|
+
exports.GetSubscriptionAttributesInput$ = GetSubscriptionAttributesInput$;
|
|
2444
|
+
exports.GetSubscriptionAttributesResponse$ = GetSubscriptionAttributesResponse$;
|
|
2445
|
+
exports.GetTopicAttributes$ = GetTopicAttributes$;
|
|
739
2446
|
exports.GetTopicAttributesCommand = GetTopicAttributesCommand;
|
|
2447
|
+
exports.GetTopicAttributesInput$ = GetTopicAttributesInput$;
|
|
2448
|
+
exports.GetTopicAttributesResponse$ = GetTopicAttributesResponse$;
|
|
2449
|
+
exports.InternalErrorException = InternalErrorException;
|
|
2450
|
+
exports.InternalErrorException$ = InternalErrorException$;
|
|
2451
|
+
exports.InvalidBatchEntryIdException = InvalidBatchEntryIdException;
|
|
2452
|
+
exports.InvalidBatchEntryIdException$ = InvalidBatchEntryIdException$;
|
|
2453
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2454
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2455
|
+
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
2456
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
2457
|
+
exports.InvalidSecurityException = InvalidSecurityException;
|
|
2458
|
+
exports.InvalidSecurityException$ = InvalidSecurityException$;
|
|
2459
|
+
exports.InvalidStateException = InvalidStateException;
|
|
2460
|
+
exports.InvalidStateException$ = InvalidStateException$;
|
|
2461
|
+
exports.KMSAccessDeniedException = KMSAccessDeniedException;
|
|
2462
|
+
exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
|
|
2463
|
+
exports.KMSDisabledException = KMSDisabledException;
|
|
2464
|
+
exports.KMSDisabledException$ = KMSDisabledException$;
|
|
2465
|
+
exports.KMSInvalidStateException = KMSInvalidStateException;
|
|
2466
|
+
exports.KMSInvalidStateException$ = KMSInvalidStateException$;
|
|
2467
|
+
exports.KMSNotFoundException = KMSNotFoundException;
|
|
2468
|
+
exports.KMSNotFoundException$ = KMSNotFoundException$;
|
|
2469
|
+
exports.KMSOptInRequired = KMSOptInRequired;
|
|
2470
|
+
exports.KMSOptInRequired$ = KMSOptInRequired$;
|
|
2471
|
+
exports.KMSThrottlingException = KMSThrottlingException;
|
|
2472
|
+
exports.KMSThrottlingException$ = KMSThrottlingException$;
|
|
740
2473
|
exports.LanguageCodeString = LanguageCodeString;
|
|
2474
|
+
exports.ListEndpointsByPlatformApplication$ = ListEndpointsByPlatformApplication$;
|
|
741
2475
|
exports.ListEndpointsByPlatformApplicationCommand = ListEndpointsByPlatformApplicationCommand;
|
|
2476
|
+
exports.ListEndpointsByPlatformApplicationInput$ = ListEndpointsByPlatformApplicationInput$;
|
|
2477
|
+
exports.ListEndpointsByPlatformApplicationResponse$ = ListEndpointsByPlatformApplicationResponse$;
|
|
2478
|
+
exports.ListOriginationNumbers$ = ListOriginationNumbers$;
|
|
742
2479
|
exports.ListOriginationNumbersCommand = ListOriginationNumbersCommand;
|
|
2480
|
+
exports.ListOriginationNumbersRequest$ = ListOriginationNumbersRequest$;
|
|
2481
|
+
exports.ListOriginationNumbersResult$ = ListOriginationNumbersResult$;
|
|
2482
|
+
exports.ListPhoneNumbersOptedOut$ = ListPhoneNumbersOptedOut$;
|
|
743
2483
|
exports.ListPhoneNumbersOptedOutCommand = ListPhoneNumbersOptedOutCommand;
|
|
2484
|
+
exports.ListPhoneNumbersOptedOutInput$ = ListPhoneNumbersOptedOutInput$;
|
|
2485
|
+
exports.ListPhoneNumbersOptedOutResponse$ = ListPhoneNumbersOptedOutResponse$;
|
|
2486
|
+
exports.ListPlatformApplications$ = ListPlatformApplications$;
|
|
744
2487
|
exports.ListPlatformApplicationsCommand = ListPlatformApplicationsCommand;
|
|
2488
|
+
exports.ListPlatformApplicationsInput$ = ListPlatformApplicationsInput$;
|
|
2489
|
+
exports.ListPlatformApplicationsResponse$ = ListPlatformApplicationsResponse$;
|
|
2490
|
+
exports.ListSMSSandboxPhoneNumbers$ = ListSMSSandboxPhoneNumbers$;
|
|
745
2491
|
exports.ListSMSSandboxPhoneNumbersCommand = ListSMSSandboxPhoneNumbersCommand;
|
|
2492
|
+
exports.ListSMSSandboxPhoneNumbersInput$ = ListSMSSandboxPhoneNumbersInput$;
|
|
2493
|
+
exports.ListSMSSandboxPhoneNumbersResult$ = ListSMSSandboxPhoneNumbersResult$;
|
|
2494
|
+
exports.ListSubscriptions$ = ListSubscriptions$;
|
|
2495
|
+
exports.ListSubscriptionsByTopic$ = ListSubscriptionsByTopic$;
|
|
746
2496
|
exports.ListSubscriptionsByTopicCommand = ListSubscriptionsByTopicCommand;
|
|
2497
|
+
exports.ListSubscriptionsByTopicInput$ = ListSubscriptionsByTopicInput$;
|
|
2498
|
+
exports.ListSubscriptionsByTopicResponse$ = ListSubscriptionsByTopicResponse$;
|
|
747
2499
|
exports.ListSubscriptionsCommand = ListSubscriptionsCommand;
|
|
2500
|
+
exports.ListSubscriptionsInput$ = ListSubscriptionsInput$;
|
|
2501
|
+
exports.ListSubscriptionsResponse$ = ListSubscriptionsResponse$;
|
|
2502
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
748
2503
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2504
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2505
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2506
|
+
exports.ListTopics$ = ListTopics$;
|
|
749
2507
|
exports.ListTopicsCommand = ListTopicsCommand;
|
|
2508
|
+
exports.ListTopicsInput$ = ListTopicsInput$;
|
|
2509
|
+
exports.ListTopicsResponse$ = ListTopicsResponse$;
|
|
2510
|
+
exports.MessageAttributeValue$ = MessageAttributeValue$;
|
|
2511
|
+
exports.NotFoundException = NotFoundException;
|
|
2512
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
750
2513
|
exports.NumberCapability = NumberCapability;
|
|
2514
|
+
exports.OptInPhoneNumber$ = OptInPhoneNumber$;
|
|
751
2515
|
exports.OptInPhoneNumberCommand = OptInPhoneNumberCommand;
|
|
2516
|
+
exports.OptInPhoneNumberInput$ = OptInPhoneNumberInput$;
|
|
2517
|
+
exports.OptInPhoneNumberResponse$ = OptInPhoneNumberResponse$;
|
|
2518
|
+
exports.OptedOutException = OptedOutException;
|
|
2519
|
+
exports.OptedOutException$ = OptedOutException$;
|
|
2520
|
+
exports.PhoneNumberInformation$ = PhoneNumberInformation$;
|
|
2521
|
+
exports.PlatformApplication$ = PlatformApplication$;
|
|
2522
|
+
exports.PlatformApplicationDisabledException = PlatformApplicationDisabledException;
|
|
2523
|
+
exports.PlatformApplicationDisabledException$ = PlatformApplicationDisabledException$;
|
|
2524
|
+
exports.Publish$ = Publish$;
|
|
2525
|
+
exports.PublishBatch$ = PublishBatch$;
|
|
752
2526
|
exports.PublishBatchCommand = PublishBatchCommand;
|
|
2527
|
+
exports.PublishBatchInput$ = PublishBatchInput$;
|
|
2528
|
+
exports.PublishBatchRequestEntry$ = PublishBatchRequestEntry$;
|
|
2529
|
+
exports.PublishBatchResponse$ = PublishBatchResponse$;
|
|
2530
|
+
exports.PublishBatchResultEntry$ = PublishBatchResultEntry$;
|
|
753
2531
|
exports.PublishCommand = PublishCommand;
|
|
2532
|
+
exports.PublishInput$ = PublishInput$;
|
|
2533
|
+
exports.PublishResponse$ = PublishResponse$;
|
|
2534
|
+
exports.PutDataProtectionPolicy$ = PutDataProtectionPolicy$;
|
|
754
2535
|
exports.PutDataProtectionPolicyCommand = PutDataProtectionPolicyCommand;
|
|
2536
|
+
exports.PutDataProtectionPolicyInput$ = PutDataProtectionPolicyInput$;
|
|
2537
|
+
exports.RemovePermission$ = RemovePermission$;
|
|
755
2538
|
exports.RemovePermissionCommand = RemovePermissionCommand;
|
|
2539
|
+
exports.RemovePermissionInput$ = RemovePermissionInput$;
|
|
2540
|
+
exports.ReplayLimitExceededException = ReplayLimitExceededException;
|
|
2541
|
+
exports.ReplayLimitExceededException$ = ReplayLimitExceededException$;
|
|
2542
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2543
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
756
2544
|
exports.RouteType = RouteType;
|
|
2545
|
+
exports.SMSSandboxPhoneNumber$ = SMSSandboxPhoneNumber$;
|
|
757
2546
|
exports.SMSSandboxPhoneNumberVerificationStatus = SMSSandboxPhoneNumberVerificationStatus;
|
|
758
2547
|
exports.SNS = SNS;
|
|
759
2548
|
exports.SNSClient = SNSClient;
|
|
2549
|
+
exports.SNSServiceException = SNSServiceException;
|
|
2550
|
+
exports.SNSServiceException$ = SNSServiceException$;
|
|
2551
|
+
exports.SetEndpointAttributes$ = SetEndpointAttributes$;
|
|
760
2552
|
exports.SetEndpointAttributesCommand = SetEndpointAttributesCommand;
|
|
2553
|
+
exports.SetEndpointAttributesInput$ = SetEndpointAttributesInput$;
|
|
2554
|
+
exports.SetPlatformApplicationAttributes$ = SetPlatformApplicationAttributes$;
|
|
761
2555
|
exports.SetPlatformApplicationAttributesCommand = SetPlatformApplicationAttributesCommand;
|
|
2556
|
+
exports.SetPlatformApplicationAttributesInput$ = SetPlatformApplicationAttributesInput$;
|
|
2557
|
+
exports.SetSMSAttributes$ = SetSMSAttributes$;
|
|
762
2558
|
exports.SetSMSAttributesCommand = SetSMSAttributesCommand;
|
|
2559
|
+
exports.SetSMSAttributesInput$ = SetSMSAttributesInput$;
|
|
2560
|
+
exports.SetSMSAttributesResponse$ = SetSMSAttributesResponse$;
|
|
2561
|
+
exports.SetSubscriptionAttributes$ = SetSubscriptionAttributes$;
|
|
763
2562
|
exports.SetSubscriptionAttributesCommand = SetSubscriptionAttributesCommand;
|
|
2563
|
+
exports.SetSubscriptionAttributesInput$ = SetSubscriptionAttributesInput$;
|
|
2564
|
+
exports.SetTopicAttributes$ = SetTopicAttributes$;
|
|
764
2565
|
exports.SetTopicAttributesCommand = SetTopicAttributesCommand;
|
|
2566
|
+
exports.SetTopicAttributesInput$ = SetTopicAttributesInput$;
|
|
2567
|
+
exports.StaleTagException = StaleTagException;
|
|
2568
|
+
exports.StaleTagException$ = StaleTagException$;
|
|
2569
|
+
exports.Subscribe$ = Subscribe$;
|
|
765
2570
|
exports.SubscribeCommand = SubscribeCommand;
|
|
2571
|
+
exports.SubscribeInput$ = SubscribeInput$;
|
|
2572
|
+
exports.SubscribeResponse$ = SubscribeResponse$;
|
|
2573
|
+
exports.Subscription$ = Subscription$;
|
|
2574
|
+
exports.SubscriptionLimitExceededException = SubscriptionLimitExceededException;
|
|
2575
|
+
exports.SubscriptionLimitExceededException$ = SubscriptionLimitExceededException$;
|
|
2576
|
+
exports.Tag$ = Tag$;
|
|
2577
|
+
exports.TagLimitExceededException = TagLimitExceededException;
|
|
2578
|
+
exports.TagLimitExceededException$ = TagLimitExceededException$;
|
|
2579
|
+
exports.TagPolicyException = TagPolicyException;
|
|
2580
|
+
exports.TagPolicyException$ = TagPolicyException$;
|
|
2581
|
+
exports.TagResource$ = TagResource$;
|
|
766
2582
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2583
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2584
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2585
|
+
exports.ThrottledException = ThrottledException;
|
|
2586
|
+
exports.ThrottledException$ = ThrottledException$;
|
|
2587
|
+
exports.TooManyEntriesInBatchRequestException = TooManyEntriesInBatchRequestException;
|
|
2588
|
+
exports.TooManyEntriesInBatchRequestException$ = TooManyEntriesInBatchRequestException$;
|
|
2589
|
+
exports.Topic$ = Topic$;
|
|
2590
|
+
exports.TopicLimitExceededException = TopicLimitExceededException;
|
|
2591
|
+
exports.TopicLimitExceededException$ = TopicLimitExceededException$;
|
|
2592
|
+
exports.Unsubscribe$ = Unsubscribe$;
|
|
767
2593
|
exports.UnsubscribeCommand = UnsubscribeCommand;
|
|
2594
|
+
exports.UnsubscribeInput$ = UnsubscribeInput$;
|
|
2595
|
+
exports.UntagResource$ = UntagResource$;
|
|
768
2596
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2597
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2598
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2599
|
+
exports.UserErrorException = UserErrorException;
|
|
2600
|
+
exports.UserErrorException$ = UserErrorException$;
|
|
2601
|
+
exports.ValidationException = ValidationException;
|
|
2602
|
+
exports.ValidationException$ = ValidationException$;
|
|
2603
|
+
exports.VerificationException = VerificationException;
|
|
2604
|
+
exports.VerificationException$ = VerificationException$;
|
|
2605
|
+
exports.VerifySMSSandboxPhoneNumber$ = VerifySMSSandboxPhoneNumber$;
|
|
769
2606
|
exports.VerifySMSSandboxPhoneNumberCommand = VerifySMSSandboxPhoneNumberCommand;
|
|
2607
|
+
exports.VerifySMSSandboxPhoneNumberInput$ = VerifySMSSandboxPhoneNumberInput$;
|
|
2608
|
+
exports.VerifySMSSandboxPhoneNumberResult$ = VerifySMSSandboxPhoneNumberResult$;
|
|
2609
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
770
2610
|
exports.paginateListEndpointsByPlatformApplication = paginateListEndpointsByPlatformApplication;
|
|
771
2611
|
exports.paginateListOriginationNumbers = paginateListOriginationNumbers;
|
|
772
2612
|
exports.paginateListPhoneNumbersOptedOut = paginateListPhoneNumbersOptedOut;
|