Skip to content

Paginators

Index > GreengrassV2 > Paginators

Auto-generated documentation for GreengrassV2 type annotations stubs module types-aiobotocore-greengrassv2.

ListClientDevicesAssociatedWithCoreDevicePaginator

Type annotations and code completion for session.client("greengrassv2").get_paginator("list_client_devices_associated_with_core_device"). boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_greengrassv2.paginator import ListClientDevicesAssociatedWithCoreDevicePaginator

session = Session()

session = get_session()
async with session.client("greengrassv2") as client:  # (1)
    paginator: ListClientDevicesAssociatedWithCoreDevicePaginator = client.get_paginator("list_client_devices_associated_with_core_device")  # (2)
    async for item in paginator.paginate(...):
        item: ListClientDevicesAssociatedWithCoreDeviceResponseTypeDef
        print(item)  # (3)
  1. client: GreengrassV2Client
  2. paginator: ListClientDevicesAssociatedWithCoreDevicePaginator
  3. item: ListClientDevicesAssociatedWithCoreDeviceResponseTypeDef

paginate

Type annotations and code completion for ListClientDevicesAssociatedWithCoreDevicePaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    coreDeviceThingName: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListClientDevicesAssociatedWithCoreDeviceResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListClientDevicesAssociatedWithCoreDeviceResponseTypeDef
Usage example with kwargs
kwargs: ListClientDevicesAssociatedWithCoreDeviceRequestListClientDevicesAssociatedWithCoreDevicePaginateTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}

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

ListComponentVersionsPaginator

Type annotations and code completion for session.client("greengrassv2").get_paginator("list_component_versions"). boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_greengrassv2.paginator import ListComponentVersionsPaginator

session = Session()

session = get_session()
async with session.client("greengrassv2") as client:  # (1)
    paginator: ListComponentVersionsPaginator = client.get_paginator("list_component_versions")  # (2)
    async for item in paginator.paginate(...):
        item: ListComponentVersionsResponseTypeDef
        print(item)  # (3)
  1. client: GreengrassV2Client
  2. paginator: ListComponentVersionsPaginator
  3. item: ListComponentVersionsResponseTypeDef

paginate

Type annotations and code completion for ListComponentVersionsPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    arn: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListComponentVersionsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListComponentVersionsResponseTypeDef
Usage example with kwargs
kwargs: ListComponentVersionsRequestListComponentVersionsPaginateTypeDef = {  # (1)
    "arn": ...,
}

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

ListComponentsPaginator

Type annotations and code completion for session.client("greengrassv2").get_paginator("list_components"). boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_greengrassv2.paginator import ListComponentsPaginator

session = Session()

session = get_session()
async with session.client("greengrassv2") as client:  # (1)
    paginator: ListComponentsPaginator = client.get_paginator("list_components")  # (2)
    async for item in paginator.paginate(...):
        item: ListComponentsResponseTypeDef
        print(item)  # (3)
  1. client: GreengrassV2Client
  2. paginator: ListComponentsPaginator
  3. item: ListComponentsResponseTypeDef

paginate

Type annotations and code completion for ListComponentsPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    scope: ComponentVisibilityScopeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> AsyncIterator[ListComponentsResponseTypeDef]:  # (3)
    ...
  1. See ComponentVisibilityScopeType
  2. See PaginatorConfigTypeDef
  3. See ListComponentsResponseTypeDef
Usage example with kwargs
kwargs: ListComponentsRequestListComponentsPaginateTypeDef = {  # (1)
    "scope": ...,
}

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

ListCoreDevicesPaginator

Type annotations and code completion for session.client("greengrassv2").get_paginator("list_core_devices"). boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_greengrassv2.paginator import ListCoreDevicesPaginator

session = Session()

