@resistdesign/voltra
    Preparing search index...

    Type Alias QueryInput

    Input payload for DynamoDB query operations.

    type QueryInput = {
        ExclusiveStartKey?: AttributeMap;
        ExpressionAttributeNames?: Record<string, string>;
        ExpressionAttributeValues: AttributeMap;
        KeyConditionExpression: string;
        Limit?: number;
        TableName: string;
    }
    Index

    Properties

    ExclusiveStartKey?: AttributeMap

    Exclusive start key for pagination.

    ExpressionAttributeNames?: Record<string, string>

    Expression attribute name mappings.

    ExpressionAttributeValues: AttributeMap

    Expression attribute values for the query.

    KeyConditionExpression: string

    Key condition expression for the query.

    Limit?: number

    Maximum number of items to return.

    TableName: string

    DynamoDB table name.