File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 54
54
else
55
55
{
56
56
redirectServiceSuffixLink = serviceFolderPath + serviceName + "/" + clientObjectName + ".html" ;
57
- if ( typeName != null )
58
- redirectServiceSuffixLink = redirectServiceSuffixLink + "#" + camelize ( typeName ) + "--" ;
57
+ if ( typeName != null ) {
58
+ methodName = camelize ( typeName )
59
+ requestObjectName = methodName . charAt ( 0 ) . toUpperCase ( ) + methodName . slice ( 1 ) + "Request"
60
+ redirectServiceSuffixLink =
61
+ redirectServiceSuffixLink +
62
+ "#" + methodName +
63
+ "(software.amazon.awssdk.services." + serviceName + ".model." + requestObjectName + ")" ;
64
+ }
59
65
if ( checkResourceExists ( baseUri . replace ( / c r o s s l i n k _ r e d i r e c t .* / gi, redirectServiceSuffixLink ) ) )
60
66
redirectSuffixLink = redirectServiceSuffixLink ;
61
67
}
You can’t perform that action at this time.
0 commit comments