Glue / Paginator / ListConnectionTypes
ListConnectionTypes#
- class Glue.Paginator.ListConnectionTypes#
paginator = client.get_paginator('list_connection_types')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
Glue.Client.list_connection_types()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextToken
will be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'ConnectionTypes': [ { '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': { 'SupportedAuthenticationTypes': [ 'BASIC'|'OAUTH2'|'CUSTOM'|'IAM', ], 'SupportedDataOperations': [ 'READ'|'WRITE', ], 'SupportedComputeEnvironments': [ 'SPARK'|'ATHENA'|'PYTHON', ] } }, ], }
Response Structure
(dict) –
ConnectionTypes (list) –
A list of
ConnectionTypeBrief
objects containing brief information about the supported connection types.(dict) –
Brief information about a supported connection type returned by the
ListConnectionTypes
API.ConnectionType (string) –
The name of the connection type.
Description (string) –
A description of the connection type.
Capabilities (dict) –
The supported authentication types, data interface types (compute environments), and data operations of the connector.
SupportedAuthenticationTypes (list) –
A list of supported authentication types.
(string) –
SupportedDataOperations (list) –
A list of supported data operations.
(string) –
SupportedComputeEnvironments (list) –
A list of supported compute environments.
(string) –