How to use the cloudform.default function in cloudform

To help you get started, we’ve selected a few cloudform examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github matthewkeil / nomad-devops / aws / server.ts View on Github external
//             // @ts-ignore
    //             template.Resources[Name] = handlerDefinition;

    //             return;
    //         }

    //         // recursively parse as a path segment
    //         return parseSegment(segmentOrRoute, `${currentPath}/${name}`);
    //     });

    // const handlers = getHandlers();

    // parseSegment(handlers, "handlers");

    return CF(template);
};
github aws-amplify / amplify-cli / packages / graphql-relational-schema-transformer / src / RelationalDBTemplateGenerator.ts View on Github external
public printCloudformationTemplate(template: Template): string {
    return cloudform(template);
  }