AWS Lambda | Other topics Flashcards

1
Q

How do I package and deploy an AWS Lambda function in C#?

Other topics

AWS Lambda | Compute

A

You can create a C# Lambda function using the Visual Studio IDE by selecting “Publish to AWS Lambda” in the Solution Explorer. Alternatively, you can directly run the “dotnet lambda publish” command from the dotnet CLI which has the [# Lambda CLI tools patch] installed, which creates a ZIP of your C# source code along with all NuGet dependencies as well as your own published DLL assemblies, and automatically uploads it to AWS Lambda using the runtime parameter “dotnetcore1.0”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which versions of Amazon Linux, Node.js, Python, JDK, .NET Core, SDKs, and additional libraries does AWS Lambda support?

Other topics

AWS Lambda | Compute

A

You can view the list of supported versions here.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Can I change the version of Amazon Linux or any language runtime?

Other topics

AWS Lambda | Compute

A

No. AWS Lambda offers a single version of the operating system and language runtime to all users of the service.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can I record and audit calls made to the AWS Lambda API?

Other topics

AWS Lambda | Compute

A

AWS Lambda is integrated with AWS CloudTrail. AWS CloudTrail can record and deliver log files to your Amazon S3 bucket describing the API usage of your account.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly