@aws-sdk/client-sfn 3.52.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SFNServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +318 -2
- package/dist-cjs/protocols/Aws_json1_0.js +252 -800
- package/dist-es/index.js +1 -0
- package/dist-es/models/SFNServiceException.js +12 -0
- package/dist-es/models/models_0.js +292 -1
- package/dist-es/protocols/Aws_json1_0.js +511 -845
- package/dist-types/SFNClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SFNServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +170 -97
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SFNClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SFNServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +122 -97
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SFNServiceException as __BaseException } from "./SFNServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "ActivityDoesNotExist";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class ActivityDoesNotExist extends __BaseException {
|
|
5
|
+
readonly name: "ActivityDoesNotExist";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<ActivityDoesNotExist, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
|
|
9
11
|
export interface ActivityFailedEventDetails {
|
|
@@ -17,10 +19,11 @@ export declare namespace ActivityFailedEventDetails {
|
|
|
17
19
|
const filterSensitiveLog: (obj: ActivityFailedEventDetails) => any;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
|
-
export
|
|
21
|
-
name: "ActivityLimitExceeded";
|
|
22
|
-
$fault: "client";
|
|
23
|
-
|
|
22
|
+
export declare class ActivityLimitExceeded extends __BaseException {
|
|
23
|
+
readonly name: "ActivityLimitExceeded";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
|
|
26
|
+
constructor(opts: __ExceptionOptionType<ActivityLimitExceeded, __BaseException>);
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
export interface ActivityListItem {
|
|
@@ -104,10 +107,11 @@ export declare namespace ActivityTimedOutEventDetails {
|
|
|
104
107
|
const filterSensitiveLog: (obj: ActivityTimedOutEventDetails) => any;
|
|
105
108
|
}
|
|
106
109
|
|
|
107
|
-
export
|
|
108
|
-
name: "ActivityWorkerLimitExceeded";
|
|
109
|
-
$fault: "client";
|
|
110
|
-
|
|
110
|
+
export declare class ActivityWorkerLimitExceeded extends __BaseException {
|
|
111
|
+
readonly name: "ActivityWorkerLimitExceeded";
|
|
112
|
+
readonly $fault: "client";
|
|
113
|
+
|
|
114
|
+
constructor(opts: __ExceptionOptionType<ActivityWorkerLimitExceeded, __BaseException>);
|
|
111
115
|
}
|
|
112
116
|
|
|
113
117
|
export interface Tag {
|
|
@@ -141,17 +145,19 @@ export declare namespace CreateActivityOutput {
|
|
|
141
145
|
const filterSensitiveLog: (obj: CreateActivityOutput) => any;
|
|
142
146
|
}
|
|
143
147
|
|
|
144
|
-
export
|
|
145
|
-
name: "InvalidName";
|
|
146
|
-
$fault: "client";
|
|
147
|
-
|
|
148
|
+
export declare class InvalidName extends __BaseException {
|
|
149
|
+
readonly name: "InvalidName";
|
|
150
|
+
readonly $fault: "client";
|
|
151
|
+
|
|
152
|
+
constructor(opts: __ExceptionOptionType<InvalidName, __BaseException>);
|
|
148
153
|
}
|
|
149
154
|
|
|
150
|
-
export
|
|
151
|
-
name: "TooManyTags";
|
|
152
|
-
$fault: "client";
|
|
153
|
-
message?: string;
|
|
155
|
+
export declare class TooManyTags extends __BaseException {
|
|
156
|
+
readonly name: "TooManyTags";
|
|
157
|
+
readonly $fault: "client";
|
|
154
158
|
resourceName?: string;
|
|
159
|
+
|
|
160
|
+
constructor(opts: __ExceptionOptionType<TooManyTags, __BaseException>);
|
|
155
161
|
}
|
|
156
162
|
|
|
157
163
|
export interface CloudWatchLogsLogGroup {
|
|
@@ -226,52 +232,60 @@ export declare namespace CreateStateMachineOutput {
|
|
|
226
232
|
const filterSensitiveLog: (obj: CreateStateMachineOutput) => any;
|
|
227
233
|
}
|
|
228
234
|
|
|
229
|
-
export
|
|
230
|
-
name: "InvalidArn";
|
|
231
|
-
$fault: "client";
|
|
232
|
-
|
|
235
|
+
export declare class InvalidArn extends __BaseException {
|
|
236
|
+
readonly name: "InvalidArn";
|
|
237
|
+
readonly $fault: "client";
|
|
238
|
+
|
|
239
|
+
constructor(opts: __ExceptionOptionType<InvalidArn, __BaseException>);
|
|
233
240
|
}
|
|
234
241
|
|
|
235
|
-
export
|
|
236
|
-
name: "InvalidDefinition";
|
|
237
|
-
$fault: "client";
|
|
238
|
-
|
|
242
|
+
export declare class InvalidDefinition extends __BaseException {
|
|
243
|
+
readonly name: "InvalidDefinition";
|
|
244
|
+
readonly $fault: "client";
|
|
245
|
+
|
|
246
|
+
constructor(opts: __ExceptionOptionType<InvalidDefinition, __BaseException>);
|
|
239
247
|
}
|
|
240
248
|
|
|
241
|
-
export
|
|
242
|
-
name: "InvalidLoggingConfiguration";
|
|
243
|
-
$fault: "client";
|
|
244
|
-
|
|
249
|
+
export declare class InvalidLoggingConfiguration extends __BaseException {
|
|
250
|
+
readonly name: "InvalidLoggingConfiguration";
|
|
251
|
+
readonly $fault: "client";
|
|
252
|
+
|
|
253
|
+
constructor(opts: __ExceptionOptionType<InvalidLoggingConfiguration, __BaseException>);
|
|
245
254
|
}
|
|
246
255
|
|
|
247
|
-
export
|
|
248
|
-
name: "InvalidTracingConfiguration";
|
|
249
|
-
$fault: "client";
|
|
250
|
-
|
|
256
|
+
export declare class InvalidTracingConfiguration extends __BaseException {
|
|
257
|
+
readonly name: "InvalidTracingConfiguration";
|
|
258
|
+
readonly $fault: "client";
|
|
259
|
+
|
|
260
|
+
constructor(opts: __ExceptionOptionType<InvalidTracingConfiguration, __BaseException>);
|
|
251
261
|
}
|
|
252
262
|
|
|
253
|
-
export
|
|
254
|
-
name: "StateMachineAlreadyExists";
|
|
255
|
-
$fault: "client";
|
|
256
|
-
|
|
263
|
+
export declare class StateMachineAlreadyExists extends __BaseException {
|
|
264
|
+
readonly name: "StateMachineAlreadyExists";
|
|
265
|
+
readonly $fault: "client";
|
|
266
|
+
|
|
267
|
+
constructor(opts: __ExceptionOptionType<StateMachineAlreadyExists, __BaseException>);
|
|
257
268
|
}
|
|
258
269
|
|
|
259
|
-
export
|
|
260
|
-
name: "StateMachineDeleting";
|
|
261
|
-
$fault: "client";
|
|
262
|
-
|
|
270
|
+
export declare class StateMachineDeleting extends __BaseException {
|
|
271
|
+
readonly name: "StateMachineDeleting";
|
|
272
|
+
readonly $fault: "client";
|
|
273
|
+
|
|
274
|
+
constructor(opts: __ExceptionOptionType<StateMachineDeleting, __BaseException>);
|
|
263
275
|
}
|
|
264
276
|
|
|
265
|
-
export
|
|
266
|
-
name: "StateMachineLimitExceeded";
|
|
267
|
-
$fault: "client";
|
|
268
|
-
|
|
277
|
+
export declare class StateMachineLimitExceeded extends __BaseException {
|
|
278
|
+
readonly name: "StateMachineLimitExceeded";
|
|
279
|
+
readonly $fault: "client";
|
|
280
|
+
|
|
281
|
+
constructor(opts: __ExceptionOptionType<StateMachineLimitExceeded, __BaseException>);
|
|
269
282
|
}
|
|
270
283
|
|
|
271
|
-
export
|
|
272
|
-
name: "StateMachineTypeNotSupported";
|
|
273
|
-
$fault: "client";
|
|
274
|
-
|
|
284
|
+
export declare class StateMachineTypeNotSupported extends __BaseException {
|
|
285
|
+
readonly name: "StateMachineTypeNotSupported";
|
|
286
|
+
readonly $fault: "client";
|
|
287
|
+
|
|
288
|
+
constructor(opts: __ExceptionOptionType<StateMachineTypeNotSupported, __BaseException>);
|
|
275
289
|
}
|
|
276
290
|
export interface DeleteActivityInput {
|
|
277
291
|
|
|
@@ -368,10 +382,11 @@ export declare namespace DescribeExecutionOutput {
|
|
|
368
382
|
const filterSensitiveLog: (obj: DescribeExecutionOutput) => any;
|
|
369
383
|
}
|
|
370
384
|
|
|
371
|
-
export
|
|
372
|
-
name: "ExecutionDoesNotExist";
|
|
373
|
-
$fault: "client";
|
|
374
|
-
|
|
385
|
+
export declare class ExecutionDoesNotExist extends __BaseException {
|
|
386
|
+
readonly name: "ExecutionDoesNotExist";
|
|
387
|
+
readonly $fault: "client";
|
|
388
|
+
|
|
389
|
+
constructor(opts: __ExceptionOptionType<ExecutionDoesNotExist, __BaseException>);
|
|
375
390
|
}
|
|
376
391
|
export interface DescribeStateMachineInput {
|
|
377
392
|
|
|
@@ -407,10 +422,11 @@ export declare namespace DescribeStateMachineOutput {
|
|
|
407
422
|
const filterSensitiveLog: (obj: DescribeStateMachineOutput) => any;
|
|
408
423
|
}
|
|
409
424
|
|
|
410
|
-
export
|
|
411
|
-
name: "StateMachineDoesNotExist";
|
|
412
|
-
$fault: "client";
|
|
413
|
-
|
|
425
|
+
export declare class StateMachineDoesNotExist extends __BaseException {
|
|
426
|
+
readonly name: "StateMachineDoesNotExist";
|
|
427
|
+
readonly $fault: "client";
|
|
428
|
+
|
|
429
|
+
constructor(opts: __ExceptionOptionType<StateMachineDoesNotExist, __BaseException>);
|
|
414
430
|
}
|
|
415
431
|
export interface DescribeStateMachineForExecutionInput {
|
|
416
432
|
|
|
@@ -860,10 +876,11 @@ export declare namespace GetExecutionHistoryOutput {
|
|
|
860
876
|
const filterSensitiveLog: (obj: GetExecutionHistoryOutput) => any;
|
|
861
877
|
}
|
|
862
878
|
|
|
863
|
-
export
|
|
864
|
-
name: "InvalidToken";
|
|
865
|
-
$fault: "client";
|
|
866
|
-
|
|
879
|
+
export declare class InvalidToken extends __BaseException {
|
|
880
|
+
readonly name: "InvalidToken";
|
|
881
|
+
readonly $fault: "client";
|
|
882
|
+
|
|
883
|
+
constructor(opts: __ExceptionOptionType<InvalidToken, __BaseException>);
|
|
867
884
|
}
|
|
868
885
|
export interface ListActivitiesInput {
|
|
869
886
|
|
|
@@ -979,11 +996,12 @@ export declare namespace ListTagsForResourceOutput {
|
|
|
979
996
|
const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
980
997
|
}
|
|
981
998
|
|
|
982
|
-
export
|
|
983
|
-
name: "ResourceNotFound";
|
|
984
|
-
$fault: "client";
|
|
985
|
-
message?: string;
|
|
999
|
+
export declare class ResourceNotFound extends __BaseException {
|
|
1000
|
+
readonly name: "ResourceNotFound";
|
|
1001
|
+
readonly $fault: "client";
|
|
986
1002
|
resourceName?: string;
|
|
1003
|
+
|
|
1004
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
|
|
987
1005
|
}
|
|
988
1006
|
export interface SendTaskFailureInput {
|
|
989
1007
|
|
|
@@ -1003,15 +1021,17 @@ export declare namespace SendTaskFailureOutput {
|
|
|
1003
1021
|
|
|
1004
1022
|
const filterSensitiveLog: (obj: SendTaskFailureOutput) => any;
|
|
1005
1023
|
}
|
|
1006
|
-
export
|
|
1007
|
-
name: "TaskDoesNotExist";
|
|
1008
|
-
$fault: "client";
|
|
1009
|
-
|
|
1024
|
+
export declare class TaskDoesNotExist extends __BaseException {
|
|
1025
|
+
readonly name: "TaskDoesNotExist";
|
|
1026
|
+
readonly $fault: "client";
|
|
1027
|
+
|
|
1028
|
+
constructor(opts: __ExceptionOptionType<TaskDoesNotExist, __BaseException>);
|
|
1010
1029
|
}
|
|
1011
|
-
export
|
|
1012
|
-
name: "TaskTimedOut";
|
|
1013
|
-
$fault: "client";
|
|
1014
|
-
|
|
1030
|
+
export declare class TaskTimedOut extends __BaseException {
|
|
1031
|
+
readonly name: "TaskTimedOut";
|
|
1032
|
+
readonly $fault: "client";
|
|
1033
|
+
|
|
1034
|
+
constructor(opts: __ExceptionOptionType<TaskTimedOut, __BaseException>);
|
|
1015
1035
|
}
|
|
1016
1036
|
export interface SendTaskHeartbeatInput {
|
|
1017
1037
|
|
|
@@ -1028,10 +1048,11 @@ export declare namespace SendTaskHeartbeatOutput {
|
|
|
1028
1048
|
const filterSensitiveLog: (obj: SendTaskHeartbeatOutput) => any;
|
|
1029
1049
|
}
|
|
1030
1050
|
|
|
1031
|
-
export
|
|
1032
|
-
name: "InvalidOutput";
|
|
1033
|
-
$fault: "client";
|
|
1034
|
-
|
|
1051
|
+
export declare class InvalidOutput extends __BaseException {
|
|
1052
|
+
readonly name: "InvalidOutput";
|
|
1053
|
+
readonly $fault: "client";
|
|
1054
|
+
|
|
1055
|
+
constructor(opts: __ExceptionOptionType<InvalidOutput, __BaseException>);
|
|
1035
1056
|
}
|
|
1036
1057
|
export interface SendTaskSuccessInput {
|
|
1037
1058
|
|
|
@@ -1050,22 +1071,25 @@ export declare namespace SendTaskSuccessOutput {
|
|
|
1050
1071
|
const filterSensitiveLog: (obj: SendTaskSuccessOutput) => any;
|
|
1051
1072
|
}
|
|
1052
1073
|
|
|
1053
|
-
export
|
|
1054
|
-
name: "ExecutionAlreadyExists";
|
|
1055
|
-
$fault: "client";
|
|
1056
|
-
|
|
1074
|
+
export declare class ExecutionAlreadyExists extends __BaseException {
|
|
1075
|
+
readonly name: "ExecutionAlreadyExists";
|
|
1076
|
+
readonly $fault: "client";
|
|
1077
|
+
|
|
1078
|
+
constructor(opts: __ExceptionOptionType<ExecutionAlreadyExists, __BaseException>);
|
|
1057
1079
|
}
|
|
1058
1080
|
|
|
1059
|
-
export
|
|
1060
|
-
name: "ExecutionLimitExceeded";
|
|
1061
|
-
$fault: "client";
|
|
1062
|
-
|
|
1081
|
+
export declare class ExecutionLimitExceeded extends __BaseException {
|
|
1082
|
+
readonly name: "ExecutionLimitExceeded";
|
|
1083
|
+
readonly $fault: "client";
|
|
1084
|
+
|
|
1085
|
+
constructor(opts: __ExceptionOptionType<ExecutionLimitExceeded, __BaseException>);
|
|
1063
1086
|
}
|
|
1064
1087
|
|
|
1065
|
-
export
|
|
1066
|
-
name: "InvalidExecutionInput";
|
|
1067
|
-
$fault: "client";
|
|
1068
|
-
|
|
1088
|
+
export declare class InvalidExecutionInput extends __BaseException {
|
|
1089
|
+
readonly name: "InvalidExecutionInput";
|
|
1090
|
+
readonly $fault: "client";
|
|
1091
|
+
|
|
1092
|
+
constructor(opts: __ExceptionOptionType<InvalidExecutionInput, __BaseException>);
|
|
1069
1093
|
}
|
|
1070
1094
|
export interface StartExecutionInput {
|
|
1071
1095
|
|
|
@@ -1204,10 +1228,11 @@ export declare namespace UntagResourceOutput {
|
|
|
1204
1228
|
const filterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
1205
1229
|
}
|
|
1206
1230
|
|
|
1207
|
-
export
|
|
1208
|
-
name: "MissingRequiredParameter";
|
|
1209
|
-
$fault: "client";
|
|
1210
|
-
|
|
1231
|
+
export declare class MissingRequiredParameter extends __BaseException {
|
|
1232
|
+
readonly name: "MissingRequiredParameter";
|
|
1233
|
+
readonly $fault: "client";
|
|
1234
|
+
|
|
1235
|
+
constructor(opts: __ExceptionOptionType<MissingRequiredParameter, __BaseException>);
|
|
1211
1236
|
}
|
|
1212
1237
|
export interface UpdateStateMachineInput {
|
|
1213
1238
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: SFNClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: SFNClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: SFNClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sfn",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.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",
|
|
@@ -18,34 +18,34 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|