Skip to content

Commit 0c829af

Browse files
author
awstools
committed
feat(client-workspaces): Added DeviceTypeWorkSpacesThinClient type to allow users to access their WorkSpaces through a WorkSpaces Thin Client.
1 parent 59e62d7 commit 0c829af

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ export interface DescribeWorkspaceDirectoriesCommandOutput
9999
* // DeviceTypeChromeOs: "ALLOW" || "DENY",
100100
* // DeviceTypeZeroClient: "ALLOW" || "DENY",
101101
* // DeviceTypeLinux: "ALLOW" || "DENY",
102+
* // DeviceTypeWorkSpacesThinClient: "ALLOW" || "DENY",
102103
* // },
103104
* // Tenancy: "DEDICATED" || "SHARED",
104105
* // SelfservicePermissions: { // SelfservicePermissions

clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export interface ModifyWorkspaceAccessPropertiesCommandOutput
5353
* DeviceTypeChromeOs: "ALLOW" || "DENY",
5454
* DeviceTypeZeroClient: "ALLOW" || "DENY",
5555
* DeviceTypeLinux: "ALLOW" || "DENY",
56+
* DeviceTypeWorkSpacesThinClient: "ALLOW" || "DENY",
5657
* },
5758
* };
5859
* const command = new ModifyWorkspaceAccessPropertiesCommand(input);

clients/client-workspaces/src/models/models_0.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4952,6 +4952,12 @@ export interface WorkspaceAccessProperties {
49524952
* @public
49534953
*/
49544954
DeviceTypeLinux?: AccessPropertyValue | undefined;
4955+
4956+
/**
4957+
* <p>Indicates whether users can access their WorkSpaces through a WorkSpaces Thin Client.</p>
4958+
* @public
4959+
*/
4960+
DeviceTypeWorkSpacesThinClient?: AccessPropertyValue | undefined;
49554961
}
49564962

49574963
/**

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10226,6 +10226,12 @@
1022610226
"traits": {
1022710227
"smithy.api#documentation": "<p>Indicates whether users can use Linux clients to access their WorkSpaces.</p>"
1022810228
}
10229+
},
10230+
"DeviceTypeWorkSpacesThinClient": {
10231+
"target": "com.amazonaws.workspaces#AccessPropertyValue",
10232+
"traits": {
10233+
"smithy.api#documentation": "<p>Indicates whether users can access their WorkSpaces through a WorkSpaces Thin Client.</p>"
10234+
}
1022910235
}
1023010236
},
1023110237
"traits": {

0 commit comments

Comments
 (0)