├── .github ├── CODEOWNERS └── workflows │ ├── build-with-bal-test-native.yml │ ├── ci.yml │ ├── daily-build.yml │ ├── dev-stg-release.yml │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── ballerina ├── Ballerina.toml ├── Module.md ├── Package.md ├── client.bal ├── constants.bal ├── data_mappings.bal ├── error.bal ├── external.bal ├── icon.png ├── tests │ └── test.bal ├── types.bal └── utils.bal ├── issue_template.md └── pull_request_template.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/build-with-bal-test-native.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.github/workflows/build-with-bal-test-native.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/daily-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.github/workflows/daily-build.yml -------------------------------------------------------------------------------- /.github/workflows/dev-stg-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.github/workflows/dev-stg-release.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/README.md -------------------------------------------------------------------------------- /ballerina/Ballerina.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/Ballerina.toml -------------------------------------------------------------------------------- /ballerina/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/Module.md -------------------------------------------------------------------------------- /ballerina/Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/Package.md -------------------------------------------------------------------------------- /ballerina/client.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/client.bal -------------------------------------------------------------------------------- /ballerina/constants.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/constants.bal -------------------------------------------------------------------------------- /ballerina/data_mappings.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/data_mappings.bal -------------------------------------------------------------------------------- /ballerina/error.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/error.bal -------------------------------------------------------------------------------- /ballerina/external.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/external.bal -------------------------------------------------------------------------------- /ballerina/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/icon.png -------------------------------------------------------------------------------- /ballerina/tests/test.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/tests/test.bal -------------------------------------------------------------------------------- /ballerina/types.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/types.bal -------------------------------------------------------------------------------- /ballerina/utils.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/ballerina/utils.bal -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-aws.simpledb/HEAD/pull_request_template.md --------------------------------------------------------------------------------