@aws-sdk/client-securityhub 3.468.0 → 3.471.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/protocols/Aws_restJson1.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +66 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +66 -0
- package/dist-types/models/models_0.d.ts +320 -422
- package/dist-types/models/models_1.d.ts +520 -305
- package/dist-types/models/models_2.d.ts +330 -7
- package/dist-types/ts3.4/models/models_0.d.ts +53 -80
- package/dist-types/ts3.4/models/models_1.d.ts +110 -61
- package/dist-types/ts3.4/models/models_2.d.ts +61 -6
- package/package.json +13 -13
|
@@ -2,15 +2,104 @@ import {
|
|
|
2
2
|
AssociatedStandard,
|
|
3
3
|
AvailabilityZone,
|
|
4
4
|
AwsEcsContainerDetails,
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails,
|
|
6
|
+
AwsEcsTaskDefinitionContainerDefinitionsEnvironmentDetails,
|
|
7
|
+
AwsEcsTaskDefinitionContainerDefinitionsEnvironmentFilesDetails,
|
|
8
|
+
AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails,
|
|
9
|
+
AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDetails,
|
|
10
|
+
AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails,
|
|
11
|
+
AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails,
|
|
12
|
+
AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails,
|
|
13
|
+
AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails,
|
|
14
|
+
AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails,
|
|
15
|
+
AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails,
|
|
16
|
+
AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails,
|
|
17
|
+
AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails,
|
|
18
|
+
AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails,
|
|
19
|
+
AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails,
|
|
11
20
|
RelatedFinding,
|
|
12
21
|
SeverityLabel,
|
|
13
22
|
} from "./models_0";
|
|
23
|
+
export interface AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails {
|
|
24
|
+
ReadOnly?: boolean;
|
|
25
|
+
SourceContainer?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface AwsEcsTaskDefinitionContainerDefinitionsDetails {
|
|
28
|
+
Command?: string[];
|
|
29
|
+
Cpu?: number;
|
|
30
|
+
DependsOn?: AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails[];
|
|
31
|
+
DisableNetworking?: boolean;
|
|
32
|
+
DnsSearchDomains?: string[];
|
|
33
|
+
DnsServers?: string[];
|
|
34
|
+
DockerLabels?: Record<string, string>;
|
|
35
|
+
DockerSecurityOptions?: string[];
|
|
36
|
+
EntryPoint?: string[];
|
|
37
|
+
Environment?: AwsEcsTaskDefinitionContainerDefinitionsEnvironmentDetails[];
|
|
38
|
+
EnvironmentFiles?: AwsEcsTaskDefinitionContainerDefinitionsEnvironmentFilesDetails[];
|
|
39
|
+
Essential?: boolean;
|
|
40
|
+
ExtraHosts?: AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails[];
|
|
41
|
+
FirelensConfiguration?: AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDetails;
|
|
42
|
+
HealthCheck?: AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails;
|
|
43
|
+
Hostname?: string;
|
|
44
|
+
Image?: string;
|
|
45
|
+
Interactive?: boolean;
|
|
46
|
+
Links?: string[];
|
|
47
|
+
LinuxParameters?: AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails;
|
|
48
|
+
LogConfiguration?: AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails;
|
|
49
|
+
Memory?: number;
|
|
50
|
+
MemoryReservation?: number;
|
|
51
|
+
MountPoints?: AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails[];
|
|
52
|
+
Name?: string;
|
|
53
|
+
PortMappings?: AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails[];
|
|
54
|
+
Privileged?: boolean;
|
|
55
|
+
PseudoTerminal?: boolean;
|
|
56
|
+
ReadonlyRootFilesystem?: boolean;
|
|
57
|
+
RepositoryCredentials?: AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails;
|
|
58
|
+
ResourceRequirements?: AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails[];
|
|
59
|
+
Secrets?: AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails[];
|
|
60
|
+
StartTimeout?: number;
|
|
61
|
+
StopTimeout?: number;
|
|
62
|
+
SystemControls?: AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails[];
|
|
63
|
+
Ulimits?: AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails[];
|
|
64
|
+
User?: string;
|
|
65
|
+
VolumesFrom?: AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails[];
|
|
66
|
+
WorkingDirectory?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface AwsEcsTaskDefinitionInferenceAcceleratorsDetails {
|
|
69
|
+
DeviceName?: string;
|
|
70
|
+
DeviceType?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface AwsEcsTaskDefinitionPlacementConstraintsDetails {
|
|
73
|
+
Expression?: string;
|
|
74
|
+
Type?: string;
|
|
75
|
+
}
|
|
76
|
+
export interface AwsEcsTaskDefinitionProxyConfigurationProxyConfigurationPropertiesDetails {
|
|
77
|
+
Name?: string;
|
|
78
|
+
Value?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface AwsEcsTaskDefinitionProxyConfigurationDetails {
|
|
81
|
+
ContainerName?: string;
|
|
82
|
+
ProxyConfigurationProperties?: AwsEcsTaskDefinitionProxyConfigurationProxyConfigurationPropertiesDetails[];
|
|
83
|
+
Type?: string;
|
|
84
|
+
}
|
|
85
|
+
export interface AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails {
|
|
86
|
+
Autoprovision?: boolean;
|
|
87
|
+
Driver?: string;
|
|
88
|
+
DriverOpts?: Record<string, string>;
|
|
89
|
+
Labels?: Record<string, string>;
|
|
90
|
+
Scope?: string;
|
|
91
|
+
}
|
|
92
|
+
export interface AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationAuthorizationConfigDetails {
|
|
93
|
+
AccessPointId?: string;
|
|
94
|
+
Iam?: string;
|
|
95
|
+
}
|
|
96
|
+
export interface AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails {
|
|
97
|
+
AuthorizationConfig?: AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationAuthorizationConfigDetails;
|
|
98
|
+
FilesystemId?: string;
|
|
99
|
+
RootDirectory?: string;
|
|
100
|
+
TransitEncryption?: string;
|
|
101
|
+
TransitEncryptionPort?: number;
|
|
102
|
+
}
|
|
14
103
|
export interface AwsEcsTaskDefinitionVolumesHostDetails {
|
|
15
104
|
SourcePath?: string;
|
|
16
105
|
}
|
|
@@ -623,6 +712,7 @@ export interface AwsMskClusterClusterInfoDetails {
|
|
|
623
712
|
NumberOfBrokerNodes?: number;
|
|
624
713
|
ClusterName?: string;
|
|
625
714
|
ClientAuthentication?: AwsMskClusterClusterInfoClientAuthenticationDetails;
|
|
715
|
+
EnhancedMonitoring?: string;
|
|
626
716
|
}
|
|
627
717
|
export interface AwsMskClusterDetails {
|
|
628
718
|
ClusterInfo?: AwsMskClusterClusterInfoDetails;
|
|
@@ -1283,6 +1373,19 @@ export interface AwsS3AccountPublicAccessBlockDetails {
|
|
|
1283
1373
|
IgnorePublicAcls?: boolean;
|
|
1284
1374
|
RestrictPublicBuckets?: boolean;
|
|
1285
1375
|
}
|
|
1376
|
+
export interface AwsS3AccessPointVpcConfigurationDetails {
|
|
1377
|
+
VpcId?: string;
|
|
1378
|
+
}
|
|
1379
|
+
export interface AwsS3AccessPointDetails {
|
|
1380
|
+
AccessPointArn?: string;
|
|
1381
|
+
Alias?: string;
|
|
1382
|
+
Bucket?: string;
|
|
1383
|
+
BucketAccountId?: string;
|
|
1384
|
+
Name?: string;
|
|
1385
|
+
NetworkOrigin?: string;
|
|
1386
|
+
PublicAccessBlockConfiguration?: AwsS3AccountPublicAccessBlockDetails;
|
|
1387
|
+
VpcConfiguration?: AwsS3AccessPointVpcConfigurationDetails;
|
|
1388
|
+
}
|
|
1286
1389
|
export interface AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails {
|
|
1287
1390
|
DaysAfterInitiation?: number;
|
|
1288
1391
|
}
|
|
@@ -1427,6 +1530,7 @@ export interface AwsS3BucketDetails {
|
|
|
1427
1530
|
BucketNotificationConfiguration?: AwsS3BucketNotificationConfiguration;
|
|
1428
1531
|
BucketVersioningConfiguration?: AwsS3BucketBucketVersioningConfiguration;
|
|
1429
1532
|
ObjectLockConfiguration?: AwsS3BucketObjectLockConfiguration;
|
|
1533
|
+
Name?: string;
|
|
1430
1534
|
}
|
|
1431
1535
|
export interface AwsS3ObjectDetails {
|
|
1432
1536
|
LastModified?: string;
|
|
@@ -1815,58 +1919,3 @@ export interface AwsWafRegionalWebAclRulesListActionDetails {
|
|
|
1815
1919
|
export interface AwsWafRegionalWebAclRulesListOverrideActionDetails {
|
|
1816
1920
|
Type?: string;
|
|
1817
1921
|
}
|
|
1818
|
-
export interface AwsWafRegionalWebAclRulesListDetails {
|
|
1819
|
-
Action?: AwsWafRegionalWebAclRulesListActionDetails;
|
|
1820
|
-
OverrideAction?: AwsWafRegionalWebAclRulesListOverrideActionDetails;
|
|
1821
|
-
Priority?: number;
|
|
1822
|
-
RuleId?: string;
|
|
1823
|
-
Type?: string;
|
|
1824
|
-
}
|
|
1825
|
-
export interface AwsWafRegionalWebAclDetails {
|
|
1826
|
-
DefaultAction?: string;
|
|
1827
|
-
MetricName?: string;
|
|
1828
|
-
Name?: string;
|
|
1829
|
-
RulesList?: AwsWafRegionalWebAclRulesListDetails[];
|
|
1830
|
-
WebAclId?: string;
|
|
1831
|
-
}
|
|
1832
|
-
export interface AwsWafRulePredicateListDetails {
|
|
1833
|
-
DataId?: string;
|
|
1834
|
-
Negated?: boolean;
|
|
1835
|
-
Type?: string;
|
|
1836
|
-
}
|
|
1837
|
-
export interface AwsWafRuleDetails {
|
|
1838
|
-
MetricName?: string;
|
|
1839
|
-
Name?: string;
|
|
1840
|
-
PredicateList?: AwsWafRulePredicateListDetails[];
|
|
1841
|
-
RuleId?: string;
|
|
1842
|
-
}
|
|
1843
|
-
export interface AwsWafRuleGroupRulesActionDetails {
|
|
1844
|
-
Type?: string;
|
|
1845
|
-
}
|
|
1846
|
-
export interface AwsWafRuleGroupRulesDetails {
|
|
1847
|
-
Action?: AwsWafRuleGroupRulesActionDetails;
|
|
1848
|
-
Priority?: number;
|
|
1849
|
-
RuleId?: string;
|
|
1850
|
-
Type?: string;
|
|
1851
|
-
}
|
|
1852
|
-
export interface AwsWafRuleGroupDetails {
|
|
1853
|
-
MetricName?: string;
|
|
1854
|
-
Name?: string;
|
|
1855
|
-
RuleGroupId?: string;
|
|
1856
|
-
Rules?: AwsWafRuleGroupRulesDetails[];
|
|
1857
|
-
}
|
|
1858
|
-
export interface AwsWafv2CustomHttpHeader {
|
|
1859
|
-
Name?: string;
|
|
1860
|
-
Value?: string;
|
|
1861
|
-
}
|
|
1862
|
-
export interface AwsWafv2CustomRequestHandlingDetails {
|
|
1863
|
-
InsertHeaders?: AwsWafv2CustomHttpHeader[];
|
|
1864
|
-
}
|
|
1865
|
-
export interface AwsWafv2ActionAllowDetails {
|
|
1866
|
-
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
|
|
1867
|
-
}
|
|
1868
|
-
export interface AwsWafv2CustomResponseDetails {
|
|
1869
|
-
CustomResponseBodyKey?: string;
|
|
1870
|
-
ResponseCode?: number;
|
|
1871
|
-
ResponseHeaders?: AwsWafv2CustomHttpHeader[];
|
|
1872
|
-
}
|
|
@@ -35,6 +35,7 @@ import {
|
|
|
35
35
|
AwsDmsReplicationInstanceDetails,
|
|
36
36
|
AwsDmsReplicationTaskDetails,
|
|
37
37
|
AwsDynamoDbTableDetails,
|
|
38
|
+
AwsEc2ClientVpnEndpointDetails,
|
|
38
39
|
AwsEc2EipDetails,
|
|
39
40
|
AwsEc2InstanceDetails,
|
|
40
41
|
AwsEc2LaunchTemplateDetails,
|
|
@@ -103,6 +104,7 @@ import {
|
|
|
103
104
|
AwsRdsEventSubscriptionDetails,
|
|
104
105
|
AwsRedshiftClusterDetails,
|
|
105
106
|
AwsRoute53HostedZoneDetails,
|
|
107
|
+
AwsS3AccessPointDetails,
|
|
106
108
|
AwsS3AccountPublicAccessBlockDetails,
|
|
107
109
|
AwsS3BucketDetails,
|
|
108
110
|
AwsS3ObjectDetails,
|
|
@@ -116,12 +118,8 @@ import {
|
|
|
116
118
|
AwsWafRegionalRateBasedRuleDetails,
|
|
117
119
|
AwsWafRegionalRuleDetails,
|
|
118
120
|
AwsWafRegionalRuleGroupDetails,
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
AwsWafRuleGroupDetails,
|
|
122
|
-
AwsWafv2ActionAllowDetails,
|
|
123
|
-
AwsWafv2CustomRequestHandlingDetails,
|
|
124
|
-
AwsWafv2CustomResponseDetails,
|
|
121
|
+
AwsWafRegionalWebAclRulesListActionDetails,
|
|
122
|
+
AwsWafRegionalWebAclRulesListOverrideActionDetails,
|
|
125
123
|
Compliance,
|
|
126
124
|
DataClassificationDetails,
|
|
127
125
|
FindingProviderFields,
|
|
@@ -136,6 +134,61 @@ import {
|
|
|
136
134
|
Remediation,
|
|
137
135
|
} from "./models_1";
|
|
138
136
|
import { SecurityHubServiceException as __BaseException } from "./SecurityHubServiceException";
|
|
137
|
+
export interface AwsWafRegionalWebAclRulesListDetails {
|
|
138
|
+
Action?: AwsWafRegionalWebAclRulesListActionDetails;
|
|
139
|
+
OverrideAction?: AwsWafRegionalWebAclRulesListOverrideActionDetails;
|
|
140
|
+
Priority?: number;
|
|
141
|
+
RuleId?: string;
|
|
142
|
+
Type?: string;
|
|
143
|
+
}
|
|
144
|
+
export interface AwsWafRegionalWebAclDetails {
|
|
145
|
+
DefaultAction?: string;
|
|
146
|
+
MetricName?: string;
|
|
147
|
+
Name?: string;
|
|
148
|
+
RulesList?: AwsWafRegionalWebAclRulesListDetails[];
|
|
149
|
+
WebAclId?: string;
|
|
150
|
+
}
|
|
151
|
+
export interface AwsWafRulePredicateListDetails {
|
|
152
|
+
DataId?: string;
|
|
153
|
+
Negated?: boolean;
|
|
154
|
+
Type?: string;
|
|
155
|
+
}
|
|
156
|
+
export interface AwsWafRuleDetails {
|
|
157
|
+
MetricName?: string;
|
|
158
|
+
Name?: string;
|
|
159
|
+
PredicateList?: AwsWafRulePredicateListDetails[];
|
|
160
|
+
RuleId?: string;
|
|
161
|
+
}
|
|
162
|
+
export interface AwsWafRuleGroupRulesActionDetails {
|
|
163
|
+
Type?: string;
|
|
164
|
+
}
|
|
165
|
+
export interface AwsWafRuleGroupRulesDetails {
|
|
166
|
+
Action?: AwsWafRuleGroupRulesActionDetails;
|
|
167
|
+
Priority?: number;
|
|
168
|
+
RuleId?: string;
|
|
169
|
+
Type?: string;
|
|
170
|
+
}
|
|
171
|
+
export interface AwsWafRuleGroupDetails {
|
|
172
|
+
MetricName?: string;
|
|
173
|
+
Name?: string;
|
|
174
|
+
RuleGroupId?: string;
|
|
175
|
+
Rules?: AwsWafRuleGroupRulesDetails[];
|
|
176
|
+
}
|
|
177
|
+
export interface AwsWafv2CustomHttpHeader {
|
|
178
|
+
Name?: string;
|
|
179
|
+
Value?: string;
|
|
180
|
+
}
|
|
181
|
+
export interface AwsWafv2CustomRequestHandlingDetails {
|
|
182
|
+
InsertHeaders?: AwsWafv2CustomHttpHeader[];
|
|
183
|
+
}
|
|
184
|
+
export interface AwsWafv2ActionAllowDetails {
|
|
185
|
+
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
|
|
186
|
+
}
|
|
187
|
+
export interface AwsWafv2CustomResponseDetails {
|
|
188
|
+
CustomResponseBodyKey?: string;
|
|
189
|
+
ResponseCode?: number;
|
|
190
|
+
ResponseHeaders?: AwsWafv2CustomHttpHeader[];
|
|
191
|
+
}
|
|
139
192
|
export interface AwsWafv2ActionBlockDetails {
|
|
140
193
|
CustomResponse?: AwsWafv2CustomResponseDetails;
|
|
141
194
|
}
|
|
@@ -334,6 +387,8 @@ export interface ResourceDetails {
|
|
|
334
387
|
AwsDmsReplicationInstance?: AwsDmsReplicationInstanceDetails;
|
|
335
388
|
AwsRoute53HostedZone?: AwsRoute53HostedZoneDetails;
|
|
336
389
|
AwsMskCluster?: AwsMskClusterDetails;
|
|
390
|
+
AwsS3AccessPoint?: AwsS3AccessPointDetails;
|
|
391
|
+
AwsEc2ClientVpnEndpoint?: AwsEc2ClientVpnEndpointDetails;
|
|
337
392
|
}
|
|
338
393
|
export declare const Partition: {
|
|
339
394
|
readonly AWS: "aws";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-securityhub",
|
|
3
3
|
"description": "AWS SDK for JavaScript Securityhub Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.471.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",
|
|
@@ -20,29 +20,29 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.470.0",
|
|
24
24
|
"@aws-sdk/core": "3.468.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.470.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.470.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.470.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.21",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
38
|
"@smithy/hash-node": "^2.0.17",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.15",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.17",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.2.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.24",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.15",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.9",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.8",
|
|
46
46
|
"@smithy/node-http-handler": "^2.2.1",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.11",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.18",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.22",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-endpoints": "^1.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.29",
|
|
56
|
+
"@smithy/util-endpoints": "^1.0.7",
|
|
57
57
|
"@smithy/util-retry": "^2.0.8",
|
|
58
58
|
"@smithy/util-utf8": "^2.0.2",
|
|
59
59
|
"tslib": "^2.5.0"
|