-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
909859: Update aws lambda github samples.
- Loading branch information
1 parent
2f9cd39
commit 5d622a8
Showing
5 changed files
with
45 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 25 additions & 14 deletions
39
Getting Started/AWS/AWSLambdaProject/AWSLambdaProject/aws-lambda-tools-defaults.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,27 @@ | ||
|
||
{ | ||
"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": "[email protected]", | ||
"region": "us-east-1", | ||
"configuration": "Release", | ||
"function-architecture": "x86_64", | ||
"function-runtime": "dotnet6", | ||
"function-memory-size": 256, | ||
"function-timeout": 30, | ||
"function-handler": "AWSLambdaProject::AWSLambdaProject.Function::FunctionHandler" | ||
"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" : "AWS_sample", | ||
"region" : "us-east-1", | ||
"configuration" : "Release", | ||
"function-architecture" : "x86_64", | ||
"function-runtime" : "dotnet8", | ||
"function-memory-size" : 3008, | ||
"function-timeout" : 900, | ||
"function-handler" : "AWSLambdaProject::AWSLambdaProject.Function::FunctionHandler", | ||
"framework" : "net8.0", | ||
"function-description" : "", | ||
"package-type" : "Zip", | ||
"function-subnets" : "", | ||
"function-security-groups" : "", | ||
"tracing-mode" : "PassThrough", | ||
"environment-variables" : "", | ||
"image-tag" : "", | ||
"function-name" : "Lambda-90351", | ||
"function-role" : "arn:aws:iam::142887710098:role/service-role/Lambda-90351-role-15s5pd3j" | ||
} |