@aws-sdk/client-controltower 3.170.0 → 3.178.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-controltower
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-controltower
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-controltower
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -16,7 +16,6 @@ import {
16
16
  ListEnabledControlsCommandOutput,
17
17
  } from "./commands/ListEnabledControlsCommand";
18
18
  import { ControlTowerClient } from "./ControlTowerClient";
19
-
20
19
  export declare class ControlTower extends ControlTowerClient {
21
20
  disableControl(
22
21
  args: DisableControlCommandInput,
@@ -31,7 +30,6 @@ export declare class ControlTower extends ControlTowerClient {
31
30
  options: __HttpHandlerOptions,
32
31
  cb: (err: any, data?: DisableControlCommandOutput) => void
33
32
  ): void;
34
-
35
33
  enableControl(
36
34
  args: EnableControlCommandInput,
37
35
  options?: __HttpHandlerOptions
@@ -45,7 +43,6 @@ export declare class ControlTower extends ControlTowerClient {
45
43
  options: __HttpHandlerOptions,
46
44
  cb: (err: any, data?: EnableControlCommandOutput) => void
47
45
  ): void;
48
-
49
46
  getControlOperation(
50
47
  args: GetControlOperationCommandInput,
51
48
  options?: __HttpHandlerOptions
@@ -59,7 +56,6 @@ export declare class ControlTower extends ControlTowerClient {
59
56
  options: __HttpHandlerOptions,
60
57
  cb: (err: any, data?: GetControlOperationCommandOutput) => void
61
58
  ): void;
62
-
63
59
  listEnabledControls(
64
60
  args: ListEnabledControlsCommandInput,
65
61
  options?: __HttpHandlerOptions
@@ -71,47 +71,26 @@ export declare type ServiceOutputTypes =
71
71
  export interface ClientDefaults
72
72
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
73
73
  requestHandler?: __HttpHandler;
74
-
75
74
  sha256?: __HashConstructor;
76
-
77
75
  urlParser?: __UrlParser;
78
-
79
76
  bodyLengthChecker?: __BodyLengthCalculator;
80
-
81
77
  streamCollector?: __StreamCollector;
82
-
83
78
  base64Decoder?: __Decoder;
84
-
85
79
  base64Encoder?: __Encoder;
86
-
87
80
  utf8Decoder?: __Decoder;
88
-
89
81
  utf8Encoder?: __Encoder;
90
-
91
82
  runtime?: string;
92
-
93
83
  disableHostPrefix?: boolean;
94
-
95
84
  maxAttempts?: number | __Provider<number>;
96
-
97
85
  retryMode?: string | __Provider<string>;
98
-
99
86
  logger?: __Logger;
100
-
101
87
  useDualstackEndpoint?: boolean | __Provider<boolean>;
102
-
103
88
  useFipsEndpoint?: boolean | __Provider<boolean>;
104
-
105
89
  serviceId?: string;
106
-
107
90
  region?: string | __Provider<string>;
108
-
109
91
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
110
-
111
92
  regionInfoProvider?: RegionInfoProvider;
112
-
113
93
  defaultUserAgentProvider?: Provider<__UserAgent>;
114
-
115
94
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
116
95
  }
117
96
  declare type ControlTowerClientConfigType = Partial<
@@ -124,7 +103,6 @@ declare type ControlTowerClientConfigType = Partial<
124
103
  HostHeaderInputConfig &
125
104
  AwsAuthInputConfig &
126
105
  UserAgentInputConfig;
127
-
128
106
  export interface ControlTowerClientConfig
129
107
  extends ControlTowerClientConfigType {}
130
108
  declare type ControlTowerClientResolvedConfigType =
@@ -136,10 +114,8 @@ declare type ControlTowerClientResolvedConfigType =
136
114
  HostHeaderResolvedConfig &
137
115
  AwsAuthResolvedConfig &
138
116
  UserAgentResolvedConfig;
139
-
140
117
  export interface ControlTowerClientResolvedConfig
141
118
  extends ControlTowerClientResolvedConfigType {}
142
-
143
119
  export declare class ControlTowerClient extends __Client<
144
120
  __HttpHandlerOptions,
145
121
  ServiceInputTypes,
@@ -148,7 +124,6 @@ export declare class ControlTowerClient extends __Client<
148
124
  > {
149
125
  readonly config: ControlTowerClientResolvedConfig;
150
126
  constructor(configuration: ControlTowerClientConfig);
151
-
152
127
  destroy(): void;
153
128
  }
154
129
  export {};
@@ -15,7 +15,6 @@ export interface DisableControlCommandInput extends DisableControlInput {}
15
15
  export interface DisableControlCommandOutput
16
16
  extends DisableControlOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class DisableControlCommand extends $Command<
20
19
  DisableControlCommandInput,
21
20
  DisableControlCommandOutput,
@@ -23,7 +22,6 @@ export declare class DisableControlCommand extends $Command<
23
22
  > {
24
23
  readonly input: DisableControlCommandInput;
25
24
  constructor(input: DisableControlCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ControlTowerClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface EnableControlCommandInput extends EnableControlInput {}
15
15
  export interface EnableControlCommandOutput
16
16
  extends EnableControlOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class EnableControlCommand extends $Command<
20
19
  EnableControlCommandInput,
21
20
  EnableControlCommandOutput,
@@ -23,7 +22,6 @@ export declare class EnableControlCommand extends $Command<
23
22
  > {
24
23
  readonly input: EnableControlCommandInput;
25
24
  constructor(input: EnableControlCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ControlTowerClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetControlOperationCommandInput
19
19
  export interface GetControlOperationCommandOutput
20
20
  extends GetControlOperationOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetControlOperationCommand extends $Command<
24
23
  GetControlOperationCommandInput,
25
24
  GetControlOperationCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetControlOperationCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetControlOperationCommandInput;
29
28
  constructor(input: GetControlOperationCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ControlTowerClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListEnabledControlsCommandInput
19
19
  export interface ListEnabledControlsCommandOutput
20
20
  extends ListEnabledControlsOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListEnabledControlsCommand extends $Command<
24
23
  ListEnabledControlsCommandInput,
25
24
  ListEnabledControlsCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListEnabledControlsCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListEnabledControlsCommandInput;
29
28
  constructor(input: ListEnabledControlsCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ControlTowerClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class ControlTowerServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,87 +1,68 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException";
3
-
4
3
  export declare class AccessDeniedException extends __BaseException {
5
4
  readonly name: "AccessDeniedException";
6
5
  readonly $fault: "client";
7
-
8
6
  constructor(
9
7
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
8
  );
11
9
  }
12
-
13
10
  export declare class ConflictException extends __BaseException {
14
11
  readonly name: "ConflictException";
15
12
  readonly $fault: "client";
16
-
17
13
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
18
14
  }
19
15
  export interface DisableControlInput {
20
16
  controlIdentifier: string | undefined;
21
-
22
17
  targetIdentifier: string | undefined;
23
18
  }
24
19
  export interface DisableControlOutput {
25
20
  operationIdentifier: string | undefined;
26
21
  }
27
-
28
22
  export declare class InternalServerException extends __BaseException {
29
23
  readonly name: "InternalServerException";
30
24
  readonly $fault: "server";
31
25
  $retryable: {};
32
-
33
26
  constructor(
34
27
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
35
28
  );
36
29
  }
37
-
38
30
  export declare class ResourceNotFoundException extends __BaseException {
39
31
  readonly name: "ResourceNotFoundException";
40
32
  readonly $fault: "client";
41
-
42
33
  constructor(
43
34
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
44
35
  );
45
36
  }
46
-
47
37
  export declare class ServiceQuotaExceededException extends __BaseException {
48
38
  readonly name: "ServiceQuotaExceededException";
49
39
  readonly $fault: "client";
50
-
51
40
  constructor(
52
41
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
53
42
  );
54
43
  }
55
-
56
44
  export declare class ThrottlingException extends __BaseException {
57
45
  readonly name: "ThrottlingException";
58
46
  readonly $fault: "client";
59
47
  $retryable: {
60
48
  throttling: boolean;
61
49
  };
62
-
63
50
  serviceCode?: string;
64
-
65
51
  quotaCode?: string;
66
-
67
52
  retryAfterSeconds?: number;
68
-
69
53
  constructor(
70
54
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
71
55
  );
72
56
  }
73
-
74
57
  export declare class ValidationException extends __BaseException {
75
58
  readonly name: "ValidationException";
76
59
  readonly $fault: "client";
77
-
78
60
  constructor(
79
61
  opts: __ExceptionOptionType<ValidationException, __BaseException>
80
62
  );
81
63
  }
82
64
  export interface EnableControlInput {
83
65
  controlIdentifier: string | undefined;
84
-
85
66
  targetIdentifier: string | undefined;
86
67
  }
87
68
  export interface EnableControlOutput {
@@ -99,16 +80,11 @@ export declare enum ControlOperationStatus {
99
80
  IN_PROGRESS = "IN_PROGRESS",
100
81
  SUCCEEDED = "SUCCEEDED",
101
82
  }
102
-
103
83
  export interface ControlOperation {
104
84
  operationType?: ControlOperationType | string;
105
-
106
85
  startTime?: Date;
107
-
108
86
  endTime?: Date;
109
-
110
87
  status?: ControlOperationStatus | string;
111
-
112
88
  statusMessage?: string;
113
89
  }
114
90
  export interface GetControlOperationOutput {
@@ -116,57 +92,43 @@ export interface GetControlOperationOutput {
116
92
  }
117
93
  export interface ListEnabledControlsInput {
118
94
  targetIdentifier: string | undefined;
119
-
120
95
  nextToken?: string;
121
-
122
96
  maxResults?: number;
123
97
  }
124
-
125
98
  export interface EnabledControlSummary {
126
99
  controlIdentifier?: string;
127
100
  }
128
101
  export interface ListEnabledControlsOutput {
129
102
  enabledControls: EnabledControlSummary[] | undefined;
130
-
131
103
  nextToken?: string;
132
104
  }
133
-
134
105
  export declare const DisableControlInputFilterSensitiveLog: (
135
106
  obj: DisableControlInput
136
107
  ) => any;
137
-
138
108
  export declare const DisableControlOutputFilterSensitiveLog: (
139
109
  obj: DisableControlOutput
140
110
  ) => any;
141
-
142
111
  export declare const EnableControlInputFilterSensitiveLog: (
143
112
  obj: EnableControlInput
144
113
  ) => any;
145
-
146
114
  export declare const EnableControlOutputFilterSensitiveLog: (
147
115
  obj: EnableControlOutput
148
116
  ) => any;
149
-
150
117
  export declare const GetControlOperationInputFilterSensitiveLog: (
151
118
  obj: GetControlOperationInput
152
119
  ) => any;
153
-
154
120
  export declare const ControlOperationFilterSensitiveLog: (
155
121
  obj: ControlOperation
156
122
  ) => any;
157
-
158
123
  export declare const GetControlOperationOutputFilterSensitiveLog: (
159
124
  obj: GetControlOperationOutput
160
125
  ) => any;
161
-
162
126
  export declare const ListEnabledControlsInputFilterSensitiveLog: (
163
127
  obj: ListEnabledControlsInput
164
128
  ) => any;
165
-
166
129
  export declare const EnabledControlSummaryFilterSensitiveLog: (
167
130
  obj: EnabledControlSummary
168
131
  ) => any;
169
-
170
132
  export declare const ListEnabledControlsOutputFilterSensitiveLog: (
171
133
  obj: ListEnabledControlsOutput
172
134
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { ControlTowerClientConfig } from "./ControlTowerClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { ControlTowerClientConfig } from "./ControlTowerClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,5 +1,4 @@
1
1
  import { ControlTowerClientConfig } from "./ControlTowerClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
52
51
  | undefined;
53
52
  signer?:
54
53
  | import("@aws-sdk/types").RequestSigner
55
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | ((
55
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
56
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
56
57
  | undefined;
57
58
  signingEscapePath?: boolean | undefined;
58
59
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { ControlTowerClientConfig } from "./ControlTowerClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-controltower",
3
3
  "description": "AWS SDK for JavaScript Controltower Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.178.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",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.178.0",
23
+ "@aws-sdk/config-resolver": "3.178.0",
24
+ "@aws-sdk/credential-provider-node": "3.178.0",
25
+ "@aws-sdk/fetch-http-handler": "3.178.0",
26
+ "@aws-sdk/hash-node": "3.178.0",
27
+ "@aws-sdk/invalid-dependency": "3.178.0",
28
+ "@aws-sdk/middleware-content-length": "3.178.0",
29
+ "@aws-sdk/middleware-host-header": "3.178.0",
30
+ "@aws-sdk/middleware-logger": "3.178.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
32
+ "@aws-sdk/middleware-retry": "3.178.0",
33
+ "@aws-sdk/middleware-serde": "3.178.0",
34
+ "@aws-sdk/middleware-signing": "3.178.0",
35
+ "@aws-sdk/middleware-stack": "3.178.0",
36
+ "@aws-sdk/middleware-user-agent": "3.178.0",
37
+ "@aws-sdk/node-config-provider": "3.178.0",
38
+ "@aws-sdk/node-http-handler": "3.178.0",
39
+ "@aws-sdk/protocol-http": "3.178.0",
40
+ "@aws-sdk/smithy-client": "3.178.0",
41
+ "@aws-sdk/types": "3.178.0",
42
+ "@aws-sdk/url-parser": "3.178.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.178.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
50
+ "@aws-sdk/util-user-agent-node": "3.178.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"