Glue / Paginator / ListEntities
ListEntities¶
- class Glue.Paginator.ListEntities¶
paginator = client.get_paginator('list_entities')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
Glue.Client.list_entities().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( ConnectionName='string', CatalogId='string', ParentEntityName='string', DataStoreApiVersion='string', PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } )
- Parameters:
ConnectionName (string) – A name for the connection that has required credentials to query any connection type.
CatalogId (string) – The catalog ID of the catalog that contains the connection. This can be null, By default, the Amazon Web Services Account ID is the catalog ID.
ParentEntityName (string) – Name of the parent entity for which you want to list the children. This parameter takes a fully-qualified path of the entity in order to list the child entities.
DataStoreApiVersion (string) – The API version of the SaaS connector.
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
NextTokenwill be provided in the output that you can use to resume pagination.StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'Entities': [ { 'EntityName': 'string', 'Label': 'string', 'IsParentEntity': True|False, 'Description': 'string', 'Category': 'string', 'CustomProperties': { 'string': 'string' } }, ], }
Response Structure
(dict) –
Entities (list) –
A list of
Entityobjects.(dict) –
An entity supported by a given
ConnectionType.EntityName (string) –
The name of the entity.
Label (string) –
Label used for the entity.
IsParentEntity (boolean) –
A Boolean value which helps to determine whether there are sub objects that can be listed.
Description (string) –
A description of the entity.
Category (string) –
The type of entities that are present in the response. This value depends on the source connection. For example this is
SObjectsfor Salesforce anddatabasesorschemasortablesfor sources like Amazon Redshift.CustomProperties (dict) –
An optional map of keys which may be returned for an entity by a connector.
(string) –
(string) –