> For clean Markdown of any page, append .md to the page URL. > For a complete documentation index, see https://apidocs.polytomic.com/llms.txt. > For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.polytomic.com/_mcp/server. # Amazon Keyspaces Supports: * ✅ Models * ✅ Bulk sync source ## Connection ### Configuration
NameTypeDescriptionRequired
auth_method string Authentication method

Accepted values: `access_key_and_secret` ↓, `iam_role` ↓, `service_credentials` ↓
true
region string AWS region true

`auth_method`

When `auth_method` is `access_key_and_secret`
NameTypeDescriptionRequired
access_key_id string AWS access key ID true
secret_access_key string AWS secret access key true
When `auth_method` is `access_key_and_secret|iam_role`
NameTypeDescriptionRequired
change_detection boolean Use Amazon Keyspaces CDC streams for bulk syncs false
When `auth_method` is `iam_role`
NameTypeDescriptionRequired
iam_role_arn string IAM role ARN true
When `auth_method` is `service_credentials`
NameTypeDescriptionRequired
password string Password true
username string Username true

`change_detection`

When `change_detection` is `true`
NameTypeDescriptionRequired
managed_streams boolean Let Polytomic manage Amazon Keyspaces CDC stream settings false
#### Example ```json { "name": "Amazon Keyspaces connection", "type": "amazon_keyspaces", "configuration": { "access_key_id": "your-access-key-id", "auth_method": "access_key_and_secret", "region": "us-east-1", "secret_access_key": "your-secret-access-key" } } ``` ### Read-only properties
NameTypeDescriptionRequired

`auth_method`

When `auth_method` is `iam_role`
NameTypeDescriptionRequired
external_id string External ID for the IAM role false
## Model Sync ### Source #### Configuration
NameTypeDescriptionRequired
keyspace string Keyspace true
table string Table true
#### Example ```json { ... "configuration": { "keyspace": "app", "table": "users" } } ``` ## Bulk Sync ### Source Amazon Keyspaces connections may be used as a bulk sync source. No additional configuration options are required.