@karmaniverous/entity-client-dynamodb
    Preparing search index...

    Interface TablePropertiesConfig

    Config shape for managed table properties (non-generated keys).

    interface TablePropertiesConfig {
        billingMode?: string;
        readCapacityUnits?: string | number;
        tableName?: string;
        writeCapacityUnits?: string | number;
    }
    Index

    Properties

    billingMode?: string

    Billing mode (e.g., PAY_PER_REQUEST or PROVISIONED).

    readCapacityUnits?: string | number

    Provisioned throughput RCU (requires billingMode=PROVISIONED).

    tableName?: string

    TableName to set in YAML (often env-expanded by get-dotenv).

    writeCapacityUnits?: string | number

    Provisioned throughput WCU (requires billingMode=PROVISIONED).