@aws-sdk/client-dynamodb-streams 3.213.0 → 3.215.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.
@@ -350,8 +350,8 @@ exports.ruleSet = {
350
350
  authSchemes: [
351
351
  {
352
352
  name: "sigv4",
353
- signingName: "dynamodb",
354
353
  signingRegion: "us-east-1",
354
+ signingName: "dynamodb",
355
355
  },
356
356
  ],
357
357
  },
@@ -1,7 +1,26 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetRecordsOutputFilterSensitiveLog = exports._RecordFilterSensitiveLog = exports.StreamRecordFilterSensitiveLog = exports.AttributeValueFilterSensitiveLog = exports.ListStreamsOutputFilterSensitiveLog = exports._StreamFilterSensitiveLog = exports.ListStreamsInputFilterSensitiveLog = exports.GetShardIteratorOutputFilterSensitiveLog = exports.GetShardIteratorInputFilterSensitiveLog = exports.IdentityFilterSensitiveLog = exports.GetRecordsInputFilterSensitiveLog = exports.DescribeStreamOutputFilterSensitiveLog = exports.StreamDescriptionFilterSensitiveLog = exports.ShardFilterSensitiveLog = exports.SequenceNumberRangeFilterSensitiveLog = exports.KeySchemaElementFilterSensitiveLog = exports.DescribeStreamInputFilterSensitiveLog = exports.AttributeValue = exports.TrimmedDataAccessException = exports.LimitExceededException = exports.ExpiredIteratorException = exports.ResourceNotFoundException = exports.InternalServerError = void 0;
3
+ exports.GetRecordsOutputFilterSensitiveLog = exports._RecordFilterSensitiveLog = exports.StreamRecordFilterSensitiveLog = exports.AttributeValueFilterSensitiveLog = exports.ListStreamsOutputFilterSensitiveLog = exports._StreamFilterSensitiveLog = exports.ListStreamsInputFilterSensitiveLog = exports.GetShardIteratorOutputFilterSensitiveLog = exports.GetShardIteratorInputFilterSensitiveLog = exports.IdentityFilterSensitiveLog = exports.GetRecordsInputFilterSensitiveLog = exports.DescribeStreamOutputFilterSensitiveLog = exports.StreamDescriptionFilterSensitiveLog = exports.ShardFilterSensitiveLog = exports.SequenceNumberRangeFilterSensitiveLog = exports.KeySchemaElementFilterSensitiveLog = exports.DescribeStreamInputFilterSensitiveLog = exports.AttributeValue = exports.ShardIteratorType = exports.TrimmedDataAccessException = exports.LimitExceededException = exports.OperationType = exports.ExpiredIteratorException = exports.ResourceNotFoundException = exports.InternalServerError = exports.StreamViewType = exports.StreamStatus = exports.KeyType = void 0;
4
4
  const DynamoDBStreamsServiceException_1 = require("./DynamoDBStreamsServiceException");
