@awboost/cfn-resource-types
v0.1.223
Published
Strong types for all AWS CloudFormation Resource Schemas.
Downloads
2,165
Readme
@awboost/cfn-resource-types
Strong types for all AWS CloudFormation Resource Schemas.
import { Stack } from "@awboost/cfn-template-builder/stack";
import { Asset } from "@awboost/cfn-template-builder/template/asset";
import { LambdaFunction } from "@awboost/cfn-resource-types/AWS-Lambda-Function";
const stack = new Stack();
const codeAsset = Asset.fromFile("LambdaCode", "my-code.zip");
const lambda = stack.use(
new LambdaFunction("MyFunction", {
// properties have accurate types now
Code: codeAsset.ref,
Role: "arn:etc:...:...",
}),
);