Interface AstraDatabaseRegionInfo

Overview

Represents data about a region in which an Astra database is hosted.

This includes the region name, the API endpoint to use when interacting with that region, and the created-at timestamp.

Used within the regions field of AstraFullDatabaseInfo, which may include multiple region entries for multi-region databases.

interface AstraDatabaseRegionInfo {
    apiEndpoint: string;
    createdAt: Date;
    name: string;
}

Properties

apiEndpoint: string

The API endpoint for the region, e.g. https://<db-id>-<region>.apps.astra.datastax.com.

createdAt: Date

A timestamp representing when this region was created.

name: string

The name of the region where the database is hosted, e.g. us-east1.