Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/edragonconnect/ex_aliyun_oss

Aliyun OSS SDK for Elixir
https://github.com/edragonconnect/ex_aliyun_oss

Last synced: about 6 hours ago
JSON representation

Aliyun OSS SDK for Elixir

Awesome Lists containing this project

README

        

# ExAliyunOss

**Aliyun OSS SDK for Elixir**

## Implemented API

* put_bucket
* put_bucket_lifecycle
* delete_bucket
* put_object
* copy_object
* delete_object

Add Configuration in `config.exs`:

```elixir
config :ex_aliyun_oss,
accounts: %{
"READABLE_OSS_ACCOUNT_NAME" => %{
access_key_id: "your_access_key_id",
access_key_secret: "your_access_key_secret"
},
...more...
},
clients_pool: [size: 100, max_overflow: 20]
```