UNPKG

@amazon-codecatalyst/blueprints.sam-serverless-application

Version:

This blueprint creates a project that leverages a serverless application model (SAM) to quickly create and deploy an API. You can choose Java, TypeScript, or Python as the programming language

9 lines (8 loc) 266 B
import { Options } from './blueprint'; import { RuntimeMapping } from './models'; export type BlueprintRuntimes = Options['runtime']; type RuntimeMap = { [key in BlueprintRuntimes]: RuntimeMapping; }; export declare const runtimeMappings: RuntimeMap; export {};