# TypedLocalObjectReferenceV1 Properties

- Package: [Aspire.Hosting.Kubernetes](/reference/api/csharp/aspire.hosting.kubernetes.md)
- Type: [TypedLocalObjectReferenceV1](/reference/api/csharp/aspire.hosting.kubernetes/typedlocalobjectreferencev1.md)
- Kind: `Properties`
- Members: `3`

Represents a reference to a Kubernetes object with a specific type, enabling identification of a local object within the same namespace.

## ApiGroup

- Name: `ApiGroup`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/TypedLocalObjectReferenceV1.cs)

Gets or sets the API group of the referent. This property specifies the group of the referenced Kubernetes resource. An empty string represents the core API group, and a null value indicates the defaulting behavior is configured.

```csharp
public string ApiGroup { get; set; }
```

## Kind

- Name: `Kind`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/TypedLocalObjectReferenceV1.cs)

Gets or sets the kind of the referenced resource. This represents the type of resource being referenced (e.g., "Pod", "ConfigMap").

```csharp
public string Kind { get; set; }
```

## Name

- Name: `Name`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/TypedLocalObjectReferenceV1.cs)

Gets or sets the name of the referenced resource within the same namespace.

```csharp
public string Name { get; set; }
```
