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