@aws-sdk/client-kafkaconnect 3.53.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 (31) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/KafkaConnect.js +15 -0
  3. package/dist-cjs/commands/DeleteCustomPluginCommand.js +36 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +27 -1
  6. package/dist-cjs/protocols/Aws_restJson1.js +100 -1
  7. package/dist-es/KafkaConnect.js +15 -0
  8. package/dist-es/commands/DeleteCustomPluginCommand.js +39 -0
  9. package/dist-es/commands/index.js +1 -0
  10. package/dist-es/models/models_0.js +20 -5
  11. package/dist-es/protocols/Aws_restJson1.js +129 -0
  12. package/dist-types/KafkaConnect.d.ts +10 -1
  13. package/dist-types/KafkaConnectClient.d.ts +5 -4
  14. package/dist-types/commands/DeleteCustomPluginCommand.d.ts +35 -0
  15. package/dist-types/commands/ListConnectorsCommand.d.ts +3 -1
  16. package/dist-types/commands/index.d.ts +1 -0
  17. package/dist-types/models/models_0.d.ts +179 -58
  18. package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
  19. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  20. package/dist-types/runtimeConfig.d.ts +1 -1
  21. package/dist-types/runtimeConfig.native.d.ts +1 -1
  22. package/dist-types/ts3.4/KafkaConnect.d.ts +5 -0
  23. package/dist-types/ts3.4/KafkaConnectClient.d.ts +5 -4
  24. package/dist-types/ts3.4/commands/DeleteCustomPluginCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +33 -0
  27. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  31. package/package.json +27 -27
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
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;
@@ -3,6 +3,7 @@ import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./com
3
3
  import { CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput } from "./commands/CreateCustomPluginCommand";
4
4
  import { CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput } from "./commands/CreateWorkerConfigurationCommand";
