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)
- client: MediaLiveClient
- paginator: DescribeSchedulePaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: DescribeScheduleRequestDescribeSchedulePaginateTypeDef = { # (1)
"ChannelId": ...,
}
parent.paginate(**kwargs)
ListChannelPlacementGroupsPaginator#
Type annotations and code completion for boto3.client("medialive").get_paginator("list_channel_placement_groups")
.
boto3 documentation
# ListChannelPlacementGroupsPaginator usage example
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListChannelPlacementGroupsPaginator
def get_list_channel_placement_groups_paginator() -> ListChannelPlacementGroupsPaginator:
return Session().client("medialive").get_paginator("list_channel_placement_groups")
# ListChannelPlacementGroupsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListChannelPlacementGroupsPaginator
session = Session()
client = Session().client("medialive") # (1)
paginator: ListChannelPlacementGroupsPaginator = client.get_paginator("list_channel_placement_groups") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaLiveClient
- paginator: ListChannelPlacementGroupsPaginator
- item: ListChannelPlacementGroupsResponseTypeDef
paginate#
Type annotations and code completion for ListChannelPlacementGroupsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ClusterId: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListChannelPlacementGroupsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListChannelPlacementGroupsRequestListChannelPlacementGroupsPaginateTypeDef = { # (1)
"ClusterId": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- 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)
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)
- client: MediaLiveClient
- paginator: ListCloudWatchAlarmTemplateGroupsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListCloudWatchAlarmTemplateGroupsRequestListCloudWatchAlarmTemplateGroupsPaginateTypeDef = { # (1)
"Scope": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListCloudWatchAlarmTemplatesPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListCloudWatchAlarmTemplatesRequestListCloudWatchAlarmTemplatesPaginateTypeDef = { # (1)
"GroupIdentifier": ...,
}
parent.paginate(**kwargs)
ListClustersPaginator#
Type annotations and code completion for boto3.client("medialive").get_paginator("list_clusters")
.
boto3 documentation
# ListClustersPaginator usage example
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListClustersPaginator
def get_list_clusters_paginator() -> ListClustersPaginator:
return Session().client("medialive").get_paginator("list_clusters")
# ListClustersPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListClustersPaginator
session = Session()
client = Session().client("medialive") # (1)
paginator: ListClustersPaginator = client.get_paginator("list_clusters") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaLiveClient
- paginator: ListClustersPaginator
- item: ListClustersResponseTypeDef
paginate#
Type annotations and code completion for ListClustersPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListClustersResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListClustersRequestListClustersPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListEventBridgeRuleTemplateGroupsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListEventBridgeRuleTemplateGroupsRequestListEventBridgeRuleTemplateGroupsPaginateTypeDef = { # (1)
"SignalMapIdentifier": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListEventBridgeRuleTemplatesPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListEventBridgeRuleTemplatesRequestListEventBridgeRuleTemplatesPaginateTypeDef = { # (1)
"GroupIdentifier": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListInputDeviceTransfersPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListInputDeviceTransfersRequestListInputDeviceTransfersPaginateTypeDef = { # (1)
"TransferType": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListInputDevicesPaginator
- item: ListInputDevicesResponseTypeDef
paginate#
Type annotations and code completion for ListInputDevicesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListInputDevicesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListInputDevicesRequestListInputDevicesPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListInputSecurityGroupsPaginator
- item: ListInputSecurityGroupsResponseTypeDef
paginate#
Type annotations and code completion for ListInputSecurityGroupsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListInputSecurityGroupsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListInputSecurityGroupsRequestListInputSecurityGroupsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListInputsPaginator
- item: ListInputsResponseTypeDef
paginate#
Type annotations and code completion for ListInputsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListInputsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListInputsRequestListInputsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListMultiplexProgramsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListMultiplexProgramsRequestListMultiplexProgramsPaginateTypeDef = { # (1)
"MultiplexId": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListMultiplexesPaginator
- item: ListMultiplexesResponseTypeDef
paginate#
Type annotations and code completion for ListMultiplexesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListMultiplexesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListMultiplexesRequestListMultiplexesPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListNetworksPaginator#
Type annotations and code completion for boto3.client("medialive").get_paginator("list_networks")
.
boto3 documentation
# ListNetworksPaginator usage example
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListNetworksPaginator
def get_list_networks_paginator() -> ListNetworksPaginator:
return Session().client("medialive").get_paginator("list_networks")
# ListNetworksPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListNetworksPaginator
session = Session()
client = Session().client("medialive") # (1)
paginator: ListNetworksPaginator = client.get_paginator("list_networks") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaLiveClient
- paginator: ListNetworksPaginator
- item: ListNetworksResponseTypeDef
paginate#
Type annotations and code completion for ListNetworksPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListNetworksResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListNetworksRequestListNetworksPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListNodesPaginator#
Type annotations and code completion for boto3.client("medialive").get_paginator("list_nodes")
.
boto3 documentation
# ListNodesPaginator usage example
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListNodesPaginator
def get_list_nodes_paginator() -> ListNodesPaginator:
return Session().client("medialive").get_paginator("list_nodes")
# ListNodesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_medialive.paginator import ListNodesPaginator
session = Session()
client = Session().client("medialive") # (1)
paginator: ListNodesPaginator = client.get_paginator("list_nodes") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: MediaLiveClient
- paginator: ListNodesPaginator
- item: ListNodesResponseTypeDef
paginate#
Type annotations and code completion for ListNodesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ClusterId: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListNodesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListNodesRequestListNodesPaginateTypeDef = { # (1)
"ClusterId": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListOfferingsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListOfferingsRequestListOfferingsPaginateTypeDef = { # (1)
"ChannelClass": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListReservationsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListReservationsRequestListReservationsPaginateTypeDef = { # (1)
"ChannelClass": ...,
}
parent.paginate(**kwargs)
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)
- client: MediaLiveClient
- paginator: ListSignalMapsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListSignalMapsRequestListSignalMapsPaginateTypeDef = { # (1)
"CloudWatchAlarmTemplateGroupIdentifier": ...,
}
parent.paginate(**kwargs)