# LambdaEmulatorResource

- Kind: `class`
- Package: [Aspire.Hosting.AWS](/reference/api/csharp/aspire.hosting.aws.md)
- Version: `13.2.0`
- Namespace: `Aspire.Hosting.AWS.Lambda`
- Target framework: `net8.0`
- Inherits: `ExecutableResource`

A resource that represents a specified executable process.

## Definition

```csharp
namespace Aspire.Hosting.AWS.Lambda;

public class LambdaEmulatorResource
    : Aspire.Hosting.ApplicationModel.ExecutableResource
{
    // ...
}
```

## Remarks

You can run any executable command using its full path. As a security feature, Aspire doesn't run executable unless the command is located in a path listed in the PATH environment variable. To run an executable file that's in the current directory, specify the full path or use the relative path `./` to represent the current directory.

## Constructors

- [LambdaEmulatorResource(string)](/reference/api/csharp/aspire.hosting.aws/lambdaemulatorresource/constructors.md#constructor-string)
