Skip to content

Paginators#

Index > LakeFormation > Paginators

Auto-generated documentation for LakeFormation type annotations stubs module mypy-boto3-lakeformation.

GetWorkUnitsPaginator#

Type annotations and code completion for boto3.client("lakeformation").get_paginator("get_work_units"). boto3 documentation

# GetWorkUnitsPaginator usage example

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import GetWorkUnitsPaginator

def get_get_work_units_paginator() -> GetWorkUnitsPaginator:
    return Session().client("lakeformation").get_paginator("get_work_units")
# GetWorkUnitsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import GetWorkUnitsPaginator

session = Session()

client = Session().client("lakeformation")  # (1)
paginator: GetWorkUnitsPaginator = client.get_paginator("get_work_units")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: LakeFormationClient
  2. paginator: GetWorkUnitsPaginator
  3. item: GetWorkUnitsResponseTypeDef

paginate#

Type annotations and code completion for GetWorkUnitsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    QueryId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetWorkUnitsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetWorkUnitsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetWorkUnitsRequestGetWorkUnitsPaginateTypeDef = {  # (1)
    "QueryId": ...,
}

parent.paginate(**kwargs)
  1. See GetWorkUnitsRequestGetWorkUnitsPaginateTypeDef

ListDataCellsFilterPaginator#

Type annotations and code completion for boto3.client("lakeformation").get_paginator("list_data_cells_filter"). boto3 documentation

# ListDataCellsFilterPaginator usage example

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import ListDataCellsFilterPaginator

def get_list_data_cells_filter_paginator() -> ListDataCellsFilterPaginator:
    return Session().client("lakeformation").get_paginator("list_data_cells_filter")
# ListDataCellsFilterPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import ListDataCellsFilterPaginator

session = Session()

client = Session().client("lakeformation")  # (1)
paginator: ListDataCellsFilterPaginator = client.get_paginator("list_data_cells_filter")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: LakeFormationClient
  2. paginator: ListDataCellsFilterPaginator
  3. item: ListDataCellsFilterResponsePaginatorTypeDef

paginate#

Type annotations and code completion for ListDataCellsFilterPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    Table: TableResourceTypeDef = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListDataCellsFilterResponsePaginatorTypeDef]:  # (3)
    ...
  1. See TableResourceTypeDef
  2. See PaginatorConfigTypeDef
  3. See ListDataCellsFilterResponsePaginatorTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDataCellsFilterRequestListDataCellsFilterPaginateTypeDef = {  # (1)
    "Table": ...,
}

parent.paginate(**kwargs)
  1. See ListDataCellsFilterRequestListDataCellsFilterPaginateTypeDef

ListLFTagsPaginator#

Type annotations and code completion for boto3.client("lakeformation").get_paginator("list_lf_tags"). boto3 documentation

# ListLFTagsPaginator usage example

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import ListLFTagsPaginator

def get_list_lf_tags_paginator() -> ListLFTagsPaginator:
    return Session().client("lakeformation").get_paginator("list_lf_tags")
# ListLFTagsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import ListLFTagsPaginator

session = Session()

client = Session().client("lakeformation")  # (1)
paginator: ListLFTagsPaginator = client.get_paginator("list_lf_tags")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: LakeFormationClient
  2. paginator: ListLFTagsPaginator
  3. item: ListLFTagsResponsePaginatorTypeDef

paginate#

Type annotations and code completion for ListLFTagsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    CatalogId: str = ...,
    ResourceShareType: ResourceShareTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListLFTagsResponsePaginatorTypeDef]:  # (3)
    ...
  1. See ResourceShareTypeType
  2. See PaginatorConfigTypeDef
  3. See ListLFTagsResponsePaginatorTypeDef
# paginate method usage example with argument unpacking

kwargs: ListLFTagsRequestListLFTagsPaginateTypeDef = {  # (1)
    "CatalogId": ...,
}

parent.paginate(**kwargs)
  1. See ListLFTagsRequestListLFTagsPaginateTypeDef

SearchDatabasesByLFTagsPaginator#

Type annotations and code completion for boto3.client("lakeformation").get_paginator("search_databases_by_lf_tags"). boto3 documentation

# SearchDatabasesByLFTagsPaginator usage example

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import SearchDatabasesByLFTagsPaginator

def get_search_databases_by_lf_tags_paginator() -> SearchDatabasesByLFTagsPaginator:
    return Session().client("lakeformation").get_paginator("search_databases_by_lf_tags")
# SearchDatabasesByLFTagsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import SearchDatabasesByLFTagsPaginator

session = Session()

client = Session().client("lakeformation")  # (1)
paginator: SearchDatabasesByLFTagsPaginator = client.get_paginator("search_databases_by_lf_tags")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: LakeFormationClient
  2. paginator: SearchDatabasesByLFTagsPaginator
  3. item: SearchDatabasesByLFTagsResponsePaginatorTypeDef

paginate#

Type annotations and code completion for SearchDatabasesByLFTagsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    Expression: Sequence[LFTagTypeDef],  # (1)
    CatalogId: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[SearchDatabasesByLFTagsResponsePaginatorTypeDef]:  # (3)
    ...
  1. See LFTagTypeDef
  2. See PaginatorConfigTypeDef
  3. See SearchDatabasesByLFTagsResponsePaginatorTypeDef
# paginate method usage example with argument unpacking

kwargs: SearchDatabasesByLFTagsRequestSearchDatabasesByLFTagsPaginateTypeDef = {  # (1)
    "Expression": ...,
}

parent.paginate(**kwargs)
  1. See SearchDatabasesByLFTagsRequestSearchDatabasesByLFTagsPaginateTypeDef

SearchTablesByLFTagsPaginator#

Type annotations and code completion for boto3.client("lakeformation").get_paginator("search_tables_by_lf_tags"). boto3 documentation

# SearchTablesByLFTagsPaginator usage example

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import SearchTablesByLFTagsPaginator

def get_search_tables_by_lf_tags_paginator() -> SearchTablesByLFTagsPaginator:
    return Session().client("lakeformation").get_paginator("search_tables_by_lf_tags")
# SearchTablesByLFTagsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_lakeformation.paginator import SearchTablesByLFTagsPaginator

session = Session()

client = Session().client("lakeformation")  # (1)
paginator: SearchTablesByLFTagsPaginator = client.get_paginator("search_tables_by_lf_tags")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: LakeFormationClient
  2. paginator: SearchTablesByLFTagsPaginator
  3. item: SearchTablesByLFTagsResponsePaginatorTypeDef

paginate#

Type annotations and code completion for SearchTablesByLFTagsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    Expression: Sequence[LFTagTypeDef],  # (1)
    CatalogId: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[SearchTablesByLFTagsResponsePaginatorTypeDef]:  # (3)
    ...
  1. See LFTagTypeDef
  2. See PaginatorConfigTypeDef
  3. See SearchTablesByLFTagsResponsePaginatorTypeDef
# paginate method usage example with argument unpacking

kwargs: SearchTablesByLFTagsRequestSearchTablesByLFTagsPaginateTypeDef = {  # (1)
    "Expression": ...,
}

parent.paginate(**kwargs)
  1. See SearchTablesByLFTagsRequestSearchTablesByLFTagsPaginateTypeDef