Skip to content

Commit 6481e59

Browse files
author
awstools
committed
feat(client-workspaces): Increased the character limit of the login message from 850 to 2000 characters.
1 parent cc8711e commit 6481e59

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

clients/client-workspaces/src/protocols/Aws_json1_1.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3119,6 +3119,9 @@ const deserializeAws_json1_1ImportClientBrandingCommandError = async (
31193119
case "ResourceLimitExceededException":
31203120
case "com.amazonaws.workspaces#ResourceLimitExceededException":
31213121
throw await deserializeAws_json1_1ResourceLimitExceededExceptionResponse(parsedOutput, context);
3122+
case "ResourceNotFoundException":
3123+
case "com.amazonaws.workspaces#ResourceNotFoundException":
3124+
throw await deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context);
31223125
default:
31233126
const parsedBody = parsedOutput.body;
31243127
const $metadata = deserializeMetadata(output);

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@
475475
"traits": {
476476
"smithy.api#length": {
477477
"min": 0,
478-
"max": 850
478+
"max": 2000
479479
},
480480
"smithy.api#pattern": "^.*$"
481481
}
@@ -3160,6 +3160,9 @@
31603160
},
31613161
{
31623162
"target": "com.amazonaws.workspaces#ResourceLimitExceededException"
3163+
},
3164+
{
3165+
"target": "com.amazonaws.workspaces#ResourceNotFoundException"
31633166
}
31643167
],
31653168
"traits": {

0 commit comments

Comments
 (0)