@aws-sdk/client-inspector2 3.345.0 → 3.347.1
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/protocols/Aws_restJson1.js +52 -3
- package/dist-es/protocols/Aws_restJson1.js +52 -3
- package/dist-types/commands/ListCoverageCommand.d.ts +7 -0
- package/dist-types/commands/ListCoverageStatisticsCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +23 -1
- package/dist-types/ts3.4/models/models_0.d.ts +6 -0
- package/package.json +28 -28
|
@@ -462,7 +462,7 @@ const se_ListCoverageCommand = async (input, context) => {
|
|
|
462
462
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/coverage/list";
|
|
463
463
|
let body;
|
|
464
464
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
465
|
-
filterCriteria: (_) => (
|
|
465
|
+
filterCriteria: (_) => se_CoverageFilterCriteria(_, context),
|
|
466
466
|
maxResults: [],
|
|
467
467
|
nextToken: [],
|
|
468
468
|
}));
|
|
@@ -485,7 +485,7 @@ const se_ListCoverageStatisticsCommand = async (input, context) => {
|
|
|
485
485
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/coverage/statistics/list";
|
|
486
486
|
let body;
|
|
487
487
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
488
|
-
filterCriteria: (_) => (
|
|
488
|
+
filterCriteria: (_) => se_CoverageFilterCriteria(_, context),
|
|
489
489
|
groupBy: [],
|
|
490
490
|
nextToken: [],
|
|
491
491
|
}));
|
|
@@ -1808,7 +1808,7 @@ const de_ListCoverageCommand = async (output, context) => {
|
|
|
1808
1808
|
});
|
|
1809
1809
|
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1810
1810
|
const doc = (0, smithy_client_1.take)(data, {
|
|
1811
|
-
coveredResources:
|
|
1811
|
+
coveredResources: (_) => de_CoveredResources(_, context),
|
|
1812
1812
|
nextToken: smithy_client_1.expectString,
|
|
1813
1813
|
});
|
|
1814
1814
|
Object.assign(contents, doc);
|
|
@@ -2642,6 +2642,36 @@ const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
|
2642
2642
|
});
|
|
2643
2643
|
return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
|
|
2644
2644
|
};
|
|
2645
|
+
const se_CoverageDateFilter = (input, context) => {
|
|
2646
|
+
return (0, smithy_client_1.take)(input, {
|
|
2647
|
+
endInclusive: (_) => Math.round(_.getTime() / 1000),
|
|
2648
|
+
startInclusive: (_) => Math.round(_.getTime() / 1000),
|
|
2649
|
+
});
|
|
2650
|
+
};
|
|
2651
|
+
const se_CoverageDateFilterList = (input, context) => {
|
|
2652
|
+
return input
|
|
2653
|
+
.filter((e) => e != null)
|
|
2654
|
+
.map((entry) => {
|
|
2655
|
+
return se_CoverageDateFilter(entry, context);
|
|
2656
|
+
});
|
|
2657
|
+
};
|
|
2658
|
+
const se_CoverageFilterCriteria = (input, context) => {
|
|
2659
|
+
return (0, smithy_client_1.take)(input, {
|
|
2660
|
+
accountId: smithy_client_1._json,
|
|
2661
|
+
ec2InstanceTags: smithy_client_1._json,
|
|
2662
|
+
ecrImageTags: smithy_client_1._json,
|
|
2663
|
+
ecrRepositoryName: smithy_client_1._json,
|
|
2664
|
+
lambdaFunctionName: smithy_client_1._json,
|
|
2665
|
+
lambdaFunctionRuntime: smithy_client_1._json,
|
|
2666
|
+
lambdaFunctionTags: smithy_client_1._json,
|
|
2667
|
+
lastScannedAt: (_) => se_CoverageDateFilterList(_, context),
|
|
2668
|
+
resourceId: smithy_client_1._json,
|
|
2669
|
+
resourceType: smithy_client_1._json,
|
|
2670
|
+
scanStatusCode: smithy_client_1._json,
|
|
2671
|
+
scanStatusReason: smithy_client_1._json,
|
|
2672
|
+
scanType: smithy_client_1._json,
|
|
2673
|
+
});
|
|
2674
|
+
};
|
|
2645
2675
|
const se_DateFilter = (input, context) => {
|
|
2646
2676
|
return (0, smithy_client_1.take)(input, {
|
|
2647
2677
|
endInclusive: (_) => Math.round(_.getTime() / 1000),
|
|
@@ -2849,6 +2879,25 @@ const de_CisaData = (output, context) => {
|
|
|
2849
2879
|
dateDue: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
2850
2880
|
});
|
|
2851
2881
|
};
|
|
2882
|
+
const de_CoveredResource = (output, context) => {
|
|
2883
|
+
return (0, smithy_client_1.take)(output, {
|
|
2884
|
+
accountId: smithy_client_1.expectString,
|
|
2885
|
+
lastScannedAt: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
2886
|
+
resourceId: smithy_client_1.expectString,
|
|
2887
|
+
resourceMetadata: smithy_client_1._json,
|
|
2888
|
+
resourceType: smithy_client_1.expectString,
|
|
2889
|
+
scanStatus: smithy_client_1._json,
|
|
2890
|
+
scanType: smithy_client_1.expectString,
|
|
2891
|
+
});
|
|
2892
|
+
};
|
|
2893
|
+
const de_CoveredResources = (output, context) => {
|
|
2894
|
+
const retVal = (output || [])
|
|
2895
|
+
.filter((e) => e != null)
|
|
2896
|
+
.map((entry) => {
|
|
2897
|
+
return de_CoveredResource(entry, context);
|
|
2898
|
+
});
|
|
2899
|
+
return retVal;
|
|
2900
|
+
};
|
|
2852
2901
|
const de_Cvss2 = (output, context) => {
|
|
2853
2902
|
return (0, smithy_client_1.take)(output, {
|
|
2854
2903
|
baseScore: smithy_client_1.limitedParseDouble,
|
|
@@ -437,7 +437,7 @@ export const se_ListCoverageCommand = async (input, context) => {
|
|
|
437
437
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/coverage/list";
|
|
438
438
|
let body;
|
|
439
439
|
body = JSON.stringify(take(input, {
|
|
440
|
-
filterCriteria: (_) =>
|
|
440
|
+
filterCriteria: (_) => se_CoverageFilterCriteria(_, context),
|
|
441
441
|
maxResults: [],
|
|
442
442
|
nextToken: [],
|
|
443
443
|
}));
|
|
@@ -459,7 +459,7 @@ export const se_ListCoverageStatisticsCommand = async (input, context) => {
|
|
|
459
459
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/coverage/statistics/list";
|
|
460
460
|
let body;
|
|
461
461
|
body = JSON.stringify(take(input, {
|
|
462
|
-
filterCriteria: (_) =>
|
|
462
|
+
filterCriteria: (_) => se_CoverageFilterCriteria(_, context),
|
|
463
463
|
groupBy: [],
|
|
464
464
|
nextToken: [],
|
|
465
465
|
}));
|
|
@@ -1745,7 +1745,7 @@ export const de_ListCoverageCommand = async (output, context) => {
|
|
|
1745
1745
|
});
|
|
1746
1746
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1747
1747
|
const doc = take(data, {
|
|
1748
|
-
coveredResources:
|
|
1748
|
+
coveredResources: (_) => de_CoveredResources(_, context),
|
|
1749
1749
|
nextToken: __expectString,
|
|
1750
1750
|
});
|
|
1751
1751
|
Object.assign(contents, doc);
|
|
@@ -2562,6 +2562,36 @@ const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
|
2562
2562
|
});
|
|
2563
2563
|
return __decorateServiceException(exception, parsedOutput.body);
|
|
2564
2564
|
};
|
|
2565
|
+
const se_CoverageDateFilter = (input, context) => {
|
|
2566
|
+
return take(input, {
|
|
2567
|
+
endInclusive: (_) => Math.round(_.getTime() / 1000),
|
|
2568
|
+
startInclusive: (_) => Math.round(_.getTime() / 1000),
|
|
2569
|
+
});
|
|
2570
|
+
};
|
|
2571
|
+
const se_CoverageDateFilterList = (input, context) => {
|
|
2572
|
+
return input
|
|
2573
|
+
.filter((e) => e != null)
|
|
2574
|
+
.map((entry) => {
|
|
2575
|
+
return se_CoverageDateFilter(entry, context);
|
|
2576
|
+
});
|
|
2577
|
+
};
|
|
2578
|
+
const se_CoverageFilterCriteria = (input, context) => {
|
|
2579
|
+
return take(input, {
|
|
2580
|
+
accountId: _json,
|
|
2581
|
+
ec2InstanceTags: _json,
|
|
2582
|
+
ecrImageTags: _json,
|
|
2583
|
+
ecrRepositoryName: _json,
|
|
2584
|
+
lambdaFunctionName: _json,
|
|
2585
|
+
lambdaFunctionRuntime: _json,
|
|
2586
|
+
lambdaFunctionTags: _json,
|
|
2587
|
+
lastScannedAt: (_) => se_CoverageDateFilterList(_, context),
|
|
2588
|
+
resourceId: _json,
|
|
2589
|
+
resourceType: _json,
|
|
2590
|
+
scanStatusCode: _json,
|
|
2591
|
+
scanStatusReason: _json,
|
|
2592
|
+
scanType: _json,
|
|
2593
|
+
});
|
|
2594
|
+
};
|
|
2565
2595
|
const se_DateFilter = (input, context) => {
|
|
2566
2596
|
return take(input, {
|
|
2567
2597
|
endInclusive: (_) => Math.round(_.getTime() / 1000),
|
|
@@ -2769,6 +2799,25 @@ const de_CisaData = (output, context) => {
|
|
|
2769
2799
|
dateDue: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2770
2800
|
});
|
|
2771
2801
|
};
|
|
2802
|
+
const de_CoveredResource = (output, context) => {
|
|
2803
|
+
return take(output, {
|
|
2804
|
+
accountId: __expectString,
|
|
2805
|
+
lastScannedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2806
|
+
resourceId: __expectString,
|
|
2807
|
+
resourceMetadata: _json,
|
|
2808
|
+
resourceType: __expectString,
|
|
2809
|
+
scanStatus: _json,
|
|
2810
|
+
scanType: __expectString,
|
|
2811
|
+
});
|
|
2812
|
+
};
|
|
2813
|
+
const de_CoveredResources = (output, context) => {
|
|
2814
|
+
const retVal = (output || [])
|
|
2815
|
+
.filter((e) => e != null)
|
|
2816
|
+
.map((entry) => {
|
|
2817
|
+
return de_CoveredResource(entry, context);
|
|
2818
|
+
});
|
|
2819
|
+
return retVal;
|
|
2820
|
+
};
|
|
2772
2821
|
const de_Cvss2 = (output, context) => {
|
|
2773
2822
|
return take(output, {
|
|
2774
2823
|
baseScore: __limitedParseDouble,
|
|
@@ -83,6 +83,12 @@ export interface ListCoverageCommandOutput extends ListCoverageResponse, __Metad
|
|
|
83
83
|
* },
|
|
84
84
|
* ],
|
|
85
85
|
* lambdaFunctionRuntime: "<CoverageStringFilterList>",
|
|
86
|
+
* lastScannedAt: [ // CoverageDateFilterList
|
|
87
|
+
* { // CoverageDateFilter
|
|
88
|
+
* startInclusive: new Date("TIMESTAMP"),
|
|
89
|
+
* endInclusive: new Date("TIMESTAMP"),
|
|
90
|
+
* },
|
|
91
|
+
* ],
|
|
86
92
|
* },
|
|
87
93
|
* };
|
|
88
94
|
* const command = new ListCoverageCommand(input);
|
|
@@ -127,6 +133,7 @@ export interface ListCoverageCommandOutput extends ListCoverageResponse, __Metad
|
|
|
127
133
|
* // runtime: "STRING_VALUE",
|
|
128
134
|
* // },
|
|
129
135
|
* // },
|
|
136
|
+
* // lastScannedAt: new Date("TIMESTAMP"),
|
|
130
137
|
* // },
|
|
131
138
|
* // ],
|
|
132
139
|
* // };
|
|
@@ -81,6 +81,12 @@ export interface ListCoverageStatisticsCommandOutput extends ListCoverageStatist
|
|
|
81
81
|
* },
|
|
82
82
|
* ],
|
|
83
83
|
* lambdaFunctionRuntime: "<CoverageStringFilterList>",
|
|
84
|
+
* lastScannedAt: [ // CoverageDateFilterList
|
|
85
|
+
* { // CoverageDateFilter
|
|
86
|
+
* startInclusive: new Date("TIMESTAMP"),
|
|
87
|
+
* endInclusive: new Date("TIMESTAMP"),
|
|
88
|
+
* },
|
|
89
|
+
* ],
|
|
84
90
|
* },
|
|
85
91
|
* groupBy: "STRING_VALUE",
|
|
86
92
|
* nextToken: "STRING_VALUE",
|
|
@@ -2160,6 +2160,20 @@ export interface Counts {
|
|
|
2160
2160
|
*/
|
|
2161
2161
|
groupKey?: GroupKey | string;
|
|
2162
2162
|
}
|
|
2163
|
+
/**
|
|
2164
|
+
* @public
|
|
2165
|
+
* <p>Contains details of a coverage date filter.</p>
|
|
2166
|
+
*/
|
|
2167
|
+
export interface CoverageDateFilter {
|
|
2168
|
+
/**
|
|
2169
|
+
* <p>A timestamp representing the start of the time period to filter results by.</p>
|
|
2170
|
+
*/
|
|
2171
|
+
startInclusive?: Date;
|
|
2172
|
+
/**
|
|
2173
|
+
* <p>A timestamp representing the end of the time period to filter results by.</p>
|
|
2174
|
+
*/
|
|
2175
|
+
endInclusive?: Date;
|
|
2176
|
+
}
|
|
2163
2177
|
/**
|
|
2164
2178
|
* @public
|
|
2165
2179
|
* @enum
|
|
@@ -2237,7 +2251,7 @@ export interface CoverageFilterCriteria {
|
|
|
2237
2251
|
*/
|
|
2238
2252
|
resourceId?: CoverageStringFilter[];
|
|
2239
2253
|
/**
|
|
2240
|
-
* <p>An array of Amazon Web Services resource types to return coverage statistics for. The values can be <code>AWS_EC2_INSTANCE</code> or <code>AWS_ECR_REPOSITORY</code>.</p>
|
|
2254
|
+
* <p>An array of Amazon Web Services resource types to return coverage statistics for. The values can be <code>AWS_EC2_INSTANCE</code>, <code>AWS_LAMBDA_FUNCTION</code> or <code>AWS_ECR_REPOSITORY</code>.</p>
|
|
2241
2255
|
*/
|
|
2242
2256
|
resourceType?: CoverageStringFilter[];
|
|
2243
2257
|
/**
|
|
@@ -2268,6 +2282,10 @@ export interface CoverageFilterCriteria {
|
|
|
2268
2282
|
* <p>Returns coverage statistics for AWS Lambda functions filtered by runtime.</p>
|
|
2269
2283
|
*/
|
|
2270
2284
|
lambdaFunctionRuntime?: CoverageStringFilter[];
|
|
2285
|
+
/**
|
|
2286
|
+
* <p>Filters Amazon Web Services resources based on whether Amazon Inspector has checked them for vulnerabilities within the specified time range.</p>
|
|
2287
|
+
*/
|
|
2288
|
+
lastScannedAt?: CoverageDateFilter[];
|
|
2271
2289
|
}
|
|
2272
2290
|
/**
|
|
2273
2291
|
* @public
|
|
@@ -2496,6 +2514,10 @@ export interface CoveredResource {
|
|
|
2496
2514
|
* <p>An object that contains details about the metadata.</p>
|
|
2497
2515
|
*/
|
|
2498
2516
|
resourceMetadata?: ResourceScanMetadata;
|
|
2517
|
+
/**
|
|
2518
|
+
* <p>The date and time the resource was last checked for vulnerabilities.</p>
|
|
2519
|
+
*/
|
|
2520
|
+
lastScannedAt?: Date;
|
|
2499
2521
|
}
|
|
2500
2522
|
/**
|
|
2501
2523
|
* @public
|
|
@@ -992,6 +992,10 @@ export interface Counts {
|
|
|
992
992
|
count?: number;
|
|
993
993
|
groupKey?: GroupKey | string;
|
|
994
994
|
}
|
|
995
|
+
export interface CoverageDateFilter {
|
|
996
|
+
startInclusive?: Date;
|
|
997
|
+
endInclusive?: Date;
|
|
998
|
+
}
|
|
995
999
|
export declare const CoverageStringComparison: {
|
|
996
1000
|
readonly EQUALS: "EQUALS";
|
|
997
1001
|
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
@@ -1025,6 +1029,7 @@ export interface CoverageFilterCriteria {
|
|
|
1025
1029
|
lambdaFunctionName?: CoverageStringFilter[];
|
|
1026
1030
|
lambdaFunctionTags?: CoverageMapFilter[];
|
|
1027
1031
|
lambdaFunctionRuntime?: CoverageStringFilter[];
|
|
1032
|
+
lastScannedAt?: CoverageDateFilter[];
|
|
1028
1033
|
}
|
|
1029
1034
|
export declare const CoverageResourceType: {
|
|
1030
1035
|
readonly AWS_EC2_INSTANCE: "AWS_EC2_INSTANCE";
|
|
@@ -1121,6 +1126,7 @@ export interface CoveredResource {
|
|
|
1121
1126
|
scanType: ScanType | string | undefined;
|
|
1122
1127
|
scanStatus?: ScanStatus;
|
|
1123
1128
|
resourceMetadata?: ResourceScanMetadata;
|
|
1129
|
+
lastScannedAt?: Date;
|
|
1124
1130
|
}
|
|
1125
1131
|
export declare const FilterAction: {
|
|
1126
1132
|
readonly NONE: "NONE";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-inspector2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Inspector2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.347.1",
|
|
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,36 +21,36 @@
|
|
|
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/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.347.1",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.347.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.347.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.347.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.347.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.347.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.347.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.347.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.347.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.347.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.347.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.347.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.347.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.347.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.347.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.347.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.347.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.347.0",
|
|
43
|
+
"@aws-sdk/types": "3.347.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.347.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.347.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.347.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.347.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.347.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.347.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.347.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|