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
Per the AWS RDS API docs, the parameter should be named "NewDBInstanceIdentifier".
That seems to be a somewhat common issue with parameter names that include an acronym, e.g. "DB", or "AZ".
I also had some trouble with the "VpcSecurityGroupIds.*" parameter(s) for the AWS RDS API action "RestoreDBInstanceFromDBSnapshot". Those are also used by create_db_instance/7 but normalize_opts doesn't seem to handle them correctly. Some code I wrote for those parameters:
That also seems like a possibly somewhat common pattern for the various 'collection' parameters for different functions, and probably in any other AWS API with 'AWS API Query' actions/endpoints.
I'm currently working with this library pretty heavily and this would be a good time – for me – to contribute, if you're open to contributions.
The text was updated successfully, but these errors were encountered:
There are some nice new functions in the two open PRs – any chance that those could be merged sometime soonish?
I have also written a few others that, after being cleaned-up a little, would make nice additions too.
I also ran into an issue like #8 but for
ExAws.RDS.modify_db_instance/2
:Per the AWS RDS API docs, the parameter should be named
"NewDBInstanceIdentifier"
.That seems to be a somewhat common issue with parameter names that include an acronym, e.g. "DB", or "AZ".
I also had some trouble with the
"VpcSecurityGroupIds.*"
parameter(s) for the AWS RDS API action"RestoreDBInstanceFromDBSnapshot"
. Those are also used bycreate_db_instance/7
butnormalize_opts
doesn't seem to handle them correctly. Some code I wrote for those parameters:That also seems like a possibly somewhat common pattern for the various 'collection' parameters for different functions, and probably in any other AWS API with 'AWS API Query' actions/endpoints.
I'm currently working with this library pretty heavily and this would be a good time – for me – to contribute, if you're open to contributions.
The text was updated successfully, but these errors were encountered: