Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Generated code for list-buckets is wrong #19

Open
aymanosman opened this issue Jul 21, 2022 · 0 comments
Open

Generated code for list-buckets is wrong #19

aymanosman opened this issue Jul 21, 2022 · 0 comments

Comments

@aymanosman
Copy link

It mistakenly passes a cons instead of an alist for a parameter.

code

(common-lisp:defun list-buckets ()
   (aws-sdk/generator/operation::parse-response
    (aws-sdk/api:aws-request :service "s3" :method :get :params
                             (common-lisp:cons "Action" "ListBuckets"))
    "ListBucketsOutput" common-lisp:nil))

This

(common-lisp:cons "Action" "ListBuckets")

should be

(common-lisp:list (common-lisp:cons "Action" "ListBuckets"))
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant