@aws-sdk/client-securityhub 3.699.0 → 3.709.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/index.js +140 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +136 -0
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +81 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +81 -0
- package/dist-types/models/models_0.d.ts +146 -162
- package/dist-types/models/models_1.d.ts +1213 -1116
- package/dist-types/models/models_2.d.ts +473 -1
- package/dist-types/ts3.4/models/models_0.d.ts +28 -20
- package/dist-types/ts3.4/models/models_1.d.ts +82 -87
- package/dist-types/ts3.4/models/models_2.d.ts +85 -7
- package/package.json +35 -35
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
Actor,
|
|
2
3
|
AssociatedStandard,
|
|
3
4
|
AvailabilityZone,
|
|
4
5
|
AwsEcsContainerDetails,
|
|
@@ -12,14 +13,29 @@ import {
|
|
|
12
13
|
AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails,
|
|
13
14
|
AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails,
|
|
14
15
|
AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails,
|
|
15
|
-
AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails,
|
|
16
|
-
AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails,
|
|
17
|
-
AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails,
|
|
18
|
-
AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails,
|
|
19
|
-
AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails,
|
|
20
16
|
RelatedFinding,
|
|
21
17
|
SeverityLabel,
|
|
22
18
|
} from "./models_0";
|
|
19
|
+
export interface AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails {
|
|
20
|
+
CredentialsParameter?: string | undefined;
|
|
21
|
+
}
|
|
22
|
+
export interface AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails {
|
|
23
|
+
Type?: string | undefined;
|
|
24
|
+
Value?: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
export interface AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails {
|
|
27
|
+
Name?: string | undefined;
|
|
28
|
+
ValueFrom?: string | undefined;
|
|
29
|
+
}
|
|
30
|
+
export interface AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails {
|
|
31
|
+
Namespace?: string | undefined;
|
|
32
|
+
Value?: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
export interface AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails {
|
|
35
|
+
HardLimit?: number | undefined;
|
|
36
|
+
Name?: string | undefined;
|
|
37
|
+
SoftLimit?: number | undefined;
|
|
38
|
+
}
|
|
23
39
|
export interface AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails {
|
|
24
40
|
ReadOnly?: boolean | undefined;
|
|
25
41
|
SourceContainer?: string | undefined;
|
|
@@ -1778,6 +1794,67 @@ export interface Compliance {
|
|
|
1778
1794
|
AssociatedStandards?: AssociatedStandard[] | undefined;
|
|
1779
1795
|
SecurityControlParameters?: SecurityControlParameter[] | undefined;
|
|
1780
1796
|
}
|
|
1797
|
+
export interface NetworkAutonomousSystem {
|
|
1798
|
+
Name?: string | undefined;
|
|
1799
|
+
Number?: number | undefined;
|
|
1800
|
+
}
|
|
1801
|
+
export declare const ConnectionDirection: {
|
|
1802
|
+
readonly INBOUND: "INBOUND";
|
|
1803
|
+
readonly OUTBOUND: "OUTBOUND";
|
|
1804
|
+
};
|
|
1805
|
+
export type ConnectionDirection =
|
|
1806
|
+
(typeof ConnectionDirection)[keyof typeof ConnectionDirection];
|
|
1807
|
+
export interface NetworkConnection {
|
|
1808
|
+
Direction?: ConnectionDirection | undefined;
|
|
1809
|
+
}
|
|
1810
|
+
export interface NetworkGeoLocation {
|
|
1811
|
+
City?: string | undefined;
|
|
1812
|
+
Country?: string | undefined;
|
|
1813
|
+
Lat?: number | undefined;
|
|
1814
|
+
Lon?: number | undefined;
|
|
1815
|
+
}
|
|
1816
|
+
export interface NetworkEndpoint {
|
|
1817
|
+
Id?: string | undefined;
|
|
1818
|
+
Ip?: string | undefined;
|
|
1819
|
+
Domain?: string | undefined;
|
|
1820
|
+
Port?: number | undefined;
|
|
1821
|
+
Location?: NetworkGeoLocation | undefined;
|
|
1822
|
+
AutonomousSystem?: NetworkAutonomousSystem | undefined;
|
|
1823
|
+
Connection?: NetworkConnection | undefined;
|
|
1824
|
+
}
|
|
1825
|
+
export interface Indicator {
|
|
1826
|
+
Key?: string | undefined;
|
|
1827
|
+
Values?: string[] | undefined;
|
|
1828
|
+
Title?: string | undefined;
|
|
1829
|
+
Type?: string | undefined;
|
|
1830
|
+
}
|
|
1831
|
+
export interface Signal {
|
|
1832
|
+
Type?: string | undefined;
|
|
1833
|
+
Id?: string | undefined;
|
|
1834
|
+
Title?: string | undefined;
|
|
1835
|
+
ProductArn?: string | undefined;
|
|
1836
|
+
ResourceIds?: string[] | undefined;
|
|
1837
|
+
SignalIndicators?: Indicator[] | undefined;
|
|
1838
|
+
Name?: string | undefined;
|
|
1839
|
+
CreatedAt?: number | undefined;
|
|
1840
|
+
UpdatedAt?: number | undefined;
|
|
1841
|
+
FirstSeenAt?: number | undefined;
|
|
1842
|
+
LastSeenAt?: number | undefined;
|
|
1843
|
+
Severity?: number | undefined;
|
|
1844
|
+
Count?: number | undefined;
|
|
1845
|
+
ActorIds?: string[] | undefined;
|
|
1846
|
+
EndpointIds?: string[] | undefined;
|
|
1847
|
+
}
|
|
1848
|
+
export interface Sequence {
|
|
1849
|
+
Uid?: string | undefined;
|
|
1850
|
+
Actors?: Actor[] | undefined;
|
|
1851
|
+
Endpoints?: NetworkEndpoint[] | undefined;
|
|
1852
|
+
Signals?: Signal[] | undefined;
|
|
1853
|
+
SequenceIndicators?: Indicator[] | undefined;
|
|
1854
|
+
}
|
|
1855
|
+
export interface Detection {
|
|
1856
|
+
Sequence?: Sequence | undefined;
|
|
1857
|
+
}
|
|
1781
1858
|
export interface FindingProviderSeverity {
|
|
1782
1859
|
Label?: SeverityLabel | undefined;
|
|
1783
1860
|
Original?: string | undefined;
|
|
@@ -2021,85 +2098,3 @@ export interface AwsStepFunctionStateMachineLoggingConfigurationDestinationsDeta
|
|
|
2021
2098
|
| AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails
|
|
2022
2099
|
| undefined;
|
|
2023
2100
|
}
|
|
2024
|
-
export interface AwsStepFunctionStateMachineLoggingConfigurationDetails {
|
|
2025
|
-
Destinations?:
|
|
2026
|
-
| AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails[]
|
|
2027
|
-
| undefined;
|
|
2028
|
-
IncludeExecutionData?: boolean | undefined;
|
|
2029
|
-
Level?: string | undefined;
|
|
2030
|
-
}
|
|
2031
|
-
export interface AwsStepFunctionStateMachineTracingConfigurationDetails {
|
|
2032
|
-
Enabled?: boolean | undefined;
|
|
2033
|
-
}
|
|
2034
|
-
export interface AwsStepFunctionStateMachineDetails {
|
|
2035
|
-
Label?: string | undefined;
|
|
2036
|
-
LoggingConfiguration?:
|
|
2037
|
-
| AwsStepFunctionStateMachineLoggingConfigurationDetails
|
|
2038
|
-
| undefined;
|
|
2039
|
-
Name?: string | undefined;
|
|
2040
|
-
RoleArn?: string | undefined;
|
|
2041
|
-
StateMachineArn?: string | undefined;
|
|
2042
|
-
Status?: string | undefined;
|
|
2043
|
-
TracingConfiguration?:
|
|
2044
|
-
| AwsStepFunctionStateMachineTracingConfigurationDetails
|
|
2045
|
-
| undefined;
|
|
2046
|
-
Type?: string | undefined;
|
|
2047
|
-
}
|
|
2048
|
-
export interface AwsWafRateBasedRuleMatchPredicate {
|
|
2049
|
-
DataId?: string | undefined;
|
|
2050
|
-
Negated?: boolean | undefined;
|
|
2051
|
-
Type?: string | undefined;
|
|
2052
|
-
}
|
|
2053
|
-
export interface AwsWafRateBasedRuleDetails {
|
|
2054
|
-
MetricName?: string | undefined;
|
|
2055
|
-
Name?: string | undefined;
|
|
2056
|
-
RateKey?: string | undefined;
|
|
2057
|
-
RateLimit?: number | undefined;
|
|
2058
|
-
RuleId?: string | undefined;
|
|
2059
|
-
MatchPredicates?: AwsWafRateBasedRuleMatchPredicate[] | undefined;
|
|
2060
|
-
}
|
|
2061
|
-
export interface AwsWafRegionalRateBasedRuleMatchPredicate {
|
|
2062
|
-
DataId?: string | undefined;
|
|
2063
|
-
Negated?: boolean | undefined;
|
|
2064
|
-
Type?: string | undefined;
|
|
2065
|
-
}
|
|
2066
|
-
export interface AwsWafRegionalRateBasedRuleDetails {
|
|
2067
|
-
MetricName?: string | undefined;
|
|
2068
|
-
Name?: string | undefined;
|
|
2069
|
-
RateKey?: string | undefined;
|
|
2070
|
-
RateLimit?: number | undefined;
|
|
2071
|
-
RuleId?: string | undefined;
|
|
2072
|
-
MatchPredicates?: AwsWafRegionalRateBasedRuleMatchPredicate[] | undefined;
|
|
2073
|
-
}
|
|
2074
|
-
export interface AwsWafRegionalRulePredicateListDetails {
|
|
2075
|
-
DataId?: string | undefined;
|
|
2076
|
-
Negated?: boolean | undefined;
|
|
2077
|
-
Type?: string | undefined;
|
|
2078
|
-
}
|
|
2079
|
-
export interface AwsWafRegionalRuleDetails {
|
|
2080
|
-
MetricName?: string | undefined;
|
|
2081
|
-
Name?: string | undefined;
|
|
2082
|
-
PredicateList?: AwsWafRegionalRulePredicateListDetails[] | undefined;
|
|
2083
|
-
RuleId?: string | undefined;
|
|
2084
|
-
}
|
|
2085
|
-
export interface AwsWafRegionalRuleGroupRulesActionDetails {
|
|
2086
|
-
Type?: string | undefined;
|
|
2087
|
-
}
|
|
2088
|
-
export interface AwsWafRegionalRuleGroupRulesDetails {
|
|
2089
|
-
Action?: AwsWafRegionalRuleGroupRulesActionDetails | undefined;
|
|
2090
|
-
Priority?: number | undefined;
|
|
2091
|
-
RuleId?: string | undefined;
|
|
2092
|
-
Type?: string | undefined;
|
|
2093
|
-
}
|
|
2094
|
-
export interface AwsWafRegionalRuleGroupDetails {
|
|
2095
|
-
MetricName?: string | undefined;
|
|
2096
|
-
Name?: string | undefined;
|
|
2097
|
-
RuleGroupId?: string | undefined;
|
|
2098
|
-
Rules?: AwsWafRegionalRuleGroupRulesDetails[] | undefined;
|
|
2099
|
-
}
|
|
2100
|
-
export interface AwsWafRegionalWebAclRulesListActionDetails {
|
|
2101
|
-
Type?: string | undefined;
|
|
2102
|
-
}
|
|
2103
|
-
export interface AwsWafRegionalWebAclRulesListOverrideActionDetails {
|
|
2104
|
-
Type?: string | undefined;
|
|
2105
|
-
}
|
|
@@ -113,15 +113,10 @@ import {
|
|
|
113
113
|
AwsSnsTopicDetails,
|
|
114
114
|
AwsSqsQueueDetails,
|
|
115
115
|
AwsSsmPatchComplianceDetails,
|
|
116
|
-
|
|
117
|
-
AwsWafRateBasedRuleDetails,
|
|
118
|
-
AwsWafRegionalRateBasedRuleDetails,
|
|
119
|
-
AwsWafRegionalRuleDetails,
|
|
120
|
-
AwsWafRegionalRuleGroupDetails,
|
|
121
|
-
AwsWafRegionalWebAclRulesListActionDetails,
|
|
122
|
-
AwsWafRegionalWebAclRulesListOverrideActionDetails,
|
|
116
|
+
AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails,
|
|
123
117
|
Compliance,
|
|
124
118
|
DataClassificationDetails,
|
|
119
|
+
Detection,
|
|
125
120
|
FindingProviderFields,
|
|
126
121
|
GeneratorDetails,
|
|
127
122
|
Malware,
|
|
@@ -134,6 +129,88 @@ import {
|
|
|
134
129
|
Remediation,
|
|
135
130
|
} from "./models_1";
|
|
136
131
|
import { SecurityHubServiceException as __BaseException } from "./SecurityHubServiceException";
|
|
132
|
+
export interface AwsStepFunctionStateMachineLoggingConfigurationDetails {
|
|
133
|
+
Destinations?:
|
|
134
|
+
| AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails[]
|
|
135
|
+
| undefined;
|
|
136
|
+
IncludeExecutionData?: boolean | undefined;
|
|
137
|
+
Level?: string | undefined;
|
|
138
|
+
}
|
|
139
|
+
export interface AwsStepFunctionStateMachineTracingConfigurationDetails {
|
|
140
|
+
Enabled?: boolean | undefined;
|
|
141
|
+
}
|
|
142
|
+
export interface AwsStepFunctionStateMachineDetails {
|
|
143
|
+
Label?: string | undefined;
|
|
144
|
+
LoggingConfiguration?:
|
|
145
|
+
| AwsStepFunctionStateMachineLoggingConfigurationDetails
|
|
146
|
+
| undefined;
|
|
147
|
+
Name?: string | undefined;
|
|
148
|
+
RoleArn?: string | undefined;
|
|
149
|
+
StateMachineArn?: string | undefined;
|
|
150
|
+
Status?: string | undefined;
|
|
151
|
+
TracingConfiguration?:
|
|
152
|
+
| AwsStepFunctionStateMachineTracingConfigurationDetails
|
|
153
|
+
| undefined;
|
|
154
|
+
Type?: string | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface AwsWafRateBasedRuleMatchPredicate {
|
|
157
|
+
DataId?: string | undefined;
|
|
158
|
+
Negated?: boolean | undefined;
|
|
159
|
+
Type?: string | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface AwsWafRateBasedRuleDetails {
|
|
162
|
+
MetricName?: string | undefined;
|
|
163
|
+
Name?: string | undefined;
|
|
164
|
+
RateKey?: string | undefined;
|
|
165
|
+
RateLimit?: number | undefined;
|
|
166
|
+
RuleId?: string | undefined;
|
|
167
|
+
MatchPredicates?: AwsWafRateBasedRuleMatchPredicate[] | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface AwsWafRegionalRateBasedRuleMatchPredicate {
|
|
170
|
+
DataId?: string | undefined;
|
|
171
|
+
Negated?: boolean | undefined;
|
|
172
|
+
Type?: string | undefined;
|
|
173
|
+
}
|
|
174
|
+
export interface AwsWafRegionalRateBasedRuleDetails {
|
|
175
|
+
MetricName?: string | undefined;
|
|
176
|
+
Name?: string | undefined;
|
|
177
|
+
RateKey?: string | undefined;
|
|
178
|
+
RateLimit?: number | undefined;
|
|
179
|
+
RuleId?: string | undefined;
|
|
180
|
+
MatchPredicates?: AwsWafRegionalRateBasedRuleMatchPredicate[] | undefined;
|
|
181
|
+
}
|
|
182
|
+
export interface AwsWafRegionalRulePredicateListDetails {
|
|
183
|
+
DataId?: string | undefined;
|
|
184
|
+
Negated?: boolean | undefined;
|
|
185
|
+
Type?: string | undefined;
|
|
186
|
+
}
|
|
187
|
+
export interface AwsWafRegionalRuleDetails {
|
|
188
|
+
MetricName?: string | undefined;
|
|
189
|
+
Name?: string | undefined;
|
|
190
|
+
PredicateList?: AwsWafRegionalRulePredicateListDetails[] | undefined;
|
|
191
|
+
RuleId?: string | undefined;
|
|
192
|
+
}
|
|
193
|
+
export interface AwsWafRegionalRuleGroupRulesActionDetails {
|
|
194
|
+
Type?: string | undefined;
|
|
195
|
+
}
|
|
196
|
+
export interface AwsWafRegionalRuleGroupRulesDetails {
|
|
197
|
+
Action?: AwsWafRegionalRuleGroupRulesActionDetails | undefined;
|
|
198
|
+
Priority?: number | undefined;
|
|
199
|
+
RuleId?: string | undefined;
|
|
200
|
+
Type?: string | undefined;
|
|
201
|
+
}
|
|
202
|
+
export interface AwsWafRegionalRuleGroupDetails {
|
|
203
|
+
MetricName?: string | undefined;
|
|
204
|
+
Name?: string | undefined;
|
|
205
|
+
RuleGroupId?: string | undefined;
|
|
206
|
+
Rules?: AwsWafRegionalRuleGroupRulesDetails[] | undefined;
|
|
207
|
+
}
|
|
208
|
+
export interface AwsWafRegionalWebAclRulesListActionDetails {
|
|
209
|
+
Type?: string | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface AwsWafRegionalWebAclRulesListOverrideActionDetails {
|
|
212
|
+
Type?: string | undefined;
|
|
213
|
+
}
|
|
137
214
|
export interface AwsWafRegionalWebAclRulesListDetails {
|
|
138
215
|
Action?: AwsWafRegionalWebAclRulesListActionDetails | undefined;
|
|
139
216
|
OverrideAction?:
|
|
@@ -597,6 +674,7 @@ export interface AwsSecurityFinding {
|
|
|
597
674
|
GeneratorDetails?: GeneratorDetails | undefined;
|
|
598
675
|
ProcessedAt?: string | undefined;
|
|
599
676
|
AwsAccountName?: string | undefined;
|
|
677
|
+
Detection?: Detection | undefined;
|
|
600
678
|
}
|
|
601
679
|
export interface KeywordFilter {
|
|
602
680
|
Value?: string | undefined;
|
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.709.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-securityhub",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.1.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.7.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.709.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.709.0",
|
|
25
|
+
"@aws-sdk/core": "3.709.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.709.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.709.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.709.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.709.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.709.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.709.0",
|
|
32
|
+
"@aws-sdk/types": "3.709.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.709.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.709.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.709.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.13",
|
|
37
|
+
"@smithy/core": "^2.5.5",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.2",
|
|
39
|
+
"@smithy/hash-node": "^3.0.11",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.11",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.13",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.5",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.30",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.11",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.11",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.12",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.2",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.8",
|
|
49
|
+
"@smithy/smithy-client": "^3.5.0",
|
|
50
|
+
"@smithy/types": "^3.7.2",
|
|
51
|
+
"@smithy/url-parser": "^3.0.11",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.30",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.30",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.7",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.11",
|
|
59
|
+
"@smithy/util-retry": "^3.0.11",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|