OINO TS
    Preparing search index...

    Type Alias OINONoSqlParams

    NoSQL storage connection parameters

    type OINONoSqlParams = {
        credentials?: any;
        staticPartitionKey?: string;
        table: string;
        type: string;
    }
    Index

    Properties

    credentials?: any

    Provider-specific credentials (e.g. Azure: { url, connectionStr } / AWS: { region, accessKeyId, secretAccessKey, url? })

    staticPartitionKey?: string

    Optional static partition key. When set, all read/write operations are automatically scoped to this partition key, allowing multiple logical tables to share a single Azure Table Storage table.

    table: string

    Table name

    type: string

    Name of the nosql class (e.g. OINONoSqlAzureTable)