Skip to main content

@aws-cdk/aws-lambda-dotnet

Project description

AWS Lambda .NET Library

---

cdk-constructs: Experimental

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 a 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"]
    )
)

Make sure <AssemblyName>bootstrap</AssemblyName> is set in the csproj file as this is required by the custom runtime.

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:

Please submit a pull request so that we can review your service extension and list it here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aws_cdk_aws_lambda_dotnet-0.0.6.tar.gz (77.9 kB view details)

Uploaded Source

Built Distribution

aws_cdk.aws_lambda_dotnet-0.0.6-py3-none-any.whl (76.4 kB view details)

Uploaded Python 3

File details

Details for the file aws_cdk_aws_lambda_dotnet-0.0.6.tar.gz.

File metadata

File hashes

Hashes for aws_cdk_aws_lambda_dotnet-0.0.6.tar.gz
Algorithm Hash digest
SHA256 247e53178ce9d7e76f8f0fffcd7212bc64c094d2382d35b46479db1006592c1e
MD5 ff0fc0151e527ab65974bd52da40c383
BLAKE2b-256 0804fa7ac8cf72d83cbff60068c7aa8c4fea14169584315440f18278bbf44981

See more details on using hashes here.

File details

Details for the file aws_cdk.aws_lambda_dotnet-0.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for aws_cdk.aws_lambda_dotnet-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 587d3a5255527aeb9182b1ec330f0585259138dd2a6a3d596c980daf4e237a92
MD5 deadacf0f059d1fb96669bdf04bbcc45
BLAKE2b-256 e4f05703fb3e56e9526e2be79a5f39d5b6540b3b034c53b59cf278ad54f67094

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page