@aws-sdk/client-transfer 3.51.0 → 3.54.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist-cjs/index.js +4 -0
  3. package/dist-cjs/models/TransferServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +141 -3
  5. package/dist-cjs/protocols/Aws_json1_1.js +378 -1302
  6. package/dist-cjs/waiters/index.js +5 -0
  7. package/dist-cjs/waiters/waitForServerOffline.js +45 -0
  8. package/dist-cjs/waiters/waitForServerOnline.js +45 -0
  9. package/dist-es/index.js +2 -0
  10. package/dist-es/models/TransferServiceException.js +12 -0
  11. package/dist-es/models/models_0.js +130 -1
  12. package/dist-es/protocols/Aws_json1_1.js +789 -1422
  13. package/dist-es/waiters/index.js +2 -0
  14. package/dist-es/waiters/waitForServerOffline.js +60 -0
  15. package/dist-es/waiters/waitForServerOnline.js +60 -0
  16. package/dist-types/TransferClient.d.ts +2 -2
  17. package/dist-types/index.d.ts +2 -0
  18. package/dist-types/models/TransferServiceException.d.ts +10 -0
  19. package/dist-types/models/models_0.d.ts +233 -77
  20. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  21. package/dist-types/runtimeConfig.d.ts +1 -1
  22. package/dist-types/runtimeConfig.native.d.ts +1 -1
  23. package/dist-types/ts3.4/TransferClient.d.ts +2 -2
  24. package/dist-types/ts3.4/index.d.ts +2 -0
  25. package/dist-types/ts3.4/models/TransferServiceException.d.ts +6 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +75 -29
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  30. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  31. package/dist-types/ts3.4/waiters/waitForServerOffline.d.ts +7 -0
  32. package/dist-types/ts3.4/waiters/waitForServerOnline.d.ts +7 -0
  33. package/dist-types/waiters/index.d.ts +2 -0
  34. package/dist-types/waiters/waitForServerOffline.d.ts +14 -0
  35. package/dist-types/waiters/waitForServerOnline.d.ts +14 -0
  36. package/package.json +34 -33
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TransferClientConfig) => {
8
8
  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;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateAccessCommandInput, CreateAccessCommandOutput } from "./commands/CreateAccessCommand";
10
10
  import { CreateServerCommandInput, CreateServerCommandOutput } from "./commands/CreateServerCommand";
11
11
  import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
@@ -48,7 +48,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
48
48
 
49
49
  urlParser?: __UrlParser;
50
50
 
51
- bodyLengthChecker?: (body: any) => number | undefined;
51
+ bodyLengthChecker?: __BodyLengthCalculator;
52
52
 
53
53
  streamCollector?: __StreamCollector;
54
54
 
@@ -3,3 +3,5 @@ export * from "./TransferClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { TransferServiceException } from "./models/TransferServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class TransferServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,15 +1,20 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { TransferServiceException as __BaseException } from "./TransferServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
6
7
  Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
7
10
  }
8
11
 
