@aws-sdk/client-keyspaces 3.301.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 +31 -38
- package/dist-es/models/models_0.js +31 -38
- package/dist-types/models/models_0.d.ts +66 -31
- package/dist-types/ts3.4/models/models_0.d.ts +43 -31
- package/package.json +34 -34
|
@@ -15,20 +15,17 @@ class AccessDeniedException extends KeyspacesServiceException_1.KeyspacesService
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
SortOrder["ASC"] = "ASC";
|
|
30
|
-
SortOrder["DESC"] = "DESC";
|
|
31
|
-
})(SortOrder = exports.SortOrder || (exports.SortOrder = {}));
|
|
18
|
+
exports.ThroughputMode = {
|
|
19
|
+
PAY_PER_REQUEST: "PAY_PER_REQUEST",
|
|
20
|
+
PROVISIONED: "PROVISIONED",
|
|
21
|
+
};
|
|
22
|
+
exports.ClientSideTimestampsStatus = {
|
|
23
|
+
ENABLED: "ENABLED",
|
|
24
|
+
};
|
|
25
|
+
exports.SortOrder = {
|
|
26
|
+
ASC: "ASC",
|
|
27
|
+
DESC: "DESC",
|
|
28
|
+
};
|
|
32
29
|
class ConflictException extends KeyspacesServiceException_1.KeyspacesServiceException {
|
|
33
30
|
constructor(opts) {
|
|
34
31
|
super({
|
|
@@ -81,20 +78,17 @@ class ValidationException extends KeyspacesServiceException_1.KeyspacesServiceEx
|
|
|
81
78
|
}
|
|
82
79
|
}
|
|
83
80
|
exports.ValidationException = ValidationException;
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
(function (TimeToLiveStatus) {
|
|
96
|
-
TimeToLiveStatus["ENABLED"] = "ENABLED";
|
|
97
|
-
})(TimeToLiveStatus = exports.TimeToLiveStatus || (exports.TimeToLiveStatus = {}));
|
|
81
|
+
exports.EncryptionType = {
|
|
82
|
+
AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY",
|
|
83
|
+
CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
|
|
84
|
+
};
|
|
85
|
+
exports.PointInTimeRecoveryStatus = {
|
|
86
|
+
DISABLED: "DISABLED",
|
|
87
|
+
ENABLED: "ENABLED",
|
|
88
|
+
};
|
|
89
|
+
exports.TimeToLiveStatus = {
|
|
90
|
+
ENABLED: "ENABLED",
|
|
91
|
+
};
|
|
98
92
|
class ResourceNotFoundException extends KeyspacesServiceException_1.KeyspacesServiceException {
|
|
99
93
|
constructor(opts) {
|
|
100
94
|
super({
|
|
@@ -109,13 +103,12 @@ class ResourceNotFoundException extends KeyspacesServiceException_1.KeyspacesSer
|
|
|
109
103
|
}
|
|
110
104
|
}
|
|
111
105
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
})(TableStatus = exports.TableStatus || (exports.TableStatus = {}));
|
|
106
|
+
exports.TableStatus = {
|
|
107
|
+
ACTIVE: "ACTIVE",
|
|
108
|
+
CREATING: "CREATING",
|
|
109
|
+
DELETED: "DELETED",
|
|
110
|
+
DELETING: "DELETING",
|
|
111
|
+
INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
|
|
112
|
+
RESTORING: "RESTORING",
|
|
113
|
+
UPDATING: "UPDATING",
|
|
114
|
+
};
|
|
@@ -11,20 +11,17 @@ export class AccessDeniedException extends __BaseException {
|
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
SortOrder["ASC"] = "ASC";
|
|
26
|
-
SortOrder["DESC"] = "DESC";
|
|
27
|
-
})(SortOrder || (SortOrder = {}));
|
|
14
|
+
export const ThroughputMode = {
|
|
15
|
+
PAY_PER_REQUEST: "PAY_PER_REQUEST",
|
|
16
|
+
PROVISIONED: "PROVISIONED",
|
|
17
|
+
};
|
|
18
|
+
export const ClientSideTimestampsStatus = {
|
|
19
|
+
ENABLED: "ENABLED",
|
|
20
|
+
};
|
|
21
|
+
export const SortOrder = {
|
|
22
|
+
ASC: "ASC",
|
|
23
|
+
DESC: "DESC",
|
|
24
|
+
};
|
|
28
25
|
export class ConflictException extends __BaseException {
|
|
29
26
|
constructor(opts) {
|
|
30
27
|
super({
|
|
@@ -73,20 +70,17 @@ export class ValidationException extends __BaseException {
|
|
|
73
70
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
74
71
|
}
|
|
75
72
|
}
|
|
76
|
-
export
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
(function (TimeToLiveStatus) {
|
|
88
|
-
TimeToLiveStatus["ENABLED"] = "ENABLED";
|
|
89
|
-
})(TimeToLiveStatus || (TimeToLiveStatus = {}));
|
|
73
|
+
export const EncryptionType = {
|
|
74
|
+
AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY",
|
|
75
|
+
CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
|
|
76
|
+
};
|
|
77
|
+
export const PointInTimeRecoveryStatus = {
|
|
78
|
+
DISABLED: "DISABLED",
|
|
79
|
+
ENABLED: "ENABLED",
|
|
80
|
+
};
|
|
81
|
+
export const TimeToLiveStatus = {
|
|
82
|
+
ENABLED: "ENABLED",
|
|
83
|
+
};
|
|
90
84
|
export class ResourceNotFoundException extends __BaseException {
|
|
91
85
|
constructor(opts) {
|
|
92
86
|
super({
|
|
@@ -100,13 +94,12 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
100
94
|
this.resourceArn = opts.resourceArn;
|
|
101
95
|
}
|
|
102
96
|
}
|
|
103
|
-
export
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
})(TableStatus || (TableStatus = {}));
|
|
97
|
+
export const TableStatus = {
|
|
98
|
+
ACTIVE: "ACTIVE",
|
|
99
|
+
CREATING: "CREATING",
|
|
100
|
+
DELETED: "DELETED",
|
|
101
|
+
DELETING: "DELETING",
|
|
102
|
+
INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
|
|
103
|
+
RESTORING: "RESTORING",
|
|
104
|
+
UPDATING: "UPDATING",
|
|
105
|
+
};
|
|
@@ -14,11 +14,16 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* @public
|
|
17
|
+
* @enum
|
|
17
18
|
*/
|
|
18
|
-
export declare
|
|
19
|
-
PAY_PER_REQUEST
|
|
20
|
-
PROVISIONED
|
|
21
|
-
}
|
|
19
|
+
export declare const ThroughputMode: {
|
|
20
|
+
readonly PAY_PER_REQUEST: "PAY_PER_REQUEST";
|
|
21
|
+
readonly PROVISIONED: "PROVISIONED";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type ThroughputMode = (typeof ThroughputMode)[keyof typeof ThroughputMode];
|
|
22
27
|
/**
|
|
23
28
|
* @public
|
|
24
29
|
* <p>Amazon Keyspaces has two read/write capacity modes for processing reads and writes on your tables: </p>
|
|
@@ -117,10 +122,15 @@ export interface CapacitySpecificationSummary {
|
|
|
117
122
|
}
|
|
118
123
|
/**
|
|
119
124
|
* @public
|
|
125
|
+
* @enum
|
|
120
126
|
*/
|
|
121
|
-
export declare
|
|
122
|
-
ENABLED
|
|
123
|
-
}
|
|
127
|
+
export declare const ClientSideTimestampsStatus: {
|
|
128
|
+
readonly ENABLED: "ENABLED";
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export type ClientSideTimestampsStatus = (typeof ClientSideTimestampsStatus)[keyof typeof ClientSideTimestampsStatus];
|
|
124
134
|
/**
|
|
125
135
|
* @public
|
|
126
136
|
* <p>The client-side timestamp setting of the table.</p>
|
|
@@ -135,11 +145,16 @@ export interface ClientSideTimestamps {
|
|
|
135
145
|
}
|
|
136
146
|
/**
|
|
137
147
|
* @public
|
|
148
|
+
* @enum
|
|
138
149
|
*/
|
|
139
|
-
export declare
|
|
140
|
-
ASC
|
|
141
|
-
DESC
|
|
142
|
-
}
|
|
150
|
+
export declare const SortOrder: {
|
|
151
|
+
readonly ASC: "ASC";
|
|
152
|
+
readonly DESC: "DESC";
|
|
153
|
+
};
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
143
158
|
/**
|
|
144
159
|
* @public
|
|
145
160
|
* <p>The optional clustering column portion of your primary key determines how the data is clustered and sorted within each partition.</p>
|
|
@@ -276,11 +291,16 @@ export declare class ValidationException extends __BaseException {
|
|
|
276
291
|
}
|
|
277
292
|
/**
|
|
278
293
|
* @public
|
|
294
|
+
* @enum
|
|
279
295
|
*/
|
|
280
|
-
export declare
|
|
281
|
-
AWS_OWNED_KMS_KEY
|
|
282
|
-
CUSTOMER_MANAGED_KMS_KEY
|
|
283
|
-
}
|
|
296
|
+
export declare const EncryptionType: {
|
|
297
|
+
readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
|
|
298
|
+
readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY";
|
|
299
|
+
};
|
|
300
|
+
/**
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
|
|
284
304
|
/**
|
|
285
305
|
* @public
|
|
286
306
|
* <p>Amazon Keyspaces encrypts and decrypts the table data at rest transparently and integrates with Key Management Service for storing and managing the encryption key.
|
|
@@ -325,11 +345,16 @@ export interface EncryptionSpecification {
|
|
|
325
345
|
}
|
|
326
346
|
/**
|
|
327
347
|
* @public
|
|
348
|
+
* @enum
|
|
328
349
|
*/
|
|
329
|
-
export declare
|
|
330
|
-
DISABLED
|
|
331
|
-
ENABLED
|
|
332
|
-
}
|
|
350
|
+
export declare const PointInTimeRecoveryStatus: {
|
|
351
|
+
readonly DISABLED: "DISABLED";
|
|
352
|
+
readonly ENABLED: "ENABLED";
|
|
353
|
+
};
|
|
354
|
+
/**
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
export type PointInTimeRecoveryStatus = (typeof PointInTimeRecoveryStatus)[keyof typeof PointInTimeRecoveryStatus];
|
|
333
358
|
/**
|
|
334
359
|
* @public
|
|
335
360
|
* <p>Point-in-time recovery (PITR) helps protect your Amazon Keyspaces tables from accidental write or delete operations by providing you continuous backups of your table data.</p>
|
|
@@ -400,10 +425,15 @@ export interface SchemaDefinition {
|
|
|
400
425
|
}
|
|
401
426
|
/**
|
|
402
427
|
* @public
|
|
428
|
+
* @enum
|
|
403
429
|
*/
|
|
404
|
-
export declare
|
|
405
|
-
ENABLED
|
|
406
|
-
}
|
|
430
|
+
export declare const TimeToLiveStatus: {
|
|
431
|
+
readonly ENABLED: "ENABLED";
|
|
432
|
+
};
|
|
433
|
+
/**
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
export type TimeToLiveStatus = (typeof TimeToLiveStatus)[keyof typeof TimeToLiveStatus];
|
|
407
437
|
/**
|
|
408
438
|
* @public
|
|
409
439
|
* <p>Enable custom Time to Live (TTL) settings for rows and columns without setting a TTL default for the specified table.</p>
|
|
@@ -712,16 +742,21 @@ export interface PointInTimeRecoverySummary {
|
|
|
712
742
|
}
|
|
713
743
|
/**
|
|
714
744
|
* @public
|
|
745
|
+
* @enum
|
|
715
746
|
*/
|
|
716
|
-
export declare
|
|
717
|
-
ACTIVE
|
|
718
|
-
CREATING
|
|
719
|
-
DELETED
|
|
720
|
-
DELETING
|
|
721
|
-
INACCESSIBLE_ENCRYPTION_CREDENTIALS
|
|
722
|
-
RESTORING
|
|
723
|
-
UPDATING
|
|
724
|
-
}
|
|
747
|
+
export declare const TableStatus: {
|
|
748
|
+
readonly ACTIVE: "ACTIVE";
|
|
749
|
+
readonly CREATING: "CREATING";
|
|
750
|
+
readonly DELETED: "DELETED";
|
|
751
|
+
readonly DELETING: "DELETING";
|
|
752
|
+
readonly INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS";
|
|
753
|
+
readonly RESTORING: "RESTORING";
|
|
754
|
+
readonly UPDATING: "UPDATING";
|
|
755
|
+
};
|
|
756
|
+
/**
|
|
757
|
+
* @public
|
|
758
|
+
*/
|
|
759
|
+
export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
|
|
725
760
|
/**
|
|
726
761
|
* @public
|
|
727
762
|
*/
|
|
@@ -7,10 +7,12 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
-
export declare
|
|
11
|
-
PAY_PER_REQUEST
|
|
12
|
-
PROVISIONED
|
|
13
|
-
}
|
|
10
|
+
export declare const ThroughputMode: {
|
|
11
|
+
readonly PAY_PER_REQUEST: "PAY_PER_REQUEST";
|
|
12
|
+
readonly PROVISIONED: "PROVISIONED";
|
|
13
|
+
};
|
|
14
|
+
export type ThroughputMode =
|
|
15
|
+
(typeof ThroughputMode)[keyof typeof ThroughputMode];
|
|
14
16
|
export interface CapacitySpecification {
|
|
15
17
|
throughputMode: ThroughputMode | string | undefined;
|
|
16
18
|
readCapacityUnits?: number;
|
|
@@ -22,16 +24,19 @@ export interface CapacitySpecificationSummary {
|
|
|
22
24
|
writeCapacityUnits?: number;
|
|
23
25
|
lastUpdateToPayPerRequestTimestamp?: Date;
|
|
24
26
|
}
|
|
25
|
-
export declare
|
|
26
|
-
ENABLED
|
|
27
|
-
}
|
|
27
|
+
export declare const ClientSideTimestampsStatus: {
|
|
28
|
+
readonly ENABLED: "ENABLED";
|
|
29
|
+
};
|
|
30
|
+
export type ClientSideTimestampsStatus =
|
|
31
|
+
(typeof ClientSideTimestampsStatus)[keyof typeof ClientSideTimestampsStatus];
|
|
28
32
|
export interface ClientSideTimestamps {
|
|
29
33
|
status: ClientSideTimestampsStatus | string | undefined;
|
|
30
34
|
}
|
|
31
|
-
export declare
|
|
32
|
-
ASC
|
|
33
|
-
DESC
|
|
34
|
-
}
|
|
35
|
+
export declare const SortOrder: {
|
|
36
|
+
readonly ASC: "ASC";
|
|
37
|
+
readonly DESC: "DESC";
|
|
38
|
+
};
|
|
39
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
35
40
|
export interface ClusteringKey {
|
|
36
41
|
name: string | undefined;
|
|
37
42
|
orderBy: SortOrder | string | undefined;
|
|
@@ -80,18 +85,22 @@ export declare class ValidationException extends __BaseException {
|
|
|
80
85
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
81
86
|
);
|
|
82
87
|
}
|
|
83
|
-
export declare
|
|
84
|
-
AWS_OWNED_KMS_KEY
|
|
85
|
-
CUSTOMER_MANAGED_KMS_KEY
|
|
86
|
-
}
|
|
88
|
+
export declare const EncryptionType: {
|
|
89
|
+
readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
|
|
90
|
+
readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY";
|
|
91
|
+
};
|
|
92
|
+
export type EncryptionType =
|
|
93
|
+
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
87
94
|
export interface EncryptionSpecification {
|
|
88
95
|
type: EncryptionType | string | undefined;
|
|
89
96
|
kmsKeyIdentifier?: string;
|
|
90
97
|
}
|
|
91
|
-
export declare
|
|
92
|
-
DISABLED
|
|
93
|
-
ENABLED
|
|
94
|
-
}
|
|
98
|
+
export declare const PointInTimeRecoveryStatus: {
|
|
99
|
+
readonly DISABLED: "DISABLED";
|
|
100
|
+
readonly ENABLED: "ENABLED";
|
|
101
|
+
};
|
|
102
|
+
export type PointInTimeRecoveryStatus =
|
|
103
|
+
(typeof PointInTimeRecoveryStatus)[keyof typeof PointInTimeRecoveryStatus];
|
|
95
104
|
export interface PointInTimeRecovery {
|
|
96
105
|
status: PointInTimeRecoveryStatus | string | undefined;
|
|
97
106
|
}
|
|
@@ -107,9 +116,11 @@ export interface SchemaDefinition {
|
|
|
107
116
|
clusteringKeys?: ClusteringKey[];
|
|
108
117
|
staticColumns?: StaticColumn[];
|
|
109
118
|
}
|
|
110
|
-
export declare
|
|
111
|
-
ENABLED
|
|
112
|
-
}
|
|
119
|
+
export declare const TimeToLiveStatus: {
|
|
120
|
+
readonly ENABLED: "ENABLED";
|
|
121
|
+
};
|
|
122
|
+
export type TimeToLiveStatus =
|
|
123
|
+
(typeof TimeToLiveStatus)[keyof typeof TimeToLiveStatus];
|
|
113
124
|
export interface TimeToLive {
|
|
114
125
|
status: TimeToLiveStatus | string | undefined;
|
|
115
126
|
}
|
|
@@ -161,15 +172,16 @@ export interface PointInTimeRecoverySummary {
|
|
|
161
172
|
status: PointInTimeRecoveryStatus | string | undefined;
|
|
162
173
|
earliestRestorableTimestamp?: Date;
|
|
163
174
|
}
|
|
164
|
-
export declare
|
|
165
|
-
ACTIVE
|
|
166
|
-
CREATING
|
|
167
|
-
DELETED
|
|
168
|
-
DELETING
|
|
169
|
-
INACCESSIBLE_ENCRYPTION_CREDENTIALS
|
|
170
|
-
RESTORING
|
|
171
|
-
UPDATING
|
|
172
|
-
}
|
|
175
|
+
export declare const TableStatus: {
|
|
176
|
+
readonly ACTIVE: "ACTIVE";
|
|
177
|
+
readonly CREATING: "CREATING";
|
|
178
|
+
readonly DELETED: "DELETED";
|
|
179
|
+
readonly DELETING: "DELETING";
|
|
180
|
+
readonly INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS";
|
|
181
|
+
readonly RESTORING: "RESTORING";
|
|
182
|
+
readonly UPDATING: "UPDATING";
|
|
183
|
+
};
|
|
184
|
+
export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
|
|
173
185
|
export interface GetTableResponse {
|
|
174
186
|
keyspaceName: string | undefined;
|
|
175
187
|
tableName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-keyspaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Keyspaces 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",
|