@aws-sdk/client-workspaces 3.52.0 → 3.53.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.
@@ -3,3 +3,4 @@ export * from "./WorkSpacesClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { WorkSpacesServiceException } from "./models/WorkSpacesServiceException";
@@ -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 WorkSpaces service.
4
+ */
5
+ export declare class WorkSpacesServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,11 +1,15 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException";
2
3
  /**
3
4
  * <p>The user is not authorized to access a resource.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
8
- message?: string;
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
+ /**
10
+ * @internal
11
+ */
12
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
13
  }
10
14
  export declare enum AccessPropertyValue {
11
15
  ALLOW = "ALLOW",
@@ -94,52 +98,61 @@ export declare namespace AssociateConnectionAliasResult {
94
98
  /**
95
99
  * <p>One or more parameter values are not valid.</p>
96
100
  */
97
- export interface InvalidParameterValuesException extends __SmithyException, $MetadataBearer {
98
- name: "InvalidParameterValuesException";
99
- $fault: "client";
101
+ export declare class InvalidParameterValuesException extends __BaseException {
102
+ readonly name: "InvalidParameterValuesException";
103
+ readonly $fault: "client";
100
104
  /**
101
- * <p>The exception error message.</p>
105
+ * @internal
102
106
  */
103
- message?: string;
107
+ constructor(opts: __ExceptionOptionType<InvalidParameterValuesException, __BaseException>);
104
108
  }
105
109
  /**
106
110
  * <p>The state of the resource is not valid for this operation.</p>
107
111
  */
108
- export interface InvalidResourceStateException extends __SmithyException, $MetadataBearer {
109
- name: "InvalidResourceStateException";
110
- $fault: "client";
111
- message?: string;
112
+ export declare class InvalidResourceStateException extends __BaseException {
113
+ readonly name: "InvalidResourceStateException";
114
+ readonly $fault: "client";
115
+ /**
116
+ * @internal
117
+ */
118
+ constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
112
119
  }
113
120
  /**
114
121
  * <p>This operation is not supported.</p>
115
122
  */
116
- export interface OperationNotSupportedException extends __SmithyException, $MetadataBearer {
117
- name: "OperationNotSupportedException";
118
- $fault: "client";
119
- message?: string;
123
+ export declare class OperationNotSupportedException extends __BaseException {
124
+ readonly name: "OperationNotSupportedException";
125
+ readonly $fault: "client";
126
+ /**
127
+ * @internal
128
+ */
129
+ constructor(opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>);
120
130
  }
121
131
  /**
122
132
  * <p>The resource is associated with a directory.</p>
123
133
  */
124
- export interface ResourceAssociatedException extends __SmithyException, $MetadataBearer {
125
- name: "ResourceAssociatedException";
126
- $fault: "client";
127
- message?: string;
134
+ export declare class ResourceAssociatedException extends __BaseException {
135
+ readonly name: "ResourceAssociatedException";
136
+ readonly $fault: "client";
137
+ /**
138
+ * @internal
139
+ */
140
+ constructor(opts: __ExceptionOptionType<ResourceAssociatedException, __BaseException>);
128
141
  }
129
142
  /**
130
143
  * <p>The resource could not be found.</p>
131
144
  */
132
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
133
- name: "ResourceNotFoundException";
134
- $fault: "client";
135
- /**
136
- * <p>The resource could not be found.</p>
137
- */
138
- message?: string;
145
+ export declare class ResourceNotFoundException extends __BaseException {
146
+ readonly name: "ResourceNotFoundException";
147
+ readonly $fault: "client";
139
148
  /**
140
149
  * <p>The ID of the resource that could not be found.</p>
141
150
  */
142
151
  ResourceId?: string;
152
+ /**
153
+ * @internal
154
+ */
155
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
143
156
  }
144
157
  export interface AssociateIpGroupsRequest {
145
158
  /**
@@ -168,13 +181,13 @@ export declare namespace AssociateIpGroupsResult {
168
181
  /**
169
182
  * <p>Your resource limits have been exceeded.</p>
170
183
  */
171
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
172
- name: "ResourceLimitExceededException";
173
- $fault: "client";
184
+ export declare class ResourceLimitExceededException extends __BaseException {
185
+ readonly name: "ResourceLimitExceededException";
186
+ readonly $fault: "client";
174
187
  /**
175
- * <p>The exception error message.</p>
188
+ * @internal
176
189
  */
177
- message?: string;
190
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
178
191
  }
179
192
  export declare enum AssociationStatus {
180
193
  ASSOCIATED_WITH_OWNER_ACCOUNT = "ASSOCIATED_WITH_OWNER_ACCOUNT",
@@ -557,25 +570,28 @@ export declare namespace CopyWorkspaceImageResult {
557
570
  /**
558
571
  * <p>The specified resource already exists.</p>
559
572
  */
560
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
561
- name: "ResourceAlreadyExistsException";
562
- $fault: "client";
563
- message?: string;
573
+ export declare class ResourceAlreadyExistsException extends __BaseException {
574
+ readonly name: "ResourceAlreadyExistsException";
575
+ readonly $fault: "client";
576
+ /**
577
+ * @internal
578
+ */
579
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
564
580
  }
565
581
  /**
566
582
  * <p>The specified resource is not available.</p>
567
583
  */
568
- export interface ResourceUnavailableException extends __SmithyException, $MetadataBearer {
569
- name: "ResourceUnavailableException";
570
- $fault: "client";
571
- /**
572
- * <p>The exception error message.</p>
573
- */
574
- message?: string;
584
+ export declare class ResourceUnavailableException extends __BaseException {
585
+ readonly name: "ResourceUnavailableException";
586
+ readonly $fault: "client";
575
587
  /**
576
588
  * <p>The identifier of the resource that is not available.</p>
577
589
  */
578
590
  ResourceId?: string;
591
+ /**
592
+ * @internal
593
+ */
594
+ constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
579
595
  }
580
596
  export interface CreateConnectClientAddInRequest {
581
597
  /**
@@ -612,10 +628,13 @@ export declare namespace CreateConnectClientAddInResult {
612
628
  /**
613
629
  * <p>The resource could not be created.</p>
614
630
  */
615
- export interface ResourceCreationFailedException extends __SmithyException, $MetadataBearer {
616
- name: "ResourceCreationFailedException";
617
- $fault: "client";
618
- message?: string;
631
+ export declare class ResourceCreationFailedException extends __BaseException {
632
+ readonly name: "ResourceCreationFailedException";
633
+ readonly $fault: "client";
634
+ /**
635
+ * @internal
636
+ */
637
+ constructor(opts: __ExceptionOptionType<ResourceCreationFailedException, __BaseException>);
619
638
  }
620
639
  export interface CreateConnectionAliasRequest {
621
640
  /**
@@ -2412,10 +2431,13 @@ export declare namespace MigrateWorkspaceResult {
2412
2431
  /**
2413
2432
  * <p>The properties of this WorkSpace are currently being modified. Try again in a moment.</p>
2414
2433
  */
2415
- export interface OperationInProgressException extends __SmithyException, $MetadataBearer {
2416
- name: "OperationInProgressException";
2417
- $fault: "client";
2418
- message?: string;
2434
+ export declare class OperationInProgressException extends __BaseException {
2435
+ readonly name: "OperationInProgressException";
2436
+ readonly $fault: "client";
2437
+ /**
2438
+ * @internal
2439
+ */
2440
+ constructor(opts: __ExceptionOptionType<OperationInProgressException, __BaseException>);
2419
2441
  }
2420
2442
  export interface ModifyAccountRequest {
2421
2443
  /**
@@ -2639,10 +2661,13 @@ export declare namespace ModifyWorkspacePropertiesResult {
2639
2661
  * <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/required-service-components.html">Required
2640
2662
  * Configuration and Service Components for WorkSpaces </a>.</p>
2641
2663
  */
2642
- export interface UnsupportedWorkspaceConfigurationException extends __SmithyException, $MetadataBearer {
2643
- name: "UnsupportedWorkspaceConfigurationException";
2644
- $fault: "client";
2645
- message?: string;
2664
+ export declare class UnsupportedWorkspaceConfigurationException extends __BaseException {
2665
+ readonly name: "UnsupportedWorkspaceConfigurationException";
2666
+ readonly $fault: "client";
2667
+ /**
2668
+ * @internal
2669
+ */
2670
+ constructor(opts: __ExceptionOptionType<UnsupportedWorkspaceConfigurationException, __BaseException>);
2646
2671
  }
2647
2672
  export declare enum TargetWorkspaceState {
2648
2673
  ADMIN_MAINTENANCE = "ADMIN_MAINTENANCE",
@@ -2808,19 +2833,25 @@ export declare namespace RegisterWorkspaceDirectoryResult {
2808
2833
  * <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/amazon-workspaces-vpc.html">
2809
2834
  * Configure a VPC for Amazon WorkSpaces</a>.</p>
2810
2835
  */
2811
- export interface UnsupportedNetworkConfigurationException extends __SmithyException, $MetadataBearer {
2812
- name: "UnsupportedNetworkConfigurationException";
2813
- $fault: "client";
2814
- message?: string;
2836
+ export declare class UnsupportedNetworkConfigurationException extends __BaseException {
2837
+ readonly name: "UnsupportedNetworkConfigurationException";
2838
+ readonly $fault: "client";
2839
+ /**
2840
+ * @internal
2841
+ */
2842
+ constructor(opts: __ExceptionOptionType<UnsupportedNetworkConfigurationException, __BaseException>);
2815
2843
  }
2816
2844
  /**
2817
2845
  * <p>The workspaces_DefaultRole role could not be found. If this is the first time you are registering a directory, you
2818
2846
  * will need to create the workspaces_DefaultRole role before you can register a directory. For more information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/workspaces-access-control.html#create-default-role">Creating the workspaces_DefaultRole Role</a>.</p>
2819
2847
  */
2820
- export interface WorkspacesDefaultRoleNotFoundException extends __SmithyException, $MetadataBearer {
2821
- name: "WorkspacesDefaultRoleNotFoundException";
2822
- $fault: "client";
2823
- message?: string;
2848
+ export declare class WorkspacesDefaultRoleNotFoundException extends __BaseException {
2849
+ readonly name: "WorkspacesDefaultRoleNotFoundException";
2850
+ readonly $fault: "client";
2851
+ /**
2852
+ * @internal
2853
+ */
2854
+ constructor(opts: __ExceptionOptionType<WorkspacesDefaultRoleNotFoundException, __BaseException>);
2824
2855
  }
2825
2856
  export interface RestoreWorkspaceRequest {
2826
2857
  /**
@@ -3,3 +3,4 @@ export * from "./WorkSpacesClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { WorkSpacesServiceException } from "./models/WorkSpacesServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class WorkSpacesServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,9 +1,11 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
6
- message?: string;
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
7
9
  }
8
10
  export declare enum AccessPropertyValue {
9
11
  ALLOW = "ALLOW",
@@ -60,38 +62,41 @@ export declare namespace AssociateConnectionAliasResult {
60
62
  const filterSensitiveLog: (obj: AssociateConnectionAliasResult) => any;
61
63
  }
62
64
 
63
- export interface InvalidParameterValuesException extends __SmithyException, $MetadataBearer {
64
- name: "InvalidParameterValuesException";
65
- $fault: "client";
65
+ export declare class InvalidParameterValuesException extends __BaseException {
66
+ readonly name: "InvalidParameterValuesException";
67
+ readonly $fault: "client";
66
68
 
67
- message?: string;
69
+ constructor(opts: __ExceptionOptionType<InvalidParameterValuesException, __BaseException>);
68
70
  }
69
71
 
70
- export interface InvalidResourceStateException extends __SmithyException, $MetadataBearer {
71
- name: "InvalidResourceStateException";
72
- $fault: "client";
73
- message?: string;
72
+ export declare class InvalidResourceStateException extends __BaseException {
73
+ readonly name: "InvalidResourceStateException";
74
+ readonly $fault: "client";
75
+
76
+ constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
74
77
  }
75
78
 
76
- export interface OperationNotSupportedException extends __SmithyException, $MetadataBearer {
77
- name: "OperationNotSupportedException";
78
- $fault: "client";
79
- message?: string;
79
+ export declare class OperationNotSupportedException extends __BaseException {
80
+ readonly name: "OperationNotSupportedException";
81
+ readonly $fault: "client";
82
+
83
+ constructor(opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>);
80
84
  }
81
85
 
82
- export interface ResourceAssociatedException extends __SmithyException, $MetadataBearer {
83
- name: "ResourceAssociatedException";
84
- $fault: "client";
85
- message?: string;
86
+ export declare class ResourceAssociatedException extends __BaseException {
87
+ readonly name: "ResourceAssociatedException";
88
+ readonly $fault: "client";
89
+
90
+ constructor(opts: __ExceptionOptionType<ResourceAssociatedException, __BaseException>);
86
91
  }
87
92
 
88
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
89
- name: "ResourceNotFoundException";
90
- $fault: "client";
91
-
92
- message?: string;
93
+ export declare class ResourceNotFoundException extends __BaseException {
94
+ readonly name: "ResourceNotFoundException";
95
+ readonly $fault: "client";
93
96
 
94
97
  ResourceId?: string;
98
+
99
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
95
100
  }
96
101
  export interface AssociateIpGroupsRequest {
97
102
 
@@ -110,11 +115,11 @@ export declare namespace AssociateIpGroupsResult {
110
115
  const filterSensitiveLog: (obj: AssociateIpGroupsResult) => any;
111
116
  }
112
117
 
113
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
114
- name: "ResourceLimitExceededException";
115
- $fault: "client";
118
+ export declare class ResourceLimitExceededException extends __BaseException {
119
+ readonly name: "ResourceLimitExceededException";
120
+ readonly $fault: "client";
116
121
 
117
- message?: string;
122
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
118
123
  }
119
124
  export declare enum AssociationStatus {
120
125
  ASSOCIATED_WITH_OWNER_ACCOUNT = "ASSOCIATED_WITH_OWNER_ACCOUNT",
@@ -341,19 +346,20 @@ export declare namespace CopyWorkspaceImageResult {
341
346
  const filterSensitiveLog: (obj: CopyWorkspaceImageResult) => any;
342
347
  }
343
348
 
344
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
345
- name: "ResourceAlreadyExistsException";
346
- $fault: "client";
347
- message?: string;
349
+ export declare class ResourceAlreadyExistsException extends __BaseException {
350
+ readonly name: "ResourceAlreadyExistsException";
351
+ readonly $fault: "client";
352
+
353
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
348
354
  }
349
355
 
350
- export interface ResourceUnavailableException extends __SmithyException, $MetadataBearer {
351
- name: "ResourceUnavailableException";
352
- $fault: "client";
353
-
354
- message?: string;
356
+ export declare class ResourceUnavailableException extends __BaseException {
357
+ readonly name: "ResourceUnavailableException";
358
+ readonly $fault: "client";
355
359
 
356
360
  ResourceId?: string;
361
+
362
+ constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
357
363
  }
358
364
  export interface CreateConnectClientAddInRequest {
359
365
 
@@ -376,10 +382,11 @@ export declare namespace CreateConnectClientAddInResult {
376
382
  const filterSensitiveLog: (obj: CreateConnectClientAddInResult) => any;
377
383
  }
378
384
 
379
- export interface ResourceCreationFailedException extends __SmithyException, $MetadataBearer {
380
- name: "ResourceCreationFailedException";
381
- $fault: "client";
382
- message?: string;
385
+ export declare class ResourceCreationFailedException extends __BaseException {
386
+ readonly name: "ResourceCreationFailedException";
387
+ readonly $fault: "client";
388
+
389
+ constructor(opts: __ExceptionOptionType<ResourceCreationFailedException, __BaseException>);
383
390
  }
384
391
  export interface CreateConnectionAliasRequest {
385
392
 
@@ -1404,10 +1411,11 @@ export declare namespace MigrateWorkspaceResult {
1404
1411
  const filterSensitiveLog: (obj: MigrateWorkspaceResult) => any;
1405
1412
  }
1406
1413
 
1407
- export interface OperationInProgressException extends __SmithyException, $MetadataBearer {
1408
- name: "OperationInProgressException";
1409
- $fault: "client";
1410
- message?: string;
1414
+ export declare class OperationInProgressException extends __BaseException {
1415
+ readonly name: "OperationInProgressException";
1416
+ readonly $fault: "client";
1417
+
1418
+ constructor(opts: __ExceptionOptionType<OperationInProgressException, __BaseException>);
1411
1419
  }
1412
1420
  export interface ModifyAccountRequest {
1413
1421
 
@@ -1525,10 +1533,11 @@ export declare namespace ModifyWorkspacePropertiesResult {
1525
1533
  const filterSensitiveLog: (obj: ModifyWorkspacePropertiesResult) => any;
1526
1534
  }
1527
1535
 
1528
- export interface UnsupportedWorkspaceConfigurationException extends __SmithyException, $MetadataBearer {
1529
- name: "UnsupportedWorkspaceConfigurationException";
1530
- $fault: "client";
1531
- message?: string;
1536
+ export declare class UnsupportedWorkspaceConfigurationException extends __BaseException {
1537
+ readonly name: "UnsupportedWorkspaceConfigurationException";
1538
+ readonly $fault: "client";
1539
+
1540
+ constructor(opts: __ExceptionOptionType<UnsupportedWorkspaceConfigurationException, __BaseException>);
1532
1541
  }
1533
1542
  export declare enum TargetWorkspaceState {
1534
1543
  ADMIN_MAINTENANCE = "ADMIN_MAINTENANCE",
@@ -1625,16 +1634,18 @@ export declare namespace RegisterWorkspaceDirectoryResult {
1625
1634
  const filterSensitiveLog: (obj: RegisterWorkspaceDirectoryResult) => any;
1626
1635
  }
1627
1636
 
1628
- export interface UnsupportedNetworkConfigurationException extends __SmithyException, $MetadataBearer {
1629
- name: "UnsupportedNetworkConfigurationException";
1630
- $fault: "client";
1631
- message?: string;
1637
+ export declare class UnsupportedNetworkConfigurationException extends __BaseException {
1638
+ readonly name: "UnsupportedNetworkConfigurationException";
1639
+ readonly $fault: "client";
1640
+
1641
+ constructor(opts: __ExceptionOptionType<UnsupportedNetworkConfigurationException, __BaseException>);
1632
1642
  }
1633
1643
 
1634
- export interface WorkspacesDefaultRoleNotFoundException extends __SmithyException, $MetadataBearer {
1635
- name: "WorkspacesDefaultRoleNotFoundException";
1636
- $fault: "client";
1637
- message?: string;
1644
+ export declare class WorkspacesDefaultRoleNotFoundException extends __BaseException {
1645
+ readonly name: "WorkspacesDefaultRoleNotFoundException";
1646
+ readonly $fault: "client";
1647
+
1648
+ constructor(opts: __ExceptionOptionType<WorkspacesDefaultRoleNotFoundException, __BaseException>);
1638
1649
  }
1639
1650
  export interface RestoreWorkspaceRequest {
1640
1651
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces",
3
3
  "description": "AWS SDK for JavaScript Workspaces Client for Node.js, Browser and React Native",
4
- "version": "3.52.0",
4
+ "version": "3.53.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.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.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",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.52.0",
44
44
  "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-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",
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"