9
- export interface ConflictException extends __SmithyException, $MetadataBearer {
10
- name: "ConflictException";
11
- $fault: "client";
12
+ export declare class ConflictException extends __BaseException {
13
+ readonly name: "ConflictException";
14
+ readonly $fault: "client";
12
15
  Message: string | undefined;
16
+
17
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
13
18
  }
14
19
 
15
20
  export interface EfsFileLocation {
@@ -56,6 +61,8 @@ export interface CopyStepDetails {
56
61
  DestinationFileLocation?: InputFileLocation;
57
62
 
58
63
  OverwriteExisting?: OverwriteExisting | string;
64
+
65
+ SourceFileLocation?: string;
59
66
  }
60
67
  export declare namespace CopyStepDetails {
61
68
 
@@ -122,38 +129,48 @@ export declare namespace CreateAccessResponse {
122
129
  const filterSensitiveLog: (obj: CreateAccessResponse) => any;
123
130
  }
124
131
 
125
- export interface InternalServiceError extends __SmithyException, $MetadataBearer {
126
- name: "InternalServiceError";
127
- $fault: "server";
132
+ export declare class InternalServiceError extends __BaseException {
133
+ readonly name: "InternalServiceError";
134
+ readonly $fault: "server";
128
135
  Message: string | undefined;
136
+
137
+ constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
129
138
  }
130
139
 
131
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
132
- name: "InvalidRequestException";
133
- $fault: "client";
140
+ export declare class InvalidRequestException extends __BaseException {
141
+ readonly name: "InvalidRequestException";
142
+ readonly $fault: "client";
134
143
  Message: string | undefined;
144
+
145
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
135
146
  }
136
147
 
137
- export interface ResourceExistsException extends __SmithyException, $MetadataBearer {
138
- name: "ResourceExistsException";
139
- $fault: "client";
148
+ export declare class ResourceExistsException extends __BaseException {
149
+ readonly name: "ResourceExistsException";
150
+ readonly $fault: "client";
140
151
  Message: string | undefined;
141
152
  Resource: string | undefined;
142
153
  ResourceType: string | undefined;
154
+
155
+ constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
143
156
  }
144
157
 
145
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
146
- name: "ResourceNotFoundException";
147
- $fault: "client";
158
+ export declare class ResourceNotFoundException extends __BaseException {
159
+ readonly name: "ResourceNotFoundException";
160
+ readonly $fault: "client";
148
161
  Message: string | undefined;
149
162
  Resource: string | undefined;
150
163
  ResourceType: string | undefined;
164
+
165
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
151
166
  }
152
167
 
153
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
154
- name: "ServiceUnavailableException";
155
- $fault: "server";
168
+ export declare class ServiceUnavailableException extends __BaseException {
169
+ readonly name: "ServiceUnavailableException";
170
+ readonly $fault: "server";
156
171
  Message?: string;
172
+
173
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
157
174
  }
158
175
  export declare enum Domain {
159
176
  EFS = "EFS",
@@ -272,6 +289,10 @@ export interface CreateServerRequest {
272
289
 
273
290
  LoggingRole?: string;
274
291
 
292
+ PostAuthenticationLoginBanner?: string;
293
+
294
+ PreAuthenticationLoginBanner?: string;
295
+
275
296
  Protocols?: (Protocol | string)[];
276
297
 
277
298
  ProtocolDetails?: ProtocolDetails;
@@ -295,10 +316,12 @@ export declare namespace CreateServerResponse {
295
316
  const filterSensitiveLog: (obj: CreateServerResponse) => any;
296
317
  }
297
318
 
298
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
299
- name: "ThrottlingException";
300
- $fault: "client";
319
+ export declare class ThrottlingException extends __BaseException {
320
+ readonly name: "ThrottlingException";
321
+ readonly $fault: "client";
301
322
  RetryAfterSeconds?: string;
323
+
324
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
302
325
  }
303
326
  export interface CreateUserRequest {
304
327
 
@@ -344,6 +367,8 @@ export interface CustomStepDetails {
344
367
  Target?: string;
345
368
 
346
369
  TimeoutSeconds?: number;
370
+
371
+ SourceFileLocation?: string;
347
372
  }
348
373
  export declare namespace CustomStepDetails {
349
374
 
@@ -353,6 +378,8 @@ export declare namespace CustomStepDetails {
353
378
  export interface DeleteStepDetails {
354
379
 
355
380
  Name?: string;
381
+
382
+ SourceFileLocation?: string;
356
383
  }
357
384
  export declare namespace DeleteStepDetails {
358
385
 
@@ -375,6 +402,8 @@ export interface TagStepDetails {
375
402
  Name?: string;
376
403
 
377
404
  Tags?: S3Tag[];
405
+
406
+ SourceFileLocation?: string;
378
407
  }
379
408
  export declare namespace TagStepDetails {
380
409
 
@@ -556,7 +585,14 @@ export declare namespace LoggingConfiguration {
556
585
  const filterSensitiveLog: (obj: LoggingConfiguration) => any;
557
586
  }
558
587
  export declare enum ExecutionErrorType {
559
- PERMISSION_DENIED = "PERMISSION_DENIED"
588
+ ALREADY_EXISTS = "ALREADY_EXISTS",
589
+ BAD_REQUEST = "BAD_REQUEST",
590
+ CUSTOM_STEP_FAILED = "CUSTOM_STEP_FAILED",
591
+ INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
592
+ NOT_FOUND = "NOT_FOUND",
593
+ PERMISSION_DENIED = "PERMISSION_DENIED",
594
+ THROTTLED = "THROTTLED",
595
+ TIMEOUT = "TIMEOUT"
560
596
  }
561
597
 
562
598
  export interface ExecutionError {
@@ -694,6 +730,10 @@ export interface DescribedServer {
694
730
 
695
731
  LoggingRole?: string;
696
732
 
733
+ PostAuthenticationLoginBanner?: string;
734
+
735
+ PreAuthenticationLoginBanner?: string;
736
+
697
737
  Protocols?: (Protocol | string)[];
698
738
 
699
739
  SecurityPolicyName?: string;
@@ -885,10 +925,12 @@ export declare namespace ImportSshPublicKeyResponse {
885
925
  const filterSensitiveLog: (obj: ImportSshPublicKeyResponse) => any;
886
926
  }
887
927
 
888
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
889
- name: "InvalidNextTokenException";
890
- $fault: "client";
928
+ export declare class InvalidNextTokenException extends __BaseException {
929
+ readonly name: "InvalidNextTokenException";
930
+ readonly $fault: "client";
891
931
  Message: string | undefined;
932
+
933
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
892
934
  }
893
935
  export interface ListAccessesRequest {
894
936
 
@@ -1265,6 +1307,10 @@ export interface UpdateServerRequest {
1265
1307
 
1266
1308
  LoggingRole?: string;
1267
1309
 
1310
+ PostAuthenticationLoginBanner?: string;
1311
+
1312
+ PreAuthenticationLoginBanner?: string;
1313
+
1268
1314
  Protocols?: (Protocol | string)[];
1269
1315
 
1270
1316
  SecurityPolicyName?: string;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TransferClientConfig) => {
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: (body: any) => number | undefined;
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: TransferClientConfig) => {
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: (body: any) => number | undefined;
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: TransferClientConfig) => {
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: (body: any) => number | undefined;
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;
@@ -0,0 +1,2 @@
1
+ export * from "./waitForServerOffline";
2
+ export * from "./waitForServerOnline";
@@ -0,0 +1,7 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
2
+ import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
3
+ import { TransferClient } from "../TransferClient";
4
+
5
+ export declare const waitForServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
6
+
7
+ export declare const waitUntilServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
@@ -0,0 +1,7 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
2
+ import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
3
+ import { TransferClient } from "../TransferClient";
4
+
5
+ export declare const waitForServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
6
+
7
+ export declare const waitUntilServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
@@ -0,0 +1,2 @@
1
+ export * from "./waitForServerOffline";
2
+ export * from "./waitForServerOnline";
@@ -0,0 +1,14 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
2
+ import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
3
+ import { TransferClient } from "../TransferClient";
4
+ /**
5
+ *
6
+ * @deprecated Use waitUntilServerOffline instead. waitForServerOffline does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ *
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to DescribeServerCommand for polling.
13
+ */
14
+ export declare const waitUntilServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
@@ -0,0 +1,14 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
2
+ import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
3
+ import { TransferClient } from "../TransferClient";
4
+ /**
5
+ *
6
+ * @deprecated Use waitUntilServerOnline instead. waitForServerOnline does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ *
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to DescribeServerCommand for polling.
13
+ */
14
+ export declare const waitUntilServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transfer",
3
3
  "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
4
- "version": "3.51.0",
4
+ "version": "3.54.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",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,40 +18,41 @@
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.51.0",
22
- "@aws-sdk/config-resolver": "3.51.0",
23
- "@aws-sdk/credential-provider-node": "3.51.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.51.0",
31
- "@aws-sdk/middleware-serde": "3.50.0",
32
- "@aws-sdk/middleware-signing": "3.50.0",
33
- "@aws-sdk/middleware-stack": "3.50.0",
34
- "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.51.0",
36
- "@aws-sdk/node-http-handler": "3.50.0",
37
- "@aws-sdk/protocol-http": "3.50.0",
38
- "@aws-sdk/smithy-client": "3.50.0",
39
- "@aws-sdk/types": "3.50.0",
40
- "@aws-sdk/url-parser": "3.50.0",
41
- "@aws-sdk/util-base64-browser": "3.49.0",
42
- "@aws-sdk/util-base64-node": "3.49.0",
43
- "@aws-sdk/util-body-length-browser": "3.49.0",
44
- "@aws-sdk/util-body-length-node": "3.49.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
- "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.51.0",
49
- "@aws-sdk/util-utf8-browser": "3.49.0",
50
- "@aws-sdk/util-utf8-node": "3.49.0",
21
+ "@aws-sdk/client-sts": "3.54.0",
22
+ "@aws-sdk/config-resolver": "3.54.0",
23
+ "@aws-sdk/credential-provider-node": "3.54.0",
24
+ "@aws-sdk/fetch-http-handler": "3.54.0",
25
+ "@aws-sdk/hash-node": "3.54.0",
26
+ "@aws-sdk/invalid-dependency": "3.54.0",
27
+ "@aws-sdk/middleware-content-length": "3.54.0",
28
+ "@aws-sdk/middleware-host-header": "3.54.0",
29
+ "@aws-sdk/middleware-logger": "3.54.0",
30
+ "@aws-sdk/middleware-retry": "3.54.0",
31
+ "@aws-sdk/middleware-serde": "3.54.0",
32
+ "@aws-sdk/middleware-signing": "3.54.0",
33
+ "@aws-sdk/middleware-stack": "3.54.0",
34
+ "@aws-sdk/middleware-user-agent": "3.54.0",
35
+ "@aws-sdk/node-config-provider": "3.54.0",
36
+ "@aws-sdk/node-http-handler": "3.54.0",
37
+ "@aws-sdk/protocol-http": "3.54.0",
38
+ "@aws-sdk/smithy-client": "3.54.0",
39
+ "@aws-sdk/types": "3.54.0",
40
+ "@aws-sdk/url-parser": "3.54.0",
41
+ "@aws-sdk/util-base64-browser": "3.52.0",
42
+ "@aws-sdk/util-base64-node": "3.52.0",
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.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.0",
48
+ "@aws-sdk/util-user-agent-node": "3.54.0",
49
+ "@aws-sdk/util-utf8-browser": "3.52.0",
50
+ "@aws-sdk/util-utf8-node": "3.52.0",
51
+ "@aws-sdk/util-waiter": "3.54.0",
51
52
  "tslib": "^2.3.0"
52
53
  },
53
54
  "devDependencies": {
54
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
55
56
  "@tsconfig/recommended": "1.0.1",
56
57
  "@types/node": "^12.7.5",
57
58
  "concurrently": "7.0.0",