Paginators#
Index > SecurityLake > Paginators
Auto-generated documentation for SecurityLake type annotations stubs module mypy-boto3-securitylake.
GetDataLakeSourcesPaginator#
Type annotations and code completion for boto3.client("securitylake").get_paginator("get_data_lake_sources")
.
boto3 documentation
# GetDataLakeSourcesPaginator usage example
from boto3.session import Session
from mypy_boto3_securitylake.paginator import GetDataLakeSourcesPaginator
def get_get_data_lake_sources_paginator() -> GetDataLakeSourcesPaginator:
return Session().client("securitylake").get_paginator("get_data_lake_sources")
# GetDataLakeSourcesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_securitylake.paginator import GetDataLakeSourcesPaginator
session = Session()
client = Session().client("securitylake") # (1)
paginator: GetDataLakeSourcesPaginator = client.get_paginator("get_data_lake_sources") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: SecurityLakeClient
- paginator: GetDataLakeSourcesPaginator
- item: GetDataLakeSourcesResponseTypeDef
paginate#
Type annotations and code completion for GetDataLakeSourcesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
accounts: Sequence[str] = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetDataLakeSourcesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetDataLakeSourcesRequestGetDataLakeSourcesPaginateTypeDef = { # (1)
"accounts": ...,
}
parent.paginate(**kwargs)
ListDataLakeExceptionsPaginator#
Type annotations and code completion for boto3.client("securitylake").get_paginator("list_data_lake_exceptions")
.
boto3 documentation
# ListDataLakeExceptionsPaginator usage example
from boto3.session import Session
from mypy_boto3_securitylake.paginator import ListDataLakeExceptionsPaginator
def get_list_data_lake_exceptions_paginator() -> ListDataLakeExceptionsPaginator:
return Session().client("securitylake").get_paginator("list_data_lake_exceptions")
# ListDataLakeExceptionsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_securitylake.paginator import ListDataLakeExceptionsPaginator
session = Session()
client = Session().client("securitylake") # (1)
paginator: ListDataLakeExceptionsPaginator = client.get_paginator("list_data_lake_exceptions") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: SecurityLakeClient
- paginator: ListDataLakeExceptionsPaginator
- item: ListDataLakeExceptionsResponseTypeDef
paginate#
Type annotations and code completion for ListDataLakeExceptionsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
regions: Sequence[str] = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListDataLakeExceptionsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListDataLakeExceptionsRequestListDataLakeExceptionsPaginateTypeDef = { # (1)
"regions": ...,
}
parent.paginate(**kwargs)
ListLogSourcesPaginator#
Type annotations and code completion for boto3.client("securitylake").get_paginator("list_log_sources")
.
boto3 documentation
# ListLogSourcesPaginator usage example
from boto3.session import Session
from mypy_boto3_securitylake.paginator import ListLogSourcesPaginator
def get_list_log_sources_paginator() -> ListLogSourcesPaginator:
return Session().client("securitylake").get_paginator("list_log_sources")
# ListLogSourcesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_securitylake.paginator import ListLogSourcesPaginator
session = Session()
client = Session().client("securitylake") # (1)
paginator: ListLogSourcesPaginator = client.get_paginator("list_log_sources") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: SecurityLakeClient
- paginator: ListLogSourcesPaginator
- item: ListLogSourcesResponseTypeDef
paginate#
Type annotations and code completion for ListLogSourcesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
accounts: Sequence[str] = ...,
regions: Sequence[str] = ...,
sources: Sequence[LogSourceResourceTypeDef] = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListLogSourcesResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListLogSourcesRequestListLogSourcesPaginateTypeDef = { # (1)
"accounts": ...,
}
parent.paginate(**kwargs)
ListSubscribersPaginator#
Type annotations and code completion for boto3.client("securitylake").get_paginator("list_subscribers")
.
boto3 documentation
# ListSubscribersPaginator usage example
from boto3.session import Session
from mypy_boto3_securitylake.paginator import ListSubscribersPaginator
def get_list_subscribers_paginator() -> ListSubscribersPaginator:
return Session().client("securitylake").get_paginator("list_subscribers")
# ListSubscribersPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_securitylake.paginator import ListSubscribersPaginator
session = Session()
client = Session().client("securitylake") # (1)
paginator: ListSubscribersPaginator = client.get_paginator("list_subscribers") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: SecurityLakeClient
- paginator: ListSubscribersPaginator
- item: ListSubscribersResponseTypeDef
paginate#
Type annotations and code completion for ListSubscribersPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListSubscribersResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListSubscribersRequestListSubscribersPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)