connection
Manage result output connections used for exporting job results and segment activations.
Commands
| Command | Description |
|---|---|
tdx connection list | List all result output connections |
tdx connection show <name> | Show connection details |
Usage
List Connections
List all result output connections available in your account:
bash
# List all connections (simple format: name, type, owner)
tdx connection list
# Output in table format (detailed view)
tdx connection list --table
# Output as JSON
tdx connection list --json
# Limit results
tdx connection list --limit 10Default output format:
s3 my-s3-export - John Doe
salesforce salesforce-sync - Jane Smith
bigquery bigquery-warehouse - Data TeamShow Connection
Show detailed information about a specific connection by name:
bash
# Show by name
tdx connection show my-s3-connection
# Output as JSON
tdx connection show "My Salesforce Connection" --jsonAliases
tdx connections- Alias fortdx connection list
Output Fields
Connection List/Details
| Field | Description |
|---|---|
name | Connection name (unique identifier) |
type | Connection type (e.g., s3, td, postgresql, gspreadsheet) |
settings | Connection settings (JSON object) or URL string |
organization | Organization (deprecated) |
Examples
bash
# List connections and filter with jq
tdx connection list --json | jq '.[] | select(.name | contains("s3"))'
# Export connection list to a file
tdx connection list --json > connections.json