interface NatsAccount {
    createdAt?: Date;
    endpoint: string;
    id: string;
    name: string;
    projectId: string;
    region: Region;
    updatedAt?: Date;
}

Properties

createdAt?: Date

NATS account creation date.

endpoint: string

Endpoint of the NATS service for this account.

id: string

NATS account ID.

name: string

NATS account name.

projectId: string

Project ID of the Project containing the NATS account.

region: Region

Region where the NATS account is deployed.

updatedAt?: Date

NATS account last modification date.