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', 'DisplayName': 'string', 'Vendor': 'string', 'Description': 'string', 'Categories': [ 'string', ], 'Capabilities': { 'SupportedAuthenticationTypes': [ 'BASIC'|'OAUTH2'|'CUSTOM'|'IAM', ], 'SupportedDataOperations': [ 'READ'|'WRITE', ], 'SupportedComputeEnvironments': [ 'SPARK'|'ATHENA'|'PYTHON', ] }, 'LogoUrl': 'string', 'ConnectionTypeVariants': [ { 'ConnectionTypeVariantName': 'string', 'DisplayName': 'string', 'Description': 'string', 'LogoUrl': 'string' }, ] }, ], }
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.
DisplayName (string) –
The human-readable name for the connection type that is displayed in the Glue console.
Vendor (string) –
The name of the vendor or provider that created or maintains this connection type.
Description (string) –
A description of the connection type.
Categories (list) –
A list of categories that this connection type belongs to. Categories help users filter and find appropriate connection types based on their use cases.
(string) –
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) –
LogoUrl (string) –
The URL of the logo associated with a connection type.
ConnectionTypeVariants (list) –
A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or implementations of the same general connection type.
(dict) –
Represents a variant of a connection type in Glue Data Catalog. Connection type variants provide specific configurations and behaviors for different implementations of the same general connection type.
ConnectionTypeVariantName (string) –
The unique identifier for the connection type variant. This name is used internally to identify the specific variant of a connection type.
DisplayName (string) –
The human-readable name for the connection type variant that is displayed in the Glue console.
Description (string) –
A detailed description of the connection type variant, including its purpose, use cases, and any specific configuration requirements.
LogoUrl (string) –
The URL of the logo associated with a connection type variant.