We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6fe0e commit 2a0b036Copy full SHA for 2a0b036
codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsServiceIdIntegration.java
@@ -33,7 +33,7 @@ public Symbol toSymbol(Shape shape) {
33
Symbol symbol = this.delegate.toSymbol(shape);
34
if (shape.isServiceShape() && shape.hasTrait(ServiceTrait.class)) {
35
var serviceTrait = shape.expectTrait(ServiceTrait.class);
36
- var serviceName = StringUtils.capitalize(serviceTrait.getSdkId()).replace(" ", "");
+ var serviceName = StringUtils.capitalize(serviceTrait.getSdkId() + "Client").replace(" ", "");
37
symbol = symbol.toBuilder().name(serviceName).build();
38
}
39
return symbol;
0 commit comments