-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws-lambda-tools-defaults.json
More file actions
25 lines (24 loc) · 1.17 KB
/
aws-lambda-tools-defaults.json
File metadata and controls
25 lines (24 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"Information" : [
"This file provides default values for the deployment wizard inside Visual Studio and the AWS Lambda commands added to the .NET Core CLI.",
"To learn more about the Lambda commands with the .NET Core CLI execute the following command at the command line in the project root directory.",
"dotnet lambda help",
"All the command line options for the Lambda command can be specified in this file."
],
"profile" : "default",
"region" : "us-west-1",
"configuration" : "Release",
"framework" : "netcoreapp3.1",
"function-runtime" : "dotnetcore3.1",
"function-memory-size" : 512,
"function-timeout" : 15,
"function-handler" : "hello-lambda::helloLambda.Function::FunctionHandler",
"function-name" : "hello-lambda",
"function-description" : "Hello cloud for lambda - alphabetize phone number",
"package-type" : "Zip",
"function-architecture" : "x86_64",
"tracing-mode" : "PassThrough",
"environment-variables" : "",
"image-tag" : "",
"function-role" : "arn:aws:iam::[account]:role/service-role/[hello-lambda-role]"
}