We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we encode shapes to xml, we're currently producing the wrong root key. There are two culprits.
Input
Given the following smithy spec:
structure Foo { value: String } @xmlName("BarStruct") structure Bar { value: String }
We'd expect the encoded xml to look like the following:
<Foo><value></value></Foo>
<BarStruct><value></value></BarStruct>
Given the same smithy spec as above, the current encoded xml looks like the following:
<FooInput><value></value></FooInput>
<BarInput><value></value></BarInput>
N/A
No response
0.5.0
swift-driver version: 1.62.8 Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
12.6.1
The text was updated successfully, but these errors were encountered:
Released in 0.7.0
Sorry, something went wrong.
epau
No branches or pull requests
Describe the bug
When we encode shapes to xml, we're currently producing the wrong root key.
There are two culprits.
Input
suffix added to their nameExpected Behavior
Given the following smithy spec:
We'd expect the encoded xml to look like the following:
Current Behavior
Given the same smithy spec as above, the current encoded xml looks like the following:
Reproduction Steps
N/A
Possible Solution
No response
Additional Information/Context
No response
AWS SWIFT SDK version used
0.5.0
Compiler and Version used
swift-driver version: 1.62.8 Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
Operating System and version
12.6.1
The text was updated successfully, but these errors were encountered: