@aws-sdk/client-guardduty 3.48.0 → 3.49.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/CHANGELOG.md +11 -0
- package/dist-cjs/models/models_0.js +120 -11
- package/dist-cjs/protocols/Aws_restJson1.js +226 -0
- package/dist-es/models/models_0.js +77 -4
- package/dist-es/protocols/Aws_restJson1.js +218 -2
- package/dist-types/models/models_0.d.ts +432 -19
- package/dist-types/ts3.4/models/models_0.d.ts +245 -11
- package/package.json +39 -33
|
@@ -189,6 +189,7 @@ export interface AwsApiCallAction {
|
|
|
189
189
|
DomainDetails?: DomainDetails;
|
|
190
190
|
|
|
191
191
|
ErrorCode?: string;
|
|
192
|
+
UserAgent?: string;
|
|
192
193
|
|
|
193
194
|
RemoteIpDetails?: RemoteIpDetails;
|
|
194
195
|
|
|
@@ -210,6 +211,27 @@ export declare namespace DnsRequestAction {
|
|
|
210
211
|
const filterSensitiveLog: (obj: DnsRequestAction) => any;
|
|
211
212
|
}
|
|
212
213
|
|
|
214
|
+
export interface KubernetesApiCallAction {
|
|
215
|
+
|
|
216
|
+
RequestUri?: string;
|
|
217
|
+
|
|
218
|
+
Verb?: string;
|
|
219
|
+
|
|
220
|
+
SourceIps?: string[];
|
|
221
|
+
|
|
222
|
+
UserAgent?: string;
|
|
223
|
+
|
|
224
|
+
RemoteIpDetails?: RemoteIpDetails;
|
|
225
|
+
|
|
226
|
+
StatusCode?: number;
|
|
227
|
+
|
|
228
|
+
Parameters?: string;
|
|
229
|
+
}
|
|
230
|
+
export declare namespace KubernetesApiCallAction {
|
|
231
|
+
|
|
232
|
+
const filterSensitiveLog: (obj: KubernetesApiCallAction) => any;
|
|
233
|
+
}
|
|
234
|
+
|
|
213
235
|
export interface LocalIpDetails {
|
|
214
236
|
|
|
215
237
|
IpAddressV4?: string;
|
|
@@ -297,6 +319,8 @@ export interface Action {
|
|
|
297
319
|
NetworkConnectionAction?: NetworkConnectionAction;
|
|
298
320
|
|
|
299
321
|
PortProbeAction?: PortProbeAction;
|
|
322
|
+
|
|
323
|
+
KubernetesApiCallAction?: KubernetesApiCallAction;
|
|
300
324
|
}
|
|
301
325
|
export declare namespace Action {
|
|
302
326
|
|
|
@@ -402,6 +426,65 @@ export declare namespace Condition {
|
|
|
402
426
|
const filterSensitiveLog: (obj: Condition) => any;
|
|
403
427
|
}
|
|
404
428
|
|
|
429
|
+
export interface SecurityContext {
|
|
430
|
+
|
|
431
|
+
Privileged?: boolean;
|
|
432
|
+
}
|
|
433
|
+
export declare namespace SecurityContext {
|
|
434
|
+
|
|
435
|
+
const filterSensitiveLog: (obj: SecurityContext) => any;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export interface VolumeMount {
|
|
439
|
+
|
|
440
|
+
Name?: string;
|
|
441
|
+
|
|
442
|
+
MountPath?: string;
|
|
443
|
+
}
|
|
444
|
+
export declare namespace VolumeMount {
|
|
445
|
+
|
|
446
|
+
const filterSensitiveLog: (obj: VolumeMount) => any;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
export interface Container {
|
|
450
|
+
|
|
451
|
+
ContainerRuntime?: string;
|
|
452
|
+
|
|
453
|
+
Id?: string;
|
|
454
|
+
|
|
455
|
+
Name?: string;
|
|
456
|
+
|
|
457
|
+
Image?: string;
|
|
458
|
+
|
|
459
|
+
ImagePrefix?: string;
|
|
460
|
+
|
|
461
|
+
VolumeMounts?: VolumeMount[];
|
|
462
|
+
|
|
463
|
+
SecurityContext?: SecurityContext;
|
|
464
|
+
}
|
|
465
|
+
export declare namespace Container {
|
|
466
|
+
|
|
467
|
+
const filterSensitiveLog: (obj: Container) => any;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
export interface KubernetesAuditLogsConfiguration {
|
|
471
|
+
|
|
472
|
+
Enable: boolean | undefined;
|
|
473
|
+
}
|
|
474
|
+
export declare namespace KubernetesAuditLogsConfiguration {
|
|
475
|
+
|
|
476
|
+
const filterSensitiveLog: (obj: KubernetesAuditLogsConfiguration) => any;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
export interface KubernetesConfiguration {
|
|
480
|
+
|
|
481
|
+
AuditLogs: KubernetesAuditLogsConfiguration | undefined;
|
|
482
|
+
}
|
|
483
|
+
export declare namespace KubernetesConfiguration {
|
|
484
|
+
|
|
485
|
+
const filterSensitiveLog: (obj: KubernetesConfiguration) => any;
|
|
486
|
+
}
|
|
487
|
+
|
|
405
488
|
export interface S3LogsConfiguration {
|
|
406
489
|
|
|
407
490
|
Enable: boolean | undefined;
|
|
@@ -414,6 +497,8 @@ export declare namespace S3LogsConfiguration {
|
|
|
414
497
|
export interface DataSourceConfigurations {
|
|
415
498
|
|
|
416
499
|
S3Logs?: S3LogsConfiguration;
|
|
500
|
+
|
|
501
|
+
Kubernetes?: KubernetesConfiguration;
|
|
417
502
|
}
|
|
418
503
|
export declare namespace DataSourceConfigurations {
|
|
419
504
|
|
|
@@ -658,6 +743,7 @@ export declare enum DataSource {
|
|
|
658
743
|
CLOUD_TRAIL = "CLOUD_TRAIL",
|
|
659
744
|
DNS_LOGS = "DNS_LOGS",
|
|
660
745
|
FLOW_LOGS = "FLOW_LOGS",
|
|
746
|
+
KUBERNETES_AUDIT_LOGS = "KUBERNETES_AUDIT_LOGS",
|
|
661
747
|
S3_LOGS = "S3_LOGS"
|
|
662
748
|
}
|
|
663
749
|
|
|
@@ -679,6 +765,24 @@ export declare namespace FlowLogsConfigurationResult {
|
|
|
679
765
|
const filterSensitiveLog: (obj: FlowLogsConfigurationResult) => any;
|
|
680
766
|
}
|
|
681
767
|
|
|
768
|
+
export interface KubernetesAuditLogsConfigurationResult {
|
|
769
|
+
|
|
770
|
+
Status: DataSourceStatus | string | undefined;
|
|
771
|
+
}
|
|
772
|
+
export declare namespace KubernetesAuditLogsConfigurationResult {
|
|
773
|
+
|
|
774
|
+
const filterSensitiveLog: (obj: KubernetesAuditLogsConfigurationResult) => any;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
export interface KubernetesConfigurationResult {
|
|
778
|
+
|
|
779
|
+
AuditLogs: KubernetesAuditLogsConfigurationResult | undefined;
|
|
780
|
+
}
|
|
781
|
+
export declare namespace KubernetesConfigurationResult {
|
|
782
|
+
|
|
783
|
+
const filterSensitiveLog: (obj: KubernetesConfigurationResult) => any;
|
|
784
|
+
}
|
|
785
|
+
|
|
682
786
|
export interface S3LogsConfigurationResult {
|
|
683
787
|
|
|
684
788
|
Status: DataSourceStatus | string | undefined;
|
|
@@ -697,6 +801,8 @@ export interface DataSourceConfigurationsResult {
|
|
|
697
801
|
FlowLogs: FlowLogsConfigurationResult | undefined;
|
|
698
802
|
|
|
699
803
|
S3Logs: S3LogsConfigurationResult | undefined;
|
|
804
|
+
|
|
805
|
+
Kubernetes?: KubernetesConfigurationResult;
|
|
700
806
|
}
|
|
701
807
|
export declare namespace DataSourceConfigurationsResult {
|
|
702
808
|
|
|
@@ -850,6 +956,24 @@ export declare namespace DescribeOrganizationConfigurationRequest {
|
|
|
850
956
|
const filterSensitiveLog: (obj: DescribeOrganizationConfigurationRequest) => any;
|
|
851
957
|
}
|
|
852
958
|
|
|
959
|
+
export interface OrganizationKubernetesAuditLogsConfigurationResult {
|
|
960
|
+
|
|
961
|
+
AutoEnable: boolean | undefined;
|
|
962
|
+
}
|
|
963
|
+
export declare namespace OrganizationKubernetesAuditLogsConfigurationResult {
|
|
964
|
+
|
|
965
|
+
const filterSensitiveLog: (obj: OrganizationKubernetesAuditLogsConfigurationResult) => any;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
export interface OrganizationKubernetesConfigurationResult {
|
|
969
|
+
|
|
970
|
+
AuditLogs: OrganizationKubernetesAuditLogsConfigurationResult | undefined;
|
|
971
|
+
}
|
|
972
|
+
export declare namespace OrganizationKubernetesConfigurationResult {
|
|
973
|
+
|
|
974
|
+
const filterSensitiveLog: (obj: OrganizationKubernetesConfigurationResult) => any;
|
|
975
|
+
}
|
|
976
|
+
|
|
853
977
|
export interface OrganizationS3LogsConfigurationResult {
|
|
854
978
|
|
|
855
979
|
AutoEnable: boolean | undefined;
|
|
@@ -862,6 +986,8 @@ export declare namespace OrganizationS3LogsConfigurationResult {
|
|
|
862
986
|
export interface OrganizationDataSourceConfigurationsResult {
|
|
863
987
|
|
|
864
988
|
S3Logs: OrganizationS3LogsConfigurationResult | undefined;
|
|
989
|
+
|
|
990
|
+
Kubernetes?: OrganizationKubernetesConfigurationResult;
|
|
865
991
|
}
|
|
866
992
|
export declare namespace OrganizationDataSourceConfigurationsResult {
|
|
867
993
|
|
|
@@ -974,6 +1100,36 @@ export declare namespace DisassociateMembersResponse {
|
|
|
974
1100
|
|
|
975
1101
|
const filterSensitiveLog: (obj: DisassociateMembersResponse) => any;
|
|
976
1102
|
}
|
|
1103
|
+
|
|
1104
|
+
export interface Tag {
|
|
1105
|
+
|
|
1106
|
+
Key?: string;
|
|
1107
|
+
|
|
1108
|
+
Value?: string;
|
|
1109
|
+
}
|
|
1110
|
+
export declare namespace Tag {
|
|
1111
|
+
|
|
1112
|
+
const filterSensitiveLog: (obj: Tag) => any;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
export interface EksClusterDetails {
|
|
1116
|
+
|
|
1117
|
+
Name?: string;
|
|
1118
|
+
|
|
1119
|
+
Arn?: string;
|
|
1120
|
+
|
|
1121
|
+
VpcId?: string;
|
|
1122
|
+
|
|
1123
|
+
Status?: string;
|
|
1124
|
+
|
|
1125
|
+
Tags?: Tag[];
|
|
1126
|
+
|
|
1127
|
+
CreatedAt?: Date;
|
|
1128
|
+
}
|
|
1129
|
+
export declare namespace EksClusterDetails {
|
|
1130
|
+
|
|
1131
|
+
const filterSensitiveLog: (obj: EksClusterDetails) => any;
|
|
1132
|
+
}
|
|
977
1133
|
export interface EnableOrganizationAdminAccountRequest {
|
|
978
1134
|
|
|
979
1135
|
AdminAccountId: string | undefined;
|
|
@@ -1084,17 +1240,6 @@ export declare namespace ProductCode {
|
|
|
1084
1240
|
const filterSensitiveLog: (obj: ProductCode) => any;
|
|
1085
1241
|
}
|
|
1086
1242
|
|
|
1087
|
-
export interface Tag {
|
|
1088
|
-
|
|
1089
|
-
Key?: string;
|
|
1090
|
-
|
|
1091
|
-
Value?: string;
|
|
1092
|
-
}
|
|
1093
|
-
export declare namespace Tag {
|
|
1094
|
-
|
|
1095
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
1243
|
export interface InstanceDetails {
|
|
1099
1244
|
|
|
1100
1245
|
AvailabilityZone?: string;
|
|
@@ -1128,6 +1273,71 @@ export declare namespace InstanceDetails {
|
|
|
1128
1273
|
const filterSensitiveLog: (obj: InstanceDetails) => any;
|
|
1129
1274
|
}
|
|
1130
1275
|
|
|
1276
|
+
export interface KubernetesUserDetails {
|
|
1277
|
+
|
|
1278
|
+
Username?: string;
|
|
1279
|
+
|
|
1280
|
+
Uid?: string;
|
|
1281
|
+
|
|
1282
|
+
Groups?: string[];
|
|
1283
|
+
}
|
|
1284
|
+
export declare namespace KubernetesUserDetails {
|
|
1285
|
+
|
|
1286
|
+
const filterSensitiveLog: (obj: KubernetesUserDetails) => any;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
export interface HostPath {
|
|
1290
|
+
|
|
1291
|
+
Path?: string;
|
|
1292
|
+
}
|
|
1293
|
+
export declare namespace HostPath {
|
|
1294
|
+
|
|
1295
|
+
const filterSensitiveLog: (obj: HostPath) => any;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
export interface Volume {
|
|
1299
|
+
|
|
1300
|
+
Name?: string;
|
|
1301
|
+
|
|
1302
|
+
HostPath?: HostPath;
|
|
1303
|
+
}
|
|
1304
|
+
export declare namespace Volume {
|
|
1305
|
+
|
|
1306
|
+
const filterSensitiveLog: (obj: Volume) => any;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
export interface KubernetesWorkloadDetails {
|
|
1310
|
+
|
|
1311
|
+
Name?: string;
|
|
1312
|
+
|
|
1313
|
+
Type?: string;
|
|
1314
|
+
|
|
1315
|
+
Uid?: string;
|
|
1316
|
+
|
|
1317
|
+
Namespace?: string;
|
|
1318
|
+
|
|
1319
|
+
HostNetwork?: boolean;
|
|
1320
|
+
|
|
1321
|
+
Containers?: Container[];
|
|
1322
|
+
|
|
1323
|
+
Volumes?: Volume[];
|
|
1324
|
+
}
|
|
1325
|
+
export declare namespace KubernetesWorkloadDetails {
|
|
1326
|
+
|
|
1327
|
+
const filterSensitiveLog: (obj: KubernetesWorkloadDetails) => any;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
export interface KubernetesDetails {
|
|
1331
|
+
|
|
1332
|
+
KubernetesUserDetails?: KubernetesUserDetails;
|
|
1333
|
+
|
|
1334
|
+
KubernetesWorkloadDetails?: KubernetesWorkloadDetails;
|
|
1335
|
+
}
|
|
1336
|
+
export declare namespace KubernetesDetails {
|
|
1337
|
+
|
|
1338
|
+
const filterSensitiveLog: (obj: KubernetesDetails) => any;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1131
1341
|
export interface Owner {
|
|
1132
1342
|
|
|
1133
1343
|
Id?: string;
|
|
@@ -1190,6 +1400,10 @@ export interface Resource {
|
|
|
1190
1400
|
|
|
1191
1401
|
InstanceDetails?: InstanceDetails;
|
|
1192
1402
|
|
|
1403
|
+
EksClusterDetails?: EksClusterDetails;
|
|
1404
|
+
|
|
1405
|
+
KubernetesDetails?: KubernetesDetails;
|
|
1406
|
+
|
|
1193
1407
|
ResourceType?: string;
|
|
1194
1408
|
}
|
|
1195
1409
|
export declare namespace Resource {
|
|
@@ -2134,6 +2348,24 @@ export declare namespace UpdateMemberDetectorsResponse {
|
|
|
2134
2348
|
const filterSensitiveLog: (obj: UpdateMemberDetectorsResponse) => any;
|
|
2135
2349
|
}
|
|
2136
2350
|
|
|
2351
|
+
export interface OrganizationKubernetesAuditLogsConfiguration {
|
|
2352
|
+
|
|
2353
|
+
AutoEnable: boolean | undefined;
|
|
2354
|
+
}
|
|
2355
|
+
export declare namespace OrganizationKubernetesAuditLogsConfiguration {
|
|
2356
|
+
|
|
2357
|
+
const filterSensitiveLog: (obj: OrganizationKubernetesAuditLogsConfiguration) => any;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
export interface OrganizationKubernetesConfiguration {
|
|
2361
|
+
|
|
2362
|
+
AuditLogs: OrganizationKubernetesAuditLogsConfiguration | undefined;
|
|
2363
|
+
}
|
|
2364
|
+
export declare namespace OrganizationKubernetesConfiguration {
|
|
2365
|
+
|
|
2366
|
+
const filterSensitiveLog: (obj: OrganizationKubernetesConfiguration) => any;
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2137
2369
|
export interface OrganizationS3LogsConfiguration {
|
|
2138
2370
|
|
|
2139
2371
|
AutoEnable: boolean | undefined;
|
|
@@ -2146,6 +2378,8 @@ export declare namespace OrganizationS3LogsConfiguration {
|
|
|
2146
2378
|
export interface OrganizationDataSourceConfigurations {
|
|
2147
2379
|
|
|
2148
2380
|
S3Logs?: OrganizationS3LogsConfiguration;
|
|
2381
|
+
|
|
2382
|
+
Kubernetes?: OrganizationKubernetesConfiguration;
|
|
2149
2383
|
}
|
|
2150
2384
|
export declare namespace OrganizationDataSourceConfigurations {
|
|
2151
2385
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-guardduty",
|
|
3
3
|
"description": "AWS SDK for JavaScript Guardduty Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.49.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",
|
|
@@ -18,43 +18,49 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.49.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.49.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.49.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.49.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.49.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.49.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.49.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.49.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.49.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.49.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.49.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.49.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.49.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.49.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.49.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.49.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.49.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.49.0",
|
|
39
|
+
"@aws-sdk/types": "3.49.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.49.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.49.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.49.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.49.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.49.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
56
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
57
|
"@types/node": "^12.7.5",
|
|
57
|
-
"@types/uuid": "^8.3.0"
|
|
58
|
+
"@types/uuid": "^8.3.0",
|
|
59
|
+
"concurrently": "7.0.0",
|
|
60
|
+
"downlevel-dts": "0.7.0",
|
|
61
|
+
"rimraf": "3.0.2",
|
|
62
|
+
"typedoc": "0.19.2",
|
|
63
|
+
"typescript": "~4.3.5"
|
|
58
64
|
},
|
|
59
65
|
"engines": {
|
|
60
66
|
"node": ">=12.0.0"
|