> For the complete documentation index, see [llms.txt](https://shiftcode.gitbook.io/dynamo-easy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shiftcode.gitbook.io/dynamo-easy/api/dynamo-store.md).

# Dynamo Store

The DynamoStore provides an easy way to execute requests to a single table.

{% code title="store.snippet.ts" %}

```typescript
import { DynamoStore } from '@shiftcoders/dynamo-easy'
import { Person } from './models'

const personStore = new DynamoStore(Person)
```

{% endcode %}

{% embed url="<https://shiftcode.github.io/dynamo-easy/classes/dynamo_easy.dynamostore.html>" %}

{% hint style="info" %}
You can provide a DynamoDB client instance when creating a new DynamoStore instance:`new DynamoStore(Person, myDynamoDBClient)`&#x20;
{% endhint %}