5
5
  import { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "./commands/DeleteConnectorCommand";
6
+ import { DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput } from "./commands/DeleteCustomPluginCommand";
6
7
  import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
7
8
  import { DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput } from "./commands/DescribeCustomPluginCommand";
8
9
  import { DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput } from "./commands/DescribeWorkerConfigurationCommand";
@@ -30,6 +31,10 @@ export declare class KafkaConnect extends KafkaConnectClient {
30
31
  deleteConnector(args: DeleteConnectorCommandInput, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
31
32
  deleteConnector(args: DeleteConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
32
33
 
34
+ deleteCustomPlugin(args: DeleteCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomPluginCommandOutput>;
35
+ deleteCustomPlugin(args: DeleteCustomPluginCommandInput, cb: (err: any, data?: DeleteCustomPluginCommandOutput) => void): void;
36
+ deleteCustomPlugin(args: DeleteCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomPluginCommandOutput) => void): void;
37
+
33
38
  describeConnector(args: DescribeConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorCommandOutput>;
34
39
  describeConnector(args: DescribeConnectorCommandInput, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
35
40
  describeConnector(args: DescribeConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
@@ -5,11 +5,12 @@ 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 { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand";
10
10
  import { CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput } from "./commands/CreateCustomPluginCommand";
11
11
  import { CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput } from "./commands/CreateWorkerConfigurationCommand";
12
12
  import { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "./commands/DeleteConnectorCommand";
13
+ import { DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput } from "./commands/DeleteCustomPluginCommand";
13
14
  import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
14
15
  import { DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput } from "./commands/DescribeCustomPluginCommand";
15
16
  import { DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput } from "./commands/DescribeWorkerConfigurationCommand";
@@ -17,8 +18,8 @@ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./comma
17
18
  import { ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput } from "./commands/ListCustomPluginsCommand";
18
19
  import { ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput } from "./commands/ListWorkerConfigurationsCommand";
19
20
  import { UpdateConnectorCommandInput, UpdateConnectorCommandOutput } from "./commands/UpdateConnectorCommand";
20
- export declare type ServiceInputTypes = CreateConnectorCommandInput | CreateCustomPluginCommandInput | CreateWorkerConfigurationCommandInput | DeleteConnectorCommandInput | DescribeConnectorCommandInput | DescribeCustomPluginCommandInput | DescribeWorkerConfigurationCommandInput | ListConnectorsCommandInput | ListCustomPluginsCommandInput | ListWorkerConfigurationsCommandInput | UpdateConnectorCommandInput;
21
- export declare type ServiceOutputTypes = CreateConnectorCommandOutput | CreateCustomPluginCommandOutput | CreateWorkerConfigurationCommandOutput | DeleteConnectorCommandOutput | DescribeConnectorCommandOutput | DescribeCustomPluginCommandOutput | DescribeWorkerConfigurationCommandOutput | ListConnectorsCommandOutput | ListCustomPluginsCommandOutput | ListWorkerConfigurationsCommandOutput | UpdateConnectorCommandOutput;
21
+ export declare type ServiceInputTypes = CreateConnectorCommandInput | CreateCustomPluginCommandInput | CreateWorkerConfigurationCommandInput | DeleteConnectorCommandInput | DeleteCustomPluginCommandInput | DescribeConnectorCommandInput | DescribeCustomPluginCommandInput | DescribeWorkerConfigurationCommandInput | ListConnectorsCommandInput | ListCustomPluginsCommandInput | ListWorkerConfigurationsCommandInput | UpdateConnectorCommandInput;
22
+ export declare type ServiceOutputTypes = CreateConnectorCommandOutput | CreateCustomPluginCommandOutput | CreateWorkerConfigurationCommandOutput | DeleteConnectorCommandOutput | DeleteCustomPluginCommandOutput | DescribeConnectorCommandOutput | DescribeCustomPluginCommandOutput | DescribeWorkerConfigurationCommandOutput | ListConnectorsCommandOutput | ListCustomPluginsCommandOutput | ListWorkerConfigurationsCommandOutput | UpdateConnectorCommandOutput;
22
23
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
23
24
 
24
25
  requestHandler?: __HttpHandler;
@@ -27,7 +28,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
27
28
 
28
29
  urlParser?: __UrlParser;
29
30
 
30
- bodyLengthChecker?: (body: any) => number | undefined;
31
+ bodyLengthChecker?: __BodyLengthCalculator;
31
32
 
32
33
  streamCollector?: __StreamCollector;
33
34
 
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { DeleteCustomPluginRequest, DeleteCustomPluginResponse } from "../models/models_0";
5
+ export interface DeleteCustomPluginCommandInput extends DeleteCustomPluginRequest {
6
+ }
7
+ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteCustomPluginCommand extends $Command<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: DeleteCustomPluginCommandInput;
12
+ constructor(input: DeleteCustomPluginCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -2,6 +2,7 @@ export * from "./CreateConnectorCommand";
2
2
  export * from "./CreateCustomPluginCommand";
3
3
  export * from "./CreateWorkerConfigurationCommand";
4
4
  export * from "./DeleteConnectorCommand";
5
+ export * from "./DeleteCustomPluginCommand";
5
6
  export * from "./DescribeConnectorCommand";
6
7
  export * from "./DescribeCustomPluginCommand";
7
8
  export * from "./DescribeWorkerConfigurationCommand";
@@ -806,6 +806,24 @@ export declare namespace DeleteConnectorResponse {
806
806
 
807
807
  const filterSensitiveLog: (obj: DeleteConnectorResponse) => any;
808
808
  }
809
+ export interface DeleteCustomPluginRequest {
810
+
811
+ customPluginArn: string | undefined;
812
+ }
813
+ export declare namespace DeleteCustomPluginRequest {
814
+
815
+ const filterSensitiveLog: (obj: DeleteCustomPluginRequest) => any;
816
+ }
817
+ export interface DeleteCustomPluginResponse {
818
+
819
+ customPluginArn?: string;
820
+
821
+ customPluginState?: CustomPluginState | string;
822
+ }
823
+ export declare namespace DeleteCustomPluginResponse {
824
+
825
+ const filterSensitiveLog: (obj: DeleteCustomPluginResponse) => any;
826
+ }
809
827
  export interface DescribeConnectorRequest {
810
828
 
811
829
  connectorArn: string | undefined;
@@ -814,6 +832,17 @@ export declare namespace DescribeConnectorRequest {
814
832
 
815
833
  const filterSensitiveLog: (obj: DescribeConnectorRequest) => any;
816
834
  }
835
+
836
+ export interface StateDescription {
837
+
838
+ code?: string;
839
+
840
+ message?: string;
841
+ }
842
+ export declare namespace StateDescription {
843
+
844
+ const filterSensitiveLog: (obj: StateDescription) => any;
845
+ }
817
846
  export interface DescribeConnectorResponse {
818
847
 
819
848
  capacity?: CapacityDescription;
@@ -849,6 +878,8 @@ export interface DescribeConnectorResponse {
849
878
  serviceExecutionRoleArn?: string;
850
879
 
851
880
  workerConfiguration?: WorkerConfigurationDescription;
881
+
882
+ stateDescription?: StateDescription;
852
883
  }
853
884
  export declare namespace DescribeConnectorResponse {
854
885
 
@@ -875,6 +906,8 @@ export interface DescribeCustomPluginResponse {
875
906
  latestRevision?: CustomPluginRevisionSummary;
876
907
 
877
908
  name?: string;
909
+
910
+ stateDescription?: StateDescription;
878
911
  }
879
912
  export declare namespace DescribeCustomPluginResponse {
880
913
 
@@ -4,6 +4,7 @@ import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "../co
4
4
  import { CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput } from "../commands/CreateCustomPluginCommand";
5
5
  import { CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput } from "../commands/CreateWorkerConfigurationCommand";
6
6
  import { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "../commands/DeleteConnectorCommand";
7
+ import { DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput } from "../commands/DeleteCustomPluginCommand";
7
8
  import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "../commands/DescribeConnectorCommand";
8
9
  import { DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput } from "../commands/DescribeCustomPluginCommand";
9
10
  import { DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput } from "../commands/DescribeWorkerConfigurationCommand";
@@ -15,6 +16,7 @@ export declare const serializeAws_restJson1CreateConnectorCommand: (input: Creat
15
16
  export declare const serializeAws_restJson1CreateCustomPluginCommand: (input: CreateCustomPluginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
17
  export declare const serializeAws_restJson1CreateWorkerConfigurationCommand: (input: CreateWorkerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
18
  export declare const serializeAws_restJson1DeleteConnectorCommand: (input: DeleteConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1DeleteCustomPluginCommand: (input: DeleteCustomPluginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
20
  export declare const serializeAws_restJson1DescribeConnectorCommand: (input: DescribeConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
21
  export declare const serializeAws_restJson1DescribeCustomPluginCommand: (input: DescribeCustomPluginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
22
  export declare const serializeAws_restJson1DescribeWorkerConfigurationCommand: (input: DescribeWorkerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -26,6 +28,7 @@ export declare const deserializeAws_restJson1CreateConnectorCommand: (output: __
26
28
  export declare const deserializeAws_restJson1CreateCustomPluginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCustomPluginCommandOutput>;
27
29
  export declare const deserializeAws_restJson1CreateWorkerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkerConfigurationCommandOutput>;
28
30
  export declare const deserializeAws_restJson1DeleteConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectorCommandOutput>;
31
+ export declare const deserializeAws_restJson1DeleteCustomPluginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCustomPluginCommandOutput>;
29
32
  export declare const deserializeAws_restJson1DescribeConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorCommandOutput>;
30
33
  export declare const deserializeAws_restJson1DescribeCustomPluginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCustomPluginCommandOutput>;
31
34
  export declare const deserializeAws_restJson1DescribeWorkerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeWorkerConfigurationCommandOutput>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
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: KafkaConnectClientConfig) => {
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: KafkaConnectClientConfig) => {
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kafkaconnect",
3
3
  "description": "AWS SDK for JavaScript Kafkaconnect Client for Node.js, Browser and React Native",
4
- "version": "3.53.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",
@@ -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.53.0",
22
- "@aws-sdk/config-resolver": "3.53.0",
23
- "@aws-sdk/credential-provider-node": "3.53.0",
24
- "@aws-sdk/fetch-http-handler": "3.53.0",
25
- "@aws-sdk/hash-node": "3.53.0",
26
- "@aws-sdk/invalid-dependency": "3.53.0",
27
- "@aws-sdk/middleware-content-length": "3.53.0",
28
- "@aws-sdk/middleware-host-header": "3.53.0",
29
- "@aws-sdk/middleware-logger": "3.53.0",
30
- "@aws-sdk/middleware-retry": "3.53.0",
31
- "@aws-sdk/middleware-serde": "3.53.0",
32
- "@aws-sdk/middleware-signing": "3.53.0",
33
- "@aws-sdk/middleware-stack": "3.53.0",
34
- "@aws-sdk/middleware-user-agent": "3.53.0",
35
- "@aws-sdk/node-config-provider": "3.53.0",
36
- "@aws-sdk/node-http-handler": "3.53.0",
37
- "@aws-sdk/protocol-http": "3.53.0",
38
- "@aws-sdk/smithy-client": "3.53.0",
39
- "@aws-sdk/types": "3.53.0",
40
- "@aws-sdk/url-parser": "3.53.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
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.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
- "@aws-sdk/util-user-agent-browser": "3.53.0",
48
- "@aws-sdk/util-user-agent-node": "3.53.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
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"