summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego José Fernández Hernández <diego@diegofer.com>2024-03-21 16:35:55 +0100
committerGitHub <noreply@github.com>2024-03-21 16:35:55 +0100
commitd0ae697b9394103879e6c7f836d0f7cf128f4b1e (patch)
tree5936050c6fd7a8b90409c56aa8bc49ecb9864248
parentd2f7316e8a8b0292a797b237a80a95e9fcd5f9b2 (diff)
downloadkotlinx.serialization-d0ae697b9394103879e6c7f836d0f7cf128f4b1e.tar.gz
Add DynamoDB AttributeValue to list of community formats (#2607)
-rw-r--r--formats/README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/formats/README.md b/formats/README.md
index 724b06ad..ec32bb5c 100644
--- a/formats/README.md
+++ b/formats/README.md
@@ -34,3 +34,4 @@ For convenience, they have same `groupId`, versioning and release cycle as core
| CSV | [hfhbd/kotlinx-serialization-csv](https://github.com/hfhbd/kotlinx-serialization-csv) <br> `app.softwork:kotlinx-serialization-csv` | all supported platforms | Allows serialization and deserialization of CSV files. There are still some limitations (ordered properties). |
| Fixed Length Format | [hfhbd/kotlinx-serialization-csv](https://github.com/hfhbd/kotlinx-serialization-csv) <br> `app.softwork:kotlinx-serialization-flf` | all supported platforms | Allows serialization and deserialization of [Fixed Length Format files](https://www.ibm.com/docs/en/psfa/7.2.1?topic=format-fixed-length-files). Each property must be annotated with `@FixedLength` and there are still some limitations due to missing delimiters. |
| JSON5 | [xn32/json5k](https://github.com/xn32/json5k) <br> `io.github.xn32:json5k` | JVM, Native | Library for the serialization to and deserialization from [JSON5](https://json5.org) text. |
+| DynamoDB | [DynaMap](https://github.com/codanbaru/dynamap) <br> `com.codanbaru.kotlin:dynamap` | JVM | Allows serialization and deserialization of objects to and from [AttributeValue](https://sdk.amazonaws.com/kotlin/api/latest/dynamodb/aws.sdk.kotlin.services.dynamodb.model/-attribute-value/index.html) of Amazon [DynamoDB](https://aws.amazon.com/dynamodb/) |