# RecipeEntryConstruct

- Kind: `class`
- Package: [Aspire.Hosting.Radius](/reference/api/csharp/aspire.hosting.radius.md)
- Version: `13.5.3-preview.1.26425.3`
- Namespace: `Aspire.Hosting.Radius.Publishing.Constructs`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/RecipeEntryConstruct.cs)
- Inherits: `ProvisionableConstruct`

Represents a single recipe entry inside a recipe pack (recipeKind + recipeLocation).

## Definition

```csharp
namespace Aspire.Hosting.Radius.Publishing.Constructs;

public sealed class RecipeEntryConstruct
    : Azure.Provisioning.Primitives.ProvisionableConstruct
{
    // ...
}
```

## Constructors

- [RecipeEntryConstruct](/reference/api/csharp/aspire.hosting.radius/recipeentryconstruct/constructors.md#constructor)

## Properties

- [Parameters](/reference/api/csharp/aspire.hosting.radius/recipeentryconstruct/properties.md#parameters) : `BicepDictionary<object>` `get; set` -- Optional recipe parameters for this entry. Populated only when the environment declares recipe parameters; left unassigned otherwise so the `parameters` key is omitted from the emitted Bicep.
- [RecipeKind](/reference/api/csharp/aspire.hosting.radius/recipeentryconstruct/properties.md#recipekind) : `BicepValue<string>` `get; set` -- The recipe kind (e.g., "bicep").
- [RecipeLocation](/reference/api/csharp/aspire.hosting.radius/recipeentryconstruct/properties.md#recipelocation) : `BicepValue<string>` `get; set` -- The recipe location (e.g., OCI registry path).
