@aws-sdk/client-codestar-notifications 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.
@@ -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 { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "./commands/CreateNotificationRuleCommand";
10
10
  import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "./commands/DeleteNotificationRuleCommand";
11
11
  import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "./commands/DeleteTargetCommand";
@@ -41,7 +41,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
41
41
  * A function that can calculate the length of a request body.
42
42
  * @internal
43
43
  */
44
- bodyLengthChecker?: (body: any) => number | undefined;
44
+ bodyLengthChecker?: __BodyLengthCalculator;
45
45
  /**
46
46
  * A function that converts a stream into an array of bytes.
47
47
  * @internal
@@ -3,3 +3,4 @@ export * from "./CodestarNotificationsClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from CodestarNotifications service.
4
+ */
5
+ export declare class CodestarNotificationsServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,29 +1,42 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException";
2
3
  /**
3
4
  * <p>AWS CodeStar Notifications can't create the notification rule because you do not have sufficient
4
5
  * permissions.</p>
5
6
  */
6
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
7
- name: "AccessDeniedException";
8
- $fault: "client";
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
9
10
  Message?: string;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
15
  }
11
16
  /**
12
17
  * <p>AWS CodeStar Notifications can't complete the request because the resource is being modified by
13
18
  * another process. Wait a few minutes and try again.</p>
14
19
  */
15
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
16
- name: "ConcurrentModificationException";
17
- $fault: "client";
20
+ export declare class ConcurrentModificationException extends __BaseException {
21
+ readonly name: "ConcurrentModificationException";
22
+ readonly $fault: "client";
18
23
  Message?: string;
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
19
28
  }
20
29
  /**
21
30
  * <p>Some or all of the configuration is incomplete, missing, or not valid.</p>
22
31
  */
23
- export interface ConfigurationException extends __SmithyException, $MetadataBearer {
24
- name: "ConfigurationException";
25
- $fault: "client";
32
+ export declare class ConfigurationException extends __BaseException {
33
+ readonly name: "ConfigurationException";
34
+ readonly $fault: "client";
26
35
  Message?: string;
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<ConfigurationException, __BaseException>);
27
40
  }
