https://github.com/macielti/aws-client-component
AWS Client Integrant component
https://github.com/macielti/aws-client-component
aws clojure graalvm sqs
Last synced: about 1 month ago
JSON representation
AWS Client Integrant component
- Host: GitHub
- URL: https://github.com/macielti/aws-client-component
- Owner: macielti
- License: other
- Created: 2024-12-31T04:10:08.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-08T10:51:23.000Z (5 months ago)
- Last Synced: 2025-04-29T08:56:56.109Z (about 1 month ago)
- Topics: aws, clojure, graalvm, sqs
- Language: Clojure
- Homepage: https://github.com/macielti/aws-client-component
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://clojars.org/net.clojars.macielti/aws-client-component)
# AWS Client Component
AWS Client Integrant component
## Warnings
You should declare both `com.cognitect.aws/api` and `com.cognitect.aws/endpoints` as direct dependencies for your
project:```clojure
[com.cognitect.aws/api "0.8.692"]
[com.cognitect.aws/endpoints "1.1.12.772"]
```If your product also use `pedestal` you should use the `0.5.7` version.
## GraalVM Native Image Generation
You should use `"-H:ReflectionConfigurationFiles=reflect-config.json"` with the following as content to
`reflect-config.json` file:```json
[
{
"name": "java.nio.HeapByteBuffer[]",
"unsafeAllocated": true
}
]
```You should also use `"-H:ConfigurationFileDirectories=graalvm-resources"` and inside the `graalvm-resources` folder you
should have a `resource-config.json` file with the following content:```json
{
"resources": {
"includes": [
{
"pattern": "cognitect/aws/.+\\.edn"
},
{
"pattern" : "cognitect_aws_http.edn"
}
]
}
}
```## License
Copyright © 2024 Bruno do Nascimento Maciel
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0.This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the Eclipse
Public License, v. 2.0 are satisfied: GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or (at your
option) any later version, with the GNU Classpath Exception which is available
at https://www.gnu.org/software/classpath/license.html.