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. The connection types listed are the set of supported options for the ConnectionType value in the create_connection API.

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"|"SLACK"|"STRIPE"|"INTERCOM"|"SNAPCHATADS",
      Description = "string",
      Capabilities = list(
        SupportedAuthenticationTypes = list(
          "BASIC"|"OAUTH2"|"CUSTOM"|"IAM"
        ),
        SupportedDataOperations = list(
          "READ"|"WRITE"
        ),
        SupportedComputeEnvironments = list(
          "SPARK"|"ATHENA"|"PYTHON"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

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