Paginators#
Index > GlueDataBrew > Paginators
Auto-generated documentation for GlueDataBrew type annotations stubs module mypy-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 mypy_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 mypy_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: ListDatasetsResponseTypeDef
paginate#
Type annotations and code completion for ListDatasetsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListDatasetsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListDatasetsRequestListDatasetsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListJobRunsResponseTypeDef
paginate#
Type annotations and code completion for ListJobRunsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
Name: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListJobRunsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListJobRunsRequestListJobRunsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListJobsResponseTypeDef
paginate#
Type annotations and code completion for ListJobsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
DatasetName: str = ...,
ProjectName: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListJobsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListJobsRequestListJobsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListProjectsResponseTypeDef
paginate#
Type annotations and code completion for ListProjectsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListProjectsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListProjectsRequestListProjectsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListRecipeVersionsResponseTypeDef
paginate#
Type annotations and code completion for ListRecipeVersionsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
Name: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListRecipeVersionsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListRecipeVersionsRequestListRecipeVersionsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListRecipesResponseTypeDef
paginate#
Type annotations and code completion for ListRecipesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
RecipeVersion: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListRecipesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListRecipesRequestListRecipesPaginateTypeDef = { # (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 mypy_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 mypy_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: ListRulesetsResponseTypeDef
paginate#
Type annotations and code completion for ListRulesetsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
TargetArn: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListRulesetsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListRulesetsRequestListRulesetsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListSchedulesResponseTypeDef
paginate#
Type annotations and code completion for ListSchedulesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
JobName: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListSchedulesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListSchedulesRequestListSchedulesPaginateTypeDef = { # (1)
"JobName": ...,
}
parent.paginate(**kwargs)