@aws-sdk/client-elasticache 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 +132 -158
- package/dist-es/models/models_0.js +132 -158
- package/dist-types/models/models_0.d.ts +262 -132
- package/dist-types/ts3.4/models/models_0.d.ts +174 -132
- package/package.json +35 -35
|
@@ -173,17 +173,19 @@ export declare class ServiceUpdateNotFoundFault extends __BaseException {
|
|
|
173
173
|
opts: __ExceptionOptionType<ServiceUpdateNotFoundFault, __BaseException>
|
|
174
174
|
);
|
|
175
175
|
}
|
|
176
|
-
export declare
|
|
177
|
-
COMPLETE
|
|
178
|
-
IN_PROGRESS
|
|
179
|
-
NOT_APPLICABLE
|
|
180
|
-
NOT_APPLIED
|
|
181
|
-
SCHEDULED
|
|
182
|
-
SCHEDULING
|
|
183
|
-
STOPPED
|
|
184
|
-
STOPPING
|
|
185
|
-
WAITING_TO_START
|
|
186
|
-
}
|
|
176
|
+
export declare const UpdateActionStatus: {
|
|
177
|
+
readonly COMPLETE: "complete";
|
|
178
|
+
readonly IN_PROGRESS: "in-progress";
|
|
179
|
+
readonly NOT_APPLICABLE: "not-applicable";
|
|
180
|
+
readonly NOT_APPLIED: "not-applied";
|
|
181
|
+
readonly SCHEDULED: "scheduled";
|
|
182
|
+
readonly SCHEDULING: "scheduling";
|
|
183
|
+
readonly STOPPED: "stopped";
|
|
184
|
+
readonly STOPPING: "stopping";
|
|
185
|
+
readonly WAITING_TO_START: "waiting-to-start";
|
|
186
|
+
};
|
|
187
|
+
export type UpdateActionStatus =
|
|
188
|
+
(typeof UpdateActionStatus)[keyof typeof UpdateActionStatus];
|
|
187
189
|
export interface ProcessedUpdateAction {
|
|
188
190
|
ReplicationGroupId?: string;
|
|
189
191
|
CacheClusterId?: string;
|
|
@@ -210,28 +212,33 @@ export interface CompleteMigrationMessage {
|
|
|
210
212
|
ReplicationGroupId: string | undefined;
|
|
211
213
|
Force?: boolean;
|
|
212
214
|
}
|
|
213
|
-
export declare
|
|
214
|
-
DISABLED
|
|
215
|
-
DISABLING
|
|
216
|
-
ENABLED
|
|
217
|
-
ENABLING
|
|
218
|
-
}
|
|
215
|
+
export declare const AutomaticFailoverStatus: {
|
|
216
|
+
readonly DISABLED: "disabled";
|
|
217
|
+
readonly DISABLING: "disabling";
|
|
218
|
+
readonly ENABLED: "enabled";
|
|
219
|
+
readonly ENABLING: "enabling";
|
|
220
|
+
};
|
|
221
|
+
export type AutomaticFailoverStatus =
|
|
222
|
+
(typeof AutomaticFailoverStatus)[keyof typeof AutomaticFailoverStatus];
|
|
219
223
|
export interface Endpoint {
|
|
220
224
|
Address?: string;
|
|
221
225
|
Port?: number;
|
|
222
226
|
}
|
|
223
|
-
export declare
|
|
224
|
-
DISABLED
|
|
225
|
-
ENABLED
|
|
226
|
-
}
|
|
227
|
+
export declare const DataTieringStatus: {
|
|
228
|
+
readonly DISABLED: "disabled";
|
|
229
|
+
readonly ENABLED: "enabled";
|
|
230
|
+
};
|
|
231
|
+
export type DataTieringStatus =
|
|
232
|
+
(typeof DataTieringStatus)[keyof typeof DataTieringStatus];
|
|
227
233
|
export interface GlobalReplicationGroupInfo {
|
|
228
234
|
GlobalReplicationGroupId?: string;
|
|
229
235
|
GlobalReplicationGroupMemberRole?: string;
|
|
230
236
|
}
|
|
231
|
-
export declare
|
|
232
|
-
IPV4
|
|
233
|
-
IPV6
|
|
234
|
-
}
|
|
237
|
+
export declare const IpDiscovery: {
|
|
238
|
+
readonly IPV4: "ipv4";
|
|
239
|
+
readonly IPV6: "ipv6";
|
|
240
|
+
};
|
|
241
|
+
export type IpDiscovery = (typeof IpDiscovery)[keyof typeof IpDiscovery];
|
|
235
242
|
export interface CloudWatchLogsDestinationDetails {
|
|
236
243
|
LogGroup?: string;
|
|
237
244
|
}
|
|
@@ -242,25 +249,31 @@ export interface DestinationDetails {
|
|
|
242
249
|
CloudWatchLogsDetails?: CloudWatchLogsDestinationDetails;
|
|
243
250
|
KinesisFirehoseDetails?: KinesisFirehoseDestinationDetails;
|
|
244
251
|
}
|
|
245
|
-
export declare
|
|
246
|
-
CloudWatchLogs
|
|
247
|
-
KinesisFirehose
|
|
248
|
-
}
|
|
249
|
-
export
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
252
|
+
export declare const DestinationType: {
|
|
253
|
+
readonly CloudWatchLogs: "cloudwatch-logs";
|
|
254
|
+
readonly KinesisFirehose: "kinesis-firehose";
|
|
255
|
+
};
|
|
256
|
+
export type DestinationType =
|
|
257
|
+
(typeof DestinationType)[keyof typeof DestinationType];
|
|
258
|
+
export declare const LogFormat: {
|
|
259
|
+
readonly JSON: "json";
|
|
260
|
+
readonly TEXT: "text";
|
|
261
|
+
};
|
|
262
|
+
export type LogFormat = (typeof LogFormat)[keyof typeof LogFormat];
|
|
263
|
+
export declare const LogType: {
|
|
264
|
+
readonly ENGINE_LOG: "engine-log";
|
|
265
|
+
readonly SLOW_LOG: "slow-log";
|
|
266
|
+
};
|
|
267
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
268
|
+
export declare const LogDeliveryConfigurationStatus: {
|
|
269
|
+
readonly ACTIVE: "active";
|
|
270
|
+
readonly DISABLING: "disabling";
|
|
271
|
+
readonly ENABLING: "enabling";
|
|
272
|
+
readonly ERROR: "error";
|
|
273
|
+
readonly MODIFYING: "modifying";
|
|
274
|
+
};
|
|
275
|
+
export type LogDeliveryConfigurationStatus =
|
|
276
|
+
(typeof LogDeliveryConfigurationStatus)[keyof typeof LogDeliveryConfigurationStatus];
|
|
264
277
|
export interface LogDeliveryConfiguration {
|
|
265
278
|
LogType?: LogType | string;
|
|
266
279
|
DestinationType?: DestinationType | string;
|
|
@@ -269,15 +282,17 @@ export interface LogDeliveryConfiguration {
|
|
|
269
282
|
Status?: LogDeliveryConfigurationStatus | string;
|
|
270
283
|
Message?: string;
|
|
271
284
|
}
|
|
272
|
-
export declare
|
|
273
|
-
DISABLED
|
|
274
|
-
ENABLED
|
|
275
|
-
}
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
285
|
+
export declare const MultiAZStatus: {
|
|
286
|
+
readonly DISABLED: "disabled";
|
|
287
|
+
readonly ENABLED: "enabled";
|
|
288
|
+
};
|
|
289
|
+
export type MultiAZStatus = (typeof MultiAZStatus)[keyof typeof MultiAZStatus];
|
|
290
|
+
export declare const NetworkType: {
|
|
291
|
+
readonly DUAL_STACK: "dual_stack";
|
|
292
|
+
readonly IPV4: "ipv4";
|
|
293
|
+
readonly IPV6: "ipv6";
|
|
294
|
+
};
|
|
295
|
+
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
281
296
|
export interface NodeGroupMember {
|
|
282
297
|
CacheClusterId?: string;
|
|
283
298
|
CacheNodeId?: string;
|
|
@@ -294,14 +309,18 @@ export interface NodeGroup {
|
|
|
294
309
|
Slots?: string;
|
|
295
310
|
NodeGroupMembers?: NodeGroupMember[];
|
|
296
311
|
}
|
|
297
|
-
export declare
|
|
298
|
-
ROTATING
|
|
299
|
-
SETTING
|
|
300
|
-
}
|
|
301
|
-
export
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
312
|
+
export declare const AuthTokenUpdateStatus: {
|
|
313
|
+
readonly ROTATING: "ROTATING";
|
|
314
|
+
readonly SETTING: "SETTING";
|
|
315
|
+
};
|
|
316
|
+
export type AuthTokenUpdateStatus =
|
|
317
|
+
(typeof AuthTokenUpdateStatus)[keyof typeof AuthTokenUpdateStatus];
|
|
318
|
+
export declare const PendingAutomaticFailoverStatus: {
|
|
319
|
+
readonly DISABLED: "disabled";
|
|
320
|
+
readonly ENABLED: "enabled";
|
|
321
|
+
};
|
|
322
|
+
export type PendingAutomaticFailoverStatus =
|
|
323
|
+
(typeof PendingAutomaticFailoverStatus)[keyof typeof PendingAutomaticFailoverStatus];
|
|
305
324
|
export interface PendingLogDeliveryConfiguration {
|
|
306
325
|
LogType?: LogType | string;
|
|
307
326
|
DestinationType?: DestinationType | string;
|
|
@@ -314,10 +333,12 @@ export interface SlotMigration {
|
|
|
314
333
|
export interface ReshardingStatus {
|
|
315
334
|
SlotMigration?: SlotMigration;
|
|
316
335
|
}
|
|
317
|
-
export declare
|
|
318
|
-
PREFERRED
|
|
319
|
-
REQUIRED
|
|
320
|
-
}
|
|
336
|
+
export declare const TransitEncryptionMode: {
|
|
337
|
+
readonly PREFERRED: "preferred";
|
|
338
|
+
readonly REQUIRED: "required";
|
|
339
|
+
};
|
|
340
|
+
export type TransitEncryptionMode =
|
|
341
|
+
(typeof TransitEncryptionMode)[keyof typeof TransitEncryptionMode];
|
|
321
342
|
export interface UserGroupsUpdateStatus {
|
|
322
343
|
UserGroupIdsToAdd?: string[];
|
|
323
344
|
UserGroupIdsToRemove?: string[];
|
|
@@ -473,10 +494,11 @@ export declare class ClusterQuotaForCustomerExceededFault extends __BaseExceptio
|
|
|
473
494
|
>
|
|
474
495
|
);
|
|
475
496
|
}
|
|
476
|
-
export declare
|
|
477
|
-
CROSS_AZ
|
|
478
|
-
SINGLE_AZ
|
|
479
|
-
}
|
|
497
|
+
export declare const AZMode: {
|
|
498
|
+
readonly CROSS_AZ: "cross-az";
|
|
499
|
+
readonly SINGLE_AZ: "single-az";
|
|
500
|
+
};
|
|
501
|
+
export type AZMode = (typeof AZMode)[keyof typeof AZMode];
|
|
480
502
|
export interface LogDeliveryConfigurationRequest {
|
|
481
503
|
LogType?: LogType | string;
|
|
482
504
|
DestinationType?: DestinationType | string;
|
|
@@ -484,10 +506,11 @@ export interface LogDeliveryConfigurationRequest {
|
|
|
484
506
|
LogFormat?: LogFormat | string;
|
|
485
507
|
Enabled?: boolean;
|
|
486
508
|
}
|
|
487
|
-
export declare
|
|
488
|
-
CROSS_OUTPOST
|
|
489
|
-
SINGLE_OUTPOST
|
|
490
|
-
}
|
|
509
|
+
export declare const OutpostMode: {
|
|
510
|
+
readonly CROSS_OUTPOST: "cross-outpost";
|
|
511
|
+
readonly SINGLE_OUTPOST: "single-outpost";
|
|
512
|
+
};
|
|
513
|
+
export type OutpostMode = (typeof OutpostMode)[keyof typeof OutpostMode];
|
|
491
514
|
export interface CreateCacheClusterMessage {
|
|
492
515
|
CacheClusterId: string | undefined;
|
|
493
516
|
ReplicationGroupId?: string;
|
|
@@ -941,11 +964,13 @@ export declare class SnapshotFeatureNotSupportedFault extends __BaseException {
|
|
|
941
964
|
>
|
|
942
965
|
);
|
|
943
966
|
}
|
|
944
|
-
export declare
|
|
945
|
-
IAM
|
|
946
|
-
NO_PASSWORD
|
|
947
|
-
PASSWORD
|
|
948
|
-
}
|
|
967
|
+
export declare const InputAuthenticationType: {
|
|
968
|
+
readonly IAM: "iam";
|
|
969
|
+
readonly NO_PASSWORD: "no-password-required";
|
|
970
|
+
readonly PASSWORD: "password";
|
|
971
|
+
};
|
|
972
|
+
export type InputAuthenticationType =
|
|
973
|
+
(typeof InputAuthenticationType)[keyof typeof InputAuthenticationType];
|
|
949
974
|
export interface AuthenticationMode {
|
|
950
975
|
Type?: InputAuthenticationType | string;
|
|
951
976
|
Passwords?: string[];
|
|
@@ -967,11 +992,13 @@ export declare class DuplicateUserNameFault extends __BaseException {
|
|
|
967
992
|
opts: __ExceptionOptionType<DuplicateUserNameFault, __BaseException>
|
|
968
993
|
);
|
|
969
994
|
}
|
|
970
|
-
export declare
|
|
971
|
-
IAM
|
|
972
|
-
NO_PASSWORD
|
|
973
|
-
PASSWORD
|
|
974
|
-
}
|
|
995
|
+
export declare const AuthenticationType: {
|
|
996
|
+
readonly IAM: "iam";
|
|
997
|
+
readonly NO_PASSWORD: "no-password";
|
|
998
|
+
readonly PASSWORD: "password";
|
|
999
|
+
};
|
|
1000
|
+
export type AuthenticationType =
|
|
1001
|
+
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
975
1002
|
export interface Authentication {
|
|
976
1003
|
Type?: AuthenticationType | string;
|
|
977
1004
|
PasswordCount?: number;
|
|
@@ -1183,10 +1210,11 @@ export interface CacheNodeTypeSpecificValue {
|
|
|
1183
1210
|
CacheNodeType?: string;
|
|
1184
1211
|
Value?: string;
|
|
1185
1212
|
}
|
|
1186
|
-
export declare
|
|
1187
|
-
immediate
|
|
1188
|
-
requires_reboot
|
|
1189
|
-
}
|
|
1213
|
+
export declare const ChangeType: {
|
|
1214
|
+
readonly immediate: "immediate";
|
|
1215
|
+
readonly requires_reboot: "requires-reboot";
|
|
1216
|
+
};
|
|
1217
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
1190
1218
|
export interface CacheNodeTypeSpecificParameter {
|
|
1191
1219
|
ParameterName?: string;
|
|
1192
1220
|
Description?: string;
|
|
@@ -1252,15 +1280,16 @@ export interface EngineDefaults {
|
|
|
1252
1280
|
export interface DescribeEngineDefaultParametersResult {
|
|
1253
1281
|
EngineDefaults?: EngineDefaults;
|
|
1254
1282
|
}
|
|
1255
|
-
export declare
|
|
1256
|
-
cache_cluster
|
|
1257
|
-
cache_parameter_group
|
|
1258
|
-
cache_security_group
|
|
1259
|
-
cache_subnet_group
|
|
1260
|
-
replication_group
|
|
1261
|
-
user
|
|
1262
|
-
user_group
|
|
1263
|
-
}
|
|
1283
|
+
export declare const SourceType: {
|
|
1284
|
+
readonly cache_cluster: "cache-cluster";
|
|
1285
|
+
readonly cache_parameter_group: "cache-parameter-group";
|
|
1286
|
+
readonly cache_security_group: "cache-security-group";
|
|
1287
|
+
readonly cache_subnet_group: "cache-subnet-group";
|
|
1288
|
+
readonly replication_group: "replication-group";
|
|
1289
|
+
readonly user: "user";
|
|
1290
|
+
readonly user_group: "user-group";
|
|
1291
|
+
};
|
|
1292
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
1264
1293
|
export interface DescribeEventsMessage {
|
|
1265
1294
|
SourceIdentifier?: string;
|
|
1266
1295
|
SourceType?: SourceType | string;
|
|
@@ -1365,26 +1394,32 @@ export declare class ReservedCacheNodesOfferingNotFoundFault extends __BaseExcep
|
|
|
1365
1394
|
>
|
|
1366
1395
|
);
|
|
1367
1396
|
}
|
|
1368
|
-
export declare
|
|
1369
|
-
AVAILABLE
|
|
1370
|
-
CANCELLED
|
|
1371
|
-
EXPIRED
|
|
1372
|
-
}
|
|
1397
|
+
export declare const ServiceUpdateStatus: {
|
|
1398
|
+
readonly AVAILABLE: "available";
|
|
1399
|
+
readonly CANCELLED: "cancelled";
|
|
1400
|
+
readonly EXPIRED: "expired";
|
|
1401
|
+
};
|
|
1402
|
+
export type ServiceUpdateStatus =
|
|
1403
|
+
(typeof ServiceUpdateStatus)[keyof typeof ServiceUpdateStatus];
|
|
1373
1404
|
export interface DescribeServiceUpdatesMessage {
|
|
1374
1405
|
ServiceUpdateName?: string;
|
|
1375
1406
|
ServiceUpdateStatus?: (ServiceUpdateStatus | string)[];
|
|
1376
1407
|
MaxRecords?: number;
|
|
1377
1408
|
Marker?: string;
|
|
1378
1409
|
}
|
|
1379
|
-
export declare
|
|
1380
|
-
CRITICAL
|
|
1381
|
-
IMPORTANT
|
|
1382
|
-
LOW
|
|
1383
|
-
MEDIUM
|
|
1384
|
-
}
|
|
1385
|
-
export
|
|
1386
|
-
|
|
1387
|
-
|
|
1410
|
+
export declare const ServiceUpdateSeverity: {
|
|
1411
|
+
readonly CRITICAL: "critical";
|
|
1412
|
+
readonly IMPORTANT: "important";
|
|
1413
|
+
readonly LOW: "low";
|
|
1414
|
+
readonly MEDIUM: "medium";
|
|
1415
|
+
};
|
|
1416
|
+
export type ServiceUpdateSeverity =
|
|
1417
|
+
(typeof ServiceUpdateSeverity)[keyof typeof ServiceUpdateSeverity];
|
|
1418
|
+
export declare const ServiceUpdateType: {
|
|
1419
|
+
readonly SECURITY_UPDATE: "security-update";
|
|
1420
|
+
};
|
|
1421
|
+
export type ServiceUpdateType =
|
|
1422
|
+
(typeof ServiceUpdateType)[keyof typeof ServiceUpdateType];
|
|
1388
1423
|
export interface ServiceUpdate {
|
|
1389
1424
|
ServiceUpdateName?: string;
|
|
1390
1425
|
ServiceUpdateReleaseDate?: Date;
|
|
@@ -1432,18 +1467,22 @@ export interface DescribeUpdateActionsMessage {
|
|
|
1432
1467
|
MaxRecords?: number;
|
|
1433
1468
|
Marker?: string;
|
|
1434
1469
|
}
|
|
1435
|
-
export declare
|
|
1436
|
-
CUSTOMER
|
|
1437
|
-
SYSTEM
|
|
1438
|
-
}
|
|
1439
|
-
export
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1470
|
+
export declare const NodeUpdateInitiatedBy: {
|
|
1471
|
+
readonly CUSTOMER: "customer";
|
|
1472
|
+
readonly SYSTEM: "system";
|
|
1473
|
+
};
|
|
1474
|
+
export type NodeUpdateInitiatedBy =
|
|
1475
|
+
(typeof NodeUpdateInitiatedBy)[keyof typeof NodeUpdateInitiatedBy];
|
|
1476
|
+
export declare const NodeUpdateStatus: {
|
|
1477
|
+
readonly COMPLETE: "complete";
|
|
1478
|
+
readonly IN_PROGRESS: "in-progress";
|
|
1479
|
+
readonly NOT_APPLIED: "not-applied";
|
|
1480
|
+
readonly STOPPED: "stopped";
|
|
1481
|
+
readonly STOPPING: "stopping";
|
|
1482
|
+
readonly WAITING_TO_START: "waiting-to-start";
|
|
1483
|
+
};
|
|
1484
|
+
export type NodeUpdateStatus =
|
|
1485
|
+
(typeof NodeUpdateStatus)[keyof typeof NodeUpdateStatus];
|
|
1447
1486
|
export interface CacheNodeUpdateStatus {
|
|
1448
1487
|
CacheNodeId?: string;
|
|
1449
1488
|
NodeUpdateStatus?: NodeUpdateStatus | string;
|
|
@@ -1469,11 +1508,12 @@ export interface NodeGroupUpdateStatus {
|
|
|
1469
1508
|
NodeGroupId?: string;
|
|
1470
1509
|
NodeGroupMemberUpdateStatus?: NodeGroupMemberUpdateStatus[];
|
|
1471
1510
|
}
|
|
1472
|
-
export declare
|
|
1473
|
-
NA
|
|
1474
|
-
NO
|
|
1475
|
-
YES
|
|
1476
|
-
}
|
|
1511
|
+
export declare const SlaMet: {
|
|
1512
|
+
readonly NA: "n/a";
|
|
1513
|
+
readonly NO: "no";
|
|
1514
|
+
readonly YES: "yes";
|
|
1515
|
+
};
|
|
1516
|
+
export type SlaMet = (typeof SlaMet)[keyof typeof SlaMet];
|
|
1477
1517
|
export interface UpdateAction {
|
|
1478
1518
|
ReplicationGroupId?: string;
|
|
1479
1519
|
CacheClusterId?: string;
|
|
@@ -1576,11 +1616,13 @@ export interface ListAllowedNodeTypeModificationsMessage {
|
|
|
1576
1616
|
export interface ListTagsForResourceMessage {
|
|
1577
1617
|
ResourceName: string | undefined;
|
|
1578
1618
|
}
|
|
1579
|
-
export declare
|
|
1580
|
-
DELETE
|
|
1581
|
-
ROTATE
|
|
1582
|
-
SET
|
|
1583
|
-
}
|
|
1619
|
+
export declare const AuthTokenUpdateStrategyType: {
|
|
1620
|
+
readonly DELETE: "DELETE";
|
|
1621
|
+
readonly ROTATE: "ROTATE";
|
|
1622
|
+
readonly SET: "SET";
|
|
1623
|
+
};
|
|
1624
|
+
export type AuthTokenUpdateStrategyType =
|
|
1625
|
+
(typeof AuthTokenUpdateStrategyType)[keyof typeof AuthTokenUpdateStrategyType];
|
|
1584
1626
|
export interface ModifyCacheClusterMessage {
|
|
1585
1627
|
CacheClusterId: string | undefined;
|
|
1586
1628
|
NumCacheNodes?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticache",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticache 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,44 +21,44 @@
|
|
|
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.
|
|
56
|
-
"@aws-sdk/util-waiter": "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
|
+
"@aws-sdk/util-waiter": "3.303.0",
|
|
57
57
|
"fast-xml-parser": "4.1.2",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"concurrently": "7.0.0",
|