# BicepOutputReference

- Module: [Aspire.Hosting.Azure](/reference/api/typescript/aspire.hosting.azure.md)
- Version: `13.4.0`
- Kind: `handle`
- Source: [GitHub](https://github.com/microsoft/aspire)

A reference to an output from a bicep template.

## Definition

```typescript
interface BicepOutputReference
  extends IExpressionValue,
    IManifestExpressionProvider,
    IValueProvider,
    IValueWithReferences,
    BicepOutputReference]] {
  readonly name: string;
  readonly value: string;
  readonly valueExpression: string;
}
```

## Properties

- `name`: `string` `get` -- Name of the output.
- `value`: `string` `get` -- The value of the output.
- `valueExpression`: `string` `get` -- The expression used in the manifest to reference the value of the output.
