Advanced deserialization with Serde: Parsing Cloudformation templates

Advanced deserialization with Serde: Parsing Cloudformation templates

serde is a great library for Rust that allows you to serialize and deserialize your structs efficiently. In this article, we will review some advanced features of this library by parsing AWS Cloudformation templates. Cloudformation is an infrastructure as a code. It allows you to model your AWS resources inside the template. After that, AWS will provision all the resources in the correct order for you. It’s a powerful tool that is very popular nowadays....

March 28, 2022 · 10 min · Roka