@aws-sdk/client-quicksight 3.100.0 → 3.105.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/QuickSightClient.js +2 -0
- package/dist-es/QuickSightClient.js +2 -0
- package/dist-types/models/models_0.d.ts +10 -30
- package/dist-types/models/models_1.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +10 -30
- package/dist-types/ts3.4/models/models_1.d.ts +6 -18
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-quicksight
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class QuickSightClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var QuickSightClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -2169,15 +2169,11 @@ export interface CreateDataSetRequest {
|
|
|
2169
2169
|
/**
|
|
2170
2170
|
* <p>Declares the physical tables that are available in the underlying data sources.</p>
|
|
2171
2171
|
*/
|
|
2172
|
-
PhysicalTableMap:
|
|
2173
|
-
[key: string]: PhysicalTable;
|
|
2174
|
-
} | undefined;
|
|
2172
|
+
PhysicalTableMap: Record<string, PhysicalTable> | undefined;
|
|
2175
2173
|
/**
|
|
2176
2174
|
* <p>Configures the combination and transformation of the data from the physical tables.</p>
|
|
2177
2175
|
*/
|
|
2178
|
-
LogicalTableMap?:
|
|
2179
|
-
[key: string]: LogicalTable;
|
|
2180
|
-
};
|
|
2176
|
+
LogicalTableMap?: Record<string, LogicalTable>;
|
|
2181
2177
|
/**
|
|
2182
2178
|
* <p>Indicates whether you want to import the data into SPICE.</p>
|
|
2183
2179
|
*/
|
|
@@ -2189,9 +2185,7 @@ export interface CreateDataSetRequest {
|
|
|
2189
2185
|
/**
|
|
2190
2186
|
* <p>The folder that contains fields and nested subfolders for your dataset.</p>
|
|
2191
2187
|
*/
|
|
2192
|
-
FieldFolders?:
|
|
2193
|
-
[key: string]: FieldFolder;
|
|
2194
|
-
};
|
|
2188
|
+
FieldFolders?: Record<string, FieldFolder>;
|
|
2195
2189
|
/**
|
|
2196
2190
|
* <p>A list of resource permissions on the dataset.</p>
|
|
2197
2191
|
*/
|
|
@@ -3840,9 +3834,7 @@ export interface CreateIAMPolicyAssignmentRequest {
|
|
|
3840
3834
|
/**
|
|
3841
3835
|
* <p>The Amazon QuickSight users, groups, or both that you want to assign the policy to.</p>
|
|
3842
3836
|
*/
|
|
3843
|
-
Identities?:
|
|
3844
|
-
[key: string]: string[];
|
|
3845
|
-
};
|
|
3837
|
+
Identities?: Record<string, string[]>;
|
|
3846
3838
|
/**
|
|
3847
3839
|
* <p>The namespace that contains the assignment.</p>
|
|
3848
3840
|
*/
|
|
@@ -3890,9 +3882,7 @@ export interface CreateIAMPolicyAssignmentResponse {
|
|
|
3890
3882
|
/**
|
|
3891
3883
|
* <p>The Amazon QuickSight users, groups, or both that the IAM policy is assigned to.</p>
|
|
3892
3884
|
*/
|
|
3893
|
-
Identities?:
|
|
3894
|
-
[key: string]: string[];
|
|
3895
|
-
};
|
|
3885
|
+
Identities?: Record<string, string[]>;
|
|
3896
3886
|
/**
|
|
3897
3887
|
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
3898
3888
|
*/
|
|
@@ -4904,16 +4894,12 @@ export interface DataSet {
|
|
|
4904
4894
|
/**
|
|
4905
4895
|
* <p>Declares the physical tables that are available in the underlying data sources.</p>
|
|
4906
4896
|
*/
|
|
4907
|
-
PhysicalTableMap?:
|
|
4908
|
-
[key: string]: PhysicalTable;
|
|
4909
|
-
};
|
|
4897
|
+
PhysicalTableMap?: Record<string, PhysicalTable>;
|
|
4910
4898
|
/**
|
|
4911
4899
|
* <p>Configures the combination and transformation of the data from the physical
|
|
4912
4900
|
* tables.</p>
|
|
4913
4901
|
*/
|
|
4914
|
-
LogicalTableMap?:
|
|
4915
|
-
[key: string]: LogicalTable;
|
|
4916
|
-
};
|
|
4902
|
+
LogicalTableMap?: Record<string, LogicalTable>;
|
|
4917
4903
|
/**
|
|
4918
4904
|
* <p>The list of columns after all transforms. These columns are available in templates,
|
|
4919
4905
|
* analyses, and dashboards.</p>
|
|
@@ -4936,9 +4922,7 @@ export interface DataSet {
|
|
|
4936
4922
|
/**
|
|
4937
4923
|
* <p>The folder that contains fields and nested subfolders for your dataset.</p>
|
|
4938
4924
|
*/
|
|
4939
|
-
FieldFolders?:
|
|
4940
|
-
[key: string]: FieldFolder;
|
|
4941
|
-
};
|
|
4925
|
+
FieldFolders?: Record<string, FieldFolder>;
|
|
4942
4926
|
/**
|
|
4943
4927
|
* <p>The row-level security configuration for the dataset.</p>
|
|
4944
4928
|
*/
|
|
@@ -6614,9 +6598,7 @@ export interface IAMPolicyAssignment {
|
|
|
6614
6598
|
/**
|
|
6615
6599
|
* <p>Identities.</p>
|
|
6616
6600
|
*/
|
|
6617
|
-
Identities?:
|
|
6618
|
-
[key: string]: string[];
|
|
6619
|
-
};
|
|
6601
|
+
Identities?: Record<string, string[]>;
|
|
6620
6602
|
/**
|
|
6621
6603
|
* <p>Assignment status.</p>
|
|
6622
6604
|
*/
|
|
@@ -6897,9 +6879,7 @@ export interface DescribeIpRestrictionResponse {
|
|
|
6897
6879
|
/**
|
|
6898
6880
|
* <p>A map that describes the IP rules with CIDR range and description.</p>
|
|
6899
6881
|
*/
|
|
6900
|
-
IpRestrictionRuleMap?:
|
|
6901
|
-
[key: string]: string;
|
|
6902
|
-
};
|
|
6882
|
+
IpRestrictionRuleMap?: Record<string, string>;
|
|
6903
6883
|
/**
|
|
6904
6884
|
* <p>A value that specifies whether IP rules are turned on.</p>
|
|
6905
6885
|
*/
|
|
@@ -2960,15 +2960,11 @@ export interface UpdateDataSetRequest {
|
|
|
2960
2960
|
/**
|
|
2961
2961
|
* <p>Declares the physical tables that are available in the underlying data sources.</p>
|
|
2962
2962
|
*/
|
|
2963
|
-
PhysicalTableMap:
|
|
2964
|
-
[key: string]: PhysicalTable;
|
|
2965
|
-
} | undefined;
|
|
2963
|
+
PhysicalTableMap: Record<string, PhysicalTable> | undefined;
|
|
2966
2964
|
/**
|
|
2967
2965
|
* <p>Configures the combination and transformation of the data from the physical tables.</p>
|
|
2968
2966
|
*/
|
|
2969
|
-
LogicalTableMap?:
|
|
2970
|
-
[key: string]: LogicalTable;
|
|
2971
|
-
};
|
|
2967
|
+
LogicalTableMap?: Record<string, LogicalTable>;
|
|
2972
2968
|
/**
|
|
2973
2969
|
* <p>Indicates whether you want to import the data into SPICE.</p>
|
|
2974
2970
|
*/
|
|
@@ -2980,9 +2976,7 @@ export interface UpdateDataSetRequest {
|
|
|
2980
2976
|
/**
|
|
2981
2977
|
* <p>The folder that contains fields and nested subfolders for your dataset.</p>
|
|
2982
2978
|
*/
|
|
2983
|
-
FieldFolders?:
|
|
2984
|
-
[key: string]: FieldFolder;
|
|
2985
|
-
};
|
|
2979
|
+
FieldFolders?: Record<string, FieldFolder>;
|
|
2986
2980
|
/**
|
|
2987
2981
|
* <p>The row-level security configuration for the data you want to create.</p>
|
|
2988
2982
|
*/
|
|
@@ -3389,9 +3383,7 @@ export interface UpdateIAMPolicyAssignmentRequest {
|
|
|
3389
3383
|
/**
|
|
3390
3384
|
* <p>The Amazon QuickSight users, groups, or both that you want to assign the policy to.</p>
|
|
3391
3385
|
*/
|
|
3392
|
-
Identities?:
|
|
3393
|
-
[key: string]: string[];
|
|
3394
|
-
};
|
|
3386
|
+
Identities?: Record<string, string[]>;
|
|
3395
3387
|
}
|
|
3396
3388
|
export declare namespace UpdateIAMPolicyAssignmentRequest {
|
|
3397
3389
|
/**
|
|
@@ -3416,9 +3408,7 @@ export interface UpdateIAMPolicyAssignmentResponse {
|
|
|
3416
3408
|
/**
|
|
3417
3409
|
* <p>The Amazon QuickSight users, groups, or both that the IAM policy is assigned to.</p>
|
|
3418
3410
|
*/
|
|
3419
|
-
Identities?:
|
|
3420
|
-
[key: string]: string[];
|
|
3421
|
-
};
|
|
3411
|
+
Identities?: Record<string, string[]>;
|
|
3422
3412
|
/**
|
|
3423
3413
|
* <p>The status of the assignment. Possible values are as follows:</p>
|
|
3424
3414
|
* <ul>
|
|
@@ -3462,9 +3452,7 @@ export interface UpdateIpRestrictionRequest {
|
|
|
3462
3452
|
/**
|
|
3463
3453
|
* <p>A map that describes the updated IP rules with CIDR ranges and descriptions.</p>
|
|
3464
3454
|
*/
|
|
3465
|
-
IpRestrictionRuleMap?:
|
|
3466
|
-
[key: string]: string;
|
|
3467
|
-
};
|
|
3455
|
+
IpRestrictionRuleMap?: Record<string, string>;
|
|
3468
3456
|
/**
|
|
3469
3457
|
* <p>A value that specifies whether IP rules are turned on.</p>
|
|
3470
3458
|
*/
|
|
@@ -1268,21 +1268,15 @@ export interface CreateDataSetRequest {
|
|
|
1268
1268
|
|
|
1269
1269
|
Name: string | undefined;
|
|
1270
1270
|
|
|
1271
|
-
PhysicalTableMap:
|
|
1272
|
-
[key: string]: PhysicalTable;
|
|
1273
|
-
} | undefined;
|
|
1271
|
+
PhysicalTableMap: Record<string, PhysicalTable> | undefined;
|
|
1274
1272
|
|
|
1275
|
-
LogicalTableMap?:
|
|
1276
|
-
[key: string]: LogicalTable;
|
|
1277
|
-
};
|
|
1273
|
+
LogicalTableMap?: Record<string, LogicalTable>;
|
|
1278
1274
|
|
|
1279
1275
|
ImportMode: DataSetImportMode | string | undefined;
|
|
1280
1276
|
|
|
1281
1277
|
ColumnGroups?: ColumnGroup[];
|
|
1282
1278
|
|
|
1283
|
-
FieldFolders?:
|
|
1284
|
-
[key: string]: FieldFolder;
|
|
1285
|
-
};
|
|
1279
|
+
FieldFolders?: Record<string, FieldFolder>;
|
|
1286
1280
|
|
|
1287
1281
|
Permissions?: ResourcePermission[];
|
|
1288
1282
|
|
|
@@ -2453,9 +2447,7 @@ export interface CreateIAMPolicyAssignmentRequest {
|
|
|
2453
2447
|
|
|
2454
2448
|
PolicyArn?: string;
|
|
2455
2449
|
|
|
2456
|
-
Identities?:
|
|
2457
|
-
[key: string]: string[];
|
|
2458
|
-
};
|
|
2450
|
+
Identities?: Record<string, string[]>;
|
|
2459
2451
|
|
|
2460
2452
|
Namespace: string | undefined;
|
|
2461
2453
|
}
|
|
@@ -2473,9 +2465,7 @@ export interface CreateIAMPolicyAssignmentResponse {
|
|
|
2473
2465
|
|
|
2474
2466
|
PolicyArn?: string;
|
|
2475
2467
|
|
|
2476
|
-
Identities?:
|
|
2477
|
-
[key: string]: string[];
|
|
2478
|
-
};
|
|
2468
|
+
Identities?: Record<string, string[]>;
|
|
2479
2469
|
|
|
2480
2470
|
RequestId?: string;
|
|
2481
2471
|
|
|
@@ -3025,13 +3015,9 @@ export interface DataSet {
|
|
|
3025
3015
|
|
|
3026
3016
|
LastUpdatedTime?: Date;
|
|
3027
3017
|
|
|
3028
|
-
PhysicalTableMap?:
|
|
3029
|
-
[key: string]: PhysicalTable;
|
|
3030
|
-
};
|
|
3018
|
+
PhysicalTableMap?: Record<string, PhysicalTable>;
|
|
3031
3019
|
|
|
3032
|
-
LogicalTableMap?:
|
|
3033
|
-
[key: string]: LogicalTable;
|
|
3034
|
-
};
|
|
3020
|
+
LogicalTableMap?: Record<string, LogicalTable>;
|
|
3035
3021
|
|
|
3036
3022
|
OutputColumns?: OutputColumn[];
|
|
3037
3023
|
|
|
@@ -3041,9 +3027,7 @@ export interface DataSet {
|
|
|
3041
3027
|
|
|
3042
3028
|
ColumnGroups?: ColumnGroup[];
|
|
3043
3029
|
|
|
3044
|
-
FieldFolders?:
|
|
3045
|
-
[key: string]: FieldFolder;
|
|
3046
|
-
};
|
|
3030
|
+
FieldFolders?: Record<string, FieldFolder>;
|
|
3047
3031
|
|
|
3048
3032
|
RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
|
|
3049
3033
|
|
|
@@ -3996,9 +3980,7 @@ export interface IAMPolicyAssignment {
|
|
|
3996
3980
|
|
|
3997
3981
|
PolicyArn?: string;
|
|
3998
3982
|
|
|
3999
|
-
Identities?:
|
|
4000
|
-
[key: string]: string[];
|
|
4001
|
-
};
|
|
3983
|
+
Identities?: Record<string, string[]>;
|
|
4002
3984
|
|
|
4003
3985
|
AssignmentStatus?: AssignmentStatus | string;
|
|
4004
3986
|
}
|
|
@@ -4184,9 +4166,7 @@ export interface DescribeIpRestrictionResponse {
|
|
|
4184
4166
|
|
|
4185
4167
|
AwsAccountId?: string;
|
|
4186
4168
|
|
|
4187
|
-
IpRestrictionRuleMap?:
|
|
4188
|
-
[key: string]: string;
|
|
4189
|
-
};
|
|
4169
|
+
IpRestrictionRuleMap?: Record<string, string>;
|
|
4190
4170
|
|
|
4191
4171
|
Enabled?: boolean;
|
|
4192
4172
|
|
|
@@ -1490,21 +1490,15 @@ export interface UpdateDataSetRequest {
|
|
|
1490
1490
|
|
|
1491
1491
|
Name: string | undefined;
|
|
1492
1492
|
|
|
1493
|
-
PhysicalTableMap:
|
|
1494
|
-
[key: string]: PhysicalTable;
|
|
1495
|
-
} | undefined;
|
|
1493
|
+
PhysicalTableMap: Record<string, PhysicalTable> | undefined;
|
|
1496
1494
|
|
|
1497
|
-
LogicalTableMap?:
|
|
1498
|
-
[key: string]: LogicalTable;
|
|
1499
|
-
};
|
|
1495
|
+
LogicalTableMap?: Record<string, LogicalTable>;
|
|
1500
1496
|
|
|
1501
1497
|
ImportMode: DataSetImportMode | string | undefined;
|
|
1502
1498
|
|
|
1503
1499
|
ColumnGroups?: ColumnGroup[];
|
|
1504
1500
|
|
|
1505
|
-
FieldFolders?:
|
|
1506
|
-
[key: string]: FieldFolder;
|
|
1507
|
-
};
|
|
1501
|
+
FieldFolders?: Record<string, FieldFolder>;
|
|
1508
1502
|
|
|
1509
1503
|
RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
|
|
1510
1504
|
|
|
@@ -1722,9 +1716,7 @@ export interface UpdateIAMPolicyAssignmentRequest {
|
|
|
1722
1716
|
|
|
1723
1717
|
PolicyArn?: string;
|
|
1724
1718
|
|
|
1725
|
-
Identities?:
|
|
1726
|
-
[key: string]: string[];
|
|
1727
|
-
};
|
|
1719
|
+
Identities?: Record<string, string[]>;
|
|
1728
1720
|
}
|
|
1729
1721
|
export declare namespace UpdateIAMPolicyAssignmentRequest {
|
|
1730
1722
|
|
|
@@ -1738,9 +1730,7 @@ export interface UpdateIAMPolicyAssignmentResponse {
|
|
|
1738
1730
|
|
|
1739
1731
|
PolicyArn?: string;
|
|
1740
1732
|
|
|
1741
|
-
Identities?:
|
|
1742
|
-
[key: string]: string[];
|
|
1743
|
-
};
|
|
1733
|
+
Identities?: Record<string, string[]>;
|
|
1744
1734
|
|
|
1745
1735
|
AssignmentStatus?: AssignmentStatus | string;
|
|
1746
1736
|
|
|
@@ -1756,9 +1746,7 @@ export interface UpdateIpRestrictionRequest {
|
|
|
1756
1746
|
|
|
1757
1747
|
AwsAccountId: string | undefined;
|
|
1758
1748
|
|
|
1759
|
-
IpRestrictionRuleMap?:
|
|
1760
|
-
[key: string]: string;
|
|
1761
|
-
};
|
|
1749
|
+
IpRestrictionRuleMap?: Record<string, string>;
|
|
1762
1750
|
|
|
1763
1751
|
Enabled?: boolean;
|
|
1764
1752
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.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,15 +18,16 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|