You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the past, operations could return either an OutputResponse or an OutputError. SDK error handling was refactored to eliminate the OutputError enumeration, but the OutputResponse suffix remains on operation output structures.
To provide for more concise & intuitive naming, and to be consistent with both operation input structures and with the practice in other AWS SDKs, output structures will have the Response suffix removed from their name, and they will just have a name consisting of the operation name plus "Output"; i.e. PutObjectOutputResponse would become PutObjectOutput.
This is a breaking change because references to operation output structures will have to be changed to refer to the new name.
Expected Behavior
N/A
Current Behavior
N/A
Reproduction Steps
N/A
Possible Solution
No response
Additional Information/Context
No response
AWS SWIFT SDK version used
0.27.0
Compiler and Version used
Xcode 15.0
Operating System and version
macOS 13.6
The text was updated successfully, but these errors were encountered:
Describe the bug
In the past, operations could return either an
OutputResponse
or anOutputError
. SDK error handling was refactored to eliminate theOutputError
enumeration, but theOutputResponse
suffix remains on operation output structures.To provide for more concise & intuitive naming, and to be consistent with both operation input structures and with the practice in other AWS SDKs, output structures will have the
Response
suffix removed from their name, and they will just have a name consisting of the operation name plus "Output"; i.e.PutObjectOutputResponse
would becomePutObjectOutput
.This is a breaking change because references to operation output structures will have to be changed to refer to the new name.
Expected Behavior
N/A
Current Behavior
N/A
Reproduction Steps
N/A
Possible Solution
No response
Additional Information/Context
No response
AWS SWIFT SDK version used
0.27.0
Compiler and Version used
Xcode 15.0
Operating System and version
macOS 13.6
The text was updated successfully, but these errors were encountered: