# AtsExportedValueInfo

- Kind: `class`
- Package: [Aspire.TypeSystem](/reference/api/csharp/aspire.typesystem.md)
- Version: `13.3.0`
- Namespace: `Aspire.TypeSystem`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.TypeSystem/AtsExportedValueInfo.cs)

Represents an immutable exported ATS value discovered from `[AspireValue]`.

## Definition

```csharp
namespace Aspire.TypeSystem;

public sealed class AtsExportedValueInfo
{
    // ...
}
```

## Constructors

- [AtsExportedValueInfo](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/constructors.md#constructor)

## Properties

- [Description](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#description) : `string?` `get; init` -- Gets an optional XML documentation summary for the exported value.
- [OwningAssemblyName](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#owningassemblyname) : `string` `get; init` -- Gets the name of the assembly that exported this value.
- [PathSegments](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#pathsegments) : `IReadOnlyList<string>` `get; init` -- Gets the full path of the exported value in generated guest SDKs.
- [Type](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#type) : [AtsTypeRef](/reference/api/csharp/aspire.typesystem/atstyperef.md) `get; init` -- Gets the ATS type of the exported value.
- [Value](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#value) : `JsonNode?` `get; init` -- Gets the snapped JSON value emitted into guest SDKs.
