Skip to content

List Connection Types

glue_list_connection_types R Documentation

The ListConnectionTypes API provides a discovery mechanism to learn available connection types in Glue

Description

The list_connection_types API provides a discovery mechanism to learn available connection types in Glue. The response contains a list of connection types with high-level details of what is supported for each connection type, including both built-in connection types and custom connection types registered via register_connection_type. The connection types listed are the set of supported options for the ConnectionType value in the create_connection API.

See also: describe_connection_type, register_connection_type, delete_connection_type

Usage

glue_list_connection_types(MaxResults, NextToken)

Arguments

MaxResults

The maximum number of results to return.

NextToken

A continuation token, if this is a continuation call.

Value

A list with the following syntax:

list(
  ConnectionTypes = list(
    list(
      ConnectionType = "JDBC"|"SFTP"|"MONGODB"|"KAFKA"|"NETWORK"|"MARKETPLACE"|"CUSTOM"|"SALESFORCE"|"VIEW_VALIDATION_REDSHIFT"|"VIEW_VALIDATION_ATHENA"|"GOOGLEADS"|"GOOGLESHEETS"|"GOOGLEANALYTICS4"|"SERVICENOW"|"MARKETO"|"SAPODATA"|"ZENDESK"|"JIRACLOUD"|"NETSUITEERP"|"HUBSPOT"|"FACEBOOKADS"|"INSTAGRAMADS"|"ZOHOCRM"|"SALESFORCEPARDOT"|"SALESFORCEMARKETINGCLOUD"|"ADOBEANALYTICS"|"SLACK"|"LINKEDIN"|"MIXPANEL"|"ASANA"|"STRIPE"|"SMARTSHEET"|"DATADOG"|"WOOCOMMERCE"|"INTERCOM"|"SNAPCHATADS"|"PAYPAL"|"QUICKBOOKS"|"FACEBOOKPAGEINSIGHTS"|"FRESHDESK"|"TWILIO"|"DOCUSIGNMONITOR"|"FRESHSALES"|"ZOOM"|"GOOGLESEARCHCONSOLE"|"SALESFORCECOMMERCECLOUD"|"SAPCONCUR"|"DYNATRACE"|"MICROSOFTDYNAMIC365FINANCEANDOPS"|"MICROSOFTTEAMS"|"BLACKBAUDRAISEREDGENXT"|"MAILCHIMP"|"GITLAB"|"PENDO"|"PRODUCTBOARD"|"CIRCLECI"|"PIPEDIVE"|"SENDGRID"|"AZURECOSMOS"|"AZURESQL"|"BIGQUERY"|"BLACKBAUD"|"CLOUDERAHIVE"|"CLOUDERAIMPALA"|"CLOUDWATCH"|"CLOUDWATCHMETRICS"|"CMDB"|"DATALAKEGEN2"|"DB2"|"DB2AS400"|"DOCUMENTDB"|"DOMO"|"DYNAMODB"|"GOOGLECLOUDSTORAGE"|"HBASE"|"KUSTOMER"|"MICROSOFTDYNAMICS365CRM"|"MONDAY"|"MYSQL"|"OKTA"|"OPENSEARCH"|"ORACLE"|"PIPEDRIVE"|"POSTGRESQL"|"SAPHANA"|"SQLSERVER"|"SYNAPSE"|"TERADATA"|"TERADATANOS"|"TIMESTREAM"|"TPCDS"|"VERTICA",
      DisplayName = "string",
      Vendor = "string",
      Description = "string",
      Categories = list(
        "string"
      ),
      Capabilities = list(
        SupportedAuthenticationTypes = list(
          "BASIC"|"OAUTH2"|"CUSTOM"|"IAM"
        ),
        SupportedDataOperations = list(
          "READ"|"WRITE"
        ),
        SupportedComputeEnvironments = list(
          "SPARK"|"ATHENA"|"PYTHON"
        )
      ),
      LogoUrl = "string",
      ConnectionTypeVariants = list(
        list(
          ConnectionTypeVariantName = "string",
          DisplayName = "string",
          Description = "string",
          LogoUrl = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_connection_types(
  MaxResults = 123,
  NextToken = "string"
)