types-boto3-medialive 1.42.3__py3-none-any.whl → 1.42.25__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 +1 -1
- types_boto3_medialive/__init__.pyi +1 -1
- types_boto3_medialive/__main__.py +4 -4
- types_boto3_medialive/client.py +1 -1
- types_boto3_medialive/client.pyi +1 -1
- types_boto3_medialive/literals.py +6 -2
- types_boto3_medialive/literals.pyi +6 -2
- types_boto3_medialive/paginator.py +1 -1
- types_boto3_medialive/paginator.pyi +1 -1
- types_boto3_medialive/type_defs.py +115 -70
- types_boto3_medialive/type_defs.pyi +100 -62
- types_boto3_medialive/version.py +2 -2
- types_boto3_medialive/waiter.py +1 -1
- types_boto3_medialive/waiter.pyi +1 -1
- {types_boto3_medialive-1.42.3.dist-info → types_boto3_medialive-1.42.25.dist-info}/METADATA +4 -4
- types_boto3_medialive-1.42.25.dist-info/RECORD +20 -0
- {types_boto3_medialive-1.42.3.dist-info → types_boto3_medialive-1.42.25.dist-info}/licenses/LICENSE +1 -1
- types_boto3_medialive-1.42.3.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.42.3.dist-info → types_boto3_medialive-1.42.25.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.42.3.dist-info → types_boto3_medialive-1.42.25.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2026 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 MediaLive 1.42.
|
|
16
|
-
"Version: 1.42.
|
|
15
|
+
"Type annotations for boto3 MediaLive 1.42.25\n"
|
|
16
|
+
"Version: 1.42.25\n"
|
|
17
17
|
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_medialive//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive.html#medialive\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.42.
|
|
29
|
+
sys.stdout.write("1.42.25\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_medialive/client.py
CHANGED
types_boto3_medialive/client.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for medialive service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -256,6 +256,7 @@ __all__ = (
|
|
|
256
256
|
"InputTimecodeSourceType",
|
|
257
257
|
"InputTypeType",
|
|
258
258
|
"LastFrameClippingBehaviorType",
|
|
259
|
+
"LinkedChannelTypeType",
|
|
259
260
|
"ListAlertsPaginatorName",
|
|
260
261
|
"ListChannelPlacementGroupsPaginatorName",
|
|
261
262
|
"ListChannelsPaginatorName",
|
|
@@ -338,6 +339,7 @@ __all__ = (
|
|
|
338
339
|
"OfferingTypeType",
|
|
339
340
|
"PaginatorName",
|
|
340
341
|
"PipelineIdType",
|
|
342
|
+
"PipelineLockingMethodType",
|
|
341
343
|
"PreferredChannelPipelineType",
|
|
342
344
|
"RebootInputDeviceForceType",
|
|
343
345
|
"RegionName",
|
|
@@ -868,6 +870,7 @@ InputTypeType = Literal[
|
|
|
868
870
|
"URL_PULL",
|
|
869
871
|
]
|
|
870
872
|
LastFrameClippingBehaviorType = Literal["EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"]
|
|
873
|
+
LinkedChannelTypeType = Literal["FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"]
|
|
871
874
|
ListAlertsPaginatorName = Literal["list_alerts"]
|
|
872
875
|
ListChannelPlacementGroupsPaginatorName = Literal["list_channel_placement_groups"]
|
|
873
876
|
ListChannelsPaginatorName = Literal["list_channels"]
|
|
@@ -998,6 +1001,7 @@ NodeStateType = Literal[
|
|
|
998
1001
|
OfferingDurationUnitsType = Literal["MONTHS"]
|
|
999
1002
|
OfferingTypeType = Literal["NO_UPFRONT"]
|
|
1000
1003
|
PipelineIdType = Literal["PIPELINE_0", "PIPELINE_1"]
|
|
1004
|
+
PipelineLockingMethodType = Literal["SOURCE_TIMECODE", "VIDEO_ALIGNMENT"]
|
|
1001
1005
|
PreferredChannelPipelineType = Literal["CURRENTLY_ACTIVE", "PIPELINE_0", "PIPELINE_1"]
|
|
1002
1006
|
RebootInputDeviceForceType = Literal["NO", "YES"]
|
|
1003
1007
|
ReservationAutomaticRenewalType = Literal["DISABLED", "ENABLED", "UNAVAILABLE"]
|
|
@@ -1263,7 +1267,6 @@ ServiceName = Literal[
|
|
|
1263
1267
|
"eks-auth",
|
|
1264
1268
|
"elasticache",
|
|
1265
1269
|
"elasticbeanstalk",
|
|
1266
|
-
"elastictranscoder",
|
|
1267
1270
|
"elb",
|
|
1268
1271
|
"elbv2",
|
|
1269
1272
|
"emr",
|
|
@@ -1528,6 +1531,7 @@ ServiceName = Literal[
|
|
|
1528
1531
|
"waf-regional",
|
|
1529
1532
|
"wafv2",
|
|
1530
1533
|
"wellarchitected",
|
|
1534
|
+
"wickr",
|
|
1531
1535
|
"wisdom",
|
|
1532
1536
|
"workdocs",
|
|
1533
1537
|
"workmail",
|
|
@@ -3,7 +3,7 @@ Type annotations for medialive service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -255,6 +255,7 @@ __all__ = (
|
|
|
255
255
|
"InputTimecodeSourceType",
|
|
256
256
|
"InputTypeType",
|
|
257
257
|
"LastFrameClippingBehaviorType",
|
|
258
|
+
"LinkedChannelTypeType",
|
|
258
259
|
"ListAlertsPaginatorName",
|
|
259
260
|
"ListChannelPlacementGroupsPaginatorName",
|
|
260
261
|
"ListChannelsPaginatorName",
|
|
@@ -337,6 +338,7 @@ __all__ = (
|
|
|
337
338
|
"OfferingTypeType",
|
|
338
339
|
"PaginatorName",
|
|
339
340
|
"PipelineIdType",
|
|
341
|
+
"PipelineLockingMethodType",
|
|
340
342
|
"PreferredChannelPipelineType",
|
|
341
343
|
"RebootInputDeviceForceType",
|
|
342
344
|
"RegionName",
|
|
@@ -866,6 +868,7 @@ InputTypeType = Literal[
|
|
|
866
868
|
"URL_PULL",
|
|
867
869
|
]
|
|
868
870
|
LastFrameClippingBehaviorType = Literal["EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"]
|
|
871
|
+
LinkedChannelTypeType = Literal["FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"]
|
|
869
872
|
ListAlertsPaginatorName = Literal["list_alerts"]
|
|
870
873
|
ListChannelPlacementGroupsPaginatorName = Literal["list_channel_placement_groups"]
|
|
871
874
|
ListChannelsPaginatorName = Literal["list_channels"]
|
|
@@ -996,6 +999,7 @@ NodeStateType = Literal[
|
|
|
996
999
|
OfferingDurationUnitsType = Literal["MONTHS"]
|
|
997
1000
|
OfferingTypeType = Literal["NO_UPFRONT"]
|
|
998
1001
|
PipelineIdType = Literal["PIPELINE_0", "PIPELINE_1"]
|
|
1002
|
+
PipelineLockingMethodType = Literal["SOURCE_TIMECODE", "VIDEO_ALIGNMENT"]
|
|
999
1003
|
PreferredChannelPipelineType = Literal["CURRENTLY_ACTIVE", "PIPELINE_0", "PIPELINE_1"]
|
|
1000
1004
|
RebootInputDeviceForceType = Literal["NO", "YES"]
|
|
1001
1005
|
ReservationAutomaticRenewalType = Literal["DISABLED", "ENABLED", "UNAVAILABLE"]
|
|
@@ -1261,7 +1265,6 @@ ServiceName = Literal[
|
|
|
1261
1265
|
"eks-auth",
|
|
1262
1266
|
"elasticache",
|
|
1263
1267
|
"elasticbeanstalk",
|
|
1264
|
-
"elastictranscoder",
|
|
1265
1268
|
"elb",
|
|
1266
1269
|
"elbv2",
|
|
1267
1270
|
"emr",
|
|
@@ -1526,6 +1529,7 @@ ServiceName = Literal[
|
|
|
1526
1529
|
"waf-regional",
|
|
1527
1530
|
"wafv2",
|
|
1528
1531
|
"wellarchitected",
|
|
1532
|
+
"wickr",
|
|
1529
1533
|
"wisdom",
|
|
1530
1534
|
"workdocs",
|
|
1531
1535
|
"workmail",
|
|
@@ -3,7 +3,7 @@ Type annotations for medialive service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -239,6 +239,7 @@ from .literals import (
|
|
|
239
239
|
InputTimecodeSourceType,
|
|
240
240
|
InputTypeType,
|
|
241
241
|
LastFrameClippingBehaviorType,
|
|
242
|
+
LinkedChannelTypeType,
|
|
242
243
|
LogLevelType,
|
|
243
244
|
M2tsAbsentInputAudioBehaviorType,
|
|
244
245
|
M2tsAribCaptionsPidControlType,
|
|
@@ -289,6 +290,7 @@ from .literals import (
|
|
|
289
290
|
NodeRoleType,
|
|
290
291
|
NodeStateType,
|
|
291
292
|
PipelineIdType,
|
|
293
|
+
PipelineLockingMethodType,
|
|
292
294
|
PreferredChannelPipelineType,
|
|
293
295
|
RebootInputDeviceForceType,
|
|
294
296
|
ReservationAutomaticRenewalType,
|
|
@@ -539,6 +541,7 @@ __all__ = (
|
|
|
539
541
|
"DescribeClusterRequestWaitTypeDef",
|
|
540
542
|
"DescribeClusterResponseTypeDef",
|
|
541
543
|
"DescribeClusterSummaryTypeDef",
|
|
544
|
+
"DescribeFollowerChannelSettingsTypeDef",
|
|
542
545
|
"DescribeInputDeviceRequestTypeDef",
|
|
543
546
|
"DescribeInputDeviceResponseTypeDef",
|
|
544
547
|
"DescribeInputDeviceThumbnailRequestTypeDef",
|
|
@@ -550,6 +553,7 @@ __all__ = (
|
|
|
550
553
|
"DescribeInputResponseTypeDef",
|
|
551
554
|
"DescribeInputSecurityGroupRequestTypeDef",
|
|
552
555
|
"DescribeInputSecurityGroupResponseTypeDef",
|
|
556
|
+
"DescribeLinkedChannelSettingsTypeDef",
|
|
553
557
|
"DescribeMultiplexProgramRequestTypeDef",
|
|
554
558
|
"DescribeMultiplexProgramResponseTypeDef",
|
|
555
559
|
"DescribeMultiplexRequestTypeDef",
|
|
@@ -568,6 +572,7 @@ __all__ = (
|
|
|
568
572
|
"DescribeNodeSummaryTypeDef",
|
|
569
573
|
"DescribeOfferingRequestTypeDef",
|
|
570
574
|
"DescribeOfferingResponseTypeDef",
|
|
575
|
+
"DescribePrimaryChannelSettingsTypeDef",
|
|
571
576
|
"DescribeReservationRequestTypeDef",
|
|
572
577
|
"DescribeReservationResponseTypeDef",
|
|
573
578
|
"DescribeScheduleRequestPaginateTypeDef",
|
|
@@ -603,6 +608,7 @@ __all__ = (
|
|
|
603
608
|
"FixedModeScheduleActionStartSettingsTypeDef",
|
|
604
609
|
"Fmp4HlsSettingsTypeDef",
|
|
605
610
|
"FollowModeScheduleActionStartSettingsTypeDef",
|
|
611
|
+
"FollowerChannelSettingsTypeDef",
|
|
606
612
|
"FrameCaptureCdnSettingsTypeDef",
|
|
607
613
|
"FrameCaptureGroupSettingsTypeDef",
|
|
608
614
|
"FrameCaptureOutputSettingsTypeDef",
|
|
@@ -622,7 +628,6 @@ __all__ = (
|
|
|
622
628
|
"GetSignalMapRequestWaitExtraTypeDef",
|
|
623
629
|
"GetSignalMapRequestWaitTypeDef",
|
|
624
630
|
"GetSignalMapResponseTypeDef",
|
|
625
|
-
"GlobalConfigurationOutputTypeDef",
|
|
626
631
|
"GlobalConfigurationTypeDef",
|
|
627
632
|
"H264ColorSpaceSettingsOutputTypeDef",
|
|
628
633
|
"H264ColorSpaceSettingsTypeDef",
|
|
@@ -700,6 +705,7 @@ __all__ = (
|
|
|
700
705
|
"IpPoolTypeDef",
|
|
701
706
|
"IpPoolUpdateRequestTypeDef",
|
|
702
707
|
"KeyProviderSettingsTypeDef",
|
|
708
|
+
"LinkedChannelSettingsTypeDef",
|
|
703
709
|
"ListAlertsRequestPaginateTypeDef",
|
|
704
710
|
"ListAlertsRequestTypeDef",
|
|
705
711
|
"ListAlertsResponseTypeDef",
|
|
@@ -776,6 +782,7 @@ __all__ = (
|
|
|
776
782
|
"MaintenanceUpdateSettingsTypeDef",
|
|
777
783
|
"MediaConnectFlowRequestTypeDef",
|
|
778
784
|
"MediaConnectFlowTypeDef",
|
|
785
|
+
"MediaPackageAdditionalDestinationsTypeDef",
|
|
779
786
|
"MediaPackageGroupSettingsOutputTypeDef",
|
|
780
787
|
"MediaPackageGroupSettingsTypeDef",
|
|
781
788
|
"MediaPackageOutputDestinationSettingsTypeDef",
|
|
@@ -841,7 +848,6 @@ __all__ = (
|
|
|
841
848
|
"OutputGroupSettingsTypeDef",
|
|
842
849
|
"OutputGroupTypeDef",
|
|
843
850
|
"OutputLocationRefTypeDef",
|
|
844
|
-
"OutputLockingSettingsOutputTypeDef",
|
|
845
851
|
"OutputLockingSettingsTypeDef",
|
|
846
852
|
"OutputSettingsOutputTypeDef",
|
|
847
853
|
"OutputSettingsTypeDef",
|
|
@@ -851,7 +857,9 @@ __all__ = (
|
|
|
851
857
|
"PauseStateScheduleActionSettingsTypeDef",
|
|
852
858
|
"PauseStateScheduleActionSettingsUnionTypeDef",
|
|
853
859
|
"PipelineDetailTypeDef",
|
|
860
|
+
"PipelineLockingSettingsTypeDef",
|
|
854
861
|
"PipelinePauseStateSettingsTypeDef",
|
|
862
|
+
"PrimaryChannelSettingsTypeDef",
|
|
855
863
|
"PurchaseOfferingRequestTypeDef",
|
|
856
864
|
"PurchaseOfferingResponseTypeDef",
|
|
857
865
|
"RebootInputDeviceRequestTypeDef",
|
|
@@ -1740,6 +1748,11 @@ class DescribeClusterRequestTypeDef(TypedDict):
|
|
|
1740
1748
|
ClusterId: str
|
|
1741
1749
|
|
|
1742
1750
|
|
|
1751
|
+
class DescribeFollowerChannelSettingsTypeDef(TypedDict):
|
|
1752
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
1753
|
+
PrimaryChannelArn: NotRequired[str]
|
|
1754
|
+
|
|
1755
|
+
|
|
1743
1756
|
class DescribeInputDeviceRequestTypeDef(TypedDict):
|
|
1744
1757
|
InputDeviceId: str
|
|
1745
1758
|
|
|
@@ -1791,6 +1804,11 @@ class InputWhitelistRuleTypeDef(TypedDict):
|
|
|
1791
1804
|
Cidr: NotRequired[str]
|
|
1792
1805
|
|
|
1793
1806
|
|
|
1807
|
+
class DescribePrimaryChannelSettingsTypeDef(TypedDict):
|
|
1808
|
+
FollowingChannelArns: NotRequired[list[str]]
|
|
1809
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
1810
|
+
|
|
1811
|
+
|
|
1794
1812
|
class DescribeMultiplexProgramRequestTypeDef(TypedDict):
|
|
1795
1813
|
MultiplexId: str
|
|
1796
1814
|
ProgramName: str
|
|
@@ -1940,6 +1958,11 @@ class FollowModeScheduleActionStartSettingsTypeDef(TypedDict):
|
|
|
1940
1958
|
ReferenceActionName: str
|
|
1941
1959
|
|
|
1942
1960
|
|
|
1961
|
+
class FollowerChannelSettingsTypeDef(TypedDict):
|
|
1962
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
1963
|
+
PrimaryChannelArn: NotRequired[str]
|
|
1964
|
+
|
|
1965
|
+
|
|
1943
1966
|
class FrameCaptureS3SettingsTypeDef(TypedDict):
|
|
1944
1967
|
CannedAcl: NotRequired[S3CannedAclType]
|
|
1945
1968
|
|
|
@@ -2105,6 +2128,10 @@ class IpPoolUpdateRequestTypeDef(TypedDict):
|
|
|
2105
2128
|
Cidr: NotRequired[str]
|
|
2106
2129
|
|
|
2107
2130
|
|
|
2131
|
+
class PrimaryChannelSettingsTypeDef(TypedDict):
|
|
2132
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
2133
|
+
|
|
2134
|
+
|
|
2108
2135
|
class ListAlertsRequestTypeDef(TypedDict):
|
|
2109
2136
|
ChannelId: str
|
|
2110
2137
|
MaxResults: NotRequired[int]
|
|
@@ -2337,6 +2364,8 @@ class MediaPackageOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2337
2364
|
ChannelId: NotRequired[str]
|
|
2338
2365
|
ChannelGroup: NotRequired[str]
|
|
2339
2366
|
ChannelName: NotRequired[str]
|
|
2367
|
+
ChannelEndpointId: NotRequired[str]
|
|
2368
|
+
MediaPackageRegionName: NotRequired[str]
|
|
2340
2369
|
|
|
2341
2370
|
|
|
2342
2371
|
class MediaPackageV2DestinationSettingsTypeDef(TypedDict):
|
|
@@ -2512,6 +2541,10 @@ class RtmpGroupSettingsTypeDef(TypedDict):
|
|
|
2512
2541
|
IncludeFillerNalUnits: NotRequired[IncludeFillerNalUnitsType]
|
|
2513
2542
|
|
|
2514
2543
|
|
|
2544
|
+
class PipelineLockingSettingsTypeDef(TypedDict):
|
|
2545
|
+
PipelineLockingMethod: NotRequired[PipelineLockingMethodType]
|
|
2546
|
+
|
|
2547
|
+
|
|
2515
2548
|
class PipelinePauseStateSettingsTypeDef(TypedDict):
|
|
2516
2549
|
PipelineId: PipelineIdType
|
|
2517
2550
|
|
|
@@ -2733,6 +2766,10 @@ class AdditionalDestinationsTypeDef(TypedDict):
|
|
|
2733
2766
|
Destination: OutputLocationRefTypeDef
|
|
2734
2767
|
|
|
2735
2768
|
|
|
2769
|
+
class MediaPackageAdditionalDestinationsTypeDef(TypedDict):
|
|
2770
|
+
Destination: OutputLocationRefTypeDef
|
|
2771
|
+
|
|
2772
|
+
|
|
2736
2773
|
class MsSmoothGroupSettingsTypeDef(TypedDict):
|
|
2737
2774
|
Destination: OutputLocationRefTypeDef
|
|
2738
2775
|
AcquisitionPointId: NotRequired[str]
|
|
@@ -3194,32 +3231,6 @@ class UpdateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3194
3231
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3195
3232
|
|
|
3196
3233
|
|
|
3197
|
-
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
3198
|
-
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
3199
|
-
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
3200
|
-
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
3201
|
-
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
3202
|
-
Scte35Type: NotRequired[Scte35TypeType]
|
|
3203
|
-
SegmentLength: NotRequired[int]
|
|
3204
|
-
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
3205
|
-
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
3206
|
-
TimedMetadataId3Period: NotRequired[int]
|
|
3207
|
-
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
class MediaPackageV2GroupSettingsTypeDef(TypedDict):
|
|
3211
|
-
CaptionLanguageMappings: NotRequired[Sequence[CaptionLanguageMappingTypeDef]]
|
|
3212
|
-
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
3213
|
-
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
3214
|
-
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
3215
|
-
Scte35Type: NotRequired[Scte35TypeType]
|
|
3216
|
-
SegmentLength: NotRequired[int]
|
|
3217
|
-
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
3218
|
-
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
3219
|
-
TimedMetadataId3Period: NotRequired[int]
|
|
3220
|
-
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
3234
|
class TeletextSourceSettingsTypeDef(TypedDict):
|
|
3224
3235
|
OutputRectangle: NotRequired[CaptionRectangleTypeDef]
|
|
3225
3236
|
PageNumber: NotRequired[str]
|
|
@@ -3809,6 +3820,11 @@ class InputSecurityGroupTypeDef(TypedDict):
|
|
|
3809
3820
|
WhitelistRules: NotRequired[list[InputWhitelistRuleTypeDef]]
|
|
3810
3821
|
|
|
3811
3822
|
|
|
3823
|
+
class DescribeLinkedChannelSettingsTypeDef(TypedDict):
|
|
3824
|
+
FollowerChannelSettings: NotRequired[DescribeFollowerChannelSettingsTypeDef]
|
|
3825
|
+
PrimaryChannelSettings: NotRequired[DescribePrimaryChannelSettingsTypeDef]
|
|
3826
|
+
|
|
3827
|
+
|
|
3812
3828
|
class DescribeScheduleRequestPaginateTypeDef(TypedDict):
|
|
3813
3829
|
ChannelId: str
|
|
3814
3830
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -3991,16 +4007,6 @@ class M2tsSettingsTypeDef(TypedDict):
|
|
|
3991
4007
|
Scte35PrerollPullupMilliseconds: NotRequired[float]
|
|
3992
4008
|
|
|
3993
4009
|
|
|
3994
|
-
class OutputLockingSettingsOutputTypeDef(TypedDict):
|
|
3995
|
-
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3996
|
-
PipelineLockingSettings: NotRequired[dict[str, Any]]
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
class OutputLockingSettingsTypeDef(TypedDict):
|
|
4000
|
-
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
4001
|
-
PipelineLockingSettings: NotRequired[Mapping[str, Any]]
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
4010
|
class ListEventBridgeRuleTemplateGroupsResponseTypeDef(TypedDict):
|
|
4005
4011
|
EventBridgeRuleTemplateGroups: list[EventBridgeRuleTemplateGroupSummaryTypeDef]
|
|
4006
4012
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4117,6 +4123,11 @@ class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
|
|
|
4117
4123
|
VideoSdp: NotRequired[InputSdpLocationTypeDef]
|
|
4118
4124
|
|
|
4119
4125
|
|
|
4126
|
+
class LinkedChannelSettingsTypeDef(TypedDict):
|
|
4127
|
+
FollowerChannelSettings: NotRequired[FollowerChannelSettingsTypeDef]
|
|
4128
|
+
PrimaryChannelSettings: NotRequired[PrimaryChannelSettingsTypeDef]
|
|
4129
|
+
|
|
4130
|
+
|
|
4120
4131
|
class ListInputDeviceTransfersResponseTypeDef(TypedDict):
|
|
4121
4132
|
InputDeviceTransfers: list[TransferringInputDeviceSummaryTypeDef]
|
|
4122
4133
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4244,6 +4255,11 @@ class OutputDestinationTypeDef(TypedDict):
|
|
|
4244
4255
|
LogicalInterfaceNames: NotRequired[Sequence[str]]
|
|
4245
4256
|
|
|
4246
4257
|
|
|
4258
|
+
class OutputLockingSettingsTypeDef(TypedDict):
|
|
4259
|
+
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
4260
|
+
PipelineLockingSettings: NotRequired[PipelineLockingSettingsTypeDef]
|
|
4261
|
+
|
|
4262
|
+
|
|
4247
4263
|
class PauseStateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4248
4264
|
Pipelines: NotRequired[list[PipelinePauseStateSettingsTypeDef]]
|
|
4249
4265
|
|
|
@@ -4365,6 +4381,34 @@ class CmafIngestGroupSettingsTypeDef(TypedDict):
|
|
|
4365
4381
|
AdditionalDestinations: NotRequired[Sequence[AdditionalDestinationsTypeDef]]
|
|
4366
4382
|
|
|
4367
4383
|
|
|
4384
|
+
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
4385
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
4386
|
+
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
4387
|
+
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
4388
|
+
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
4389
|
+
Scte35Type: NotRequired[Scte35TypeType]
|
|
4390
|
+
SegmentLength: NotRequired[int]
|
|
4391
|
+
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
4392
|
+
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
4393
|
+
TimedMetadataId3Period: NotRequired[int]
|
|
4394
|
+
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
4395
|
+
AdditionalDestinations: NotRequired[list[MediaPackageAdditionalDestinationsTypeDef]]
|
|
4396
|
+
|
|
4397
|
+
|
|
4398
|
+
class MediaPackageV2GroupSettingsTypeDef(TypedDict):
|
|
4399
|
+
CaptionLanguageMappings: NotRequired[Sequence[CaptionLanguageMappingTypeDef]]
|
|
4400
|
+
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
4401
|
+
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
4402
|
+
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
4403
|
+
Scte35Type: NotRequired[Scte35TypeType]
|
|
4404
|
+
SegmentLength: NotRequired[int]
|
|
4405
|
+
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
4406
|
+
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
4407
|
+
TimedMetadataId3Period: NotRequired[int]
|
|
4408
|
+
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
4409
|
+
AdditionalDestinations: NotRequired[Sequence[MediaPackageAdditionalDestinationsTypeDef]]
|
|
4410
|
+
|
|
4411
|
+
|
|
4368
4412
|
class ArchiveGroupSettingsTypeDef(TypedDict):
|
|
4369
4413
|
Destination: OutputLocationRefTypeDef
|
|
4370
4414
|
ArchiveCdnSettings: NotRequired[ArchiveCdnSettingsTypeDef]
|
|
@@ -4492,16 +4536,6 @@ class AvailConfigurationTypeDef(TypedDict):
|
|
|
4492
4536
|
Scte35SegmentationScope: NotRequired[Scte35SegmentationScopeType]
|
|
4493
4537
|
|
|
4494
4538
|
|
|
4495
|
-
class MediaPackageGroupSettingsOutputTypeDef(TypedDict):
|
|
4496
|
-
Destination: OutputLocationRefTypeDef
|
|
4497
|
-
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsOutputTypeDef]
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
4501
|
-
Destination: OutputLocationRefTypeDef
|
|
4502
|
-
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsTypeDef]
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
4539
|
class CaptionSelectorSettingsOutputTypeDef(TypedDict):
|
|
4506
4540
|
AncillarySourceSettings: NotRequired[AncillarySourceSettingsTypeDef]
|
|
4507
4541
|
AribSourceSettings: NotRequired[dict[str, Any]]
|
|
@@ -4659,26 +4693,6 @@ class UdpContainerSettingsTypeDef(TypedDict):
|
|
|
4659
4693
|
M2tsSettings: NotRequired[M2tsSettingsTypeDef]
|
|
4660
4694
|
|
|
4661
4695
|
|
|
4662
|
-
class GlobalConfigurationOutputTypeDef(TypedDict):
|
|
4663
|
-
InitialAudioGain: NotRequired[int]
|
|
4664
|
-
InputEndAction: NotRequired[GlobalConfigurationInputEndActionType]
|
|
4665
|
-
InputLossBehavior: NotRequired[InputLossBehaviorTypeDef]
|
|
4666
|
-
OutputLockingMode: NotRequired[GlobalConfigurationOutputLockingModeType]
|
|
4667
|
-
OutputTimingSource: NotRequired[GlobalConfigurationOutputTimingSourceType]
|
|
4668
|
-
SupportLowFramerateInputs: NotRequired[GlobalConfigurationLowFramerateInputsType]
|
|
4669
|
-
OutputLockingSettings: NotRequired[OutputLockingSettingsOutputTypeDef]
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
class GlobalConfigurationTypeDef(TypedDict):
|
|
4673
|
-
InitialAudioGain: NotRequired[int]
|
|
4674
|
-
InputEndAction: NotRequired[GlobalConfigurationInputEndActionType]
|
|
4675
|
-
InputLossBehavior: NotRequired[InputLossBehaviorTypeDef]
|
|
4676
|
-
OutputLockingMode: NotRequired[GlobalConfigurationOutputLockingModeType]
|
|
4677
|
-
OutputTimingSource: NotRequired[GlobalConfigurationOutputTimingSourceType]
|
|
4678
|
-
SupportLowFramerateInputs: NotRequired[GlobalConfigurationLowFramerateInputsType]
|
|
4679
|
-
OutputLockingSettings: NotRequired[OutputLockingSettingsTypeDef]
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
4696
|
class FailoverConditionTypeDef(TypedDict):
|
|
4683
4697
|
FailoverConditionSettings: NotRequired[FailoverConditionSettingsTypeDef]
|
|
4684
4698
|
|
|
@@ -5229,6 +5243,18 @@ class AudioWatermarkSettingsTypeDef(TypedDict):
|
|
|
5229
5243
|
|
|
5230
5244
|
|
|
5231
5245
|
OutputDestinationUnionTypeDef = Union[OutputDestinationTypeDef, OutputDestinationOutputTypeDef]
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
class GlobalConfigurationTypeDef(TypedDict):
|
|
5249
|
+
InitialAudioGain: NotRequired[int]
|
|
5250
|
+
InputEndAction: NotRequired[GlobalConfigurationInputEndActionType]
|
|
5251
|
+
InputLossBehavior: NotRequired[InputLossBehaviorTypeDef]
|
|
5252
|
+
OutputLockingMode: NotRequired[GlobalConfigurationOutputLockingModeType]
|
|
5253
|
+
OutputTimingSource: NotRequired[GlobalConfigurationOutputTimingSourceType]
|
|
5254
|
+
SupportLowFramerateInputs: NotRequired[GlobalConfigurationLowFramerateInputsType]
|
|
5255
|
+
OutputLockingSettings: NotRequired[OutputLockingSettingsTypeDef]
|
|
5256
|
+
|
|
5257
|
+
|
|
5232
5258
|
PauseStateScheduleActionSettingsUnionTypeDef = Union[
|
|
5233
5259
|
PauseStateScheduleActionSettingsTypeDef, PauseStateScheduleActionSettingsOutputTypeDef
|
|
5234
5260
|
]
|
|
@@ -5258,6 +5284,16 @@ class VideoSelectorTypeDef(TypedDict):
|
|
|
5258
5284
|
SelectorSettings: NotRequired[VideoSelectorSettingsTypeDef]
|
|
5259
5285
|
|
|
5260
5286
|
|
|
5287
|
+
class MediaPackageGroupSettingsOutputTypeDef(TypedDict):
|
|
5288
|
+
Destination: OutputLocationRefTypeDef
|
|
5289
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsOutputTypeDef]
|
|
5290
|
+
|
|
5291
|
+
|
|
5292
|
+
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
5293
|
+
Destination: OutputLocationRefTypeDef
|
|
5294
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsTypeDef]
|
|
5295
|
+
|
|
5296
|
+
|
|
5261
5297
|
class CaptionDescriptionOutputTypeDef(TypedDict):
|
|
5262
5298
|
CaptionSelectorName: str
|
|
5263
5299
|
Name: str
|
|
@@ -5911,6 +5947,7 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5911
5947
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5912
5948
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5913
5949
|
UsedChannelEngineVersions: NotRequired[list[ChannelEngineVersionResponseTypeDef]]
|
|
5950
|
+
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
5914
5951
|
|
|
5915
5952
|
|
|
5916
5953
|
class OutputGroupOutputTypeDef(TypedDict):
|
|
@@ -5987,7 +6024,7 @@ class EncoderSettingsOutputTypeDef(TypedDict):
|
|
|
5987
6024
|
BlackoutSlate: NotRequired[BlackoutSlateTypeDef]
|
|
5988
6025
|
CaptionDescriptions: NotRequired[list[CaptionDescriptionOutputTypeDef]]
|
|
5989
6026
|
FeatureActivations: NotRequired[FeatureActivationsTypeDef]
|
|
5990
|
-
GlobalConfiguration: NotRequired[
|
|
6027
|
+
GlobalConfiguration: NotRequired[GlobalConfigurationTypeDef]
|
|
5991
6028
|
MotionGraphicsConfiguration: NotRequired[MotionGraphicsConfigurationOutputTypeDef]
|
|
5992
6029
|
NielsenConfiguration: NotRequired[NielsenConfigurationTypeDef]
|
|
5993
6030
|
ThumbnailConfiguration: NotRequired[ThumbnailConfigurationTypeDef]
|
|
@@ -6052,6 +6089,7 @@ class ChannelTypeDef(TypedDict):
|
|
|
6052
6089
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
6053
6090
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
6054
6091
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
6092
|
+
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
6055
6093
|
|
|
6056
6094
|
|
|
6057
6095
|
class DeleteChannelResponseTypeDef(TypedDict):
|
|
@@ -6075,6 +6113,7 @@ class DeleteChannelResponseTypeDef(TypedDict):
|
|
|
6075
6113
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6076
6114
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6077
6115
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6116
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6078
6117
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6079
6118
|
|
|
6080
6119
|
|
|
@@ -6099,6 +6138,7 @@ class DescribeChannelResponseTypeDef(TypedDict):
|
|
|
6099
6138
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6100
6139
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6101
6140
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6141
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6102
6142
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6103
6143
|
|
|
6104
6144
|
|
|
@@ -6124,6 +6164,7 @@ class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
|
6124
6164
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6125
6165
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6126
6166
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6167
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6127
6168
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6128
6169
|
|
|
6129
6170
|
|
|
@@ -6148,6 +6189,7 @@ class StartChannelResponseTypeDef(TypedDict):
|
|
|
6148
6189
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6149
6190
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6150
6191
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6192
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6151
6193
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6152
6194
|
|
|
6153
6195
|
|
|
@@ -6172,6 +6214,7 @@ class StopChannelResponseTypeDef(TypedDict):
|
|
|
6172
6214
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6173
6215
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6174
6216
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6217
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6175
6218
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6176
6219
|
|
|
6177
6220
|
|
|
@@ -6239,6 +6282,7 @@ class CreateChannelRequestTypeDef(TypedDict):
|
|
|
6239
6282
|
AnywhereSettings: NotRequired[AnywhereSettingsTypeDef]
|
|
6240
6283
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionRequestTypeDef]
|
|
6241
6284
|
DryRun: NotRequired[bool]
|
|
6285
|
+
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
6242
6286
|
|
|
6243
6287
|
|
|
6244
6288
|
class UpdateChannelRequestTypeDef(TypedDict):
|
|
@@ -6255,6 +6299,7 @@ class UpdateChannelRequestTypeDef(TypedDict):
|
|
|
6255
6299
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionRequestTypeDef]
|
|
6256
6300
|
DryRun: NotRequired[bool]
|
|
6257
6301
|
AnywhereSettings: NotRequired[AnywhereSettingsTypeDef]
|
|
6302
|
+
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
6258
6303
|
|
|
6259
6304
|
|
|
6260
6305
|
class BatchUpdateScheduleRequestTypeDef(TypedDict):
|
|
@@ -3,7 +3,7 @@ Type annotations for medialive service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -239,6 +239,7 @@ from .literals import (
|
|
|
239
239
|
InputTimecodeSourceType,
|
|
240
240
|
InputTypeType,
|
|
241
241
|
LastFrameClippingBehaviorType,
|
|
242
|
+
LinkedChannelTypeType,
|
|
242
243
|
LogLevelType,
|
|
243
244
|
M2tsAbsentInputAudioBehaviorType,
|
|
244
245
|
M2tsAribCaptionsPidControlType,
|
|
@@ -289,6 +290,7 @@ from .literals import (
|
|
|
289
290
|
NodeRoleType,
|
|
290
291
|
NodeStateType,
|
|
291
292
|
PipelineIdType,
|
|
293
|
+
PipelineLockingMethodType,
|
|
292
294
|
PreferredChannelPipelineType,
|
|
293
295
|
RebootInputDeviceForceType,
|
|
294
296
|
ReservationAutomaticRenewalType,
|
|
@@ -538,6 +540,7 @@ __all__ = (
|
|
|
538
540
|
"DescribeClusterRequestWaitTypeDef",
|
|
539
541
|
"DescribeClusterResponseTypeDef",
|
|
540
542
|
"DescribeClusterSummaryTypeDef",
|
|
543
|
+
"DescribeFollowerChannelSettingsTypeDef",
|
|
541
544
|
"DescribeInputDeviceRequestTypeDef",
|
|
542
545
|
"DescribeInputDeviceResponseTypeDef",
|
|
543
546
|
"DescribeInputDeviceThumbnailRequestTypeDef",
|
|
@@ -549,6 +552,7 @@ __all__ = (
|
|
|
549
552
|
"DescribeInputResponseTypeDef",
|
|
550
553
|
"DescribeInputSecurityGroupRequestTypeDef",
|
|
551
554
|
"DescribeInputSecurityGroupResponseTypeDef",
|
|
555
|
+
"DescribeLinkedChannelSettingsTypeDef",
|
|
552
556
|
"DescribeMultiplexProgramRequestTypeDef",
|
|
553
557
|
"DescribeMultiplexProgramResponseTypeDef",
|
|
554
558
|
"DescribeMultiplexRequestTypeDef",
|
|
@@ -567,6 +571,7 @@ __all__ = (
|
|
|
567
571
|
"DescribeNodeSummaryTypeDef",
|
|
568
572
|
"DescribeOfferingRequestTypeDef",
|
|
569
573
|
"DescribeOfferingResponseTypeDef",
|
|
574
|
+
"DescribePrimaryChannelSettingsTypeDef",
|
|
570
575
|
"DescribeReservationRequestTypeDef",
|
|
571
576
|
"DescribeReservationResponseTypeDef",
|
|
572
577
|
"DescribeScheduleRequestPaginateTypeDef",
|
|
@@ -602,6 +607,7 @@ __all__ = (
|
|
|
602
607
|
"FixedModeScheduleActionStartSettingsTypeDef",
|
|
603
608
|
"Fmp4HlsSettingsTypeDef",
|
|
604
609
|
"FollowModeScheduleActionStartSettingsTypeDef",
|
|
610
|
+
"FollowerChannelSettingsTypeDef",
|
|
605
611
|
"FrameCaptureCdnSettingsTypeDef",
|
|
606
612
|
"FrameCaptureGroupSettingsTypeDef",
|
|
607
613
|
"FrameCaptureOutputSettingsTypeDef",
|
|
@@ -621,7 +627,6 @@ __all__ = (
|
|
|
621
627
|
"GetSignalMapRequestWaitExtraTypeDef",
|
|
622
628
|
"GetSignalMapRequestWaitTypeDef",
|
|
623
629
|
"GetSignalMapResponseTypeDef",
|
|
624
|
-
"GlobalConfigurationOutputTypeDef",
|
|
625
630
|
"GlobalConfigurationTypeDef",
|
|
626
631
|
"H264ColorSpaceSettingsOutputTypeDef",
|
|
627
632
|
"H264ColorSpaceSettingsTypeDef",
|
|
@@ -699,6 +704,7 @@ __all__ = (
|
|
|
699
704
|
"IpPoolTypeDef",
|
|
700
705
|
"IpPoolUpdateRequestTypeDef",
|
|
701
706
|
"KeyProviderSettingsTypeDef",
|
|
707
|
+
"LinkedChannelSettingsTypeDef",
|
|
702
708
|
"ListAlertsRequestPaginateTypeDef",
|
|
703
709
|
"ListAlertsRequestTypeDef",
|
|
704
710
|
"ListAlertsResponseTypeDef",
|
|
@@ -775,6 +781,7 @@ __all__ = (
|
|
|
775
781
|
"MaintenanceUpdateSettingsTypeDef",
|
|
776
782
|
"MediaConnectFlowRequestTypeDef",
|
|
777
783
|
"MediaConnectFlowTypeDef",
|
|
784
|
+
"MediaPackageAdditionalDestinationsTypeDef",
|
|
778
785
|
"MediaPackageGroupSettingsOutputTypeDef",
|
|
779
786
|
"MediaPackageGroupSettingsTypeDef",
|
|
780
787
|
"MediaPackageOutputDestinationSettingsTypeDef",
|
|
@@ -840,7 +847,6 @@ __all__ = (
|
|
|
840
847
|
"OutputGroupSettingsTypeDef",
|
|
841
848
|
"OutputGroupTypeDef",
|
|
842
849
|
"OutputLocationRefTypeDef",
|
|
843
|
-
"OutputLockingSettingsOutputTypeDef",
|
|
844
850
|
"OutputLockingSettingsTypeDef",
|
|
845
851
|
"OutputSettingsOutputTypeDef",
|
|
846
852
|
"OutputSettingsTypeDef",
|
|
@@ -850,7 +856,9 @@ __all__ = (
|
|
|
850
856
|
"PauseStateScheduleActionSettingsTypeDef",
|
|
851
857
|
"PauseStateScheduleActionSettingsUnionTypeDef",
|
|
852
858
|
"PipelineDetailTypeDef",
|
|
859
|
+
"PipelineLockingSettingsTypeDef",
|
|
853
860
|
"PipelinePauseStateSettingsTypeDef",
|
|
861
|
+
"PrimaryChannelSettingsTypeDef",
|
|
854
862
|
"PurchaseOfferingRequestTypeDef",
|
|
855
863
|
"PurchaseOfferingResponseTypeDef",
|
|
856
864
|
"RebootInputDeviceRequestTypeDef",
|
|
@@ -1622,6 +1630,10 @@ class DescribeChannelRequestTypeDef(TypedDict):
|
|
|
1622
1630
|
class DescribeClusterRequestTypeDef(TypedDict):
|
|
1623
1631
|
ClusterId: str
|
|
1624
1632
|
|
|
1633
|
+
class DescribeFollowerChannelSettingsTypeDef(TypedDict):
|
|
1634
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
1635
|
+
PrimaryChannelArn: NotRequired[str]
|
|
1636
|
+
|
|
1625
1637
|
class DescribeInputDeviceRequestTypeDef(TypedDict):
|
|
1626
1638
|
InputDeviceId: str
|
|
1627
1639
|
|
|
@@ -1664,6 +1676,10 @@ class DescribeInputSecurityGroupRequestTypeDef(TypedDict):
|
|
|
1664
1676
|
class InputWhitelistRuleTypeDef(TypedDict):
|
|
1665
1677
|
Cidr: NotRequired[str]
|
|
1666
1678
|
|
|
1679
|
+
class DescribePrimaryChannelSettingsTypeDef(TypedDict):
|
|
1680
|
+
FollowingChannelArns: NotRequired[list[str]]
|
|
1681
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
1682
|
+
|
|
1667
1683
|
class DescribeMultiplexProgramRequestTypeDef(TypedDict):
|
|
1668
1684
|
MultiplexId: str
|
|
1669
1685
|
ProgramName: str
|
|
@@ -1787,6 +1803,10 @@ class FollowModeScheduleActionStartSettingsTypeDef(TypedDict):
|
|
|
1787
1803
|
FollowPoint: FollowPointType
|
|
1788
1804
|
ReferenceActionName: str
|
|
1789
1805
|
|
|
1806
|
+
class FollowerChannelSettingsTypeDef(TypedDict):
|
|
1807
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
1808
|
+
PrimaryChannelArn: NotRequired[str]
|
|
1809
|
+
|
|
1790
1810
|
class FrameCaptureS3SettingsTypeDef(TypedDict):
|
|
1791
1811
|
CannedAcl: NotRequired[S3CannedAclType]
|
|
1792
1812
|
|
|
@@ -1921,6 +1941,9 @@ class InputSdpLocationTypeDef(TypedDict):
|
|
|
1921
1941
|
class IpPoolUpdateRequestTypeDef(TypedDict):
|
|
1922
1942
|
Cidr: NotRequired[str]
|
|
1923
1943
|
|
|
1944
|
+
class PrimaryChannelSettingsTypeDef(TypedDict):
|
|
1945
|
+
LinkedChannelType: NotRequired[LinkedChannelTypeType]
|
|
1946
|
+
|
|
1924
1947
|
class ListAlertsRequestTypeDef(TypedDict):
|
|
1925
1948
|
ChannelId: str
|
|
1926
1949
|
MaxResults: NotRequired[int]
|
|
@@ -2123,6 +2146,8 @@ class MediaPackageOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2123
2146
|
ChannelId: NotRequired[str]
|
|
2124
2147
|
ChannelGroup: NotRequired[str]
|
|
2125
2148
|
ChannelName: NotRequired[str]
|
|
2149
|
+
ChannelEndpointId: NotRequired[str]
|
|
2150
|
+
MediaPackageRegionName: NotRequired[str]
|
|
2126
2151
|
|
|
2127
2152
|
class MediaPackageV2DestinationSettingsTypeDef(TypedDict):
|
|
2128
2153
|
AudioGroupId: NotRequired[str]
|
|
@@ -2272,6 +2297,9 @@ class RtmpGroupSettingsTypeDef(TypedDict):
|
|
|
2272
2297
|
RestartDelay: NotRequired[int]
|
|
2273
2298
|
IncludeFillerNalUnits: NotRequired[IncludeFillerNalUnitsType]
|
|
2274
2299
|
|
|
2300
|
+
class PipelineLockingSettingsTypeDef(TypedDict):
|
|
2301
|
+
PipelineLockingMethod: NotRequired[PipelineLockingMethodType]
|
|
2302
|
+
|
|
2275
2303
|
class PipelinePauseStateSettingsTypeDef(TypedDict):
|
|
2276
2304
|
PipelineId: PipelineIdType
|
|
2277
2305
|
|
|
@@ -2452,6 +2480,9 @@ class UpdateAccountConfigurationRequestTypeDef(TypedDict):
|
|
|
2452
2480
|
class AdditionalDestinationsTypeDef(TypedDict):
|
|
2453
2481
|
Destination: OutputLocationRefTypeDef
|
|
2454
2482
|
|
|
2483
|
+
class MediaPackageAdditionalDestinationsTypeDef(TypedDict):
|
|
2484
|
+
Destination: OutputLocationRefTypeDef
|
|
2485
|
+
|
|
2455
2486
|
class MsSmoothGroupSettingsTypeDef(TypedDict):
|
|
2456
2487
|
Destination: OutputLocationRefTypeDef
|
|
2457
2488
|
AcquisitionPointId: NotRequired[str]
|
|
@@ -2865,30 +2896,6 @@ class UpdateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2865
2896
|
Tags: dict[str, str]
|
|
2866
2897
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2867
2898
|
|
|
2868
|
-
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
2869
|
-
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
2870
|
-
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
2871
|
-
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
2872
|
-
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
2873
|
-
Scte35Type: NotRequired[Scte35TypeType]
|
|
2874
|
-
SegmentLength: NotRequired[int]
|
|
2875
|
-
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
2876
|
-
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
2877
|
-
TimedMetadataId3Period: NotRequired[int]
|
|
2878
|
-
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
2879
|
-
|
|
2880
|
-
class MediaPackageV2GroupSettingsTypeDef(TypedDict):
|
|
2881
|
-
CaptionLanguageMappings: NotRequired[Sequence[CaptionLanguageMappingTypeDef]]
|
|
2882
|
-
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
2883
|
-
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
2884
|
-
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
2885
|
-
Scte35Type: NotRequired[Scte35TypeType]
|
|
2886
|
-
SegmentLength: NotRequired[int]
|
|
2887
|
-
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
2888
|
-
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
2889
|
-
TimedMetadataId3Period: NotRequired[int]
|
|
2890
|
-
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
2891
|
-
|
|
2892
2899
|
class TeletextSourceSettingsTypeDef(TypedDict):
|
|
2893
2900
|
OutputRectangle: NotRequired[CaptionRectangleTypeDef]
|
|
2894
2901
|
PageNumber: NotRequired[str]
|
|
@@ -3408,6 +3415,10 @@ class InputSecurityGroupTypeDef(TypedDict):
|
|
|
3408
3415
|
Tags: NotRequired[dict[str, str]]
|
|
3409
3416
|
WhitelistRules: NotRequired[list[InputWhitelistRuleTypeDef]]
|
|
3410
3417
|
|
|
3418
|
+
class DescribeLinkedChannelSettingsTypeDef(TypedDict):
|
|
3419
|
+
FollowerChannelSettings: NotRequired[DescribeFollowerChannelSettingsTypeDef]
|
|
3420
|
+
PrimaryChannelSettings: NotRequired[DescribePrimaryChannelSettingsTypeDef]
|
|
3421
|
+
|
|
3411
3422
|
class DescribeScheduleRequestPaginateTypeDef(TypedDict):
|
|
3412
3423
|
ChannelId: str
|
|
3413
3424
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -3566,14 +3577,6 @@ class M2tsSettingsTypeDef(TypedDict):
|
|
|
3566
3577
|
VideoPid: NotRequired[str]
|
|
3567
3578
|
Scte35PrerollPullupMilliseconds: NotRequired[float]
|
|
3568
3579
|
|
|
3569
|
-
class OutputLockingSettingsOutputTypeDef(TypedDict):
|
|
3570
|
-
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3571
|
-
PipelineLockingSettings: NotRequired[dict[str, Any]]
|
|
3572
|
-
|
|
3573
|
-
class OutputLockingSettingsTypeDef(TypedDict):
|
|
3574
|
-
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3575
|
-
PipelineLockingSettings: NotRequired[Mapping[str, Any]]
|
|
3576
|
-
|
|
3577
3580
|
class ListEventBridgeRuleTemplateGroupsResponseTypeDef(TypedDict):
|
|
3578
3581
|
EventBridgeRuleTemplateGroups: list[EventBridgeRuleTemplateGroupSummaryTypeDef]
|
|
3579
3582
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -3673,6 +3676,10 @@ class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
|
|
|
3673
3676
|
AudioSdps: NotRequired[Sequence[InputSdpLocationTypeDef]]
|
|
3674
3677
|
VideoSdp: NotRequired[InputSdpLocationTypeDef]
|
|
3675
3678
|
|
|
3679
|
+
class LinkedChannelSettingsTypeDef(TypedDict):
|
|
3680
|
+
FollowerChannelSettings: NotRequired[FollowerChannelSettingsTypeDef]
|
|
3681
|
+
PrimaryChannelSettings: NotRequired[PrimaryChannelSettingsTypeDef]
|
|
3682
|
+
|
|
3676
3683
|
class ListInputDeviceTransfersResponseTypeDef(TypedDict):
|
|
3677
3684
|
InputDeviceTransfers: list[TransferringInputDeviceSummaryTypeDef]
|
|
3678
3685
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -3778,6 +3785,10 @@ class OutputDestinationTypeDef(TypedDict):
|
|
|
3778
3785
|
SrtSettings: NotRequired[Sequence[SrtOutputDestinationSettingsTypeDef]]
|
|
3779
3786
|
LogicalInterfaceNames: NotRequired[Sequence[str]]
|
|
3780
3787
|
|
|
3788
|
+
class OutputLockingSettingsTypeDef(TypedDict):
|
|
3789
|
+
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3790
|
+
PipelineLockingSettings: NotRequired[PipelineLockingSettingsTypeDef]
|
|
3791
|
+
|
|
3781
3792
|
class PauseStateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
3782
3793
|
Pipelines: NotRequired[list[PipelinePauseStateSettingsTypeDef]]
|
|
3783
3794
|
|
|
@@ -3885,6 +3896,32 @@ class CmafIngestGroupSettingsTypeDef(TypedDict):
|
|
|
3885
3896
|
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
3886
3897
|
AdditionalDestinations: NotRequired[Sequence[AdditionalDestinationsTypeDef]]
|
|
3887
3898
|
|
|
3899
|
+
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
3900
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
3901
|
+
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
3902
|
+
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
3903
|
+
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
3904
|
+
Scte35Type: NotRequired[Scte35TypeType]
|
|
3905
|
+
SegmentLength: NotRequired[int]
|
|
3906
|
+
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
3907
|
+
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
3908
|
+
TimedMetadataId3Period: NotRequired[int]
|
|
3909
|
+
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
3910
|
+
AdditionalDestinations: NotRequired[list[MediaPackageAdditionalDestinationsTypeDef]]
|
|
3911
|
+
|
|
3912
|
+
class MediaPackageV2GroupSettingsTypeDef(TypedDict):
|
|
3913
|
+
CaptionLanguageMappings: NotRequired[Sequence[CaptionLanguageMappingTypeDef]]
|
|
3914
|
+
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
3915
|
+
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
3916
|
+
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
3917
|
+
Scte35Type: NotRequired[Scte35TypeType]
|
|
3918
|
+
SegmentLength: NotRequired[int]
|
|
3919
|
+
SegmentLengthUnits: NotRequired[CmafIngestSegmentLengthUnitsType]
|
|
3920
|
+
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
3921
|
+
TimedMetadataId3Period: NotRequired[int]
|
|
3922
|
+
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
3923
|
+
AdditionalDestinations: NotRequired[Sequence[MediaPackageAdditionalDestinationsTypeDef]]
|
|
3924
|
+
|
|
3888
3925
|
class ArchiveGroupSettingsTypeDef(TypedDict):
|
|
3889
3926
|
Destination: OutputLocationRefTypeDef
|
|
3890
3927
|
ArchiveCdnSettings: NotRequired[ArchiveCdnSettingsTypeDef]
|
|
@@ -4000,14 +4037,6 @@ class AvailConfigurationTypeDef(TypedDict):
|
|
|
4000
4037
|
AvailSettings: NotRequired[AvailSettingsTypeDef]
|
|
4001
4038
|
Scte35SegmentationScope: NotRequired[Scte35SegmentationScopeType]
|
|
4002
4039
|
|
|
4003
|
-
class MediaPackageGroupSettingsOutputTypeDef(TypedDict):
|
|
4004
|
-
Destination: OutputLocationRefTypeDef
|
|
4005
|
-
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsOutputTypeDef]
|
|
4006
|
-
|
|
4007
|
-
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
4008
|
-
Destination: OutputLocationRefTypeDef
|
|
4009
|
-
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsTypeDef]
|
|
4010
|
-
|
|
4011
4040
|
class CaptionSelectorSettingsOutputTypeDef(TypedDict):
|
|
4012
4041
|
AncillarySourceSettings: NotRequired[AncillarySourceSettingsTypeDef]
|
|
4013
4042
|
AribSourceSettings: NotRequired[dict[str, Any]]
|
|
@@ -4144,24 +4173,6 @@ class ArchiveContainerSettingsTypeDef(TypedDict):
|
|
|
4144
4173
|
class UdpContainerSettingsTypeDef(TypedDict):
|
|
4145
4174
|
M2tsSettings: NotRequired[M2tsSettingsTypeDef]
|
|
4146
4175
|
|
|
4147
|
-
class GlobalConfigurationOutputTypeDef(TypedDict):
|
|
4148
|
-
InitialAudioGain: NotRequired[int]
|
|
4149
|
-
InputEndAction: NotRequired[GlobalConfigurationInputEndActionType]
|
|
4150
|
-
InputLossBehavior: NotRequired[InputLossBehaviorTypeDef]
|
|
4151
|
-
OutputLockingMode: NotRequired[GlobalConfigurationOutputLockingModeType]
|
|
4152
|
-
OutputTimingSource: NotRequired[GlobalConfigurationOutputTimingSourceType]
|
|
4153
|
-
SupportLowFramerateInputs: NotRequired[GlobalConfigurationLowFramerateInputsType]
|
|
4154
|
-
OutputLockingSettings: NotRequired[OutputLockingSettingsOutputTypeDef]
|
|
4155
|
-
|
|
4156
|
-
class GlobalConfigurationTypeDef(TypedDict):
|
|
4157
|
-
InitialAudioGain: NotRequired[int]
|
|
4158
|
-
InputEndAction: NotRequired[GlobalConfigurationInputEndActionType]
|
|
4159
|
-
InputLossBehavior: NotRequired[InputLossBehaviorTypeDef]
|
|
4160
|
-
OutputLockingMode: NotRequired[GlobalConfigurationOutputLockingModeType]
|
|
4161
|
-
OutputTimingSource: NotRequired[GlobalConfigurationOutputTimingSourceType]
|
|
4162
|
-
SupportLowFramerateInputs: NotRequired[GlobalConfigurationLowFramerateInputsType]
|
|
4163
|
-
OutputLockingSettings: NotRequired[OutputLockingSettingsTypeDef]
|
|
4164
|
-
|
|
4165
4176
|
class FailoverConditionTypeDef(TypedDict):
|
|
4166
4177
|
FailoverConditionSettings: NotRequired[FailoverConditionSettingsTypeDef]
|
|
4167
4178
|
|
|
@@ -4679,6 +4690,16 @@ class AudioWatermarkSettingsTypeDef(TypedDict):
|
|
|
4679
4690
|
NielsenWatermarksSettings: NotRequired[NielsenWatermarksSettingsTypeDef]
|
|
4680
4691
|
|
|
4681
4692
|
OutputDestinationUnionTypeDef = Union[OutputDestinationTypeDef, OutputDestinationOutputTypeDef]
|
|
4693
|
+
|
|
4694
|
+
class GlobalConfigurationTypeDef(TypedDict):
|
|
4695
|
+
InitialAudioGain: NotRequired[int]
|
|
4696
|
+
InputEndAction: NotRequired[GlobalConfigurationInputEndActionType]
|
|
4697
|
+
InputLossBehavior: NotRequired[InputLossBehaviorTypeDef]
|
|
4698
|
+
OutputLockingMode: NotRequired[GlobalConfigurationOutputLockingModeType]
|
|
4699
|
+
OutputTimingSource: NotRequired[GlobalConfigurationOutputTimingSourceType]
|
|
4700
|
+
SupportLowFramerateInputs: NotRequired[GlobalConfigurationLowFramerateInputsType]
|
|
4701
|
+
OutputLockingSettings: NotRequired[OutputLockingSettingsTypeDef]
|
|
4702
|
+
|
|
4682
4703
|
PauseStateScheduleActionSettingsUnionTypeDef = Union[
|
|
4683
4704
|
PauseStateScheduleActionSettingsTypeDef, PauseStateScheduleActionSettingsOutputTypeDef
|
|
4684
4705
|
]
|
|
@@ -4702,6 +4723,14 @@ class VideoSelectorTypeDef(TypedDict):
|
|
|
4702
4723
|
ColorSpaceUsage: NotRequired[VideoSelectorColorSpaceUsageType]
|
|
4703
4724
|
SelectorSettings: NotRequired[VideoSelectorSettingsTypeDef]
|
|
4704
4725
|
|
|
4726
|
+
class MediaPackageGroupSettingsOutputTypeDef(TypedDict):
|
|
4727
|
+
Destination: OutputLocationRefTypeDef
|
|
4728
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsOutputTypeDef]
|
|
4729
|
+
|
|
4730
|
+
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
4731
|
+
Destination: OutputLocationRefTypeDef
|
|
4732
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsTypeDef]
|
|
4733
|
+
|
|
4705
4734
|
class CaptionDescriptionOutputTypeDef(TypedDict):
|
|
4706
4735
|
CaptionSelectorName: str
|
|
4707
4736
|
Name: str
|
|
@@ -5293,6 +5322,7 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5293
5322
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5294
5323
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5295
5324
|
UsedChannelEngineVersions: NotRequired[list[ChannelEngineVersionResponseTypeDef]]
|
|
5325
|
+
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
5296
5326
|
|
|
5297
5327
|
class OutputGroupOutputTypeDef(TypedDict):
|
|
5298
5328
|
OutputGroupSettings: OutputGroupSettingsOutputTypeDef
|
|
@@ -5362,7 +5392,7 @@ class EncoderSettingsOutputTypeDef(TypedDict):
|
|
|
5362
5392
|
BlackoutSlate: NotRequired[BlackoutSlateTypeDef]
|
|
5363
5393
|
CaptionDescriptions: NotRequired[list[CaptionDescriptionOutputTypeDef]]
|
|
5364
5394
|
FeatureActivations: NotRequired[FeatureActivationsTypeDef]
|
|
5365
|
-
GlobalConfiguration: NotRequired[
|
|
5395
|
+
GlobalConfiguration: NotRequired[GlobalConfigurationTypeDef]
|
|
5366
5396
|
MotionGraphicsConfiguration: NotRequired[MotionGraphicsConfigurationOutputTypeDef]
|
|
5367
5397
|
NielsenConfiguration: NotRequired[NielsenConfigurationTypeDef]
|
|
5368
5398
|
ThumbnailConfiguration: NotRequired[ThumbnailConfigurationTypeDef]
|
|
@@ -5421,6 +5451,7 @@ class ChannelTypeDef(TypedDict):
|
|
|
5421
5451
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
5422
5452
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5423
5453
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5454
|
+
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
5424
5455
|
|
|
5425
5456
|
class DeleteChannelResponseTypeDef(TypedDict):
|
|
5426
5457
|
Arn: str
|
|
@@ -5443,6 +5474,7 @@ class DeleteChannelResponseTypeDef(TypedDict):
|
|
|
5443
5474
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5444
5475
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5445
5476
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5477
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5446
5478
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5447
5479
|
|
|
5448
5480
|
class DescribeChannelResponseTypeDef(TypedDict):
|
|
@@ -5466,6 +5498,7 @@ class DescribeChannelResponseTypeDef(TypedDict):
|
|
|
5466
5498
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5467
5499
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5468
5500
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5501
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5469
5502
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5470
5503
|
|
|
5471
5504
|
class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
@@ -5490,6 +5523,7 @@ class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
|
5490
5523
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5491
5524
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5492
5525
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5526
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5493
5527
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5494
5528
|
|
|
5495
5529
|
class StartChannelResponseTypeDef(TypedDict):
|
|
@@ -5513,6 +5547,7 @@ class StartChannelResponseTypeDef(TypedDict):
|
|
|
5513
5547
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5514
5548
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5515
5549
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5550
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5516
5551
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5517
5552
|
|
|
5518
5553
|
class StopChannelResponseTypeDef(TypedDict):
|
|
@@ -5536,6 +5571,7 @@ class StopChannelResponseTypeDef(TypedDict):
|
|
|
5536
5571
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5537
5572
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5538
5573
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5574
|
+
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5539
5575
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5540
5576
|
|
|
5541
5577
|
EncoderSettingsUnionTypeDef = Union[EncoderSettingsTypeDef, EncoderSettingsOutputTypeDef]
|
|
@@ -5593,6 +5629,7 @@ class CreateChannelRequestTypeDef(TypedDict):
|
|
|
5593
5629
|
AnywhereSettings: NotRequired[AnywhereSettingsTypeDef]
|
|
5594
5630
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionRequestTypeDef]
|
|
5595
5631
|
DryRun: NotRequired[bool]
|
|
5632
|
+
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
5596
5633
|
|
|
5597
5634
|
class UpdateChannelRequestTypeDef(TypedDict):
|
|
5598
5635
|
ChannelId: str
|
|
@@ -5608,6 +5645,7 @@ class UpdateChannelRequestTypeDef(TypedDict):
|
|
|
5608
5645
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionRequestTypeDef]
|
|
5609
5646
|
DryRun: NotRequired[bool]
|
|
5610
5647
|
AnywhereSettings: NotRequired[AnywhereSettingsTypeDef]
|
|
5648
|
+
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
5611
5649
|
|
|
5612
5650
|
class BatchUpdateScheduleRequestTypeDef(TypedDict):
|
|
5613
5651
|
ChannelId: str
|
types_boto3_medialive/version.py
CHANGED
types_boto3_medialive/waiter.py
CHANGED
types_boto3_medialive/waiter.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-medialive
|
|
3
|
-
Version: 1.42.
|
|
4
|
-
Summary: Type annotations for boto3 MediaLive 1.42.
|
|
3
|
+
Version: 1.42.25
|
|
4
|
+
Summary: Type annotations for boto3 MediaLive 1.42.25 service generated with mypy-boto3-builder 8.12.0
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
@@ -42,7 +42,7 @@ Dynamic: license-file
|
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
|
45
|
-
Type annotations for [boto3 MediaLive 1.42.
|
|
45
|
+
Type annotations for [boto3 MediaLive 1.42.25](https://pypi.org/project/boto3/)
|
|
46
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
47
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
48
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -105,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
105
105
|
isolation.
|
|
106
106
|
|
|
107
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
108
|
-
`uvx --with 'boto3==1.42.
|
|
108
|
+
`uvx --with 'boto3==1.42.25' mypy-boto3-builder`
|
|
109
109
|
2. Select `boto3` AWS SDK.
|
|
110
110
|
3. Add `MediaLive` service.
|
|
111
111
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_medialive/__init__.py,sha256=emW3_ATf3CSTnRmh1PYy_AgxeJ13owBWOMOk4gc2fxY,9844
|
|
2
|
+
types_boto3_medialive/__init__.pyi,sha256=3e9xodMx1tZ2IDO0H7NMQ4urrNUUKeJwlj4j6Td04O0,9843
|
|
3
|
+
types_boto3_medialive/__main__.py,sha256=CxX0B-_yzq_nm_XIhYB_Ix6gh32jhAO2YClsMhtrm2s,993
|
|
4
|
+
types_boto3_medialive/client.py,sha256=KViPCOnHsITTt91oiPbiJz3vGHjIqJiWcLkDqwGoiEo,100224
|
|
5
|
+
types_boto3_medialive/client.pyi,sha256=H4Kfq387HlhTcbFSRWv4EqW6bQB2fx_Ni8PU2KnHL70,100221
|
|
6
|
+
types_boto3_medialive/literals.py,sha256=BPgew5e2tP-5dyDH3OTMMY3NjF1gLPhSocCp9F9lmNk,54089
|
|
7
|
+
types_boto3_medialive/literals.pyi,sha256=pDn7_h80f6Ket8U9t5zCj8JnFYwRqpG7mGDITiJJ0fA,54087
|
|
8
|
+
types_boto3_medialive/paginator.py,sha256=Ow3sA1TKQvl-ScDgi4X9Kz2N1q0JErrraeTelVXljno,33731
|
|
9
|
+
types_boto3_medialive/paginator.pyi,sha256=Oyg0Q6tTt1mJSvFoNLhWkVcNeBzD1fTJQHJPl0yzzYk,33661
|
|
10
|
+
types_boto3_medialive/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_medialive/type_defs.py,sha256=9GNqfcbLtLrAnX-Ls5YLQcUNVUzYg673dVLA0qxMGyw,213095
|
|
12
|
+
types_boto3_medialive/type_defs.pyi,sha256=gwuOazDxQX3qcgTl0wO7G0QQbPvN41qCAou5ltwVWPc,212440
|
|
13
|
+
types_boto3_medialive/version.py,sha256=Vs6vpniw1v2dbyIfj9Xfutrb1Q4gbW4eJa_nSLN5AR4,93
|
|
14
|
+
types_boto3_medialive/waiter.py,sha256=g8v6KEOaxxrytZ69LI5nITZM0VmG2wsrtnfysEkS1qI,24281
|
|
15
|
+
types_boto3_medialive/waiter.pyi,sha256=yS9fzHsPjI2hsgzHpa8GDmhziIgfKmOAnK3QradJNiE,24236
|
|
16
|
+
types_boto3_medialive-1.42.25.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
|
|
17
|
+
types_boto3_medialive-1.42.25.dist-info/METADATA,sha256=xZDT657w_mBjy3ED4fG4nkoUzPKBKfQki-E_VgB9Gtg,21169
|
|
18
|
+
types_boto3_medialive-1.42.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
types_boto3_medialive-1.42.25.dist-info/top_level.txt,sha256=ObnwlKE8EUI6nh64SLkLF3YrioCtul-5VbXe2USlsFg,22
|
|
20
|
+
types_boto3_medialive-1.42.25.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_medialive/__init__.py,sha256=AXccOhxqWOHyvDIZ36YTwZDLieUSsXQRyuOdk9axf90,9844
|
|
2
|
-
types_boto3_medialive/__init__.pyi,sha256=Ouw2Xjpn6npLMRNQxTEo5Rg8sWTTOmapHdIk6858XKI,9843
|
|
3
|
-
types_boto3_medialive/__main__.py,sha256=uktPYQm_B24-jHzUu2uu7PJ-Vq5KJE5ci-c7ENWB53Y,990
|
|
4
|
-
types_boto3_medialive/client.py,sha256=FPG-pa80DT85jb8K1vGTML6vJHty2oZkIJGNJWfxvPg,100224
|
|
5
|
-
types_boto3_medialive/client.pyi,sha256=B5yzh9WAhqzGU5ryY4hQmIAik8e2p-s7xFvlXYfN_7s,100221
|
|
6
|
-
types_boto3_medialive/literals.py,sha256=rDelK6RGlEoZSK7rnmTWbUwT7hAuVdjf4n1YBG6lIus,53893
|
|
7
|
-
types_boto3_medialive/literals.pyi,sha256=pVrw_lMd7O7pkFVHLLP2hxQkAuf7aTNfvsvpqauqVmA,53891
|
|
8
|
-
types_boto3_medialive/paginator.py,sha256=JbVLU2lipMsDllo3cEwPQ0iIdBagd4i5rG1DnlZmz2M,33731
|
|
9
|
-
types_boto3_medialive/paginator.pyi,sha256=Fby8sbJFD4l4J9CbbTomLV4ot3t3ewQizSVODzOHxgk,33661
|
|
10
|
-
types_boto3_medialive/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_medialive/type_defs.py,sha256=hea0ALtElYwzNNHQZaePxcPLw5t2rSgvA8QNmyGXYnY,211408
|
|
12
|
-
types_boto3_medialive/type_defs.pyi,sha256=y6K_2YvQjrQ-2hP-sDkB1Zi5UdlJm3Nd4muP7sytBmg,210760
|
|
13
|
-
types_boto3_medialive/version.py,sha256=GG_me-VWxqUerVNqcPw9hL39jbKNBNmLknphxNF_WPw,92
|
|
14
|
-
types_boto3_medialive/waiter.py,sha256=QcGR2lxcXrx6MqN32xtv3fQegxEgv9qZ5UUBA03N2qE,24281
|
|
15
|
-
types_boto3_medialive/waiter.pyi,sha256=bC4PsWq4om-y5VJim-inhJF1ezVeYJ9pR8RisgKBBn0,24236
|
|
16
|
-
types_boto3_medialive-1.42.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
types_boto3_medialive-1.42.3.dist-info/METADATA,sha256=fHl7LYZ8mmq46ZDVutZZXJBN0i_c-h1Qdhw5-9Mxvhs,21165
|
|
18
|
-
types_boto3_medialive-1.42.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
types_boto3_medialive-1.42.3.dist-info/top_level.txt,sha256=ObnwlKE8EUI6nh64SLkLF3YrioCtul-5VbXe2USlsFg,22
|
|
20
|
-
types_boto3_medialive-1.42.3.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_medialive-1.42.3.dist-info → types_boto3_medialive-1.42.25.dist-info}/top_level.txt
RENAMED
|
File without changes
|