pokepay / aws-sdk-lisp

AWS-SDK for Common Lisp
87 stars 19 forks source link

Allow customizing AWS requests for each services #22

Closed fukamachi closed 1 year ago

fukamachi commented 1 year ago

Breaking change

Change the arguments of aws-request from keyword arguments to a single instance of aws-sdk/request:request class.

Before

(aws-request :service "s3" :method "GET" :path "/")

After

(aws-request (make-instance 'aws-sdk/services/s3:s3-request :method "GET" :path "/"))