@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.
@@ -14,7 +14,7 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
16
  sha256: import("@smithy/types").HashConstructor;
17
- streamCollector: import("@smithy/types").StreamCollector;
17
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
18
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
19
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
20
  cacheMiddleware?: boolean | undefined;
@@ -15,7 +15,7 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
17
  sha256: import("@smithy/types").HashConstructor;
18
- streamCollector: import("@smithy/types").StreamCollector;
18
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
@@ -15,7 +15,7 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
15
15
  apiVersion: string;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
- streamCollector: import("@smithy/types").StreamCollector;
18
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
19
  base64Decoder: import("@smithy/types").Decoder;
20
20
  base64Encoder: (_input: Uint8Array | string) => string;
21
21
  utf8Decoder: import("@smithy/types").Decoder;
@@ -21,7 +21,13 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
23
  sha256: import("@smithy/types").HashConstructor;
24
- streamCollector: import("@smithy/types").StreamCollector;
24
+ streamCollector: (
25
+ stream:
26
+ | import("stream").Readable
27
+ | import("stream/web").ReadableStream
28
+ | ReadableStream
29
+ | Blob
30
+ ) => Promise<Uint8Array>;
25
31
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
26
32
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
33
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
@@ -22,7 +22,13 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
22
22
  | import("@smithy/core/protocols").HttpHandler<any>;
23
23
  retryMode: string | import("@smithy/types").Provider<string>;
24
24
  sha256: import("@smithy/types").HashConstructor;
25
- streamCollector: import("@smithy/types").StreamCollector;
25
+ streamCollector: (
26
+ stream:
27
+ | import("stream").Readable
28
+ | import("stream/web").ReadableStream
29
+ | ReadableStream
30
+ | Blob
31
+ ) => Promise<Uint8Array>;
26
32
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
33
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
34
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
@@ -20,7 +20,13 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
- streamCollector: import("@smithy/types").StreamCollector;
23
+ streamCollector: (
24
+ stream:
25
+ | import("stream").Readable
26
+ | import("stream/web").ReadableStream
27
+ | ReadableStream
28
+ | Blob
29
+ ) => Promise<Uint8Array>;
24
30
  base64Decoder: import("@smithy/types").Decoder;
25
31
  base64Encoder: (_input: Uint8Array | string) => string;
26
32
  utf8Decoder: import("@smithy/types").Decoder;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sns",
3
3
  "description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native",
