@aws-sdk/client-dynamodb-streams 3.300.0 → 3.303.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/models/models_0.js +27 -32
- package/dist-es/models/models_0.js +27 -32
- package/dist-types/commands/DescribeStreamCommand.d.ts +1 -1
- package/dist-types/commands/GetRecordsCommand.d.ts +1 -1
- package/dist-types/commands/GetShardIteratorCommand.d.ts +1 -1
- package/dist-types/commands/ListStreamsCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +52 -27
- package/dist-types/ts3.4/models/models_0.d.ts +34 -27
- package/package.json +34 -34
|
@@ -2,25 +2,22 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
StreamViewType["NEW_IMAGE"] = "NEW_IMAGE";
|
|
22
|
-
StreamViewType["OLD_IMAGE"] = "OLD_IMAGE";
|
|
23
|
-
})(StreamViewType = exports.StreamViewType || (exports.StreamViewType = {}));
|
|
5
|
+
exports.KeyType = {
|
|
6
|
+
HASH: "HASH",
|
|
7
|
+
RANGE: "RANGE",
|
|
8
|
+
};
|
|
9
|
+
exports.StreamStatus = {
|
|
10
|
+
DISABLED: "DISABLED",
|
|
11
|
+
DISABLING: "DISABLING",
|
|
12
|
+
ENABLED: "ENABLED",
|
|
13
|
+
ENABLING: "ENABLING",
|
|
14
|
+
};
|
|
15
|
+
exports.StreamViewType = {
|
|
16
|
+
KEYS_ONLY: "KEYS_ONLY",
|
|
17
|
+
NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES",
|
|
18
|
+
NEW_IMAGE: "NEW_IMAGE",
|
|
19
|
+
OLD_IMAGE: "OLD_IMAGE",
|
|
20
|
+
};
|
|
24
21
|
class InternalServerError extends DynamoDBStreamsServiceException_1.DynamoDBStreamsServiceException {
|
|
25
22
|
constructor(opts) {
|
|
26
23
|
super({
|
|
@@ -60,12 +57,11 @@ class ExpiredIteratorException extends DynamoDBStreamsServiceException_1.DynamoD
|
|
|
60
57
|
}
|
|
61
58
|
}
|
|
62
59
|
exports.ExpiredIteratorException = ExpiredIteratorException;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
})(OperationType = exports.OperationType || (exports.OperationType = {}));
|
|
60
|
+
exports.OperationType = {
|
|
61
|
+
INSERT: "INSERT",
|
|
62
|
+
MODIFY: "MODIFY",
|
|
63
|
+
REMOVE: "REMOVE",
|
|
64
|
+
};
|
|
69
65
|
class LimitExceededException extends DynamoDBStreamsServiceException_1.DynamoDBStreamsServiceException {
|
|
70
66
|
constructor(opts) {
|
|
71
67
|
super({
|
|
@@ -92,13 +88,12 @@ class TrimmedDataAccessException extends DynamoDBStreamsServiceException_1.Dynam
|
|
|
92
88
|
}
|
|
93
89
|
}
|
|
94
90
|
exports.TrimmedDataAccessException = TrimmedDataAccessException;
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
})(ShardIteratorType = exports.ShardIteratorType || (exports.ShardIteratorType = {}));
|
|
91
|
+
exports.ShardIteratorType = {
|
|
92
|
+
AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER",
|
|
93
|
+
AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER",
|
|
94
|
+
LATEST: "LATEST",
|
|
95
|
+
TRIM_HORIZON: "TRIM_HORIZON",
|
|
96
|
+
};
|
|
102
97
|
var AttributeValue;
|
|
103
98
|
(function (AttributeValue) {
|
|
104
99
|
AttributeValue.visit = (value, visitor) => {
|
|
@@ -1,23 +1,20 @@
|
|
|
1
1
|
import { DynamoDBStreamsServiceException as __BaseException } from "./DynamoDBStreamsServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
StreamViewType["NEW_IMAGE"] = "NEW_IMAGE";
|
|
19
|
-
StreamViewType["OLD_IMAGE"] = "OLD_IMAGE";
|
|
20
|
-
})(StreamViewType || (StreamViewType = {}));
|
|
2
|
+
export const KeyType = {
|
|
3
|
+
HASH: "HASH",
|
|
4
|
+
RANGE: "RANGE",
|
|
5
|
+
};
|
|
6
|
+
export const StreamStatus = {
|
|
7
|
+
DISABLED: "DISABLED",
|
|
8
|
+
DISABLING: "DISABLING",
|
|
9
|
+
ENABLED: "ENABLED",
|
|
10
|
+
ENABLING: "ENABLING",
|
|
11
|
+
};
|
|
12
|
+
export const StreamViewType = {
|
|
13
|
+
KEYS_ONLY: "KEYS_ONLY",
|
|
14
|
+
NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES",
|
|
15
|
+
NEW_IMAGE: "NEW_IMAGE",
|
|
16
|
+
OLD_IMAGE: "OLD_IMAGE",
|
|
17
|
+
};
|
|
21
18
|
export class InternalServerError extends __BaseException {
|
|
22
19
|
constructor(opts) {
|
|
23
20
|
super({
|
|
@@ -54,12 +51,11 @@ export class ExpiredIteratorException extends __BaseException {
|
|
|
54
51
|
Object.setPrototypeOf(this, ExpiredIteratorException.prototype);
|
|
55
52
|
}
|
|
56
53
|
}
|
|
57
|
-
export
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
})(OperationType || (OperationType = {}));
|
|
54
|
+
export const OperationType = {
|
|
55
|
+
INSERT: "INSERT",
|
|
56
|
+
MODIFY: "MODIFY",
|
|
57
|
+
REMOVE: "REMOVE",
|
|
58
|
+
};
|
|
63
59
|
export class LimitExceededException extends __BaseException {
|
|
64
60
|
constructor(opts) {
|
|
65
61
|
super({
|
|
@@ -84,13 +80,12 @@ export class TrimmedDataAccessException extends __BaseException {
|
|
|
84
80
|
Object.setPrototypeOf(this, TrimmedDataAccessException.prototype);
|
|
85
81
|
}
|
|
86
82
|
}
|
|
87
|
-
export
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
})(ShardIteratorType || (ShardIteratorType = {}));
|
|
83
|
+
export const ShardIteratorType = {
|
|
84
|
+
AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER",
|
|
85
|
+
AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER",
|
|
86
|
+
LATEST: "LATEST",
|
|
87
|
+
TRIM_HORIZON: "TRIM_HORIZON",
|
|
88
|
+
};
|
|
94
89
|
export var AttributeValue;
|
|
95
90
|
(function (AttributeValue) {
|
|
96
91
|
AttributeValue.visit = (value, visitor) => {
|
|
@@ -34,7 +34,7 @@ export interface DescribeStreamCommandOutput extends DescribeStreamOutput, __Met
|
|
|
34
34
|
* import { DynamoDBStreamsClient, DescribeStreamCommand } from "@aws-sdk/client-dynamodb-streams"; // ES Modules import
|
|
35
35
|
* // const { DynamoDBStreamsClient, DescribeStreamCommand } = require("@aws-sdk/client-dynamodb-streams"); // CommonJS import
|
|
36
36
|
* const client = new DynamoDBStreamsClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // DescribeStreamInput
|
|
38
38
|
* StreamArn: "STRING_VALUE", // required
|
|
39
39
|
* Limit: Number("int"),
|
|
40
40
|
* ExclusiveStartShardId: "STRING_VALUE",
|
|
@@ -36,7 +36,7 @@ export interface GetRecordsCommandOutput extends GetRecordsOutput, __MetadataBea
|
|
|
36
36
|
* import { DynamoDBStreamsClient, GetRecordsCommand } from "@aws-sdk/client-dynamodb-streams"; // ES Modules import
|
|
37
37
|
* // const { DynamoDBStreamsClient, GetRecordsCommand } = require("@aws-sdk/client-dynamodb-streams"); // CommonJS import
|
|
38
38
|
* const client = new DynamoDBStreamsClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // GetRecordsInput
|
|
40
40
|
* ShardIterator: "STRING_VALUE", // required
|
|
41
41
|
* Limit: Number("int"),
|
|
42
42
|
* };
|
|
@@ -33,7 +33,7 @@ export interface GetShardIteratorCommandOutput extends GetShardIteratorOutput, _
|
|
|
33
33
|
* import { DynamoDBStreamsClient, GetShardIteratorCommand } from "@aws-sdk/client-dynamodb-streams"; // ES Modules import
|
|
34
34
|
* // const { DynamoDBStreamsClient, GetShardIteratorCommand } = require("@aws-sdk/client-dynamodb-streams"); // CommonJS import
|
|
35
35
|
* const client = new DynamoDBStreamsClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // GetShardIteratorInput
|
|
37
37
|
* StreamArn: "STRING_VALUE", // required
|
|
38
38
|
* ShardId: "STRING_VALUE", // required
|
|
39
39
|
* ShardIteratorType: "TRIM_HORIZON" || "LATEST" || "AT_SEQUENCE_NUMBER" || "AFTER_SEQUENCE_NUMBER", // required
|
|
@@ -31,7 +31,7 @@ export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataB
|
|
|
31
31
|
* import { DynamoDBStreamsClient, ListStreamsCommand } from "@aws-sdk/client-dynamodb-streams"; // ES Modules import
|
|
32
32
|
* // const { DynamoDBStreamsClient, ListStreamsCommand } = require("@aws-sdk/client-dynamodb-streams"); // CommonJS import
|
|
33
33
|
* const client = new DynamoDBStreamsClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListStreamsInput
|
|
35
35
|
* TableName: "STRING_VALUE",
|
|
36
36
|
* Limit: Number("int"),
|
|
37
37
|
* ExclusiveStartStreamArn: "STRING_VALUE",
|
|
@@ -21,11 +21,16 @@ export interface DescribeStreamInput {
|
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* @public
|
|
24
|
+
* @enum
|
|
24
25
|
*/
|
|
25
|
-
export declare
|
|
26
|
-
HASH
|
|
27
|
-
RANGE
|
|
28
|
-
}
|
|
26
|
+
export declare const KeyType: {
|
|
27
|
+
readonly HASH: "HASH";
|
|
28
|
+
readonly RANGE: "RANGE";
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
29
34
|
/**
|
|
30
35
|
* @public
|
|
31
36
|
* <p>Represents <i>a single element</i> of a key schema. A key schema specifies
|
|
@@ -104,22 +109,32 @@ export interface Shard {
|
|
|
104
109
|
}
|
|
105
110
|
/**
|
|
106
111
|
* @public
|
|
112
|
+
* @enum
|
|
107
113
|
*/
|
|
108
|
-
export declare
|
|
109
|
-
DISABLED
|
|
110
|
-
DISABLING
|
|
111
|
-
ENABLED
|
|
112
|
-
ENABLING
|
|
113
|
-
}
|
|
114
|
+
export declare const StreamStatus: {
|
|
115
|
+
readonly DISABLED: "DISABLED";
|
|
116
|
+
readonly DISABLING: "DISABLING";
|
|
117
|
+
readonly ENABLED: "ENABLED";
|
|
118
|
+
readonly ENABLING: "ENABLING";
|
|
119
|
+
};
|
|
114
120
|
/**
|
|
115
121
|
* @public
|
|
116
122
|
*/
|
|
117
|
-
export
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
+
export type StreamStatus = (typeof StreamStatus)[keyof typeof StreamStatus];
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
* @enum
|
|
127
|
+
*/
|
|
128
|
+
export declare const StreamViewType: {
|
|
129
|
+
readonly KEYS_ONLY: "KEYS_ONLY";
|
|
130
|
+
readonly NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES";
|
|
131
|
+
readonly NEW_IMAGE: "NEW_IMAGE";
|
|
132
|
+
readonly OLD_IMAGE: "OLD_IMAGE";
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export type StreamViewType = (typeof StreamViewType)[keyof typeof StreamViewType];
|
|
123
138
|
/**
|
|
124
139
|
* @public
|
|
125
140
|
* <p>Represents all of the data describing a particular stream.</p>
|
|
@@ -284,12 +299,17 @@ export interface GetRecordsInput {
|
|
|
284
299
|
}
|
|
285
300
|
/**
|
|
286
301
|
* @public
|
|
302
|
+
* @enum
|
|
287
303
|
*/
|
|
288
|
-
export declare
|
|
289
|
-
INSERT
|
|
290
|
-
MODIFY
|
|
291
|
-
REMOVE
|
|
292
|
-
}
|
|
304
|
+
export declare const OperationType: {
|
|
305
|
+
readonly INSERT: "INSERT";
|
|
306
|
+
readonly MODIFY: "MODIFY";
|
|
307
|
+
readonly REMOVE: "REMOVE";
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
293
313
|
/**
|
|
294
314
|
* @public
|
|
295
315
|
* <p>Contains details about the type of identity that made the request.</p>
|
|
@@ -352,13 +372,18 @@ export declare class TrimmedDataAccessException extends __BaseException {
|
|
|
352
372
|
}
|
|
353
373
|
/**
|
|
354
374
|
* @public
|
|
375
|
+
* @enum
|
|
355
376
|
*/
|
|
356
|
-
export declare
|
|
357
|
-
AFTER_SEQUENCE_NUMBER
|
|
358
|
-
AT_SEQUENCE_NUMBER
|
|
359
|
-
LATEST
|
|
360
|
-
TRIM_HORIZON
|
|
361
|
-
}
|
|
377
|
+
export declare const ShardIteratorType: {
|
|
378
|
+
readonly AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER";
|
|
379
|
+
readonly AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER";
|
|
380
|
+
readonly LATEST: "LATEST";
|
|
381
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
382
|
+
};
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
export type ShardIteratorType = (typeof ShardIteratorType)[keyof typeof ShardIteratorType];
|
|
362
387
|
/**
|
|
363
388
|
* @public
|
|
364
389
|
* <p>Represents the input of a <code>GetShardIterator</code> operation.</p>
|
|
@@ -5,10 +5,11 @@ export interface DescribeStreamInput {
|
|
|
5
5
|
Limit?: number;
|
|
6
6
|
ExclusiveStartShardId?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare
|
|
9
|
-
HASH
|
|
10
|
-
RANGE
|
|
11
|
-
}
|
|
8
|
+
export declare const KeyType: {
|
|
9
|
+
readonly HASH: "HASH";
|
|
10
|
+
readonly RANGE: "RANGE";
|
|
11
|
+
};
|
|
12
|
+
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
12
13
|
export interface KeySchemaElement {
|
|
13
14
|
AttributeName: string | undefined;
|
|
14
15
|
KeyType: KeyType | string | undefined;
|
|
@@ -22,18 +23,21 @@ export interface Shard {
|
|
|
22
23
|
SequenceNumberRange?: SequenceNumberRange;
|
|
23
24
|
ParentShardId?: string;
|
|
24
25
|
}
|
|
25
|
-
export declare
|
|
26
|
-
DISABLED
|
|
27
|
-
DISABLING
|
|
28
|
-
ENABLED
|
|
29
|
-
ENABLING
|
|
30
|
-
}
|
|
31
|
-
export
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
26
|
+
export declare const StreamStatus: {
|
|
27
|
+
readonly DISABLED: "DISABLED";
|
|
28
|
+
readonly DISABLING: "DISABLING";
|
|
29
|
+
readonly ENABLED: "ENABLED";
|
|
30
|
+
readonly ENABLING: "ENABLING";
|
|
31
|
+
};
|
|
32
|
+
export type StreamStatus = (typeof StreamStatus)[keyof typeof StreamStatus];
|
|
33
|
+
export declare const StreamViewType: {
|
|
34
|
+
readonly KEYS_ONLY: "KEYS_ONLY";
|
|
35
|
+
readonly NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES";
|
|
36
|
+
readonly NEW_IMAGE: "NEW_IMAGE";
|
|
37
|
+
readonly OLD_IMAGE: "OLD_IMAGE";
|
|
38
|
+
};
|
|
39
|
+
export type StreamViewType =
|
|
40
|
+
(typeof StreamViewType)[keyof typeof StreamViewType];
|
|
37
41
|
export interface StreamDescription {
|
|
38
42
|
StreamArn?: string;
|
|
39
43
|
StreamLabel?: string;
|
|
@@ -73,11 +77,12 @@ export interface GetRecordsInput {
|
|
|
73
77
|
ShardIterator: string | undefined;
|
|
74
78
|
Limit?: number;
|
|
75
79
|
}
|
|
76
|
-
export declare
|
|
77
|
-
INSERT
|
|
78
|
-
MODIFY
|
|
79
|
-
REMOVE
|
|
80
|
-
}
|
|
80
|
+
export declare const OperationType: {
|
|
81
|
+
readonly INSERT: "INSERT";
|
|
82
|
+
readonly MODIFY: "MODIFY";
|
|
83
|
+
readonly REMOVE: "REMOVE";
|
|
84
|
+
};
|
|
85
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
81
86
|
export interface Identity {
|
|
82
87
|
PrincipalId?: string;
|
|
83
88
|
Type?: string;
|
|
@@ -96,12 +101,14 @@ export declare class TrimmedDataAccessException extends __BaseException {
|
|
|
96
101
|
opts: __ExceptionOptionType<TrimmedDataAccessException, __BaseException>
|
|
97
102
|
);
|
|
98
103
|
}
|
|
99
|
-
export declare
|
|
100
|
-
AFTER_SEQUENCE_NUMBER
|
|
101
|
-
AT_SEQUENCE_NUMBER
|
|
102
|
-
LATEST
|
|
103
|
-
TRIM_HORIZON
|
|
104
|
-
}
|
|
104
|
+
export declare const ShardIteratorType: {
|
|
105
|
+
readonly AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER";
|
|
106
|
+
readonly AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER";
|
|
107
|
+
readonly LATEST: "LATEST";
|
|
108
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
109
|
+
};
|
|
110
|
+
export type ShardIteratorType =
|
|
111
|
+
(typeof ShardIteratorType)[keyof typeof ShardIteratorType];
|
|
105
112
|
export interface GetShardIteratorInput {
|
|
106
113
|
StreamArn: string | undefined;
|
|
107
114
|
ShardId: string | undefined;
|
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.
|
|
4
|
+
"version": "3.303.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",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|