Table of Contents

Class TableIndexMetadata

Namespace
DataStax.AstraDB.DataApi.Tables
Assembly
DataStax.AstraDB.DataApi.dll

Metadata about an existing table index, as returned by the Data API.

[JsonConverter(typeof(TableIndexMetadataConverter))]
public class TableIndexMetadata
Inheritance
TableIndexMetadata
Inherited Members

Properties

Definition

The definition of the index, including the target column and options.

[JsonPropertyName("definition")]
public TableBaseIndexDefinition Definition { get; set; }

Property Value

TableBaseIndexDefinition

IndexType

The type of the index (e.g., "regular" or "vector").

[JsonPropertyName("indexType")]
public string IndexType { get; set; }

Property Value

string

Name

The name of the index.

[JsonPropertyName("name")]
public string Name { get; set; }

Property Value

string