Paginators#
Index > MediaTailor > Paginators
Auto-generated documentation for MediaTailor type annotations stubs module mypy-boto3-mediatailor.
GetChannelSchedulePaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("get_channel_schedule")
.
boto3 documentation
# GetChannelSchedulePaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import GetChannelSchedulePaginator
def get_get_channel_schedule_paginator() -> GetChannelSchedulePaginator:
return Session().client("mediatailor").get_paginator("get_channel_schedule")
# GetChannelSchedulePaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import GetChannelSchedulePaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: GetChannelSchedulePaginator = client.get_paginator("get_channel_schedule") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: GetChannelSchedulePaginator
- item: GetChannelScheduleResponseTypeDef
paginate#
Type annotations and code completion for GetChannelSchedulePaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ChannelName: str,
Audience: str = ...,
DurationMinutes: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetChannelScheduleResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetChannelScheduleRequestGetChannelSchedulePaginateTypeDef = { # (1)
"ChannelName": ...,
}
parent.paginate(**kwargs)
ListAlertsPaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("list_alerts")
.
boto3 documentation
# ListAlertsPaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListAlertsPaginator
def get_list_alerts_paginator() -> ListAlertsPaginator:
return Session().client("mediatailor").get_paginator("list_alerts")
# ListAlertsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListAlertsPaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: ListAlertsPaginator = client.get_paginator("list_alerts") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: ListAlertsPaginator
- item: ListAlertsResponseTypeDef
paginate#
Type annotations and code completion for ListAlertsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ResourceArn: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListAlertsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListAlertsRequestListAlertsPaginateTypeDef = { # (1)
"ResourceArn": ...,
}
parent.paginate(**kwargs)
ListChannelsPaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("list_channels")
.
boto3 documentation
# ListChannelsPaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListChannelsPaginator
def get_list_channels_paginator() -> ListChannelsPaginator:
return Session().client("mediatailor").get_paginator("list_channels")
# ListChannelsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListChannelsPaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: ListChannelsPaginator = client.get_paginator("list_channels") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: ListChannelsPaginator
- item: ListChannelsResponseTypeDef
paginate#
Type annotations and code completion for ListChannelsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListChannelsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListChannelsRequestListChannelsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListLiveSourcesPaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("list_live_sources")
.
boto3 documentation
# ListLiveSourcesPaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListLiveSourcesPaginator
def get_list_live_sources_paginator() -> ListLiveSourcesPaginator:
return Session().client("mediatailor").get_paginator("list_live_sources")
# ListLiveSourcesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListLiveSourcesPaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: ListLiveSourcesPaginator = client.get_paginator("list_live_sources") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: ListLiveSourcesPaginator
- item: ListLiveSourcesResponseTypeDef
paginate#
Type annotations and code completion for ListLiveSourcesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
SourceLocationName: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListLiveSourcesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListLiveSourcesRequestListLiveSourcesPaginateTypeDef = { # (1)
"SourceLocationName": ...,
}
parent.paginate(**kwargs)
ListPlaybackConfigurationsPaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("list_playback_configurations")
.
boto3 documentation
# ListPlaybackConfigurationsPaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListPlaybackConfigurationsPaginator
def get_list_playback_configurations_paginator() -> ListPlaybackConfigurationsPaginator:
return Session().client("mediatailor").get_paginator("list_playback_configurations")
# ListPlaybackConfigurationsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListPlaybackConfigurationsPaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: ListPlaybackConfigurationsPaginator = client.get_paginator("list_playback_configurations") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: ListPlaybackConfigurationsPaginator
- item: ListPlaybackConfigurationsResponseTypeDef
paginate#
Type annotations and code completion for ListPlaybackConfigurationsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListPlaybackConfigurationsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListPlaybackConfigurationsRequestListPlaybackConfigurationsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListPrefetchSchedulesPaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("list_prefetch_schedules")
.
boto3 documentation
# ListPrefetchSchedulesPaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListPrefetchSchedulesPaginator
def get_list_prefetch_schedules_paginator() -> ListPrefetchSchedulesPaginator:
return Session().client("mediatailor").get_paginator("list_prefetch_schedules")
# ListPrefetchSchedulesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListPrefetchSchedulesPaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: ListPrefetchSchedulesPaginator = client.get_paginator("list_prefetch_schedules") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: ListPrefetchSchedulesPaginator
- 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)
) -> _PageIterator[ListPrefetchSchedulesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListPrefetchSchedulesRequestListPrefetchSchedulesPaginateTypeDef = { # (1)
"PlaybackConfigurationName": ...,
}
parent.paginate(**kwargs)
ListSourceLocationsPaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("list_source_locations")
.
boto3 documentation
# ListSourceLocationsPaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListSourceLocationsPaginator
def get_list_source_locations_paginator() -> ListSourceLocationsPaginator:
return Session().client("mediatailor").get_paginator("list_source_locations")
# ListSourceLocationsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListSourceLocationsPaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: ListSourceLocationsPaginator = client.get_paginator("list_source_locations") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: ListSourceLocationsPaginator
- item: ListSourceLocationsResponseTypeDef
paginate#
Type annotations and code completion for ListSourceLocationsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListSourceLocationsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListSourceLocationsRequestListSourceLocationsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListVodSourcesPaginator#
Type annotations and code completion for boto3.client("mediatailor").get_paginator("list_vod_sources")
.
boto3 documentation
# ListVodSourcesPaginator usage example
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListVodSourcesPaginator
def get_list_vod_sources_paginator() -> ListVodSourcesPaginator:
return Session().client("mediatailor").get_paginator("list_vod_sources")
# ListVodSourcesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_mediatailor.paginator import ListVodSourcesPaginator
session = Session()
client = Session().client("mediatailor") # (1)
paginator: ListVodSourcesPaginator = client.get_paginator("list_vod_sources") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaTailorClient
- paginator: ListVodSourcesPaginator
- item: ListVodSourcesResponseTypeDef
paginate#
Type annotations and code completion for ListVodSourcesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
SourceLocationName: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListVodSourcesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListVodSourcesRequestListVodSourcesPaginateTypeDef = { # (1)
"SourceLocationName": ...,
}
parent.paginate(**kwargs)