Type alias AddDatabaseConfig
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;
}
Type declaration
attributes: Record<string, "S" | "N" | "B" | "BOOL" | "NULL" | "M" | "L" | "SS" | "NS" | "BS">
Optional
billingMode?: "PAY_PER_REQUEST" | "PROVISIONED"
keys: Record<string, "HASH" | "RANGE">
tableId: string
Optional
tableName?: string
The configuration for adding a database to a stack.