dynobase-icon
Dynobase

DynamoDB: Not Begins With (Guide w/ Code Examples)

Rafal Wilinski

Provided by Rafal Wilinski

The DynamoDB JavaScript SDK does not have a method specifically called "not begins with." However, you can use the scan or query operations with a FilterExpression that uses the not_begins_with method to retrieve items that do not have an attribute that begins with a certain value.

const AWS = require('aws-sdk'); const dynamoDB = new AWS.DynamoDB({region: 'us-west-2', apiVersion: '2012-08-10'}); const params = { TableName: 'my-table', FilterExpression: 'not_begins_with(attribute, :val)', ExpressionAttributeValues: { ':val': {S: 'example'} } }; dynamoDB.scan(params, (err, data) => { if (err) { console.log(err); } else { console.log(data); } });

Tired of AWS Console? Try Dynobase.

First 7 days are. No credit card needed.

Product Features

Download
/
Changelog
/
Pricing
/
Member Portal
/
Privacy
/
EULA
/
Twitter
/
Affiliates & Influencers
© 2025 Dynobase
+
Using DynamoDB Console frequently?
Try Dynobase to accelerate your DynamoDB workflow. Start your 7-day free trial today.