# AzureFunctionsProjectResource Constructors

- Package: [Aspire.Hosting.Azure.Functions](/reference/api/csharp/aspire.hosting.azure.functions.md)
- Type: [AzureFunctionsProjectResource](/reference/api/csharp/aspire.hosting.azure.functions/azurefunctionsprojectresource.md)
- Kind: `Constructors`
- Members: `1`

Represents an Azure Functions project resource within the Aspire hosting environment.

## AzureFunctionsProjectResource(string)

- Name: `Constructor(string)`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Aspire.Hosting.Azure.Functions/AzureFunctionsResource.cs#L17)

Represents an Azure Functions project resource within the Aspire hosting environment.

```csharp
public class AzureFunctionsProjectResource
{
    public AzureFunctionsProjectResource(
        string name)
    {
        // ...
    }
}
```

## Parameters

- `name` (`string`)

## Remarks

This class is used to define and manage the configuration of an Azure Functions project, including its associated host storage. We create a strongly-typed resource for the Azure Functions to support Functions-specific customizations, like the mapping of connection strings and configurations for host storage. ///
