Interfacing with other AWS services from Swift AWS lambda

I found the “Use Swift on AWS Lambda with Xcode” session very interesting and was wondering how I could interface with other AWS services from within a Swift AWS lambda e.g. querying an RDS database or accessing KMS keys. Where can I find documentation to help me with that?

Accepted Reply

for RDS specifically, you could check out the Vapor's MySQL and Postgres DB drivers

Replies

there are a few other open source project that deal with this aspect. https://github.com/swift-aws/aws-sdk-swift is worth looking into
for RDS specifically, you could check out the Vapor's MySQL and Postgres DB drivers
Thanks - I’ll check the out