5
+ var KeyType;
6
+ (function (KeyType) {
7
+ KeyType["HASH"] = "HASH";
8
+ KeyType["RANGE"] = "RANGE";
9
+ })(KeyType = exports.KeyType || (exports.KeyType = {}));
10
+ var StreamStatus;
11
+ (function (StreamStatus) {
12
+ StreamStatus["DISABLED"] = "DISABLED";
13
+ StreamStatus["DISABLING"] = "DISABLING";
14
+ StreamStatus["ENABLED"] = "ENABLED";
15
+ StreamStatus["ENABLING"] = "ENABLING";
16
+ })(StreamStatus = exports.StreamStatus || (exports.StreamStatus = {}));
17
+ var StreamViewType;
18
+ (function (StreamViewType) {
19
+ StreamViewType["KEYS_ONLY"] = "KEYS_ONLY";
20
+ StreamViewType["NEW_AND_OLD_IMAGES"] = "NEW_AND_OLD_IMAGES";
21
+ StreamViewType["NEW_IMAGE"] = "NEW_IMAGE";
22
+ StreamViewType["OLD_IMAGE"] = "OLD_IMAGE";
23
+ })(StreamViewType = exports.StreamViewType || (exports.StreamViewType = {}));
5
24
  class InternalServerError extends DynamoDBStreamsServiceException_1.DynamoDBStreamsServiceException {
6
25
  constructor(opts) {
7
26
  super({
@@ -41,6 +60,12 @@ class ExpiredIteratorException extends DynamoDBStreamsServiceException_1.DynamoD
41
60
  }
42
61
  }
43
62
  exports.ExpiredIteratorException = ExpiredIteratorException;
63
+ var OperationType;
64
+ (function (OperationType) {
65
+ OperationType["INSERT"] = "INSERT";
66
+ OperationType["MODIFY"] = "MODIFY";
67
+ OperationType["REMOVE"] = "REMOVE";
68
+ })(OperationType = exports.OperationType || (exports.OperationType = {}));
44
69
  class LimitExceededException extends DynamoDBStreamsServiceException_1.DynamoDBStreamsServiceException {
45
70
  constructor(opts) {
46
71
  super({
@@ -67,6 +92,13 @@ class TrimmedDataAccessException extends DynamoDBStreamsServiceException_1.Dynam
67
92
  }
68
93
  }
69
94
  exports.TrimmedDataAccessException = TrimmedDataAccessException;
95
+ var ShardIteratorType;
96
+ (function (ShardIteratorType) {
97
+ ShardIteratorType["AFTER_SEQUENCE_NUMBER"] = "AFTER_SEQUENCE_NUMBER";
98
+ ShardIteratorType["AT_SEQUENCE_NUMBER"] = "AT_SEQUENCE_NUMBER";
99
+ ShardIteratorType["LATEST"] = "LATEST";
100
+ ShardIteratorType["TRIM_HORIZON"] = "TRIM_HORIZON";
101
+ })(ShardIteratorType = exports.ShardIteratorType || (exports.ShardIteratorType = {}));
70
102
  var AttributeValue;
71
103
  (function (AttributeValue) {
72
104
  AttributeValue.visit = (value, visitor) => {
@@ -347,8 +347,8 @@ export const ruleSet = {
347
347
  authSchemes: [
348
348
  {
349
349
  name: "sigv4",
350
- signingName: "dynamodb",
351
350
  signingRegion: "us-east-1",
351
+ signingName: "dynamodb",
352
352
  },
353
353
  ],
354
354
  },
@@ -1,4 +1,23 @@
1
1
  import { DynamoDBStreamsServiceException as __BaseException } from "./DynamoDBStreamsServiceException";
2
+ export var KeyType;
3
+ (function (KeyType) {
4
+ KeyType["HASH"] = "HASH";
5
+ KeyType["RANGE"] = "RANGE";
6
+ })(KeyType || (KeyType = {}));
7
+ export var StreamStatus;
8
+ (function (StreamStatus) {
9
+ StreamStatus["DISABLED"] = "DISABLED";
10
+ StreamStatus["DISABLING"] = "DISABLING";
11
+ StreamStatus["ENABLED"] = "ENABLED";
12
+ StreamStatus["ENABLING"] = "ENABLING";
13
+ })(StreamStatus || (StreamStatus = {}));
14
+ export var StreamViewType;
15
+ (function (StreamViewType) {
16
+ StreamViewType["KEYS_ONLY"] = "KEYS_ONLY";
17
+ StreamViewType["NEW_AND_OLD_IMAGES"] = "NEW_AND_OLD_IMAGES";
18
+ StreamViewType["NEW_IMAGE"] = "NEW_IMAGE";
19
+ StreamViewType["OLD_IMAGE"] = "OLD_IMAGE";
20
+ })(StreamViewType || (StreamViewType = {}));
2
21
  export class InternalServerError extends __BaseException {
3
22
  constructor(opts) {
4
23
  super({
@@ -35,6 +54,12 @@ export class ExpiredIteratorException extends __BaseException {
35
54
  Object.setPrototypeOf(this, ExpiredIteratorException.prototype);
36
55
  }
37
56
  }
57
+ export var OperationType;
58
+ (function (OperationType) {
59
+ OperationType["INSERT"] = "INSERT";
60
+ OperationType["MODIFY"] = "MODIFY";
61
+ OperationType["REMOVE"] = "REMOVE";
62
+ })(OperationType || (OperationType = {}));
38
63
  export class LimitExceededException extends __BaseException {
39
64
  constructor(opts) {
40
65
  super({
@@ -59,6 +84,13 @@ export class TrimmedDataAccessException extends __BaseException {
59
84
  Object.setPrototypeOf(this, TrimmedDataAccessException.prototype);
60
85
  }
61
86
  }
87
+ export var ShardIteratorType;
88
+ (function (ShardIteratorType) {
89
+ ShardIteratorType["AFTER_SEQUENCE_NUMBER"] = "AFTER_SEQUENCE_NUMBER";
90
+ ShardIteratorType["AT_SEQUENCE_NUMBER"] = "AT_SEQUENCE_NUMBER";
91
+ ShardIteratorType["LATEST"] = "LATEST";
92
+ ShardIteratorType["TRIM_HORIZON"] = "TRIM_HORIZON";
93
+ })(ShardIteratorType || (ShardIteratorType = {}));
62
94
  export var AttributeValue;
63
95
  (function (AttributeValue) {
64
96
  AttributeValue.visit = (value, visitor) => {
@@ -18,7 +18,10 @@ export interface DescribeStreamInput {
18
18
  */
19
19
  ExclusiveStartShardId?: string;
20
20
  }
21
- export declare type KeyType = "HASH" | "RANGE";
21
+ export declare enum KeyType {
22
+ HASH = "HASH",
23
+ RANGE = "RANGE"
24
+ }
22
25
  /**
23
26
  * <p>Represents <i>a single element</i> of a key schema. A key schema specifies
24
27
  * the attributes that make up the primary key of a table, or the key attributes of an
@@ -92,8 +95,18 @@ export interface Shard {
92
95
  */
93
96
  ParentShardId?: string;
94
97
  }
95
- export declare type StreamStatus = "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
96
- export declare type StreamViewType = "KEYS_ONLY" | "NEW_AND_OLD_IMAGES" | "NEW_IMAGE" | "OLD_IMAGE";
98
+ export declare enum StreamStatus {
99
+ DISABLED = "DISABLED",
100
+ DISABLING = "DISABLING",
101
+ ENABLED = "ENABLED",
102
+ ENABLING = "ENABLING"
103
+ }
104
+ export declare enum StreamViewType {
105
+ KEYS_ONLY = "KEYS_ONLY",
106
+ NEW_AND_OLD_IMAGES = "NEW_AND_OLD_IMAGES",
107
+ NEW_IMAGE = "NEW_IMAGE",
108
+ OLD_IMAGE = "OLD_IMAGE"
109
+ }
97
110
  /**
98
111
  * <p>Represents all of the data describing a particular stream.</p>
99
112
  */
@@ -250,7 +263,11 @@ export interface GetRecordsInput {
250
263
  */
251
264
  Limit?: number;
252
265
  }
253
- export declare type OperationType = "INSERT" | "MODIFY" | "REMOVE";
266
+ export declare enum OperationType {
267
+ INSERT = "INSERT",
268
+ MODIFY = "MODIFY",
269
+ REMOVE = "REMOVE"
270
+ }
254
271
  /**
255
272
  * <p>Contains details about the type of identity that made the request.</p>
256
273
  */
@@ -267,14 +284,15 @@ export interface Identity {
267
284
  }
268
285
  /**
269
286
  * <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
270
- * <p>Up to 500 simultaneous table operations are allowed per account. These operations
287
+ * <p>For most purposes, up to 500 simultaneous table operations are allowed per account. These operations
271
288
  * include <code>CreateTable</code>, <code>UpdateTable</code>,
272
289
  * <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
273
290
  * <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
274
- * <p>The only exception is when you are creating a table with one or more secondary
275
- * indexes. You can have up to 250 such requests running at a time; however, if the table or
276
- * index specifications are complex, DynamoDB might temporarily reduce the number
291
+ * <p>When you are creating a table with one or more secondary
292
+ * indexes, you can have up to 250 such requests running at a time. However, if the table or
293
+ * index specifications are complex, then DynamoDB might temporarily reduce the number
277
294
  * of concurrent operations.</p>
295
+ * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.</p>
278
296
  * <p>There is a soft account quota of 2,500 tables.</p>
279
297
  */
280
298
  export declare class LimitExceededException extends __BaseException {
@@ -307,7 +325,12 @@ export declare class TrimmedDataAccessException extends __BaseException {
307
325
  */
308
326
  constructor(opts: __ExceptionOptionType<TrimmedDataAccessException, __BaseException>);
309
327
  }
310
- export declare type ShardIteratorType = "AFTER_SEQUENCE_NUMBER" | "AT_SEQUENCE_NUMBER" | "LATEST" | "TRIM_HORIZON";
328
+ export declare enum ShardIteratorType {
329
+ AFTER_SEQUENCE_NUMBER = "AFTER_SEQUENCE_NUMBER",
330
+ AT_SEQUENCE_NUMBER = "AT_SEQUENCE_NUMBER",
331
+ LATEST = "LATEST",
332
+ TRIM_HORIZON = "TRIM_HORIZON"
333
+ }
311
334
  /**
312
335
  * <p>Represents the input of a <code>GetShardIterator</code> operation.</p>
313
336
  */
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: DynamoDBStreamsClientConfig) =>
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
38
38
  systemClockOffset?: number | undefined;
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: DynamoDBStreamsClientConfig) =>
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
38
38
  systemClockOffset?: number | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: DynamoDBStreamsClientConfig) =>
31
31
  }) => import("@aws-sdk/types").EndpointV2;
32
32
  tls?: boolean | undefined;
33
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
35
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
36
  signingEscapePath?: boolean | undefined;
37
37
  systemClockOffset?: number | undefined;
@@ -5,7 +5,10 @@ export interface DescribeStreamInput {
5
5
  Limit?: number;
6
6
  ExclusiveStartShardId?: string;
7
7
  }
8
- export declare type KeyType = "HASH" | "RANGE";
8
+ export declare enum KeyType {
9
+ HASH = "HASH",
10
+ RANGE = "RANGE",
11
+ }
9
12
  export interface KeySchemaElement {
10
13
  AttributeName: string | undefined;
11
14
  KeyType: KeyType | string | undefined;
@@ -19,16 +22,18 @@ export interface Shard {
19
22
  SequenceNumberRange?: SequenceNumberRange;
20
23
  ParentShardId?: string;
21
24
  }
22
- export declare type StreamStatus =
23
- | "DISABLED"
24
- | "DISABLING"
25
- | "ENABLED"
26
- | "ENABLING";
27
- export declare type StreamViewType =
28
- | "KEYS_ONLY"
29
- | "NEW_AND_OLD_IMAGES"
30
- | "NEW_IMAGE"
31
- | "OLD_IMAGE";
25
+ export declare enum StreamStatus {
26
+ DISABLED = "DISABLED",
27
+ DISABLING = "DISABLING",
28
+ ENABLED = "ENABLED",
29
+ ENABLING = "ENABLING",
30
+ }
31
+ export declare enum StreamViewType {
32
+ KEYS_ONLY = "KEYS_ONLY",
33
+ NEW_AND_OLD_IMAGES = "NEW_AND_OLD_IMAGES",
34
+ NEW_IMAGE = "NEW_IMAGE",
35
+ OLD_IMAGE = "OLD_IMAGE",
36
+ }
32
37
  export interface StreamDescription {
33
38
  StreamArn?: string;
34
39
  StreamLabel?: string;
@@ -68,7 +73,11 @@ export interface GetRecordsInput {
68
73
  ShardIterator: string | undefined;
69
74
  Limit?: number;
70
75
  }
71
- export declare type OperationType = "INSERT" | "MODIFY" | "REMOVE";
76
+ export declare enum OperationType {
77
+ INSERT = "INSERT",
78
+ MODIFY = "MODIFY",
79
+ REMOVE = "REMOVE",
80
+ }
72
81
  export interface Identity {
73
82
  PrincipalId?: string;
74
83
  Type?: string;
@@ -87,11 +96,12 @@ export declare class TrimmedDataAccessException extends __BaseException {
87
96
  opts: __ExceptionOptionType<TrimmedDataAccessException, __BaseException>
88
97
  );
89
98
  }
90
- export declare type ShardIteratorType =
91
- | "AFTER_SEQUENCE_NUMBER"
92
- | "AT_SEQUENCE_NUMBER"
93
- | "LATEST"
94
- | "TRIM_HORIZON";
99
+ export declare enum ShardIteratorType {
100
+ AFTER_SEQUENCE_NUMBER = "AFTER_SEQUENCE_NUMBER",
101
+ AT_SEQUENCE_NUMBER = "AT_SEQUENCE_NUMBER",
102
+ LATEST = "LATEST",
103
+ TRIM_HORIZON = "TRIM_HORIZON",
104
+ }
95
105
  export interface GetShardIteratorInput {
96
106
  StreamArn: string | undefined;
97
107
  ShardId: string | undefined;
@@ -66,8 +66,10 @@ export declare const getRuntimeConfig: (
66
66
  tls?: boolean | undefined;
67
67
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
68
68
  credentials?:
69
- | import("@aws-sdk/types").Credentials
70
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
69
+ | import("@aws-sdk/types").AwsCredentialIdentity
70
+ | import("@aws-sdk/types").Provider<
71
+ import("@aws-sdk/types").AwsCredentialIdentity
72
+ >
71
73
  | undefined;
72
74
  signer?:
73
75
  | import("@aws-sdk/types").RequestSigner
@@ -66,8 +66,10 @@ export declare const getRuntimeConfig: (
66
66
  tls?: boolean | undefined;
67
67
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
68
68
  credentials?:
69
- | import("@aws-sdk/types").Credentials
70
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
69
+ | import("@aws-sdk/types").AwsCredentialIdentity
70
+ | import("@aws-sdk/types").Provider<
71
+ import("@aws-sdk/types").AwsCredentialIdentity
72
+ >
71
73
  | undefined;
72
74
  signer?:
73
75
  | import("@aws-sdk/types").RequestSigner
@@ -55,8 +55,10 @@ export declare const getRuntimeConfig: (
55
55
  tls?: boolean | undefined;
56
56
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
57
57
  credentials?:
58
- | import("@aws-sdk/types").Credentials
59
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
58
+ | import("@aws-sdk/types").AwsCredentialIdentity
59
+ | import("@aws-sdk/types").Provider<
60
+ import("@aws-sdk/types").AwsCredentialIdentity
61
+ >
60
62
  | undefined;
61
63
  signer?:
62
64
  | import("@aws-sdk/types").RequestSigner
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-dynamodb-streams",
3
3
  "description": "AWS SDK for JavaScript Dynamodb Streams Client for Node.js, Browser and React Native",
4
- "version": "3.213.0",
4
+ "version": "3.215.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,36 +19,36 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.213.0",
23
- "@aws-sdk/config-resolver": "3.212.0",
24
- "@aws-sdk/credential-provider-node": "3.212.0",
25
- "@aws-sdk/fetch-http-handler": "3.212.0",
26
- "@aws-sdk/hash-node": "3.212.0",
27
- "@aws-sdk/invalid-dependency": "3.212.0",
28
- "@aws-sdk/middleware-content-length": "3.212.0",
29
- "@aws-sdk/middleware-endpoint": "3.212.0",
30
- "@aws-sdk/middleware-host-header": "3.212.0",
31
- "@aws-sdk/middleware-logger": "3.212.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.212.0",
33
- "@aws-sdk/middleware-retry": "3.212.0",
34
- "@aws-sdk/middleware-serde": "3.212.0",
35
- "@aws-sdk/middleware-signing": "3.212.0",
36
- "@aws-sdk/middleware-stack": "3.212.0",
37
- "@aws-sdk/middleware-user-agent": "3.212.0",
38
- "@aws-sdk/node-config-provider": "3.212.0",
39
- "@aws-sdk/node-http-handler": "3.212.0",
40
- "@aws-sdk/protocol-http": "3.212.0",
41
- "@aws-sdk/smithy-client": "3.212.0",
42
- "@aws-sdk/types": "3.212.0",
43
- "@aws-sdk/url-parser": "3.212.0",
22
+ "@aws-sdk/client-sts": "3.215.0",
23
+ "@aws-sdk/config-resolver": "3.215.0",
24
+ "@aws-sdk/credential-provider-node": "3.215.0",
25
+ "@aws-sdk/fetch-http-handler": "3.215.0",
26
+ "@aws-sdk/hash-node": "3.215.0",
27
+ "@aws-sdk/invalid-dependency": "3.215.0",
28
+ "@aws-sdk/middleware-content-length": "3.215.0",
29
+ "@aws-sdk/middleware-endpoint": "3.215.0",
30
+ "@aws-sdk/middleware-host-header": "3.215.0",
31
+ "@aws-sdk/middleware-logger": "3.215.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.215.0",
33
+ "@aws-sdk/middleware-retry": "3.215.0",
34
+ "@aws-sdk/middleware-serde": "3.215.0",
35
+ "@aws-sdk/middleware-signing": "3.215.0",
36
+ "@aws-sdk/middleware-stack": "3.215.0",
37
+ "@aws-sdk/middleware-user-agent": "3.215.0",
38
+ "@aws-sdk/node-config-provider": "3.215.0",
39
+ "@aws-sdk/node-http-handler": "3.215.0",
40
+ "@aws-sdk/protocol-http": "3.215.0",
41
+ "@aws-sdk/smithy-client": "3.215.0",
42
+ "@aws-sdk/types": "3.215.0",
43
+ "@aws-sdk/url-parser": "3.215.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.212.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.212.0",
49
- "@aws-sdk/util-endpoints": "3.212.0",
50
- "@aws-sdk/util-user-agent-browser": "3.212.0",
51
- "@aws-sdk/util-user-agent-node": "3.212.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.215.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.215.0",
49
+ "@aws-sdk/util-endpoints": "3.215.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.215.0",
51
+ "@aws-sdk/util-user-agent-node": "3.215.0",
52
52
  "@aws-sdk/util-utf8-browser": "3.188.0",
53
53
  "@aws-sdk/util-utf8-node": "3.208.0",
54
54
  "tslib": "^2.3.1"