SST Ion Has a Free API That Most Developers Dont Know About

typescript dev.to

SST Ion (v3) is a framework for building full-stack apps on AWS. It uses Pulumi under the hood and provides a simple component model for Lambda, databases, and more. Define Infrastructure // sst.config.ts export default $config({ app(input) { return { name: "my-app", home: "aws" }; }, async run() { const bucket = new sst.aws.Bucket("Uploads"); const db = new sst.aws.Dynamo("DB", { fields: { pk: "string", sk: "string" }, primaryIndex: { hashKey: "pk",

Read Full Tutorial open_in_new
arrow_back Back to Tutorials