# KindDeployedResource Properties

- Package: [CommunityToolkit.Aspire.Hosting.Kind](/reference/api/csharp/communitytoolkit.aspire.hosting.kind.md)
- Type: [KindDeployedResource](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kinddeployedresource.md)
- Kind: `Properties`
- Members: `2`

Base class for resources deployed to a Kind cluster.

<a id="namespace"></a>

## Namespace

- Name: `Namespace`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindDeployedResource.cs)

Gets or sets the Kubernetes namespace for the deployment. When `null`, the Helm default namespace is used.

```csharp
public string? Namespace { get; set; }
```

<a id="parent"></a>

## Parent

- Name: `Parent`
- Modifiers: `get`
- Returns: [KindClusterResource](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindclusterresource.md)
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindDeployedResource.cs#L19)

Gets the parent Kind cluster resource.

```csharp
public KindClusterResource Parent { get; }
```
