@resistdesign/voltra
    Preparing search index...

    Type Alias AddDatabaseConfig

    The configuration for adding a database to a stack.

    type AddDatabaseConfig = {
        attributes: Record<
            string,
            "S"
            | "N"
            | "B"
            | "BOOL"
            | "NULL"
            | "M"
            | "L"
            | "SS"
            | "NS"
            | "BS",
        >;
        billingMode?: "PAY_PER_REQUEST" | "PROVISIONED";
        keys: Record<string, "HASH" | "RANGE">;
        tableId: string;
        tableName?: string;
    }
    Index

    Properties

    attributes: Record<
        string,
        "S"
        | "N"
        | "B"
        | "BOOL"
        | "NULL"
        | "M"
        | "L"
        | "SS"
        | "NS"
        | "BS",
    >

    Specific attributes for the database table.

    billingMode?: "PAY_PER_REQUEST" | "PROVISIONED"

    The billing mode for the database table.

    keys: Record<string, "HASH" | "RANGE">

    The keys for the database table.

    tableId: string

    The id of the database table in a stack.

    tableName?: string

    The name of the database table.