Paginators#
Index > CloudWatchEvidently > Paginators
Auto-generated documentation for CloudWatchEvidently type annotations stubs module mypy-boto3-evidently.
ListExperimentsPaginator#
Type annotations and code completion for boto3.client("evidently").get_paginator("list_experiments")
.
boto3 documentation
# ListExperimentsPaginator usage example
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListExperimentsPaginator
def get_list_experiments_paginator() -> ListExperimentsPaginator:
return Session().client("evidently").get_paginator("list_experiments")
# ListExperimentsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListExperimentsPaginator
session = Session()
client = Session().client("evidently") # (1)
paginator: ListExperimentsPaginator = client.get_paginator("list_experiments") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: CloudWatchEvidentlyClient
- paginator: ListExperimentsPaginator
- item: ListExperimentsResponseTypeDef
paginate#
Type annotations and code completion for ListExperimentsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
project: str,
status: ExperimentStatusType = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListExperimentsResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListExperimentsRequestListExperimentsPaginateTypeDef = { # (1)
"project": ...,
}
parent.paginate(**kwargs)
ListFeaturesPaginator#
Type annotations and code completion for boto3.client("evidently").get_paginator("list_features")
.
boto3 documentation
# ListFeaturesPaginator usage example
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListFeaturesPaginator
def get_list_features_paginator() -> ListFeaturesPaginator:
return Session().client("evidently").get_paginator("list_features")
# ListFeaturesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListFeaturesPaginator
session = Session()
client = Session().client("evidently") # (1)
paginator: ListFeaturesPaginator = client.get_paginator("list_features") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: CloudWatchEvidentlyClient
- paginator: ListFeaturesPaginator
- item: ListFeaturesResponseTypeDef
paginate#
Type annotations and code completion for ListFeaturesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
project: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListFeaturesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListFeaturesRequestListFeaturesPaginateTypeDef = { # (1)
"project": ...,
}
parent.paginate(**kwargs)
ListLaunchesPaginator#
Type annotations and code completion for boto3.client("evidently").get_paginator("list_launches")
.
boto3 documentation
# ListLaunchesPaginator usage example
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListLaunchesPaginator
def get_list_launches_paginator() -> ListLaunchesPaginator:
return Session().client("evidently").get_paginator("list_launches")
# ListLaunchesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListLaunchesPaginator
session = Session()
client = Session().client("evidently") # (1)
paginator: ListLaunchesPaginator = client.get_paginator("list_launches") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: CloudWatchEvidentlyClient
- paginator: ListLaunchesPaginator
- item: ListLaunchesResponseTypeDef
paginate#
Type annotations and code completion for ListLaunchesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
project: str,
status: LaunchStatusType = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListLaunchesResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListLaunchesRequestListLaunchesPaginateTypeDef = { # (1)
"project": ...,
}
parent.paginate(**kwargs)
ListProjectsPaginator#
Type annotations and code completion for boto3.client("evidently").get_paginator("list_projects")
.
boto3 documentation
# ListProjectsPaginator usage example
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListProjectsPaginator
def get_list_projects_paginator() -> ListProjectsPaginator:
return Session().client("evidently").get_paginator("list_projects")
# ListProjectsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListProjectsPaginator
session = Session()
client = Session().client("evidently") # (1)
paginator: ListProjectsPaginator = client.get_paginator("list_projects") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: CloudWatchEvidentlyClient
- 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)
ListSegmentReferencesPaginator#
Type annotations and code completion for boto3.client("evidently").get_paginator("list_segment_references")
.
boto3 documentation
# ListSegmentReferencesPaginator usage example
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListSegmentReferencesPaginator
def get_list_segment_references_paginator() -> ListSegmentReferencesPaginator:
return Session().client("evidently").get_paginator("list_segment_references")
# ListSegmentReferencesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListSegmentReferencesPaginator
session = Session()
client = Session().client("evidently") # (1)
paginator: ListSegmentReferencesPaginator = client.get_paginator("list_segment_references") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: CloudWatchEvidentlyClient
- paginator: ListSegmentReferencesPaginator
- item: ListSegmentReferencesResponseTypeDef
paginate#
Type annotations and code completion for ListSegmentReferencesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
segment: str,
type: SegmentReferenceResourceTypeType, # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListSegmentReferencesResponseTypeDef]: # (3)
...
- See SegmentReferenceResourceTypeType
- See PaginatorConfigTypeDef
- See ListSegmentReferencesResponseTypeDef
# paginate method usage example with argument unpacking
kwargs: ListSegmentReferencesRequestListSegmentReferencesPaginateTypeDef = { # (1)
"segment": ...,
"type": ...,
}
parent.paginate(**kwargs)
ListSegmentsPaginator#
Type annotations and code completion for boto3.client("evidently").get_paginator("list_segments")
.
boto3 documentation
# ListSegmentsPaginator usage example
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListSegmentsPaginator
def get_list_segments_paginator() -> ListSegmentsPaginator:
return Session().client("evidently").get_paginator("list_segments")
# ListSegmentsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_evidently.paginator import ListSegmentsPaginator
session = Session()
client = Session().client("evidently") # (1)
paginator: ListSegmentsPaginator = client.get_paginator("list_segments") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: CloudWatchEvidentlyClient
- paginator: ListSegmentsPaginator
- item: ListSegmentsResponseTypeDef
paginate#
Type annotations and code completion for ListSegmentsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListSegmentsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListSegmentsRequestListSegmentsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)