# ServiceAccountTokenProjectionV1 Properties

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

Represents a service account token source within a projected volume.

<a id="audience"></a>

## Audience

- Name: `Audience`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/69db530a4816698cf1d5fa4557933e0ac4f127c6/src/Aspire.Hosting.Kubernetes/Resources/ServiceAccountTokenProjectionV1.cs)

Gets or sets the intended audience of the token.

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

<a id="expirationseconds"></a>

## ExpirationSeconds

- Name: `ExpirationSeconds`
- Modifiers: `nullable` `get; set`
- Returns: `long?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/69db530a4816698cf1d5fa4557933e0ac4f127c6/src/Aspire.Hosting.Kubernetes/Resources/ServiceAccountTokenProjectionV1.cs)

Gets or sets the requested token expiration time in seconds.

```csharp
public long? ExpirationSeconds { get; set; }
```

<a id="path"></a>

## Path

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

Gets or sets the relative path where the token will be projected.

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