How to contribute? #2112
-
Hello, Tried raising PR-2109 but it seems that those files are generated (smithy?) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @anton-yurchenko , Almost all of the v2 SDK's client code is auto-generated from the Service's API model. Since the API operation call is generic, the logic you have written will not get translated into other api calls and we can't accept it. This could have been made into a customization, but we are moving away from customizations since they are not maintainable, unless the AWS service itself is absolutely requiring it. To know if a file is auto-generated just check the top of the file, it should read:
You can check the list of open issues that have been triaged, I usually add some sort of context of what needs to be solved. Let me know if you have any other questions. |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Hi @anton-yurchenko ,
Almost all of the v2 SDK's client code is auto-generated from the Service's API model.
The code generator that consumes the API and generates the Go types for the Go SDK is Smithy-Go.
Since the API operation call is generic, the logic you have written will not get translated into other api calls and we can't accept it.
This could have been made into a customization, but we are moving away from customizations since they are not maintainable, unless the AWS service itself is absolutely requiring it.
To know if a file is auto-generated just check the top of the file, it should read:
You can check the list of open iss…