@aws-cdk/aws-lambda-dotnet
Project description
AWS Lambda .NET Library
---The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
This library provides constructs for .NET Lambda functions.
To use this module you will either need to have .NET SDK installed (.NET 6.0 or later) with the AWS Lambda Tools for .NET or Docker installed.
.NET Function
Define a DotNetFunction:
dotnet.DotNetFunction(self, "MyFunction",
project_dir="src/MyFunction"
)
All other properties of lambda.Function are supported, see also the AWS Lambda construct library.
Custom Runtime and Native AOT
With this construct it is possible to use s custom runtime by setting the runtime to PROVIDED_AL2. This allows you to run unsupported .NET runtime versions like .NET 7.0 or Native AOT. Setting the runtime to PROVIDED_AL2 will instruct CDK and the AWS Lambda Tools for .NET to build your project in a Docker container based of Amazon Linux 2. An example can be found below.
dotnet.DotNetFunction(self, "MyFunction",
project_dir="src/MyFunction",
runtime=lambda_.Runtime.PROVIDED_AL2,
bundling=dotnet.BundlingOptions(
msbuild_parameters=["/p:PublishAot=true"]
)
)
Publishing your application with Native AOT requires you to use the same processor architecture for the Lambda function as for your build environment. Without specification, the construct automatically selects the processor architecture of the machine where CDK is building your project.
Community Extensions
We encourage the development of Community Service Extensions that support advanced features. Here are some useful extensions that we have reviewed:
- ListenerRulesExtension for more precise control over Application Load Balancer rules
Please submit a pull request so that we can review your service extension and list it here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cdklabs.aws-lambda-dotnet-0.0.0.tar.gz.
File metadata
- Download URL: cdklabs.aws-lambda-dotnet-0.0.0.tar.gz
- Upload date:
- Size: 73.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60fa432db6237c20d33fe80cdb9aca7fdd849671f44943ee0100cfd502c7437a
|
|
| MD5 |
102ba64c4dc41fadd247c237e5efc0a9
|
|
| BLAKE2b-256 |
2ff2cd3ae220af157fac2e92f0aa900a98b3ef848247402449d01ab5b3516a23
|
File details
Details for the file cdklabs.aws_lambda_dotnet-0.0.0-py3-none-any.whl.
File metadata
- Download URL: cdklabs.aws_lambda_dotnet-0.0.0-py3-none-any.whl
- Upload date:
- Size: 71.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d080de047028669a804728d5b47f402207e787fa9bdd180e8fabdd4147f9d9eb
|
|
| MD5 |
476c38fe7786811dcc985bc035569131
|
|
| BLAKE2b-256 |
57138ae56f2c6d1f1e14e4f3adf93aab20c178f099925d283e502609ee883dcc
|