Frank
📢 AppSync custom domainIn
v1.0.0-beta.21
, you can now configure custom domain for sst.AppSyncApi
like this:
new AppSyncApi(stack, "GraphqlApi", {
schema: "graphql/schema.graphql",
customDomain: "<http://api.domain.com|api.domain.com>",
});
More examples here.
📢 Lambda disk storageFor those of the adventurers here looking for 10GB disk storage, you can give it a spin like this:
new Function(stack, "MyFunction", {
handler: "src/lambda.handler",
diskSize: "10 GB",
})
And finally, if you haven’t updated to v1 beta
yet, here are the steps to move to v1.0.Tanner Bindrup
04/15/2022, 1:24 AMFrank
Frank
10
(for backward compatible), or an sst.Duration
typed string 10 seconds
Tanner Bindrup
04/15/2022, 1:29 AMsst.Duration
type somewhere. Is that new for v1?Tanner Bindrup
04/15/2022, 1:31 AMFrank
sst.Duration
and sst.Size
(ie. 10 GB
) in v1. Will add it to the doc!