types-boto3-medialive 1.40.45__py3-none-any.whl → 1.40.74__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_medialive/__init__.py +12 -0
- types_boto3_medialive/__init__.pyi +12 -0
- types_boto3_medialive/__main__.py +4 -4
- types_boto3_medialive/client.py +93 -28
- types_boto3_medialive/client.pyi +93 -28
- types_boto3_medialive/literals.py +16 -7
- types_boto3_medialive/literals.pyi +16 -7
- types_boto3_medialive/paginator.py +78 -0
- types_boto3_medialive/paginator.pyi +69 -0
- types_boto3_medialive/type_defs.py +400 -302
- types_boto3_medialive/type_defs.pyi +388 -302
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/METADATA +21 -25
- types_boto3_medialive-1.40.74.dist-info/RECORD +20 -0
- types_boto3_medialive-1.40.45.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/top_level.txt +0 -0
types_boto3_medialive/client.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -27,10 +28,12 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
28
|
|
|
28
29
|
from .paginator import (
|
|
29
30
|
DescribeSchedulePaginator,
|
|
31
|
+
ListAlertsPaginator,
|
|
30
32
|
ListChannelPlacementGroupsPaginator,
|
|
31
33
|
ListChannelsPaginator,
|
|
32
34
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
33
35
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
36
|
+
ListClusterAlertsPaginator,
|
|
34
37
|
ListClustersPaginator,
|
|
35
38
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
36
39
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -38,6 +41,7 @@ from .paginator import (
|
|
|
38
41
|
ListInputDeviceTransfersPaginator,
|
|
39
42
|
ListInputSecurityGroupsPaginator,
|
|
40
43
|
ListInputsPaginator,
|
|
44
|
+
ListMultiplexAlertsPaginator,
|
|
41
45
|
ListMultiplexesPaginator,
|
|
42
46
|
ListMultiplexProgramsPaginator,
|
|
43
47
|
ListNetworksPaginator,
|
|
@@ -165,6 +169,8 @@ from .type_defs import (
|
|
|
165
169
|
GetEventBridgeRuleTemplateResponseTypeDef,
|
|
166
170
|
GetSignalMapRequestTypeDef,
|
|
167
171
|
GetSignalMapResponseTypeDef,
|
|
172
|
+
ListAlertsRequestTypeDef,
|
|
173
|
+
ListAlertsResponseTypeDef,
|
|
168
174
|
ListChannelPlacementGroupsRequestTypeDef,
|
|
169
175
|
ListChannelPlacementGroupsResponseTypeDef,
|
|
170
176
|
ListChannelsRequestTypeDef,
|
|
@@ -173,6 +179,8 @@ from .type_defs import (
|
|
|
173
179
|
ListCloudWatchAlarmTemplateGroupsResponseTypeDef,
|
|
174
180
|
ListCloudWatchAlarmTemplatesRequestTypeDef,
|
|
175
181
|
ListCloudWatchAlarmTemplatesResponseTypeDef,
|
|
182
|
+
ListClusterAlertsRequestTypeDef,
|
|
183
|
+
ListClusterAlertsResponseTypeDef,
|
|
176
184
|
ListClustersRequestTypeDef,
|
|
177
185
|
ListClustersResponseTypeDef,
|
|
178
186
|
ListEventBridgeRuleTemplateGroupsRequestTypeDef,
|
|
@@ -187,6 +195,8 @@ from .type_defs import (
|
|
|
187
195
|
ListInputSecurityGroupsResponseTypeDef,
|
|
188
196
|
ListInputsRequestTypeDef,
|
|
189
197
|
ListInputsResponseTypeDef,
|
|
198
|
+
ListMultiplexAlertsRequestTypeDef,
|
|
199
|
+
ListMultiplexAlertsResponseTypeDef,
|
|
190
200
|
ListMultiplexesRequestTypeDef,
|
|
191
201
|
ListMultiplexesResponseTypeDef,
|
|
192
202
|
ListMultiplexProgramsRequestTypeDef,
|
|
@@ -294,12 +304,6 @@ from .waiter import (
|
|
|
294
304
|
SignalMapUpdatedWaiter,
|
|
295
305
|
)
|
|
296
306
|
|
|
297
|
-
if sys.version_info >= (3, 9):
|
|
298
|
-
from builtins import dict as Dict
|
|
299
|
-
from builtins import type as Type
|
|
300
|
-
from collections.abc import Mapping
|
|
301
|
-
else:
|
|
302
|
-
from typing import Dict, Mapping, Type
|
|
303
307
|
if sys.version_info >= (3, 12):
|
|
304
308
|
from typing import Literal, Unpack
|
|
305
309
|
else:
|
|
@@ -308,16 +312,16 @@ else:
|
|
|
308
312
|
__all__ = ("MediaLiveClient",)
|
|
309
313
|
|
|
310
314
|
class Exceptions(BaseClientExceptions):
|
|
311
|
-
BadGatewayException:
|
|
312
|
-
BadRequestException:
|
|
313
|
-
ClientError:
|
|
314
|
-
ConflictException:
|
|
315
|
-
ForbiddenException:
|
|
316
|
-
GatewayTimeoutException:
|
|
317
|
-
InternalServerErrorException:
|
|
318
|
-
NotFoundException:
|
|
319
|
-
TooManyRequestsException:
|
|
320
|
-
UnprocessableEntityException:
|
|
315
|
+
BadGatewayException: type[BotocoreClientError]
|
|
316
|
+
BadRequestException: type[BotocoreClientError]
|
|
317
|
+
ClientError: type[BotocoreClientError]
|
|
318
|
+
ConflictException: type[BotocoreClientError]
|
|
319
|
+
ForbiddenException: type[BotocoreClientError]
|
|
320
|
+
GatewayTimeoutException: type[BotocoreClientError]
|
|
321
|
+
InternalServerErrorException: type[BotocoreClientError]
|
|
322
|
+
NotFoundException: type[BotocoreClientError]
|
|
323
|
+
TooManyRequestsException: type[BotocoreClientError]
|
|
324
|
+
UnprocessableEntityException: type[BotocoreClientError]
|
|
321
325
|
|
|
322
326
|
class MediaLiveClient(BaseClient):
|
|
323
327
|
"""
|
|
@@ -356,7 +360,7 @@ class MediaLiveClient(BaseClient):
|
|
|
356
360
|
|
|
357
361
|
def accept_input_device_transfer(
|
|
358
362
|
self, **kwargs: Unpack[AcceptInputDeviceTransferRequestTypeDef]
|
|
359
|
-
) ->
|
|
363
|
+
) -> dict[str, Any]:
|
|
360
364
|
"""
|
|
361
365
|
Accept an incoming input device transfer.
|
|
362
366
|
|
|
@@ -402,7 +406,7 @@ class MediaLiveClient(BaseClient):
|
|
|
402
406
|
|
|
403
407
|
def cancel_input_device_transfer(
|
|
404
408
|
self, **kwargs: Unpack[CancelInputDeviceTransferRequestTypeDef]
|
|
405
|
-
) ->
|
|
409
|
+
) -> dict[str, Any]:
|
|
406
410
|
"""
|
|
407
411
|
Cancel an input device transfer that you have requested.
|
|
408
412
|
|
|
@@ -410,7 +414,7 @@ class MediaLiveClient(BaseClient):
|
|
|
410
414
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#cancel_input_device_transfer)
|
|
411
415
|
"""
|
|
412
416
|
|
|
413
|
-
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) ->
|
|
417
|
+
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
414
418
|
"""
|
|
415
419
|
Send a request to claim an AWS Elemental device that you have purchased from a
|
|
416
420
|
third-party vendor.
|
|
@@ -499,7 +503,7 @@ class MediaLiveClient(BaseClient):
|
|
|
499
503
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_channel)
|
|
500
504
|
"""
|
|
501
505
|
|
|
502
|
-
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) ->
|
|
506
|
+
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) -> dict[str, Any]:
|
|
503
507
|
"""
|
|
504
508
|
Deletes the input end point.
|
|
505
509
|
|
|
@@ -509,7 +513,7 @@ class MediaLiveClient(BaseClient):
|
|
|
509
513
|
|
|
510
514
|
def delete_input_security_group(
|
|
511
515
|
self, **kwargs: Unpack[DeleteInputSecurityGroupRequestTypeDef]
|
|
512
|
-
) ->
|
|
516
|
+
) -> dict[str, Any]:
|
|
513
517
|
"""
|
|
514
518
|
Deletes an Input Security Group.
|
|
515
519
|
|
|
@@ -547,7 +551,7 @@ class MediaLiveClient(BaseClient):
|
|
|
547
551
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_reservation)
|
|
548
552
|
"""
|
|
549
553
|
|
|
550
|
-
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) ->
|
|
554
|
+
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) -> dict[str, Any]:
|
|
551
555
|
"""
|
|
552
556
|
Delete all schedule actions on a channel.
|
|
553
557
|
|
|
@@ -793,7 +797,7 @@ class MediaLiveClient(BaseClient):
|
|
|
793
797
|
|
|
794
798
|
def reboot_input_device(
|
|
795
799
|
self, **kwargs: Unpack[RebootInputDeviceRequestTypeDef]
|
|
796
|
-
) ->
|
|
800
|
+
) -> dict[str, Any]:
|
|
797
801
|
"""
|
|
798
802
|
Send a reboot command to the specified input device.
|
|
799
803
|
|
|
@@ -803,7 +807,7 @@ class MediaLiveClient(BaseClient):
|
|
|
803
807
|
|
|
804
808
|
def reject_input_device_transfer(
|
|
805
809
|
self, **kwargs: Unpack[RejectInputDeviceTransferRequestTypeDef]
|
|
806
|
-
) ->
|
|
810
|
+
) -> dict[str, Any]:
|
|
807
811
|
"""
|
|
808
812
|
Reject the transfer of the specified input device to your AWS account.
|
|
809
813
|
|
|
@@ -823,7 +827,7 @@ class MediaLiveClient(BaseClient):
|
|
|
823
827
|
|
|
824
828
|
def start_input_device(
|
|
825
829
|
self, **kwargs: Unpack[StartInputDeviceRequestTypeDef]
|
|
826
|
-
) ->
|
|
830
|
+
) -> dict[str, Any]:
|
|
827
831
|
"""
|
|
828
832
|
Start an input device that is attached to a MediaConnect flow.
|
|
829
833
|
|
|
@@ -833,7 +837,7 @@ class MediaLiveClient(BaseClient):
|
|
|
833
837
|
|
|
834
838
|
def start_input_device_maintenance_window(
|
|
835
839
|
self, **kwargs: Unpack[StartInputDeviceMaintenanceWindowRequestTypeDef]
|
|
836
|
-
) ->
|
|
840
|
+
) -> dict[str, Any]:
|
|
837
841
|
"""
|
|
838
842
|
Start a maintenance window for the specified input device.
|
|
839
843
|
|
|
@@ -861,7 +865,7 @@ class MediaLiveClient(BaseClient):
|
|
|
861
865
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#stop_channel)
|
|
862
866
|
"""
|
|
863
867
|
|
|
864
|
-
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) ->
|
|
868
|
+
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
865
869
|
"""
|
|
866
870
|
Stop an input device that is attached to a MediaConnect flow.
|
|
867
871
|
|
|
@@ -881,7 +885,7 @@ class MediaLiveClient(BaseClient):
|
|
|
881
885
|
|
|
882
886
|
def transfer_input_device(
|
|
883
887
|
self, **kwargs: Unpack[TransferInputDeviceRequestTypeDef]
|
|
884
|
-
) ->
|
|
888
|
+
) -> dict[str, Any]:
|
|
885
889
|
"""
|
|
886
890
|
Start an input device transfer to another AWS account.
|
|
887
891
|
|
|
@@ -1536,6 +1540,34 @@ class MediaLiveClient(BaseClient):
|
|
|
1536
1540
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#update_sdi_source)
|
|
1537
1541
|
"""
|
|
1538
1542
|
|
|
1543
|
+
def list_alerts(self, **kwargs: Unpack[ListAlertsRequestTypeDef]) -> ListAlertsResponseTypeDef:
|
|
1544
|
+
"""
|
|
1545
|
+
List the alerts for a channel with optional filtering based on alert state.
|
|
1546
|
+
|
|
1547
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_alerts.html)
|
|
1548
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_alerts)
|
|
1549
|
+
"""
|
|
1550
|
+
|
|
1551
|
+
def list_cluster_alerts(
|
|
1552
|
+
self, **kwargs: Unpack[ListClusterAlertsRequestTypeDef]
|
|
1553
|
+
) -> ListClusterAlertsResponseTypeDef:
|
|
1554
|
+
"""
|
|
1555
|
+
List the alerts for a cluster with optional filtering based on alert state.
|
|
1556
|
+
|
|
1557
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_cluster_alerts.html)
|
|
1558
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_cluster_alerts)
|
|
1559
|
+
"""
|
|
1560
|
+
|
|
1561
|
+
def list_multiplex_alerts(
|
|
1562
|
+
self, **kwargs: Unpack[ListMultiplexAlertsRequestTypeDef]
|
|
1563
|
+
) -> ListMultiplexAlertsResponseTypeDef:
|
|
1564
|
+
"""
|
|
1565
|
+
List the alerts for a multiplex with optional filtering based on alert state.
|
|
1566
|
+
|
|
1567
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_multiplex_alerts.html)
|
|
1568
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_multiplex_alerts)
|
|
1569
|
+
"""
|
|
1570
|
+
|
|
1539
1571
|
@overload # type: ignore[override]
|
|
1540
1572
|
def get_paginator( # type: ignore[override]
|
|
1541
1573
|
self, operation_name: Literal["describe_schedule"]
|
|
@@ -1547,6 +1579,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1547
1579
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1548
1580
|
"""
|
|
1549
1581
|
|
|
1582
|
+
@overload # type: ignore[override]
|
|
1583
|
+
def get_paginator( # type: ignore[override]
|
|
1584
|
+
self, operation_name: Literal["list_alerts"]
|
|
1585
|
+
) -> ListAlertsPaginator:
|
|
1586
|
+
"""
|
|
1587
|
+
Create a paginator for an operation.
|
|
1588
|
+
|
|
1589
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1590
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1591
|
+
"""
|
|
1592
|
+
|
|
1550
1593
|
@overload # type: ignore[override]
|
|
1551
1594
|
def get_paginator( # type: ignore[override]
|
|
1552
1595
|
self, operation_name: Literal["list_channel_placement_groups"]
|
|
@@ -1591,6 +1634,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1591
1634
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1592
1635
|
"""
|
|
1593
1636
|
|
|
1637
|
+
@overload # type: ignore[override]
|
|
1638
|
+
def get_paginator( # type: ignore[override]
|
|
1639
|
+
self, operation_name: Literal["list_cluster_alerts"]
|
|
1640
|
+
) -> ListClusterAlertsPaginator:
|
|
1641
|
+
"""
|
|
1642
|
+
Create a paginator for an operation.
|
|
1643
|
+
|
|
1644
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1645
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1646
|
+
"""
|
|
1647
|
+
|
|
1594
1648
|
@overload # type: ignore[override]
|
|
1595
1649
|
def get_paginator( # type: ignore[override]
|
|
1596
1650
|
self, operation_name: Literal["list_clusters"]
|
|
@@ -1668,6 +1722,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1668
1722
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1669
1723
|
"""
|
|
1670
1724
|
|
|
1725
|
+
@overload # type: ignore[override]
|
|
1726
|
+
def get_paginator( # type: ignore[override]
|
|
1727
|
+
self, operation_name: Literal["list_multiplex_alerts"]
|
|
1728
|
+
) -> ListMultiplexAlertsPaginator:
|
|
1729
|
+
"""
|
|
1730
|
+
Create a paginator for an operation.
|
|
1731
|
+
|
|
1732
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1733
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1734
|
+
"""
|
|
1735
|
+
|
|
1671
1736
|
@overload # type: ignore[override]
|
|
1672
1737
|
def get_paginator( # type: ignore[override]
|
|
1673
1738
|
self, operation_name: Literal["list_multiplex_programs"]
|
|
@@ -67,6 +67,7 @@ __all__ = (
|
|
|
67
67
|
"BurnInShadowColorType",
|
|
68
68
|
"BurnInTeletextGridControlType",
|
|
69
69
|
"CdiInputResolutionType",
|
|
70
|
+
"ChannelAlertStateType",
|
|
70
71
|
"ChannelClassType",
|
|
71
72
|
"ChannelCreatedWaiterName",
|
|
72
73
|
"ChannelDeletedWaiterName",
|
|
@@ -82,6 +83,7 @@ __all__ = (
|
|
|
82
83
|
"CloudWatchAlarmTemplateStatisticType",
|
|
83
84
|
"CloudWatchAlarmTemplateTargetResourceTypeType",
|
|
84
85
|
"CloudWatchAlarmTemplateTreatMissingDataType",
|
|
86
|
+
"ClusterAlertStateType",
|
|
85
87
|
"ClusterCreatedWaiterName",
|
|
86
88
|
"ClusterDeletedWaiterName",
|
|
87
89
|
"ClusterStateType",
|
|
@@ -252,10 +254,12 @@ __all__ = (
|
|
|
252
254
|
"InputTimecodeSourceType",
|
|
253
255
|
"InputTypeType",
|
|
254
256
|
"LastFrameClippingBehaviorType",
|
|
257
|
+
"ListAlertsPaginatorName",
|
|
255
258
|
"ListChannelPlacementGroupsPaginatorName",
|
|
256
259
|
"ListChannelsPaginatorName",
|
|
257
260
|
"ListCloudWatchAlarmTemplateGroupsPaginatorName",
|
|
258
261
|
"ListCloudWatchAlarmTemplatesPaginatorName",
|
|
262
|
+
"ListClusterAlertsPaginatorName",
|
|
259
263
|
"ListClustersPaginatorName",
|
|
260
264
|
"ListEventBridgeRuleTemplateGroupsPaginatorName",
|
|
261
265
|
"ListEventBridgeRuleTemplatesPaginatorName",
|
|
@@ -263,6 +267,7 @@ __all__ = (
|
|
|
263
267
|
"ListInputDevicesPaginatorName",
|
|
264
268
|
"ListInputSecurityGroupsPaginatorName",
|
|
265
269
|
"ListInputsPaginatorName",
|
|
270
|
+
"ListMultiplexAlertsPaginatorName",
|
|
266
271
|
"ListMultiplexProgramsPaginatorName",
|
|
267
272
|
"ListMultiplexesPaginatorName",
|
|
268
273
|
"ListNetworksPaginatorName",
|
|
@@ -309,6 +314,7 @@ __all__ = (
|
|
|
309
314
|
"Mpeg2SubGopLengthType",
|
|
310
315
|
"Mpeg2TimecodeInsertionBehaviorType",
|
|
311
316
|
"MsSmoothH265PackagingTypeType",
|
|
317
|
+
"MultiplexAlertStateType",
|
|
312
318
|
"MultiplexCreatedWaiterName",
|
|
313
319
|
"MultiplexDeletedWaiterName",
|
|
314
320
|
"MultiplexRunningWaiterName",
|
|
@@ -488,6 +494,7 @@ BurnInOutlineColorType = Literal["BLACK", "BLUE", "GREEN", "RED", "WHITE", "YELL
|
|
|
488
494
|
BurnInShadowColorType = Literal["BLACK", "NONE", "WHITE"]
|
|
489
495
|
BurnInTeletextGridControlType = Literal["FIXED", "SCALED"]
|
|
490
496
|
CdiInputResolutionType = Literal["FHD", "HD", "SD", "UHD"]
|
|
497
|
+
ChannelAlertStateType = Literal["CLEARED", "SET"]
|
|
491
498
|
ChannelClassType = Literal["SINGLE_PIPELINE", "STANDARD"]
|
|
492
499
|
ChannelCreatedWaiterName = Literal["channel_created"]
|
|
493
500
|
ChannelDeletedWaiterName = Literal["channel_deleted"]
|
|
@@ -536,6 +543,7 @@ CloudWatchAlarmTemplateTargetResourceTypeType = Literal[
|
|
|
536
543
|
CloudWatchAlarmTemplateTreatMissingDataType = Literal[
|
|
537
544
|
"breaching", "ignore", "missing", "notBreaching"
|
|
538
545
|
]
|
|
546
|
+
ClusterAlertStateType = Literal["CLEARED", "SET"]
|
|
539
547
|
ClusterCreatedWaiterName = Literal["cluster_created"]
|
|
540
548
|
ClusterDeletedWaiterName = Literal["cluster_deleted"]
|
|
541
549
|
ClusterStateType = Literal[
|
|
@@ -854,10 +862,12 @@ InputTypeType = Literal[
|
|
|
854
862
|
"URL_PULL",
|
|
855
863
|
]
|
|
856
864
|
LastFrameClippingBehaviorType = Literal["EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"]
|
|
865
|
+
ListAlertsPaginatorName = Literal["list_alerts"]
|
|
857
866
|
ListChannelPlacementGroupsPaginatorName = Literal["list_channel_placement_groups"]
|
|
858
867
|
ListChannelsPaginatorName = Literal["list_channels"]
|
|
859
868
|
ListCloudWatchAlarmTemplateGroupsPaginatorName = Literal["list_cloud_watch_alarm_template_groups"]
|
|
860
869
|
ListCloudWatchAlarmTemplatesPaginatorName = Literal["list_cloud_watch_alarm_templates"]
|
|
870
|
+
ListClusterAlertsPaginatorName = Literal["list_cluster_alerts"]
|
|
861
871
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
862
872
|
ListEventBridgeRuleTemplateGroupsPaginatorName = Literal["list_event_bridge_rule_template_groups"]
|
|
863
873
|
ListEventBridgeRuleTemplatesPaginatorName = Literal["list_event_bridge_rule_templates"]
|
|
@@ -865,6 +875,7 @@ ListInputDeviceTransfersPaginatorName = Literal["list_input_device_transfers"]
|
|
|
865
875
|
ListInputDevicesPaginatorName = Literal["list_input_devices"]
|
|
866
876
|
ListInputSecurityGroupsPaginatorName = Literal["list_input_security_groups"]
|
|
867
877
|
ListInputsPaginatorName = Literal["list_inputs"]
|
|
878
|
+
ListMultiplexAlertsPaginatorName = Literal["list_multiplex_alerts"]
|
|
868
879
|
ListMultiplexProgramsPaginatorName = Literal["list_multiplex_programs"]
|
|
869
880
|
ListMultiplexesPaginatorName = Literal["list_multiplexes"]
|
|
870
881
|
ListNetworksPaginatorName = Literal["list_networks"]
|
|
@@ -914,6 +925,7 @@ Mpeg2ScanTypeType = Literal["INTERLACED", "PROGRESSIVE"]
|
|
|
914
925
|
Mpeg2SubGopLengthType = Literal["DYNAMIC", "FIXED"]
|
|
915
926
|
Mpeg2TimecodeInsertionBehaviorType = Literal["DISABLED", "GOP_TIMECODE"]
|
|
916
927
|
MsSmoothH265PackagingTypeType = Literal["HEV1", "HVC1"]
|
|
928
|
+
MultiplexAlertStateType = Literal["CLEARED", "SET"]
|
|
917
929
|
MultiplexCreatedWaiterName = Literal["multiplex_created"]
|
|
918
930
|
MultiplexDeletedWaiterName = Literal["multiplex_deleted"]
|
|
919
931
|
MultiplexRunningWaiterName = Literal["multiplex_running"]
|
|
@@ -1129,7 +1141,6 @@ ServiceName = Literal[
|
|
|
1129
1141
|
"apprunner",
|
|
1130
1142
|
"appstream",
|
|
1131
1143
|
"appsync",
|
|
1132
|
-
"apptest",
|
|
1133
1144
|
"arc-region-switch",
|
|
1134
1145
|
"arc-zonal-shift",
|
|
1135
1146
|
"artifact",
|
|
@@ -1297,7 +1308,6 @@ ServiceName = Literal[
|
|
|
1297
1308
|
"iotdeviceadvisor",
|
|
1298
1309
|
"iotevents",
|
|
1299
1310
|
"iotevents-data",
|
|
1300
|
-
"iotfleethub",
|
|
1301
1311
|
"iotfleetwise",
|
|
1302
1312
|
"iotsecuretunneling",
|
|
1303
1313
|
"iotsitewise",
|
|
@@ -1336,8 +1346,6 @@ ServiceName = Literal[
|
|
|
1336
1346
|
"location",
|
|
1337
1347
|
"logs",
|
|
1338
1348
|
"lookoutequipment",
|
|
1339
|
-
"lookoutmetrics",
|
|
1340
|
-
"lookoutvision",
|
|
1341
1349
|
"m2",
|
|
1342
1350
|
"machinelearning",
|
|
1343
1351
|
"macie2",
|
|
@@ -1412,8 +1420,6 @@ ServiceName = Literal[
|
|
|
1412
1420
|
"qapps",
|
|
1413
1421
|
"qbusiness",
|
|
1414
1422
|
"qconnect",
|
|
1415
|
-
"qldb",
|
|
1416
|
-
"qldb-session",
|
|
1417
1423
|
"quicksight",
|
|
1418
1424
|
"ram",
|
|
1419
1425
|
"rbin",
|
|
@@ -1428,7 +1434,6 @@ ServiceName = Literal[
|
|
|
1428
1434
|
"resource-explorer-2",
|
|
1429
1435
|
"resource-groups",
|
|
1430
1436
|
"resourcegroupstaggingapi",
|
|
1431
|
-
"robomaker",
|
|
1432
1437
|
"rolesanywhere",
|
|
1433
1438
|
"route53",
|
|
1434
1439
|
"route53-recovery-cluster",
|
|
@@ -1437,6 +1442,7 @@ ServiceName = Literal[
|
|
|
1437
1442
|
"route53domains",
|
|
1438
1443
|
"route53profiles",
|
|
1439
1444
|
"route53resolver",
|
|
1445
|
+
"rtbfabric",
|
|
1440
1446
|
"rum",
|
|
1441
1447
|
"s3",
|
|
1442
1448
|
"s3control",
|
|
@@ -1522,10 +1528,12 @@ ResourceServiceName = Literal[
|
|
|
1522
1528
|
]
|
|
1523
1529
|
PaginatorName = Literal[
|
|
1524
1530
|
"describe_schedule",
|
|
1531
|
+
"list_alerts",
|
|
1525
1532
|
"list_channel_placement_groups",
|
|
1526
1533
|
"list_channels",
|
|
1527
1534
|
"list_cloud_watch_alarm_template_groups",
|
|
1528
1535
|
"list_cloud_watch_alarm_templates",
|
|
1536
|
+
"list_cluster_alerts",
|
|
1529
1537
|
"list_clusters",
|
|
1530
1538
|
"list_event_bridge_rule_template_groups",
|
|
1531
1539
|
"list_event_bridge_rule_templates",
|
|
@@ -1533,6 +1541,7 @@ PaginatorName = Literal[
|
|
|
1533
1541
|
"list_input_devices",
|
|
1534
1542
|
"list_input_security_groups",
|
|
1535
1543
|
"list_inputs",
|
|
1544
|
+
"list_multiplex_alerts",
|
|
1536
1545
|
"list_multiplex_programs",
|
|
1537
1546
|
"list_multiplexes",
|
|
1538
1547
|
"list_networks",
|
|
@@ -66,6 +66,7 @@ __all__ = (
|
|
|
66
66
|
"BurnInShadowColorType",
|
|
67
67
|
"BurnInTeletextGridControlType",
|
|
68
68
|
"CdiInputResolutionType",
|
|
69
|
+
"ChannelAlertStateType",
|
|
69
70
|
"ChannelClassType",
|
|
70
71
|
"ChannelCreatedWaiterName",
|
|
71
72
|
"ChannelDeletedWaiterName",
|
|
@@ -81,6 +82,7 @@ __all__ = (
|
|
|
81
82
|
"CloudWatchAlarmTemplateStatisticType",
|
|
82
83
|
"CloudWatchAlarmTemplateTargetResourceTypeType",
|
|
83
84
|
"CloudWatchAlarmTemplateTreatMissingDataType",
|
|
85
|
+
"ClusterAlertStateType",
|
|
84
86
|
"ClusterCreatedWaiterName",
|
|
85
87
|
"ClusterDeletedWaiterName",
|
|
86
88
|
"ClusterStateType",
|
|
@@ -251,10 +253,12 @@ __all__ = (
|
|
|
251
253
|
"InputTimecodeSourceType",
|
|
252
254
|
"InputTypeType",
|
|
253
255
|
"LastFrameClippingBehaviorType",
|
|
256
|
+
"ListAlertsPaginatorName",
|
|
254
257
|
"ListChannelPlacementGroupsPaginatorName",
|
|
255
258
|
"ListChannelsPaginatorName",
|
|
256
259
|
"ListCloudWatchAlarmTemplateGroupsPaginatorName",
|
|
257
260
|
"ListCloudWatchAlarmTemplatesPaginatorName",
|
|
261
|
+
"ListClusterAlertsPaginatorName",
|
|
258
262
|
"ListClustersPaginatorName",
|
|
259
263
|
"ListEventBridgeRuleTemplateGroupsPaginatorName",
|
|
260
264
|
"ListEventBridgeRuleTemplatesPaginatorName",
|
|
@@ -262,6 +266,7 @@ __all__ = (
|
|
|
262
266
|
"ListInputDevicesPaginatorName",
|
|
263
267
|
"ListInputSecurityGroupsPaginatorName",
|
|
264
268
|
"ListInputsPaginatorName",
|
|
269
|
+
"ListMultiplexAlertsPaginatorName",
|
|
265
270
|
"ListMultiplexProgramsPaginatorName",
|
|
266
271
|
"ListMultiplexesPaginatorName",
|
|
267
272
|
"ListNetworksPaginatorName",
|
|
@@ -308,6 +313,7 @@ __all__ = (
|
|
|
308
313
|
"Mpeg2SubGopLengthType",
|
|
309
314
|
"Mpeg2TimecodeInsertionBehaviorType",
|
|
310
315
|
"MsSmoothH265PackagingTypeType",
|
|
316
|
+
"MultiplexAlertStateType",
|
|
311
317
|
"MultiplexCreatedWaiterName",
|
|
312
318
|
"MultiplexDeletedWaiterName",
|
|
313
319
|
"MultiplexRunningWaiterName",
|
|
@@ -486,6 +492,7 @@ BurnInOutlineColorType = Literal["BLACK", "BLUE", "GREEN", "RED", "WHITE", "YELL
|
|
|
486
492
|
BurnInShadowColorType = Literal["BLACK", "NONE", "WHITE"]
|
|
487
493
|
BurnInTeletextGridControlType = Literal["FIXED", "SCALED"]
|
|
488
494
|
CdiInputResolutionType = Literal["FHD", "HD", "SD", "UHD"]
|
|
495
|
+
ChannelAlertStateType = Literal["CLEARED", "SET"]
|
|
489
496
|
ChannelClassType = Literal["SINGLE_PIPELINE", "STANDARD"]
|
|
490
497
|
ChannelCreatedWaiterName = Literal["channel_created"]
|
|
491
498
|
ChannelDeletedWaiterName = Literal["channel_deleted"]
|
|
@@ -534,6 +541,7 @@ CloudWatchAlarmTemplateTargetResourceTypeType = Literal[
|
|
|
534
541
|
CloudWatchAlarmTemplateTreatMissingDataType = Literal[
|
|
535
542
|
"breaching", "ignore", "missing", "notBreaching"
|
|
536
543
|
]
|
|
544
|
+
ClusterAlertStateType = Literal["CLEARED", "SET"]
|
|
537
545
|
ClusterCreatedWaiterName = Literal["cluster_created"]
|
|
538
546
|
ClusterDeletedWaiterName = Literal["cluster_deleted"]
|
|
539
547
|
ClusterStateType = Literal[
|
|
@@ -852,10 +860,12 @@ InputTypeType = Literal[
|
|
|
852
860
|
"URL_PULL",
|
|
853
861
|
]
|
|
854
862
|
LastFrameClippingBehaviorType = Literal["EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"]
|
|
863
|
+
ListAlertsPaginatorName = Literal["list_alerts"]
|
|
855
864
|
ListChannelPlacementGroupsPaginatorName = Literal["list_channel_placement_groups"]
|
|
856
865
|
ListChannelsPaginatorName = Literal["list_channels"]
|
|
857
866
|
ListCloudWatchAlarmTemplateGroupsPaginatorName = Literal["list_cloud_watch_alarm_template_groups"]
|
|
858
867
|
ListCloudWatchAlarmTemplatesPaginatorName = Literal["list_cloud_watch_alarm_templates"]
|
|
868
|
+
ListClusterAlertsPaginatorName = Literal["list_cluster_alerts"]
|
|
859
869
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
860
870
|
ListEventBridgeRuleTemplateGroupsPaginatorName = Literal["list_event_bridge_rule_template_groups"]
|
|
861
871
|
ListEventBridgeRuleTemplatesPaginatorName = Literal["list_event_bridge_rule_templates"]
|
|
@@ -863,6 +873,7 @@ ListInputDeviceTransfersPaginatorName = Literal["list_input_device_transfers"]
|
|
|
863
873
|
ListInputDevicesPaginatorName = Literal["list_input_devices"]
|
|
864
874
|
ListInputSecurityGroupsPaginatorName = Literal["list_input_security_groups"]
|
|
865
875
|
ListInputsPaginatorName = Literal["list_inputs"]
|
|
876
|
+
ListMultiplexAlertsPaginatorName = Literal["list_multiplex_alerts"]
|
|
866
877
|
ListMultiplexProgramsPaginatorName = Literal["list_multiplex_programs"]
|
|
867
878
|
ListMultiplexesPaginatorName = Literal["list_multiplexes"]
|
|
868
879
|
ListNetworksPaginatorName = Literal["list_networks"]
|
|
@@ -912,6 +923,7 @@ Mpeg2ScanTypeType = Literal["INTERLACED", "PROGRESSIVE"]
|
|
|
912
923
|
Mpeg2SubGopLengthType = Literal["DYNAMIC", "FIXED"]
|
|
913
924
|
Mpeg2TimecodeInsertionBehaviorType = Literal["DISABLED", "GOP_TIMECODE"]
|
|
914
925
|
MsSmoothH265PackagingTypeType = Literal["HEV1", "HVC1"]
|
|
926
|
+
MultiplexAlertStateType = Literal["CLEARED", "SET"]
|
|
915
927
|
MultiplexCreatedWaiterName = Literal["multiplex_created"]
|
|
916
928
|
MultiplexDeletedWaiterName = Literal["multiplex_deleted"]
|
|
917
929
|
MultiplexRunningWaiterName = Literal["multiplex_running"]
|
|
@@ -1127,7 +1139,6 @@ ServiceName = Literal[
|
|
|
1127
1139
|
"apprunner",
|
|
1128
1140
|
"appstream",
|
|
1129
1141
|
"appsync",
|
|
1130
|
-
"apptest",
|
|
1131
1142
|
"arc-region-switch",
|
|
1132
1143
|
"arc-zonal-shift",
|
|
1133
1144
|
"artifact",
|
|
@@ -1295,7 +1306,6 @@ ServiceName = Literal[
|
|
|
1295
1306
|
"iotdeviceadvisor",
|
|
1296
1307
|
"iotevents",
|
|
1297
1308
|
"iotevents-data",
|
|
1298
|
-
"iotfleethub",
|
|
1299
1309
|
"iotfleetwise",
|
|
1300
1310
|
"iotsecuretunneling",
|
|
1301
1311
|
"iotsitewise",
|
|
@@ -1334,8 +1344,6 @@ ServiceName = Literal[
|
|
|
1334
1344
|
"location",
|
|
1335
1345
|
"logs",
|
|
1336
1346
|
"lookoutequipment",
|
|
1337
|
-
"lookoutmetrics",
|
|
1338
|
-
"lookoutvision",
|
|
1339
1347
|
"m2",
|
|
1340
1348
|
"machinelearning",
|
|
1341
1349
|
"macie2",
|
|
@@ -1410,8 +1418,6 @@ ServiceName = Literal[
|
|
|
1410
1418
|
"qapps",
|
|
1411
1419
|
"qbusiness",
|
|
1412
1420
|
"qconnect",
|
|
1413
|
-
"qldb",
|
|
1414
|
-
"qldb-session",
|
|
1415
1421
|
"quicksight",
|
|
1416
1422
|
"ram",
|
|
1417
1423
|
"rbin",
|
|
@@ -1426,7 +1432,6 @@ ServiceName = Literal[
|
|
|
1426
1432
|
"resource-explorer-2",
|
|
1427
1433
|
"resource-groups",
|
|
1428
1434
|
"resourcegroupstaggingapi",
|
|
1429
|
-
"robomaker",
|
|
1430
1435
|
"rolesanywhere",
|
|
1431
1436
|
"route53",
|
|
1432
1437
|
"route53-recovery-cluster",
|
|
@@ -1435,6 +1440,7 @@ ServiceName = Literal[
|
|
|
1435
1440
|
"route53domains",
|
|
1436
1441
|
"route53profiles",
|
|
1437
1442
|
"route53resolver",
|
|
1443
|
+
"rtbfabric",
|
|
1438
1444
|
"rum",
|
|
1439
1445
|
"s3",
|
|
1440
1446
|
"s3control",
|
|
@@ -1520,10 +1526,12 @@ ResourceServiceName = Literal[
|
|
|
1520
1526
|
]
|
|
1521
1527
|
PaginatorName = Literal[
|
|
1522
1528
|
"describe_schedule",
|
|
1529
|
+
"list_alerts",
|
|
1523
1530
|
"list_channel_placement_groups",
|
|
1524
1531
|
"list_channels",
|
|
1525
1532
|
"list_cloud_watch_alarm_template_groups",
|
|
1526
1533
|
"list_cloud_watch_alarm_templates",
|
|
1534
|
+
"list_cluster_alerts",
|
|
1527
1535
|
"list_clusters",
|
|
1528
1536
|
"list_event_bridge_rule_template_groups",
|
|
1529
1537
|
"list_event_bridge_rule_templates",
|
|
@@ -1531,6 +1539,7 @@ PaginatorName = Literal[
|
|
|
1531
1539
|
"list_input_devices",
|
|
1532
1540
|
"list_input_security_groups",
|
|
1533
1541
|
"list_inputs",
|
|
1542
|
+
"list_multiplex_alerts",
|
|
1534
1543
|
"list_multiplex_programs",
|
|
1535
1544
|
"list_multiplexes",
|
|
1536
1545
|
"list_networks",
|