This is an experimental project to generate OCaml bindings for the AWS SDK using Smithy definitions.
This is a work in progress. Only some services are defined as SDKs, and the protocol generators may only be able to work on some services (and their implementations may incomplete or untested).
You can install directly from opam using:
opam install smaws-clients
You can also pin this repository with: opam pin https://github.com/chris-armstrong/smaws.git
to use the most recent unreleased version.
- The SDKs provided by this package use eio for async communication. If you're using lwt or async or riot or miou, you may need a bridge library to plug into.
- SDK Clients are stored in the
smaws-clients
package - You import the client you want from
Smaws_Clients.<ClientName>
e.g.Smaws_Clients.DynamoDB
=>aws-smssdk-dynamodb
. - SDKs are not generated for every service - check the
/sdks
directory for supported services. - Only environment and profile authentication with stored credentials is supported (see the documentation)
Please see the documentation for detailed installation and usage instructions.
You can find examples in the examples directory.
See the Developers Guide for contributing to this project.
Internally, AWS uses a number of serialisation protocols, which differ between services
Protocol | Basic SDK Generation | All Annotations | Services |
---|---|---|---|
AwsJson_1.0 | ✅ | ❌ | SQS, DynamoDB |
AwsJson_1.1 | ✅ | ❌ | |
AwsQuery | ❌ | ❌ | |
restJson | ❌ | ❌ | about 2/3 of services |
EC2 Query | ❌ | ❌ | EC2? |
At the moment, we can generate bindings for the AwsJson_1.0/1.1 protocol, which covers a significant number of SDKs but has not been thoroughly tested for completeness or compliance. (If you know of good compliance suites for AWS service implementations, please reach out!)
- acm
- apprunner
- backup-gateway
- cloudtrail
- codeconnections
- cognito-identity
- config-service
- dax
- directory-service
- dynamodb
- dynamodb-streams
- eventbridge
- fms
- kendra
- keyspaces
- kinesis
- kinesis-analytics
- kinesis-analytics-v2
- kms
- lightsail
- marketplace-agreement
- migration-hub
- opensearchserverless
- pi
- proton
- resource-groups-tagging-api
- route53-recovery-cluster
- servicediscovery
- sfn
- shield
- snowball
- sqs
- ssm
- swf
- transcribe
- waf
- wafv2
- workmail
Note that we do not have any compliance suites to test our implementations for each service - if you have any ideas, please get in touch.
See the Developers Guide
Copyright (C) Christopher Armstrong 2024
MIT Licence, see LICENCE.md