Paginators#
Index > GlueDataBrew > Paginators
Auto-generated documentation for GlueDataBrew type annotations stubs module types-boto3-databrew.
ListDatasetsPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_datasets").
 boto3 documentation
# ListDatasetsPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListDatasetsPaginator
def get_list_datasets_paginator() -> ListDatasetsPaginator:
    return Session().client("databrew").get_paginator("list_datasets")# ListDatasetsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListDatasetsPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListDatasetsPaginator = client.get_paginator("list_datasets")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListDatasetsPaginator
- item: PageIterator[ListDatasetsResponseTypeDef]
paginate#
Type annotations and code completion for ListDatasetsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListDatasetsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListDatasetsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListDatasetsRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}
parent.paginate(**kwargs)ListJobRunsPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_job_runs").
 boto3 documentation
# ListJobRunsPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListJobRunsPaginator
def get_list_job_runs_paginator() -> ListJobRunsPaginator:
    return Session().client("databrew").get_paginator("list_job_runs")# ListJobRunsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListJobRunsPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListJobRunsPaginator = client.get_paginator("list_job_runs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListJobRunsPaginator
- item: PageIterator[ListJobRunsResponseTypeDef]
paginate#
Type annotations and code completion for ListJobRunsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    Name: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListJobRunsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListJobRunsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListJobRunsRequestPaginateTypeDef = {  # (1)
    "Name": ...,
}
parent.paginate(**kwargs)ListJobsPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_jobs").
 boto3 documentation
# ListJobsPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListJobsPaginator
def get_list_jobs_paginator() -> ListJobsPaginator:
    return Session().client("databrew").get_paginator("list_jobs")# ListJobsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListJobsPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListJobsPaginator = client.get_paginator("list_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListJobsPaginator
- item: PageIterator[ListJobsResponseTypeDef]
paginate#
Type annotations and code completion for ListJobsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    DatasetName: str = ...,
    ProjectName: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListJobsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListJobsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListJobsRequestPaginateTypeDef = {  # (1)
    "DatasetName": ...,
}
parent.paginate(**kwargs)ListProjectsPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_projects").
 boto3 documentation
# ListProjectsPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListProjectsPaginator
def get_list_projects_paginator() -> ListProjectsPaginator:
    return Session().client("databrew").get_paginator("list_projects")# ListProjectsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListProjectsPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListProjectsPaginator = client.get_paginator("list_projects")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListProjectsPaginator
- item: PageIterator[ListProjectsResponseTypeDef]
paginate#
Type annotations and code completion for ListProjectsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListProjectsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListProjectsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListProjectsRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}
parent.paginate(**kwargs)ListRecipeVersionsPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_recipe_versions").
 boto3 documentation
# ListRecipeVersionsPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListRecipeVersionsPaginator
def get_list_recipe_versions_paginator() -> ListRecipeVersionsPaginator:
    return Session().client("databrew").get_paginator("list_recipe_versions")# ListRecipeVersionsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListRecipeVersionsPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListRecipeVersionsPaginator = client.get_paginator("list_recipe_versions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListRecipeVersionsPaginator
- item: PageIterator[ListRecipeVersionsResponseTypeDef]
paginate#
Type annotations and code completion for ListRecipeVersionsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    Name: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListRecipeVersionsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListRecipeVersionsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListRecipeVersionsRequestPaginateTypeDef = {  # (1)
    "Name": ...,
}
parent.paginate(**kwargs)ListRecipesPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_recipes").
 boto3 documentation
# ListRecipesPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListRecipesPaginator
def get_list_recipes_paginator() -> ListRecipesPaginator:
    return Session().client("databrew").get_paginator("list_recipes")# ListRecipesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListRecipesPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListRecipesPaginator = client.get_paginator("list_recipes")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListRecipesPaginator
- item: PageIterator[ListRecipesResponseTypeDef]
paginate#
Type annotations and code completion for ListRecipesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    RecipeVersion: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListRecipesResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListRecipesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListRecipesRequestPaginateTypeDef = {  # (1)
    "RecipeVersion": ...,
}
parent.paginate(**kwargs)ListRulesetsPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_rulesets").
 boto3 documentation
# ListRulesetsPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListRulesetsPaginator
def get_list_rulesets_paginator() -> ListRulesetsPaginator:
    return Session().client("databrew").get_paginator("list_rulesets")# ListRulesetsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListRulesetsPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListRulesetsPaginator = client.get_paginator("list_rulesets")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListRulesetsPaginator
- item: PageIterator[ListRulesetsResponseTypeDef]
paginate#
Type annotations and code completion for ListRulesetsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    TargetArn: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListRulesetsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListRulesetsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListRulesetsRequestPaginateTypeDef = {  # (1)
    "TargetArn": ...,
}
parent.paginate(**kwargs)ListSchedulesPaginator#
Type annotations and code completion for boto3.client("databrew").get_paginator("list_schedules").
 boto3 documentation
# ListSchedulesPaginator usage example
from boto3.session import Session
from types_boto3_databrew.paginator import ListSchedulesPaginator
def get_list_schedules_paginator() -> ListSchedulesPaginator:
    return Session().client("databrew").get_paginator("list_schedules")# ListSchedulesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_databrew.paginator import ListSchedulesPaginator
session = Session()
client = Session().client("databrew")  # (1)
paginator: ListSchedulesPaginator = client.get_paginator("list_schedules")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: GlueDataBrewClient
- paginator: ListSchedulesPaginator
- item: PageIterator[ListSchedulesResponseTypeDef]
paginate#
Type annotations and code completion for ListSchedulesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    JobName: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListSchedulesResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListSchedulesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListSchedulesRequestPaginateTypeDef = {  # (1)
    "JobName": ...,
}
parent.paginate(**kwargs)