mirror of
https://github.com/github/codeql.git
synced 2025-12-30 23:58:15 +01:00
11 lines
289 B
YAML
11 lines
289 B
YAML
AWSTemplateFormatVersion: '2010-09-09'
|
|
Transform: 'AWS::Serverless-2016-10-31'
|
|
Description: A AWS Lambda function.
|
|
|
|
Resources:
|
|
helloworld:
|
|
Type: 'AWS::Serverless::Function'
|
|
Properties:
|
|
Handler: app.handler
|
|
Runtime: nodejs6.10
|
|
Description: A AWS Lambda function. |