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: DescribeScheduleResponseTypeDef

paginate#

Type annotations and code completion for DescribeSchedulePaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ChannelId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[DescribeScheduleResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See DescribeScheduleResponseTypeDef
# 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: ListChannelsResponseTypeDef

paginate#

Type annotations and code completion for ListChannelsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[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

ListCloudWatchAlarmTemplateGroupsPaginator#

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

# ListCloudWatchAlarmTemplateGroupsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListCloudWatchAlarmTemplateGroupsPaginator

def get_list_cloud_watch_alarm_template_groups_paginator() -> ListCloudWatchAlarmTemplateGroupsPaginator:
    return Session().client("medialive").get_paginator("list_cloud_watch_alarm_template_groups")
# ListCloudWatchAlarmTemplateGroupsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListCloudWatchAlarmTemplateGroupsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListCloudWatchAlarmTemplateGroupsPaginator = client.get_paginator("list_cloud_watch_alarm_template_groups")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListCloudWatchAlarmTemplateGroupsPaginator
  3. item: ListCloudWatchAlarmTemplateGroupsResponseTypeDef

paginate#

Type annotations and code completion for ListCloudWatchAlarmTemplateGroupsPaginator.paginate method.

# paginate method definition

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

kwargs: ListCloudWatchAlarmTemplateGroupsRequestListCloudWatchAlarmTemplateGroupsPaginateTypeDef = {  # (1)
    "Scope": ...,
}

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

ListCloudWatchAlarmTemplatesPaginator#

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

# ListCloudWatchAlarmTemplatesPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListCloudWatchAlarmTemplatesPaginator

def get_list_cloud_watch_alarm_templates_paginator() -> ListCloudWatchAlarmTemplatesPaginator:
    return Session().client("medialive").get_paginator("list_cloud_watch_alarm_templates")
# ListCloudWatchAlarmTemplatesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListCloudWatchAlarmTemplatesPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListCloudWatchAlarmTemplatesPaginator = client.get_paginator("list_cloud_watch_alarm_templates")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListCloudWatchAlarmTemplatesPaginator
  3. item: ListCloudWatchAlarmTemplatesResponseTypeDef

paginate#

Type annotations and code completion for ListCloudWatchAlarmTemplatesPaginator.paginate method.

# paginate method definition

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

kwargs: ListCloudWatchAlarmTemplatesRequestListCloudWatchAlarmTemplatesPaginateTypeDef = {  # (1)
    "GroupIdentifier": ...,
}

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

ListEventBridgeRuleTemplateGroupsPaginator#

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

# ListEventBridgeRuleTemplateGroupsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListEventBridgeRuleTemplateGroupsPaginator

def get_list_event_bridge_rule_template_groups_paginator() -> ListEventBridgeRuleTemplateGroupsPaginator:
    return Session().client("medialive").get_paginator("list_event_bridge_rule_template_groups")
# ListEventBridgeRuleTemplateGroupsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListEventBridgeRuleTemplateGroupsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListEventBridgeRuleTemplateGroupsPaginator = client.get_paginator("list_event_bridge_rule_template_groups")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListEventBridgeRuleTemplateGroupsPaginator
  3. item: ListEventBridgeRuleTemplateGroupsResponseTypeDef

paginate#

Type annotations and code completion for ListEventBridgeRuleTemplateGroupsPaginator.paginate method.

# paginate method definition

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

kwargs: ListEventBridgeRuleTemplateGroupsRequestListEventBridgeRuleTemplateGroupsPaginateTypeDef = {  # (1)
    "SignalMapIdentifier": ...,
}

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

ListEventBridgeRuleTemplatesPaginator#

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

# ListEventBridgeRuleTemplatesPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListEventBridgeRuleTemplatesPaginator

def get_list_event_bridge_rule_templates_paginator() -> ListEventBridgeRuleTemplatesPaginator:
    return Session().client("medialive").get_paginator("list_event_bridge_rule_templates")
# ListEventBridgeRuleTemplatesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListEventBridgeRuleTemplatesPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListEventBridgeRuleTemplatesPaginator = client.get_paginator("list_event_bridge_rule_templates")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListEventBridgeRuleTemplatesPaginator
  3. item: ListEventBridgeRuleTemplatesResponseTypeDef

paginate#

Type annotations and code completion for ListEventBridgeRuleTemplatesPaginator.paginate method.

# paginate method definition

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

kwargs: ListEventBridgeRuleTemplatesRequestListEventBridgeRuleTemplatesPaginateTypeDef = {  # (1)
    "GroupIdentifier": ...,
}

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

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

ListSignalMapsPaginator#

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

# ListSignalMapsPaginator usage example

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListSignalMapsPaginator

def get_list_signal_maps_paginator() -> ListSignalMapsPaginator:
    return Session().client("medialive").get_paginator("list_signal_maps")
# ListSignalMapsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_medialive.paginator import ListSignalMapsPaginator

session = Session()

client = Session().client("medialive")  # (1)
paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: MediaLiveClient
  2. paginator: ListSignalMapsPaginator
  3. item: ListSignalMapsResponseTypeDef

paginate#

Type annotations and code completion for ListSignalMapsPaginator.paginate method.

# paginate method definition

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

kwargs: ListSignalMapsRequestListSignalMapsPaginateTypeDef = {  # (1)
    "CloudWatchAlarmTemplateGroupIdentifier": ...,
}

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