Skip to content

Commit 0d7c383

Browse files
committed
fix(client-workspaces-thin-client): add compatibility alias
1 parent 2121fd5 commit 0d7c383

File tree

7 files changed

+150
-556
lines changed

7 files changed

+150
-556
lines changed

clients/client-workspaces-thin-client/src/index.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,17 @@ export * from "./models";
2828
import "@aws-sdk/util-endpoints";
2929

3030
export { WorkSpacesThinClientServiceException } from "./models/WorkSpacesThinClientServiceException";
31+
32+
import { WorkSpacesThinClient } from "./WorkSpacesThinClient";
33+
34+
/**
35+
* @deprecated use {WorkSpacesThinClient} (renamed) instead.
36+
* The aggregated client is called WorkSpacesThinClient,
37+
* and the barebones client is called WorkSpacesThinClientClient.
38+
*
39+
* Due to some code generation issues with the word "Client" in the service name,
40+
* we are maintaining a few backwards compatible aliases here.
41+
*/
42+
export const WorkSpacesThin = WorkSpacesThinClient;
43+
44+
export type { WorkSpacesThinClientPaginationConfiguration as WorkSpacesThinPaginationConfiguration } from "./pagination/Interfaces";

codegen/config/checkstyle/checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<!-- Files must contain a copyright header. -->
2323
<module name="RegexpHeader">
2424
<property name="header"
25-
value="/\*\n \* Copyright( 20(19|20|21|22)|) Amazon\.com, Inc\. or its affiliates\. All Rights Reserved\.\n"/>
25+
value="/\*\n \* Copyright( 20(19|20|21|22|23)|) Amazon\.com, Inc\. or its affiliates\. All Rights Reserved\.\n"/>
2626
<property name="fileExtensions" value="java"/>
2727
</module>
2828

codegen/sdk-codegen/aws-models/codedeploy.json

Lines changed: 11 additions & 153 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)