session = get_session()
async with session.client("greengrassv2") as client:  # (1)
    paginator: ListCoreDevicesPaginator = client.get_paginator("list_core_devices")  # (2)
    async for item in paginator.paginate(...):
        item: ListCoreDevicesResponseTypeDef
        print(item)  # (3)
  1. client: GreengrassV2Client
  2. paginator: ListCoreDevicesPaginator
  3. item: ListCoreDevicesResponseTypeDef

paginate

Type annotations and code completion for ListCoreDevicesPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    thingGroupArn: str = ...,
    status: CoreDeviceStatusType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> AsyncIterator[ListCoreDevicesResponseTypeDef]:  # (3)
    ...
  1. See CoreDeviceStatusType
  2. See PaginatorConfigTypeDef
  3. See ListCoreDevicesResponseTypeDef
Usage example with kwargs
kwargs: ListCoreDevicesRequestListCoreDevicesPaginateTypeDef = {  # (1)
    "thingGroupArn": ...,
}

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

ListDeploymentsPaginator

Type annotations and code completion for session.client("greengrassv2").get_paginator("list_deployments"). boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_greengrassv2.paginator import ListDeploymentsPaginator

session = Session()

session = get_session()
async with session.client("greengrassv2") as client:  # (1)
    paginator: ListDeploymentsPaginator = client.get_paginator("list_deployments")  # (2)
    async for item in paginator.paginate(...):
        item: ListDeploymentsResponseTypeDef
        print(item)  # (3)
  1. client: GreengrassV2Client
  2. paginator: ListDeploymentsPaginator
  3. item: ListDeploymentsResponseTypeDef

paginate

Type annotations and code completion for ListDeploymentsPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    targetArn: str = ...,
    historyFilter: DeploymentHistoryFilterType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> AsyncIterator[ListDeploymentsResponseTypeDef]:  # (3)
    ...
  1. See DeploymentHistoryFilterType
  2. See PaginatorConfigTypeDef
  3. See ListDeploymentsResponseTypeDef
Usage example with kwargs
kwargs: ListDeploymentsRequestListDeploymentsPaginateTypeDef = {  # (1)
    "targetArn": ...,
}

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

ListEffectiveDeploymentsPaginator

Type annotations and code completion for session.client("greengrassv2").get_paginator("list_effective_deployments"). boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_greengrassv2.paginator import ListEffectiveDeploymentsPaginator

session = Session()

session = get_session()
async with session.client("greengrassv2") as client:  # (1)
    paginator: ListEffectiveDeploymentsPaginator = client.get_paginator("list_effective_deployments")  # (2)
    async for item in paginator.paginate(...):
        item: ListEffectiveDeploymentsResponseTypeDef
        print(item)  # (3)
  1. client: GreengrassV2Client
  2. paginator: ListEffectiveDeploymentsPaginator
  3. item: ListEffectiveDeploymentsResponseTypeDef

paginate

Type annotations and code completion for ListEffectiveDeploymentsPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    coreDeviceThingName: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListEffectiveDeploymentsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListEffectiveDeploymentsResponseTypeDef
Usage example with kwargs
kwargs: ListEffectiveDeploymentsRequestListEffectiveDeploymentsPaginateTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}

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

ListInstalledComponentsPaginator

Type annotations and code completion for session.client("greengrassv2").get_paginator("list_installed_components"). boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_greengrassv2.paginator import ListInstalledComponentsPaginator

session = Session()

session = get_session()
async with session.client("greengrassv2") as client:  # (1)
    paginator: ListInstalledComponentsPaginator = client.get_paginator("list_installed_components")  # (2)
    async for item in paginator.paginate(...):
        item: ListInstalledComponentsResponseTypeDef
        print(item)  # (3)
  1. client: GreengrassV2Client
  2. paginator: ListInstalledComponentsPaginator
  3. item: ListInstalledComponentsResponseTypeDef

paginate

Type annotations and code completion for ListInstalledComponentsPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    coreDeviceThingName: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListInstalledComponentsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListInstalledComponentsResponseTypeDef
Usage example with kwargs
kwargs: ListInstalledComponentsRequestListInstalledComponentsPaginateTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}

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