Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
March 29, 2024
This document will help to create aws lambda project with command line interface and build and deploy project in arm64 environment.
Before proceeding, ensure that you have the following prerequisites:
Open your preferred command-line interface with administrative privileges.
# Right-click and run as administrator for PowerShell # OR # Run as administrator for Command Prompt
Open a terminal.
To get the list of templates, type command “dotnet new list” It will list all the templates installed in the system for dotnet core.
Lambda templates are starting with lambda keywords i.e. Lambda empty function, Lambda simple S3 function, Lambda empty serverless, You can select based on the need.
Let’s create a project with an empty template using the below command.
dotnet new lambda.EmptyFunction --name myDotnetLambdaFunction
Navigate to the “aws-lambda-tools-defaults.json” file it will be located at
“projectname\src\projectname” in our example “myDotnetLambdaFunction\src\myDotnetLambdaFunction”
Update “function-architecture” property to arm64. There is option to configure other properties like run time, memory size, timeout, etc.