Type Alias ConnectionInstance

Resolved connection details including credentials and QRI reference for an active endpoint.

type ConnectionInstance = {
    connectionId?: string;
    connectionString: string;
    dataInterfaceType: string;
    password?: string;
    qri?: string;
    spaceQualifiedConnectionName?: string;
    user?: string;
}
Index
connectionId?: string

Unique identifier of the connection.

connectionString: string

Connection string.

dataInterfaceType: string

Type of data interface used by the connection (for example, data for standard data loading).

password?: string

Password associated with the connection.

qri?: string

Qlik Resource Identifier (QRI) for the connection.

spaceQualifiedConnectionName?: string

Space-qualified name of the connection in the format SpaceName:ConnectionName.

user?: string

Username associated with the connection.