Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/edragonconnect/ex_aliyun_oss
- Owner: edragonconnect
- Created: 2023-11-15T07:58:41.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-07-29T07:59:13.000Z (3 months ago)
- Last Synced: 2024-07-29T09:29:48.273Z (3 months ago)
- Language: Elixir
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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_objectAdd 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]
```