Skip to content

connection

Manage result output connections used for exporting job results and segment activations.

Commands

CommandDescription
tdx connection listList 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 10

Default output format:

        s3  my-s3-export - John Doe
salesforce  salesforce-sync - Jane Smith
  bigquery  bigquery-warehouse - Data Team

Show 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" --json

Aliases

  • tdx connections - Alias for tdx connection list

Output Fields

Connection List/Details

FieldDescription
nameConnection name (unique identifier)
typeConnection type (e.g., s3, td, postgresql, gspreadsheet)
settingsConnection settings (JSON object) or URL string
organizationOrganization (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