Skip to content

Paginators#

Index > MediaTailor > Paginators

Auto-generated documentation for MediaTailor type annotations stubs module types-aiobotocore-mediatailor.

GetChannelSchedulePaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("get_channel_schedule"). boto3 documentation

# GetChannelSchedulePaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import GetChannelSchedulePaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: GetChannelSchedulePaginator = client.get_paginator("get_channel_schedule")  # (2)
    async for item in paginator.paginate(...):
        item: GetChannelScheduleResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: GetChannelSchedulePaginator
  3. item: GetChannelScheduleResponseTypeDef

paginate#

Type annotations and code completion for GetChannelSchedulePaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ChannelName: str,
    DurationMinutes: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[GetChannelScheduleResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetChannelScheduleResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetChannelScheduleRequestGetChannelSchedulePaginateTypeDef = {  # (1)
    "ChannelName": ...,
}

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

ListAlertsPaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("list_alerts"). boto3 documentation

# ListAlertsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import ListAlertsPaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: ListAlertsPaginator = client.get_paginator("list_alerts")  # (2)
    async for item in paginator.paginate(...):
        item: ListAlertsResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: ListAlertsPaginator
  3. item: ListAlertsResponseTypeDef

paginate#

Type annotations and code completion for ListAlertsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ResourceArn: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListAlertsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListAlertsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListAlertsRequestListAlertsPaginateTypeDef = {  # (1)
    "ResourceArn": ...,
}

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

ListChannelsPaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("list_channels"). boto3 documentation

# ListChannelsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import ListChannelsPaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: ListChannelsPaginator = client.get_paginator("list_channels")  # (2)
    async for item in paginator.paginate(...):
        item: ListChannelsResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: ListChannelsPaginator
  3. item: ListChannelsResponseTypeDef

paginate#

Type annotations and code completion for ListChannelsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListChannelsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListChannelsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListChannelsRequestListChannelsPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

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

ListLiveSourcesPaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("list_live_sources"). boto3 documentation

# ListLiveSourcesPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import ListLiveSourcesPaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: ListLiveSourcesPaginator = client.get_paginator("list_live_sources")  # (2)
    async for item in paginator.paginate(...):
        item: ListLiveSourcesResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: ListLiveSourcesPaginator
  3. item: ListLiveSourcesResponseTypeDef

paginate#

Type annotations and code completion for ListLiveSourcesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    SourceLocationName: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListLiveSourcesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListLiveSourcesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListLiveSourcesRequestListLiveSourcesPaginateTypeDef = {  # (1)
    "SourceLocationName": ...,
}

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

ListPlaybackConfigurationsPaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("list_playback_configurations"). boto3 documentation

# ListPlaybackConfigurationsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import ListPlaybackConfigurationsPaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: ListPlaybackConfigurationsPaginator = client.get_paginator("list_playback_configurations")  # (2)
    async for item in paginator.paginate(...):
        item: ListPlaybackConfigurationsResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: ListPlaybackConfigurationsPaginator
  3. item: ListPlaybackConfigurationsResponseTypeDef

paginate#

Type annotations and code completion for ListPlaybackConfigurationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListPlaybackConfigurationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListPlaybackConfigurationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListPlaybackConfigurationsRequestListPlaybackConfigurationsPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

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

ListPrefetchSchedulesPaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("list_prefetch_schedules"). boto3 documentation

# ListPrefetchSchedulesPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import ListPrefetchSchedulesPaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: ListPrefetchSchedulesPaginator = client.get_paginator("list_prefetch_schedules")  # (2)
    async for item in paginator.paginate(...):
        item: ListPrefetchSchedulesResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: ListPrefetchSchedulesPaginator
  3. item: ListPrefetchSchedulesResponseTypeDef

paginate#

Type annotations and code completion for ListPrefetchSchedulesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PlaybackConfigurationName: str,
    StreamId: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListPrefetchSchedulesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListPrefetchSchedulesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListPrefetchSchedulesRequestListPrefetchSchedulesPaginateTypeDef = {  # (1)
    "PlaybackConfigurationName": ...,
}

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

ListSourceLocationsPaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("list_source_locations"). boto3 documentation

# ListSourceLocationsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import ListSourceLocationsPaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: ListSourceLocationsPaginator = client.get_paginator("list_source_locations")  # (2)
    async for item in paginator.paginate(...):
        item: ListSourceLocationsResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: ListSourceLocationsPaginator
  3. item: ListSourceLocationsResponseTypeDef

paginate#

Type annotations and code completion for ListSourceLocationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListSourceLocationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListSourceLocationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListSourceLocationsRequestListSourceLocationsPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

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

ListVodSourcesPaginator#

Type annotations and code completion for session.create_client("mediatailor").get_paginator("list_vod_sources"). boto3 documentation

# ListVodSourcesPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_mediatailor.paginator import ListVodSourcesPaginator

session = get_session()
async with session.create_client("mediatailor") as client:  # (1)
    paginator: ListVodSourcesPaginator = client.get_paginator("list_vod_sources")  # (2)
    async for item in paginator.paginate(...):
        item: ListVodSourcesResponseTypeDef
        print(item)  # (3)
  1. client: MediaTailorClient
  2. paginator: ListVodSourcesPaginator
  3. item: ListVodSourcesResponseTypeDef

paginate#

Type annotations and code completion for ListVodSourcesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    SourceLocationName: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListVodSourcesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListVodSourcesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListVodSourcesRequestListVodSourcesPaginateTypeDef = {  # (1)
    "SourceLocationName": ...,
}

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