Skip to content

Paginators#

Index > MediaLive > Paginators

Auto-generated documentation for MediaLive type annotations stubs module mypy-boto3-medialive.

DescribeSchedulePaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("describe_schedule"). boto3 documentation

# DescribeSchedulePaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import DescribeSchedulePaginator

def get_describe_schedule_paginator() -> DescribeSchedulePaginator:
    return Session().client("medialive").get_paginator("describe_schedule")
# DescribeSchedulePaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import DescribeSchedulePaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: DescribeSchedulePaginator = client.get_paginator("describe_schedule")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: DescribeSchedulePaginator
  3. item: DescribeScheduleResponsePaginatorTypeDef

paginate#

Type annotations and code completion for DescribeSchedulePaginator.paginate method.

# paginate method definition

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

kwargs: DescribeScheduleRequestDescribeSchedulePaginateTypeDef = {  # (1)
    "ChannelId": ...,
}

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

ListChannelsPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_channels"). boto3 documentation

# ListChannelsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListChannelsPaginator

def get_list_channels_paginator() -> ListChannelsPaginator:
    return Session().client("medialive").get_paginator("list_channels")
# ListChannelsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListChannelsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListChannelsPaginator = client.get_paginator("list_channels")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListChannelsPaginator
  3. item: ListChannelsResponsePaginatorTypeDef

paginate#

Type annotations and code completion for ListChannelsPaginator.paginate method.

# paginate method definition

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

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

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

ListInputDeviceTransfersPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_input_device_transfers"). boto3 documentation

# ListInputDeviceTransfersPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputDeviceTransfersPaginator

def get_list_input_device_transfers_paginator() -> ListInputDeviceTransfersPaginator:
    return Session().client("medialive").get_paginator("list_input_device_transfers")
# ListInputDeviceTransfersPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputDeviceTransfersPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListInputDeviceTransfersPaginator = client.get_paginator("list_input_device_transfers")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListInputDeviceTransfersPaginator
  3. item: ListInputDeviceTransfersResponseTypeDef

paginate#

Type annotations and code completion for ListInputDeviceTransfersPaginator.paginate method.

# paginate method definition

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

kwargs: ListInputDeviceTransfersRequestListInputDeviceTransfersPaginateTypeDef = {  # (1)
    "TransferType": ...,
}

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

ListInputDevicesPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_input_devices"). boto3 documentation

# ListInputDevicesPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputDevicesPaginator

def get_list_input_devices_paginator() -> ListInputDevicesPaginator:
    return Session().client("medialive").get_paginator("list_input_devices")
# ListInputDevicesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputDevicesPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListInputDevicesPaginator = client.get_paginator("list_input_devices")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListInputDevicesPaginator
  3. item: ListInputDevicesResponseTypeDef

paginate#

Type annotations and code completion for ListInputDevicesPaginator.paginate method.

# paginate method definition

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

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

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

ListInputSecurityGroupsPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_input_security_groups"). boto3 documentation

# ListInputSecurityGroupsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputSecurityGroupsPaginator

def get_list_input_security_groups_paginator() -> ListInputSecurityGroupsPaginator:
    return Session().client("medialive").get_paginator("list_input_security_groups")
# ListInputSecurityGroupsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputSecurityGroupsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListInputSecurityGroupsPaginator = client.get_paginator("list_input_security_groups")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListInputSecurityGroupsPaginator
  3. item: ListInputSecurityGroupsResponseTypeDef

paginate#

Type annotations and code completion for ListInputSecurityGroupsPaginator.paginate method.

# paginate method definition

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

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

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

ListInputsPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_inputs"). boto3 documentation

# ListInputsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputsPaginator

def get_list_inputs_paginator() -> ListInputsPaginator:
    return Session().client("medialive").get_paginator("list_inputs")
# ListInputsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListInputsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListInputsPaginator = client.get_paginator("list_inputs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListInputsPaginator
  3. item: ListInputsResponseTypeDef

paginate#

Type annotations and code completion for ListInputsPaginator.paginate method.

# paginate method definition

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

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

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

ListMultiplexProgramsPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_multiplex_programs"). boto3 documentation

# ListMultiplexProgramsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListMultiplexProgramsPaginator

def get_list_multiplex_programs_paginator() -> ListMultiplexProgramsPaginator:
    return Session().client("medialive").get_paginator("list_multiplex_programs")
# ListMultiplexProgramsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListMultiplexProgramsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListMultiplexProgramsPaginator = client.get_paginator("list_multiplex_programs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListMultiplexProgramsPaginator
  3. item: ListMultiplexProgramsResponseTypeDef

paginate#

Type annotations and code completion for ListMultiplexProgramsPaginator.paginate method.

# paginate method definition

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

kwargs: ListMultiplexProgramsRequestListMultiplexProgramsPaginateTypeDef = {  # (1)
    "MultiplexId": ...,
}

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

ListMultiplexesPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_multiplexes"). boto3 documentation

# ListMultiplexesPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListMultiplexesPaginator

def get_list_multiplexes_paginator() -> ListMultiplexesPaginator:
    return Session().client("medialive").get_paginator("list_multiplexes")
# ListMultiplexesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListMultiplexesPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListMultiplexesPaginator = client.get_paginator("list_multiplexes")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListMultiplexesPaginator
  3. item: ListMultiplexesResponseTypeDef

paginate#

Type annotations and code completion for ListMultiplexesPaginator.paginate method.

# paginate method definition

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

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

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

ListOfferingsPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_offerings"). boto3 documentation

# ListOfferingsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListOfferingsPaginator

def get_list_offerings_paginator() -> ListOfferingsPaginator:
    return Session().client("medialive").get_paginator("list_offerings")
# ListOfferingsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListOfferingsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListOfferingsPaginator
  3. item: ListOfferingsResponseTypeDef

paginate#

Type annotations and code completion for ListOfferingsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ChannelClass: str = ...,
    ChannelConfiguration: str = ...,
    Codec: str = ...,
    Duration: str = ...,
    MaximumBitrate: str = ...,
    MaximumFramerate: str = ...,
    Resolution: str = ...,
    ResourceType: str = ...,
    SpecialFeature: str = ...,
    VideoQuality: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListOfferingsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListOfferingsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListOfferingsRequestListOfferingsPaginateTypeDef = {  # (1)
    "ChannelClass": ...,
}

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

ListReservationsPaginator#

Type annotations and code completion for boto3.client("medialive").get_paginator("list_reservations"). boto3 documentation

# ListReservationsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListReservationsPaginator

def get_list_reservations_paginator() -> ListReservationsPaginator:
    return Session().client("medialive").get_paginator("list_reservations")
# ListReservationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListReservationsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListReservationsPaginator = client.get_paginator("list_reservations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListReservationsPaginator
  3. item: ListReservationsResponseTypeDef

paginate#

Type annotations and code completion for ListReservationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ChannelClass: str = ...,
    Codec: str = ...,
    MaximumBitrate: str = ...,
    MaximumFramerate: str = ...,
    Resolution: str = ...,
    ResourceType: str = ...,
    SpecialFeature: str = ...,
    VideoQuality: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListReservationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListReservationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListReservationsRequestListReservationsPaginateTypeDef = {  # (1)
    "ChannelClass": ...,
}

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