prorm API Reference
    Preparing search index...

    Interface EtcdStoreOptions

    Connection options for EtcdStore. A thin, typed subset of etcd3's IOptions covering the fields most callers need; anything else can be reached via getClient().

    interface EtcdStoreOptions {
        hosts: string | string[];
        credentials?: EtcdTlsOptions;
        auth?: EtcdAuthOptions;
        dialTimeout?: number;
    }
    Index
    hosts: string | string[]

    One or more etcd endpoints, e.g. ['http://127.0.0.1:2379'].

    credentials?: EtcdTlsOptions

    TLS client credentials, if connecting over https://.

    Username/password auth, if etcd's RBAC auth is enabled.

    dialTimeout?: number

    Milliseconds to wait while connecting before timing out. Defaults to 30s (etcd3's default).