Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/destinations/redshift.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ You'll need to provide:
| **Region** | string | Yes | `us-west-2` | AWS region where your Redshift resource lives |
| **AWS Access Key ID** | string | Yes | `AKIAIOSFODNN7EXAMPLE` | AWS access key with Redshift Data API permissions |
| **AWS Secret Access Key** | string | Yes | | AWS secret access key |
| **Database** | string | No | `dev` | Target database name |
| **Database** | string | Yes | `dev` | Target database name |
| **Schema** | string | No | `public` | Target schema |
| **Table name** | string | No | `events` | Target table |
| **Table name** | string | Yes | `events` | Target table |
| **Workgroup name** | string | No* | `my-workgroup` | Redshift Serverless workgroup name |
| **Cluster identifier** | string | No* | `my-cluster` | Provisioned cluster identifier |
| **DB user** | string | No | `ampersand` | Database user (for provisioned clusters) |
Expand Down
6 changes: 3 additions & 3 deletions src/destinations/snowflake.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ You'll need to provide:
| **Account identifier** | string | Yes | `myorg-myaccount` | Your Snowflake account identifier |
| **User ID** | string | Yes | `SVC_AMPERSAND` | Snowflake user configured for key-pair auth |
| **Private key** | string | Yes | | PEM-encoded RSA private key for that user |
| **Database** | string | No | `ANALYTICS` | Target database |
| **Schema** | string | No | `PUBLIC` | Target schema |
| **Table name** | string | No | `ampersand_events` | Target table |
| **Database** | string | Yes | `ANALYTICS` | Target database |
| **Schema** | string | Yes | `PUBLIC` | Target schema |
| **Table name** | string | Yes | `ampersand_events` | Target table |
| **Batch size** | integer | No | `1000` | Rows to buffer before flushing a batch (defaults to 1000) |
| **Max wait (seconds)** | integer | No | `30` | Max seconds to wait before flushing a batch (defaults to 30) |

Expand Down
Loading