28
41
  export declare enum DetailType {
29
42
  BASIC = "BASIC",
@@ -125,27 +138,39 @@ export declare namespace CreateNotificationRuleResult {
125
138
  * accounts, notification rules, notifications, resources, and targets. For more
126
139
  * information, see Limits.</p>
127
140
  */
128
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
129
- name: "LimitExceededException";
130
- $fault: "client";
141
+ export declare class LimitExceededException extends __BaseException {
142
+ readonly name: "LimitExceededException";
143
+ readonly $fault: "client";
131
144
  Message?: string;
145
+ /**
146
+ * @internal
147
+ */
148
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
132
149
  }
133
150
  /**
134
151
  * <p>A resource with the same name or ID already exists. Notification rule names must be
135
152
  * unique in your AWS account.</p>
136
153
  */
137
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
138
- name: "ResourceAlreadyExistsException";
139
- $fault: "client";
154
+ export declare class ResourceAlreadyExistsException extends __BaseException {
155
+ readonly name: "ResourceAlreadyExistsException";
156
+ readonly $fault: "client";
140
157
  Message?: string;
158
+ /**
159
+ * @internal
160
+ */
161
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
141
162
  }
142
163
  /**
143
164
  * <p>One or more parameter values are not valid.</p>
144
165
  */
145
- export interface ValidationException extends __SmithyException, $MetadataBearer {
146
- name: "ValidationException";
147
- $fault: "client";
166
+ export declare class ValidationException extends __BaseException {
167
+ readonly name: "ValidationException";
168
+ readonly $fault: "client";
148
169
  Message?: string;
170
+ /**
171
+ * @internal
172
+ */
173
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
149
174
  }
150
175
  export interface DeleteNotificationRuleRequest {
151
176
  /**
@@ -328,18 +353,26 @@ export declare namespace DescribeNotificationRuleResult {
328
353
  /**
329
354
  * <p>AWS CodeStar Notifications can't find a resource that matches the provided ARN. </p>
330
355
  */
331
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
332
- name: "ResourceNotFoundException";
333
- $fault: "client";
356
+ export declare class ResourceNotFoundException extends __BaseException {
357
+ readonly name: "ResourceNotFoundException";
358
+ readonly $fault: "client";
334
359
  Message?: string;
360
+ /**
361
+ * @internal
362
+ */
363
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
335
364
  }
336
365
  /**
337
366
  * <p>The value for the enumeration token used in the request to return the next batch of the results is not valid. </p>
338
367
  */
339
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
340
- name: "InvalidNextTokenException";
341
- $fault: "client";
368
+ export declare class InvalidNextTokenException extends __BaseException {
369
+ readonly name: "InvalidNextTokenException";
370
+ readonly $fault: "client";
342
371
  Message?: string;
372
+ /**
373
+ * @internal
374
+ */
375
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
343
376
  }
344
377
  export declare enum ListEventTypesFilterName {
345
378
  RESOURCE_TYPE = "RESOURCE_TYPE",
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfi
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: CodestarNotificationsClientConfi
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: CodestarNotificationsClientConfi
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 { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "./commands/CreateNotificationRuleCommand";
10
10
  import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "./commands/DeleteNotificationRuleCommand";
11
11
  import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "./commands/DeleteTargetCommand";
@@ -29,7 +29,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
29
29
 
30
30
  urlParser?: __UrlParser;
31
31
 
32
- bodyLengthChecker?: (body: any) => number | undefined;
32
+ bodyLengthChecker?: __BodyLengthCalculator;
33
33
 
34
34
  streamCollector?: __StreamCollector;
35
35
 
@@ -3,3 +3,4 @@ export * from "./CodestarNotificationsClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class CodestarNotificationsServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,21 +1,28 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException";
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 ConcurrentModificationException extends __SmithyException, $MetadataBearer {
10
- name: "ConcurrentModificationException";
11
- $fault: "client";
12
+ export declare class ConcurrentModificationException extends __BaseException {
13
+ readonly name: "ConcurrentModificationException";
14
+ readonly $fault: "client";
12
15
  Message?: string;
16
+
17
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
13
18
  }
14
19
 
15
- export interface ConfigurationException extends __SmithyException, $MetadataBearer {
16
- name: "ConfigurationException";
17
- $fault: "client";
20
+ export declare class ConfigurationException extends __BaseException {
21
+ readonly name: "ConfigurationException";
22
+ readonly $fault: "client";
18
23
  Message?: string;
24
+
25
+ constructor(opts: __ExceptionOptionType<ConfigurationException, __BaseException>);
19
26
  }
20
27
  export declare enum DetailType {
21
28
  BASIC = "BASIC",
@@ -69,22 +76,28 @@ export declare namespace CreateNotificationRuleResult {
69
76
  const filterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
70
77
  }
71
78
 
72
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
73
- name: "LimitExceededException";
74
- $fault: "client";
79
+ export declare class LimitExceededException extends __BaseException {
80
+ readonly name: "LimitExceededException";
81
+ readonly $fault: "client";
75
82
  Message?: string;
83
+
84
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
76
85
  }
77
86
 
78
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
79
- name: "ResourceAlreadyExistsException";
80
- $fault: "client";
87
+ export declare class ResourceAlreadyExistsException extends __BaseException {
88
+ readonly name: "ResourceAlreadyExistsException";
89
+ readonly $fault: "client";
81
90
  Message?: string;
91
+
92
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
82
93
  }
83
94
 
84
- export interface ValidationException extends __SmithyException, $MetadataBearer {
85
- name: "ValidationException";
86
- $fault: "client";
95
+ export declare class ValidationException extends __BaseException {
96
+ readonly name: "ValidationException";
97
+ readonly $fault: "client";
87
98
  Message?: string;
99
+
100
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
88
101
  }
89
102
  export interface DeleteNotificationRuleRequest {
90
103
 
@@ -192,16 +205,20 @@ export declare namespace DescribeNotificationRuleResult {
192
205
  const filterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
193
206
  }
194
207
 
195
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
196
- name: "ResourceNotFoundException";
197
- $fault: "client";
208
+ export declare class ResourceNotFoundException extends __BaseException {
209
+ readonly name: "ResourceNotFoundException";
210
+ readonly $fault: "client";
198
211
  Message?: string;
212
+
213
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
199
214
  }
200
215
 
201
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
202
- name: "InvalidNextTokenException";
203
- $fault: "client";
216
+ export declare class InvalidNextTokenException extends __BaseException {
217
+ readonly name: "InvalidNextTokenException";
218
+ readonly $fault: "client";
204
219
  Message?: string;
220
+
221
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
205
222
  }
206
223
  export declare enum ListEventTypesFilterName {
207
224
  RESOURCE_TYPE = "RESOURCE_TYPE",
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfi
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: CodestarNotificationsClientConfi
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: CodestarNotificationsClientConfi
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-codestar-notifications",
3
3
  "description": "AWS SDK for JavaScript Codestar Notifications 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,41 +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
51
  "tslib": "^2.3.0",
52
52
  "uuid": "^8.3.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "@types/node": "^12.7.5",
58
58
  "@types/uuid": "^8.3.0",