@aws-sdk/client-lakeformation 3.325.0 → 3.327.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-types/commands/AddLFTagsToResourceCommand.d.ts +20 -0
- package/dist-types/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +9 -0
- package/dist-types/commands/BatchGrantPermissionsCommand.d.ts +80 -0
- package/dist-types/commands/BatchRevokePermissionsCommand.d.ts +80 -0
- package/dist-types/commands/CancelTransactionCommand.d.ts +4 -0
- package/dist-types/commands/CommitTransactionCommand.d.ts +6 -0
- package/dist-types/commands/CreateDataCellsFilterCommand.d.ts +4 -0
- package/dist-types/commands/CreateLFTagCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDataCellsFilterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLFTagCommand.d.ts +4 -0
- package/dist-types/commands/DeleteObjectsOnCancelCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterResourceCommand.d.ts +4 -0
- package/dist-types/commands/DescribeResourceCommand.d.ts +11 -0
- package/dist-types/commands/DescribeTransactionCommand.d.ts +11 -0
- package/dist-types/commands/ExtendTransactionCommand.d.ts +4 -0
- package/dist-types/commands/GetDataCellsFilterCommand.d.ts +24 -0
- package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +47 -0
- package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +79 -0
- package/dist-types/commands/GetLFTagCommand.d.ts +10 -0
- package/dist-types/commands/GetQueryStateCommand.d.ts +7 -0
- package/dist-types/commands/GetQueryStatisticsCommand.d.ts +17 -0
- package/dist-types/commands/GetResourceLFTagsCommand.d.ts +37 -0
- package/dist-types/commands/GetTableObjectsCommand.d.ts +20 -0
- package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +9 -0
- package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +9 -0
- package/dist-types/commands/GetWorkUnitResultsCommand.d.ts +6 -0
- package/dist-types/commands/GetWorkUnitsCommand.d.ts +14 -0
- package/dist-types/commands/GrantPermissionsCommand.d.ts +4 -0
- package/dist-types/commands/ListDataCellsFilterCommand.d.ts +27 -0
- package/dist-types/commands/ListLFTagsCommand.d.ts +15 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +79 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +14 -0
- package/dist-types/commands/ListTableStorageOptimizersCommand.d.ts +17 -0
- package/dist-types/commands/ListTransactionsCommand.d.ts +14 -0
- package/dist-types/commands/PutDataLakeSettingsCommand.d.ts +4 -0
- package/dist-types/commands/RegisterResourceCommand.d.ts +4 -0
- package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +20 -0
- package/dist-types/commands/RevokePermissionsCommand.d.ts +4 -0
- package/dist-types/commands/SearchDatabasesByLFTagsCommand.d.ts +23 -0
- package/dist-types/commands/SearchTablesByLFTagsCommand.d.ts +48 -0
- package/dist-types/commands/StartQueryPlanningCommand.d.ts +6 -0
- package/dist-types/commands/StartTransactionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLFTagCommand.d.ts +4 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateTableObjectsCommand.d.ts +4 -0
- package/dist-types/commands/UpdateTableStorageOptimizerCommand.d.ts +6 -0
- package/package.json +7 -7
|
@@ -44,6 +44,8 @@ export interface RegisterResourceCommandOutput extends RegisterResourceResponse,
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new RegisterResourceCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
47
49
|
* ```
|
|
48
50
|
*
|
|
49
51
|
* @param RegisterResourceCommandInput - {@link RegisterResourceCommandInput}
|
|
@@ -73,6 +75,8 @@ export interface RegisterResourceCommandOutput extends RegisterResourceResponse,
|
|
|
73
75
|
* @throws {@link ResourceNumberLimitExceededException} (client fault)
|
|
74
76
|
* <p>A resource numerical limit was exceeded.</p>
|
|
75
77
|
*
|
|
78
|
+
* @throws {@link LakeFormationServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
76
80
|
*
|
|
77
81
|
*/
|
|
78
82
|
export declare class RegisterResourceCommand extends $Command<RegisterResourceCommandInput, RegisterResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -95,6 +95,24 @@ export interface RemoveLFTagsFromResourceCommandOutput extends RemoveLFTagsFromR
|
|
|
95
95
|
* };
|
|
96
96
|
* const command = new RemoveLFTagsFromResourceCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
+
* // { // RemoveLFTagsFromResourceResponse
|
|
99
|
+
* // Failures: [ // LFTagErrors
|
|
100
|
+
* // { // LFTagError
|
|
101
|
+
* // LFTag: { // LFTagPair
|
|
102
|
+
* // CatalogId: "STRING_VALUE",
|
|
103
|
+
* // TagKey: "STRING_VALUE", // required
|
|
104
|
+
* // TagValues: [ // TagValueList // required
|
|
105
|
+
* // "STRING_VALUE",
|
|
106
|
+
* // ],
|
|
107
|
+
* // },
|
|
108
|
+
* // Error: { // ErrorDetail
|
|
109
|
+
* // ErrorCode: "STRING_VALUE",
|
|
110
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // };
|
|
115
|
+
*
|
|
98
116
|
* ```
|
|
99
117
|
*
|
|
100
118
|
* @param RemoveLFTagsFromResourceCommandInput - {@link RemoveLFTagsFromResourceCommandInput}
|
|
@@ -124,6 +142,8 @@ export interface RemoveLFTagsFromResourceCommandOutput extends RemoveLFTagsFromR
|
|
|
124
142
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
125
143
|
* <p>The operation timed out.</p>
|
|
126
144
|
*
|
|
145
|
+
* @throws {@link LakeFormationServiceException}
|
|
146
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
127
147
|
*
|
|
128
148
|
*/
|
|
129
149
|
export declare class RemoveLFTagsFromResourceCommand extends $Command<RemoveLFTagsFromResourceCommandInput, RemoveLFTagsFromResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -95,6 +95,8 @@ export interface RevokePermissionsCommandOutput extends RevokePermissionsRespons
|
|
|
95
95
|
* };
|
|
96
96
|
* const command = new RevokePermissionsCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
+
* // {};
|
|
99
|
+
*
|
|
98
100
|
* ```
|
|
99
101
|
*
|
|
100
102
|
* @param RevokePermissionsCommandInput - {@link RevokePermissionsCommandInput}
|
|
@@ -112,6 +114,8 @@ export interface RevokePermissionsCommandOutput extends RevokePermissionsRespons
|
|
|
112
114
|
* @throws {@link InvalidInputException} (client fault)
|
|
113
115
|
* <p>The input provided was not valid.</p>
|
|
114
116
|
*
|
|
117
|
+
* @throws {@link LakeFormationServiceException}
|
|
118
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
115
119
|
*
|
|
116
120
|
*/
|
|
117
121
|
export declare class RevokePermissionsCommand extends $Command<RevokePermissionsCommandInput, RevokePermissionsCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -41,6 +41,27 @@ export interface SearchDatabasesByLFTagsCommandOutput extends SearchDatabasesByL
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new SearchDatabasesByLFTagsCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // SearchDatabasesByLFTagsResponse
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // DatabaseList: [ // DatabaseLFTagsList
|
|
47
|
+
* // { // TaggedDatabase
|
|
48
|
+
* // Database: { // DatabaseResource
|
|
49
|
+
* // CatalogId: "STRING_VALUE",
|
|
50
|
+
* // Name: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // LFTags: [ // LFTagsList
|
|
53
|
+
* // { // LFTagPair
|
|
54
|
+
* // CatalogId: "STRING_VALUE",
|
|
55
|
+
* // TagKey: "STRING_VALUE", // required
|
|
56
|
+
* // TagValues: [ // TagValueList // required
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
44
65
|
* ```
|
|
45
66
|
*
|
|
46
67
|
* @param SearchDatabasesByLFTagsCommandInput - {@link SearchDatabasesByLFTagsCommandInput}
|
|
@@ -67,6 +88,8 @@ export interface SearchDatabasesByLFTagsCommandOutput extends SearchDatabasesByL
|
|
|
67
88
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
68
89
|
* <p>The operation timed out.</p>
|
|
69
90
|
*
|
|
91
|
+
* @throws {@link LakeFormationServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
70
93
|
*
|
|
71
94
|
*/
|
|
72
95
|
export declare class SearchDatabasesByLFTagsCommand extends $Command<SearchDatabasesByLFTagsCommandInput, SearchDatabasesByLFTagsCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -41,6 +41,52 @@ export interface SearchTablesByLFTagsCommandOutput extends SearchTablesByLFTagsR
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new SearchTablesByLFTagsCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // SearchTablesByLFTagsResponse
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // TableList: [ // TableLFTagsList
|
|
47
|
+
* // { // TaggedTable
|
|
48
|
+
* // Table: { // TableResource
|
|
49
|
+
* // CatalogId: "STRING_VALUE",
|
|
50
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
51
|
+
* // Name: "STRING_VALUE",
|
|
52
|
+
* // TableWildcard: {},
|
|
53
|
+
* // },
|
|
54
|
+
* // LFTagOnDatabase: [ // LFTagsList
|
|
55
|
+
* // { // LFTagPair
|
|
56
|
+
* // CatalogId: "STRING_VALUE",
|
|
57
|
+
* // TagKey: "STRING_VALUE", // required
|
|
58
|
+
* // TagValues: [ // TagValueList // required
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // LFTagsOnTable: [
|
|
64
|
+
* // {
|
|
65
|
+
* // CatalogId: "STRING_VALUE",
|
|
66
|
+
* // TagKey: "STRING_VALUE", // required
|
|
67
|
+
* // TagValues: [ // required
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // LFTagsOnColumns: [ // ColumnLFTagsList
|
|
73
|
+
* // { // ColumnLFTag
|
|
74
|
+
* // Name: "STRING_VALUE",
|
|
75
|
+
* // LFTags: [
|
|
76
|
+
* // {
|
|
77
|
+
* // CatalogId: "STRING_VALUE",
|
|
78
|
+
* // TagKey: "STRING_VALUE", // required
|
|
79
|
+
* // TagValues: [ // required
|
|
80
|
+
* // "STRING_VALUE",
|
|
81
|
+
* // ],
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // };
|
|
89
|
+
*
|
|
44
90
|
* ```
|
|
45
91
|
*
|
|
46
92
|
* @param SearchTablesByLFTagsCommandInput - {@link SearchTablesByLFTagsCommandInput}
|
|
@@ -67,6 +113,8 @@ export interface SearchTablesByLFTagsCommandOutput extends SearchTablesByLFTagsR
|
|
|
67
113
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
68
114
|
* <p>The operation timed out.</p>
|
|
69
115
|
*
|
|
116
|
+
* @throws {@link LakeFormationServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
70
118
|
*
|
|
71
119
|
*/
|
|
72
120
|
export declare class SearchTablesByLFTagsCommand extends $Command<SearchTablesByLFTagsCommandInput, SearchTablesByLFTagsCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -41,6 +41,10 @@ export interface StartQueryPlanningCommandOutput extends StartQueryPlanningRespo
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new StartQueryPlanningCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // StartQueryPlanningResponse
|
|
45
|
+
* // QueryId: "STRING_VALUE", // required
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
44
48
|
* ```
|
|
45
49
|
*
|
|
46
50
|
* @param StartQueryPlanningCommandInput - {@link StartQueryPlanningCommandInput}
|
|
@@ -61,6 +65,8 @@ export interface StartQueryPlanningCommandOutput extends StartQueryPlanningRespo
|
|
|
61
65
|
* @throws {@link ThrottledException} (client fault)
|
|
62
66
|
* <p>Contains details about an error where the query request was throttled.</p>
|
|
63
67
|
*
|
|
68
|
+
* @throws {@link LakeFormationServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
64
70
|
*
|
|
65
71
|
*/
|
|
66
72
|
export declare class StartQueryPlanningCommand extends $Command<StartQueryPlanningCommandInput, StartQueryPlanningCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface StartTransactionCommandOutput extends StartTransactionResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartTransactionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StartTransactionResponse
|
|
35
|
+
* // TransactionId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param StartTransactionCommandInput - {@link StartTransactionCommandInput}
|
|
@@ -45,6 +49,8 @@ export interface StartTransactionCommandOutput extends StartTransactionResponse,
|
|
|
45
49
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
46
50
|
* <p>The operation timed out.</p>
|
|
47
51
|
*
|
|
52
|
+
* @throws {@link LakeFormationServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
48
54
|
*
|
|
49
55
|
*/
|
|
50
56
|
export declare class StartTransactionCommand extends $Command<StartTransactionCommandInput, StartTransactionCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -49,6 +49,8 @@ export interface UpdateDataCellsFilterCommandOutput extends UpdateDataCellsFilte
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UpdateDataCellsFilterCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // {};
|
|
53
|
+
*
|
|
52
54
|
* ```
|
|
53
55
|
*
|
|
54
56
|
* @param UpdateDataCellsFilterCommandInput - {@link UpdateDataCellsFilterCommandInput}
|
|
@@ -75,6 +77,8 @@ export interface UpdateDataCellsFilterCommandOutput extends UpdateDataCellsFilte
|
|
|
75
77
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
76
78
|
* <p>The operation timed out.</p>
|
|
77
79
|
*
|
|
80
|
+
* @throws {@link LakeFormationServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
78
82
|
*
|
|
79
83
|
*/
|
|
80
84
|
export declare class UpdateDataCellsFilterCommand extends $Command<UpdateDataCellsFilterCommandInput, UpdateDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface UpdateLFTagCommandOutput extends UpdateLFTagResponse, __Metadat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateLFTagCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param UpdateLFTagCommandInput - {@link UpdateLFTagCommandInput}
|
|
@@ -64,6 +66,8 @@ export interface UpdateLFTagCommandOutput extends UpdateLFTagResponse, __Metadat
|
|
|
64
66
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
65
67
|
* <p>The operation timed out.</p>
|
|
66
68
|
*
|
|
69
|
+
* @throws {@link LakeFormationServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
67
71
|
*
|
|
68
72
|
*/
|
|
69
73
|
export declare class UpdateLFTagCommand extends $Command<UpdateLFTagCommandInput, UpdateLFTagCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface UpdateResourceCommandOutput extends UpdateResourceResponse, __M
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateResourceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param UpdateResourceCommandInput - {@link UpdateResourceCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface UpdateResourceCommandOutput extends UpdateResourceResponse, __M
|
|
|
53
55
|
* @throws {@link OperationTimeoutException} (client fault)
|
|
54
56
|
* <p>The operation timed out.</p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link LakeFormationServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class UpdateResourceCommand extends $Command<UpdateResourceCommandInput, UpdateResourceCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -53,6 +53,8 @@ export interface UpdateTableObjectsCommandOutput extends UpdateTableObjectsRespo
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new UpdateTableObjectsCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // {};
|
|
57
|
+
*
|
|
56
58
|
* ```
|
|
57
59
|
*
|
|
58
60
|
* @param UpdateTableObjectsCommandInput - {@link UpdateTableObjectsCommandInput}
|
|
@@ -88,6 +90,8 @@ export interface UpdateTableObjectsCommandOutput extends UpdateTableObjectsRespo
|
|
|
88
90
|
* @throws {@link TransactionCommittedException} (client fault)
|
|
89
91
|
* <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
|
|
90
92
|
*
|
|
93
|
+
* @throws {@link LakeFormationServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
91
95
|
*
|
|
92
96
|
*/
|
|
93
97
|
export declare class UpdateTableObjectsCommand extends $Command<UpdateTableObjectsCommandInput, UpdateTableObjectsCommandOutput, LakeFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface UpdateTableStorageOptimizerCommandOutput extends UpdateTableSto
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateTableStorageOptimizerCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // UpdateTableStorageOptimizerResponse
|
|
42
|
+
* // Result: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param UpdateTableStorageOptimizerCommandInput - {@link UpdateTableStorageOptimizerCommandInput}
|
|
@@ -58,6 +62,8 @@ export interface UpdateTableStorageOptimizerCommandOutput extends UpdateTableSto
|
|
|
58
62
|
* @throws {@link InvalidInputException} (client fault)
|
|
59
63
|
* <p>The input provided was not valid.</p>
|
|
60
64
|
*
|
|
65
|
+
* @throws {@link LakeFormationServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from LakeFormation service.</p>
|
|
61
67
|
*
|
|
62
68
|
*/
|
|
63
69
|
export declare class UpdateTableStorageOptimizerCommand extends $Command<UpdateTableStorageOptimizerCommandInput, UpdateTableStorageOptimizerCommandOutput, LakeFormationClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lakeformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-stream-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-stream-node": "3.321.1",
|
|
55
55
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|