# @purista/aws-config-store API

AWS Systems Manager Parameter Store adapter for PURISTA config values.

---
Canonical: /handbook/api/modules/_purista_aws-config-store/
Format: Markdown for agents
---

AWS Systems Manager Parameter Store adapter for PURISTA config values.

Package: `@purista/aws-config-store`

## Signature

```typescript
@purista/aws-config-store
```

## Examples

```typescript
const store = new AWSConfigStore({
  client: { region: 'eu-central-1' },
  cacheTtl: 60_000,
})

await store.setConfig('/tenants/acme/prod/app/theme', 'dark')
const config = await store.getConfig('/tenants/acme/prod/app/theme')
```

## Members

### Classes

- `class AWSConfigStore` — Config store backed by AWS Systems Manager Parameter Store.

### Type Aliases

- `type AWSConfigStoreConfig = void` — AWS Systems Manager Parameter Store configuration.

### Variables

- `const puristaVersion: "3.0.1"` — The PURISTA package version embedded in the published runtime build.