4
- "version": "3.1074.0",
4
+ "version": "3.1076.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -23,13 +23,13 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.974.23",
27
- "@aws-sdk/credential-provider-node": "^3.972.58",
28
- "@aws-sdk/types": "^3.973.13",
29
- "@smithy/core": "^3.24.6",
30
- "@smithy/fetch-http-handler": "^5.4.6",
31
- "@smithy/node-http-handler": "^4.7.6",
32
- "@smithy/types": "^4.14.3",
26
+ "@aws-sdk/core": "^3.974.24",
27
+ "@aws-sdk/credential-provider-node": "^3.972.59",
28
+ "@aws-sdk/types": "^3.973.14",
29
+ "@smithy/core": "^3.27.0",
30
+ "@smithy/fetch-http-handler": "^5.6.0",
31
+ "@smithy/node-http-handler": "^4.9.0",
32
+ "@smithy/types": "^4.15.0",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,40 +0,0 @@
1
- const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
2
- const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
3
- exports.defaultSNSHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
- return {
5
- operation: getSmithyContext(context).operation,
6
- region: await normalizeProvider(config.region)() || (() => {
7
- throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
8
- })(),
9
- };
10
- };
11
- function createAwsAuthSigv4HttpAuthOption(authParameters) {
12
- return {
13
- schemeId: "aws.auth#sigv4",
14
- signingProperties: {
15
- name: "sns",
16
- region: authParameters.region,
17
- },
18
- propertiesExtractor: (config, context) => ({
19
- signingProperties: {
20
- config,
21
- context,
22
- },
23
- }),
24
- };
25
- }
26
- exports.defaultSNSHttpAuthSchemeProvider = (authParameters) => {
27
- const options = [];
28
- switch (authParameters.operation) {
29
- default: {
30
- options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
31
- }
32
- }
33
- return options;
34
- };
35
- exports.resolveHttpAuthSchemeConfig = (config) => {
36
- const config_0 = resolveAwsSdkSigV4Config(config);
37
- return Object.assign(config_0, {
38
- authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
39
- });
40
- };
@@ -1,52 +0,0 @@
1
- const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
2
- const m = "ref";
3
- 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];
4
- const _data = {
5
- conditions: [
6
- [c, [h]],
7
- [c, l],
8
- ["aws.partition", l, d],
9
- [e, [{ [m]: "UseFIPS" }, b]],
10
- [e, [{ [m]: "UseDualStack" }, b]],
11
- [e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
12
- [e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
13
- [g, [j, "us-gov-east-1"]],
14
- [g, [j, "us-gov-west-1"]]
15
- ],
16
- results: [
17
- [a],
18
- [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
19
- [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
20
- [h, k],
21
- ["https://sns-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
22
- [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
23
- ["https://sns.us-gov-east-1.amazonaws.com", k],
24
- ["https://sns.us-gov-west-1.amazonaws.com", k],
25
- ["https://sns-fips.{Region}.{PartitionResult#dnsSuffix}", k],
26
- [a, "FIPS is enabled but this partition does not support FIPS"],
27
- ["https://sns.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
28
- [a, "DualStack is enabled but this partition does not support DualStack"],
29
- ["https://sns.{Region}.{PartitionResult#dnsSuffix}", k],
30
- [a, "Invalid Configuration: Missing Region"]
31
- ]
32
- };
33
- const root = 2;
34
- const r = 100_000_000;
35
- const nodes = new Int32Array([
36
- -1, 1, -1,
37
- 0, 14, 3,
38
- 1, 4, r + 13,
39
- 2, 5, r + 13,
40
- 3, 8, 6,
41
- 4, 7, r + 12,
42
- 5, r + 10, r + 11,
43
- 4, 12, 9,
44
- 6, 10, r + 9,
45
- 7, r + 6, 11,
46
- 8, r + 7, r + 8,
47
- 5, 13, r + 5,
48
- 6, r + 4, r + 5,
49
- 3, r + 1, 15,
50
- 4, r + 2, r + 3,
51
- ]);
52
- exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
@@ -1,14 +0,0 @@
1
- const { awsEndpointFunctions } = require("@aws-sdk/core/client");
2
- const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
3
- const { bdd } = require("./bdd");
4
- const cache = new EndpointCache({
5
- size: 50,
6
- params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
7
- });
8
- exports.defaultEndpointResolver = (endpointParams, context = {}) => {
9
- return cache.get(endpointParams, () => decideEndpoint(bdd, {
10
- endpointParams: endpointParams,
11
- logger: context.logger,
12
- }));
13
- };
14
- customEndpointFunctions.aws = awsEndpointFunctions;
@@ -1,8 +0,0 @@
1
- const { ServiceException: __ServiceException } = require("@smithy/core/client");
2
- exports.__ServiceException = __ServiceException;
3
- exports.SNSServiceException = class SNSServiceException extends __ServiceException {
4
- constructor(options) {
5
- super(options);
6
- Object.setPrototypeOf(this, SNSServiceException.prototype);
7
- }
8
- };
@@ -1,415 +0,0 @@
1
- const { SNSServiceException: __BaseException } = require("./SNSServiceException");
2
- exports.AuthorizationErrorException = class AuthorizationErrorException extends __BaseException {
3
- name = "AuthorizationErrorException";
4
- $fault = "client";
5
- constructor(opts) {
6
- super({
7
- name: "AuthorizationErrorException",
8
- $fault: "client",
9
- ...opts,
10
- });
11
- Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
12
- }
13
- };
14
- exports.InternalErrorException = class InternalErrorException extends __BaseException {
15
- name = "InternalErrorException";
16
- $fault = "server";
17
- constructor(opts) {
18
- super({
19
- name: "InternalErrorException",
20
- $fault: "server",
21
- ...opts,
22
- });
23
- Object.setPrototypeOf(this, InternalErrorException.prototype);
24
- }
25
- };
26
- exports.InvalidParameterException = class InvalidParameterException extends __BaseException {
27
- name = "InvalidParameterException";
28
- $fault = "client";
29
- constructor(opts) {
30
- super({
31
- name: "InvalidParameterException",
32
- $fault: "client",
33
- ...opts,
34
- });
35
- Object.setPrototypeOf(this, InvalidParameterException.prototype);
36
- }
37
- };
38
- exports.NotFoundException = class NotFoundException extends __BaseException {
39
- name = "NotFoundException";
40
- $fault = "client";
41
- constructor(opts) {
42
- super({
43
- name: "NotFoundException",
44
- $fault: "client",
45
- ...opts,
46
- });
47
- Object.setPrototypeOf(this, NotFoundException.prototype);
48
- }
49
- };
50
- exports.ThrottledException = class ThrottledException extends __BaseException {
51
- name = "ThrottledException";
52
- $fault = "client";
53
- constructor(opts) {
54
- super({
55
- name: "ThrottledException",
56
- $fault: "client",
57
- ...opts,
58
- });
59
- Object.setPrototypeOf(this, ThrottledException.prototype);
60
- }
61
- };
62
- exports.FilterPolicyLimitExceededException = class FilterPolicyLimitExceededException extends __BaseException {
63
- name = "FilterPolicyLimitExceededException";
64
- $fault = "client";
65
- constructor(opts) {
66
- super({
67
- name: "FilterPolicyLimitExceededException",
68
- $fault: "client",
69
- ...opts,
70
- });
71
- Object.setPrototypeOf(this, FilterPolicyLimitExceededException.prototype);
72
- }
73
- };
74
- exports.ReplayLimitExceededException = class ReplayLimitExceededException extends __BaseException {
75
- name = "ReplayLimitExceededException";
76
- $fault = "client";
77
- constructor(opts) {
78
- super({
79
- name: "ReplayLimitExceededException",
80
- $fault: "client",
81
- ...opts,
82
- });
83
- Object.setPrototypeOf(this, ReplayLimitExceededException.prototype);
84
- }
85
- };
86
- exports.SubscriptionLimitExceededException = class SubscriptionLimitExceededException extends __BaseException {
87
- name = "SubscriptionLimitExceededException";
88
- $fault = "client";
89
- constructor(opts) {
90
- super({
91
- name: "SubscriptionLimitExceededException",
92
- $fault: "client",
93
- ...opts,
94
- });
95
- Object.setPrototypeOf(this, SubscriptionLimitExceededException.prototype);
96
- }
97
- };
98
- exports.OptedOutException = class OptedOutException extends __BaseException {
99
- name = "OptedOutException";
100
- $fault = "client";
101
- constructor(opts) {
102
- super({
103
- name: "OptedOutException",
104
- $fault: "client",
105
- ...opts,
106
- });
107
- Object.setPrototypeOf(this, OptedOutException.prototype);
108
- }
109
- };
110
- exports.UserErrorException = class UserErrorException extends __BaseException {
111
- name = "UserErrorException";
112
- $fault = "client";
113
- constructor(opts) {
114
- super({
115
- name: "UserErrorException",
116
- $fault: "client",
117
- ...opts,
118
- });
119
- Object.setPrototypeOf(this, UserErrorException.prototype);
120
- }
121
- };
122
- exports.ConcurrentAccessException = class ConcurrentAccessException extends __BaseException {
123
- name = "ConcurrentAccessException";
124
- $fault = "client";
125
- constructor(opts) {
126
- super({
127
- name: "ConcurrentAccessException",
128
- $fault: "client",
129
- ...opts,
130
- });
131
- Object.setPrototypeOf(this, ConcurrentAccessException.prototype);
132
- }
133
- };
134
- exports.InvalidSecurityException = class InvalidSecurityException extends __BaseException {
135
- name = "InvalidSecurityException";
136
- $fault = "client";
137
- constructor(opts) {
138
- super({
139
- name: "InvalidSecurityException",
140
- $fault: "client",
141
- ...opts,
142
- });
143
- Object.setPrototypeOf(this, InvalidSecurityException.prototype);
144
- }
145
- };
146
- exports.StaleTagException = class StaleTagException extends __BaseException {
147
- name = "StaleTagException";
148
- $fault = "client";
149
- constructor(opts) {
150
- super({
151
- name: "StaleTagException",
152
- $fault: "client",
153
- ...opts,
154
- });
155
- Object.setPrototypeOf(this, StaleTagException.prototype);
156
- }
157
- };
158
- exports.TagLimitExceededException = class TagLimitExceededException extends __BaseException {
159
- name = "TagLimitExceededException";
160
- $fault = "client";
161
- constructor(opts) {
162
- super({
163
- name: "TagLimitExceededException",
164
- $fault: "client",
165
- ...opts,
166
- });
167
- Object.setPrototypeOf(this, TagLimitExceededException.prototype);
168
- }
169
- };
170
- exports.TagPolicyException = class TagPolicyException extends __BaseException {
171
- name = "TagPolicyException";
172
- $fault = "client";
173
- constructor(opts) {
174
- super({
175
- name: "TagPolicyException",
176
- $fault: "client",
177
- ...opts,
178
- });
179
- Object.setPrototypeOf(this, TagPolicyException.prototype);
180
- }
181
- };
182
- exports.TopicLimitExceededException = class TopicLimitExceededException extends __BaseException {
183
- name = "TopicLimitExceededException";
184
- $fault = "client";
185
- constructor(opts) {
186
- super({
187
- name: "TopicLimitExceededException",
188
- $fault: "client",
189
- ...opts,
190
- });
191
- Object.setPrototypeOf(this, TopicLimitExceededException.prototype);
192
- }
193
- };
194
- exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
195
- name = "ResourceNotFoundException";
196
- $fault = "client";
197
- constructor(opts) {
198
- super({
199
- name: "ResourceNotFoundException",
200
- $fault: "client",
201
- ...opts,
202
- });
203
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
204
- }
205
- };
206
- exports.InvalidStateException = class InvalidStateException extends __BaseException {
207
- name = "InvalidStateException";
208
- $fault = "client";
209
- constructor(opts) {
210
- super({
211
- name: "InvalidStateException",
212
- $fault: "client",
213
- ...opts,
214
- });
215
- Object.setPrototypeOf(this, InvalidStateException.prototype);
216
- }
217
- };
218
- exports.ValidationException = class ValidationException extends __BaseException {
219
- name = "ValidationException";
220
- $fault = "client";
221
- Message;
222
- constructor(opts) {
223
- super({
224
- name: "ValidationException",
225
- $fault: "client",
226
- ...opts,
227
- });
228
- Object.setPrototypeOf(this, ValidationException.prototype);
229
- this.Message = opts.Message;
230
- }
231
- };
232
- exports.EndpointDisabledException = class EndpointDisabledException extends __BaseException {
233
- name = "EndpointDisabledException";
234
- $fault = "client";
235
- constructor(opts) {
236
- super({
237
- name: "EndpointDisabledException",
238
- $fault: "client",
239
- ...opts,
240
- });
241
- Object.setPrototypeOf(this, EndpointDisabledException.prototype);
242
- }
243
- };
244
- exports.InvalidParameterValueException = class InvalidParameterValueException extends __BaseException {
245
- name = "InvalidParameterValueException";
246
- $fault = "client";
247
- constructor(opts) {
248
- super({
249
- name: "InvalidParameterValueException",
250
- $fault: "client",
251
- ...opts,
252
- });
253
- Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
254
- }
255
- };
256
- exports.KMSAccessDeniedException = class KMSAccessDeniedException extends __BaseException {
257
- name = "KMSAccessDeniedException";
258
- $fault = "client";
259
- constructor(opts) {
260
- super({
261
- name: "KMSAccessDeniedException",
262
- $fault: "client",
263
- ...opts,
264
- });
265
- Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
266
- }
267
- };
268
- exports.KMSDisabledException = class KMSDisabledException extends __BaseException {
269
- name = "KMSDisabledException";
270
- $fault = "client";
271
- constructor(opts) {
272
- super({
273
- name: "KMSDisabledException",
274
- $fault: "client",
275
- ...opts,
276
- });
277
- Object.setPrototypeOf(this, KMSDisabledException.prototype);
278
- }
279
- };
280
- exports.KMSInvalidStateException = class KMSInvalidStateException extends __BaseException {
281
- name = "KMSInvalidStateException";
282
- $fault = "client";
283
- constructor(opts) {
284
- super({
285
- name: "KMSInvalidStateException",
286
- $fault: "client",
287
- ...opts,
288
- });
289
- Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
290
- }
291
- };
292
- exports.KMSNotFoundException = class KMSNotFoundException extends __BaseException {
293
- name = "KMSNotFoundException";
294
- $fault = "client";
295
- constructor(opts) {
296
- super({
297
- name: "KMSNotFoundException",
298
- $fault: "client",
299
- ...opts,
300
- });
301
- Object.setPrototypeOf(this, KMSNotFoundException.prototype);
302
- }
303
- };
304
- exports.KMSOptInRequired = class KMSOptInRequired extends __BaseException {
305
- name = "KMSOptInRequired";
306
- $fault = "client";
307
- constructor(opts) {
308
- super({
309
- name: "KMSOptInRequired",
310
- $fault: "client",
311
- ...opts,
312
- });
313
- Object.setPrototypeOf(this, KMSOptInRequired.prototype);
314
- }
315
- };
316
- exports.KMSThrottlingException = class KMSThrottlingException extends __BaseException {
317
- name = "KMSThrottlingException";
318
- $fault = "client";
319
- constructor(opts) {
320
- super({
321
- name: "KMSThrottlingException",
322
- $fault: "client",
323
- ...opts,
324
- });
325
- Object.setPrototypeOf(this, KMSThrottlingException.prototype);
326
- }
327
- };
328
- exports.PlatformApplicationDisabledException = class PlatformApplicationDisabledException extends __BaseException {
329
- name = "PlatformApplicationDisabledException";
330
- $fault = "client";
331
- constructor(opts) {
332
- super({
333
- name: "PlatformApplicationDisabledException",
334
- $fault: "client",
335
- ...opts,
336
- });
337
- Object.setPrototypeOf(this, PlatformApplicationDisabledException.prototype);
338
- }
339
- };
340
- exports.BatchEntryIdsNotDistinctException = class BatchEntryIdsNotDistinctException extends __BaseException {
341
- name = "BatchEntryIdsNotDistinctException";
342
- $fault = "client";
343
- constructor(opts) {
344
- super({
345
- name: "BatchEntryIdsNotDistinctException",
346
- $fault: "client",
347
- ...opts,
348
- });
349
- Object.setPrototypeOf(this, BatchEntryIdsNotDistinctException.prototype);
350
- }
351
- };
352
- exports.BatchRequestTooLongException = class BatchRequestTooLongException extends __BaseException {
353
- name = "BatchRequestTooLongException";
354
- $fault = "client";
355
- constructor(opts) {
356
- super({
357
- name: "BatchRequestTooLongException",
358
- $fault: "client",
359
- ...opts,
360
- });
361
- Object.setPrototypeOf(this, BatchRequestTooLongException.prototype);
362
- }
363
- };
364
- exports.EmptyBatchRequestException = class EmptyBatchRequestException extends __BaseException {
365
- name = "EmptyBatchRequestException";
366
- $fault = "client";
367
- constructor(opts) {
368
- super({
369
- name: "EmptyBatchRequestException",
370
- $fault: "client",
371
- ...opts,
372
- });
373
- Object.setPrototypeOf(this, EmptyBatchRequestException.prototype);
374
- }
375
- };
376
- exports.InvalidBatchEntryIdException = class InvalidBatchEntryIdException extends __BaseException {
377
- name = "InvalidBatchEntryIdException";
378
- $fault = "client";
379
- constructor(opts) {
380
- super({
381
- name: "InvalidBatchEntryIdException",
382
- $fault: "client",
383
- ...opts,
384
- });
385
- Object.setPrototypeOf(this, InvalidBatchEntryIdException.prototype);
386
- }
387
- };
388
- exports.TooManyEntriesInBatchRequestException = class TooManyEntriesInBatchRequestException extends __BaseException {
389
- name = "TooManyEntriesInBatchRequestException";
390
- $fault = "client";
391
- constructor(opts) {
392
- super({
393
- name: "TooManyEntriesInBatchRequestException",
394
- $fault: "client",
395
- ...opts,
396
- });
397
- Object.setPrototypeOf(this, TooManyEntriesInBatchRequestException.prototype);
398
- }
399
- };
400
- exports.VerificationException = class VerificationException extends __BaseException {
401
- name = "VerificationException";
402
- $fault = "client";
403
- Message;
404
- Status;
405
- constructor(opts) {
406
- super({
407
- name: "VerificationException",
408
- $fault: "client",
409
- ...opts,
410
- });
411
- Object.setPrototypeOf(this, VerificationException.prototype);
412
- this.Message = opts.Message;
413
- this.Status = opts.Status;
414
- }
415
- };
@@ -1,32 +0,0 @@
1
- const packageInfo = require("../package.json");
2
- const { Sha256 } = require("@aws-crypto/sha256-browser");
3
- const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
4
- const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
5
- const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
6
- const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
7
- const { calculateBodyLength } = require("@smithy/core/serde");
8
- const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
9
- const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
10
- const getRuntimeConfig = (config) => {
11
- const defaultsMode = resolveDefaultsModeConfig(config);
12
- const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
13
- const clientSharedValues = getSharedRuntimeConfig(config);
14
- return {
15
- ...clientSharedValues,
16
- ...config,
17
- runtime: "browser",
18
- defaultsMode,
19
- bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
20
- credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
21
- defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
22
- maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
23
- region: config?.region ?? invalidProvider("Region is missing"),
24
- requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
25
- retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
26
- sha256: config?.sha256 ?? Sha256,
27
- streamCollector: config?.streamCollector ?? streamCollector,
28
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
29
- useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
30
- };
31
- };
32
- exports.getRuntimeConfig = getRuntimeConfig;