# RecipeEntryConstruct Properties

- Package: [Aspire.Hosting.Radius](/reference/api/csharp/aspire.hosting.radius.md)
- Type: [RecipeEntryConstruct](/reference/api/csharp/aspire.hosting.radius/recipeentryconstruct.md)
- Kind: `Properties`
- Members: `3`

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

<a id="parameters"></a>

## Parameters

- Name: `Parameters`
- Modifiers: `get; set`
- Returns: `BicepDictionary<object>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/RecipeEntryConstruct.cs)

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.

```csharp
public BicepDictionary<object> Parameters { get; set; }
```

<a id="recipekind"></a>

## RecipeKind

- Name: `RecipeKind`
- Modifiers: `get; set`
- Returns: `BicepValue<string>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/RecipeEntryConstruct.cs)

The recipe kind (e.g., "bicep").

```csharp
public BicepValue<string> RecipeKind { get; set; }
```

<a id="recipelocation"></a>

## RecipeLocation

- Name: `RecipeLocation`
- Modifiers: `get; set`
- Returns: `BicepValue<string>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/RecipeEntryConstruct.cs)

The recipe location (e.g., OCI registry path).

```csharp
public BicepValue<string> RecipeLocation { get; set; }
```
