https://github.com/banzaicloud/cadence-aws-sdk
Cadence wrapper around the AWS Go SDK to make working with the AWS API easier in Cadence workflows
https://github.com/banzaicloud/cadence-aws-sdk
aws cadence sdk
Last synced: 7 months ago
JSON representation
Cadence wrapper around the AWS Go SDK to make working with the AWS API easier in Cadence workflows
- Host: GitHub
- URL: https://github.com/banzaicloud/cadence-aws-sdk
- Owner: banzaicloud
- License: apache-2.0
- Created: 2020-08-28T14:38:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-31T13:22:17.000Z (over 3 years ago)
- Last Synced: 2025-03-05T13:02:33.921Z (7 months ago)
- Topics: aws, cadence, sdk
- Language: Go
- Homepage:
- Size: 3.12 MB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cadence AWS SDK
**Cadence backport for [Temporal AWS SDK](https://github.com/temporalio/temporal-aws-sdk-go).**
## Development
Most of the code inside this library is generated. If you need to change the generated code,
look into the [templates](templates) directory and modify the templates there.After making the changes, regenerate the code with the following command:
```bash
./pleasew generate
```**Important: template changes and code generation MUST be end up in separate commits**
```bash
git add templates
git commit -m 'feat: I changed X to behave Y'
git add clients activities
git commit -m 'chore: regenerate code'
```## License
Apache 2.0 License. Please see [License File](LICENSE) for more information.