types-boto3-medialive 1.42.25__py3-none-any.whl → 1.42.42__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/__main__.py +3 -3
- types_boto3_medialive/literals.py +5 -0
- types_boto3_medialive/literals.pyi +5 -0
- types_boto3_medialive/type_defs.py +84 -17
- types_boto3_medialive/type_defs.pyi +76 -16
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.42.25.dist-info → types_boto3_medialive-1.42.42.dist-info}/METADATA +4 -4
- types_boto3_medialive-1.42.42.dist-info/RECORD +20 -0
- {types_boto3_medialive-1.42.25.dist-info → types_boto3_medialive-1.42.42.dist-info}/WHEEL +1 -1
- types_boto3_medialive-1.42.25.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.42.25.dist-info → types_boto3_medialive-1.42.42.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.42.25.dist-info → types_boto3_medialive-1.42.42.dist-info}/top_level.txt +0 -0
|
@@ -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.42\n"
|
|
16
|
+
"Version: 1.42.42\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.42\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -56,6 +56,7 @@ __all__ = (
|
|
|
56
56
|
"Av1SceneChangeDetectType",
|
|
57
57
|
"Av1SpatialAqType",
|
|
58
58
|
"Av1TemporalAqType",
|
|
59
|
+
"Av1TimecodeInsertionBehaviorType",
|
|
59
60
|
"AvailBlankingStateType",
|
|
60
61
|
"BandwidthReductionFilterStrengthType",
|
|
61
62
|
"BandwidthReductionPostFilterSharpeningType",
|
|
@@ -97,6 +98,7 @@ __all__ = (
|
|
|
97
98
|
"CmafTimedMetadataId3FrameType",
|
|
98
99
|
"CmafTimedMetadataPassthroughType",
|
|
99
100
|
"ColorSpaceType",
|
|
101
|
+
"ConnectionModeType",
|
|
100
102
|
"ContentTypeType",
|
|
101
103
|
"DashRoleAudioType",
|
|
102
104
|
"DashRoleCaptionType",
|
|
@@ -484,6 +486,7 @@ Av1RateControlModeType = Literal["CBR", "QVBR"]
|
|
|
484
486
|
Av1SceneChangeDetectType = Literal["DISABLED", "ENABLED"]
|
|
485
487
|
Av1SpatialAqType = Literal["DISABLED", "ENABLED"]
|
|
486
488
|
Av1TemporalAqType = Literal["DISABLED", "ENABLED"]
|
|
489
|
+
Av1TimecodeInsertionBehaviorType = Literal["DISABLED", "METADATA_OBU"]
|
|
487
490
|
AvailBlankingStateType = Literal["DISABLED", "ENABLED"]
|
|
488
491
|
BandwidthReductionFilterStrengthType = Literal[
|
|
489
492
|
"AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4"
|
|
@@ -564,6 +567,7 @@ CmafNielsenId3BehaviorType = Literal["NO_PASSTHROUGH", "PASSTHROUGH"]
|
|
|
564
567
|
CmafTimedMetadataId3FrameType = Literal["NONE", "PRIV", "TDRL"]
|
|
565
568
|
CmafTimedMetadataPassthroughType = Literal["DISABLED", "ENABLED"]
|
|
566
569
|
ColorSpaceType = Literal["HDR10", "HLG_2020", "REC_601", "REC_709"]
|
|
570
|
+
ConnectionModeType = Literal["CALLER", "LISTENER"]
|
|
567
571
|
ContentTypeType = Literal["image/jpeg"]
|
|
568
572
|
DashRoleAudioType = Literal[
|
|
569
573
|
"ALTERNATE",
|
|
@@ -865,6 +869,7 @@ InputTypeType = Literal[
|
|
|
865
869
|
"SDI",
|
|
866
870
|
"SMPTE_2110_RECEIVER_GROUP",
|
|
867
871
|
"SRT_CALLER",
|
|
872
|
+
"SRT_LISTENER",
|
|
868
873
|
"TS_FILE",
|
|
869
874
|
"UDP_PUSH",
|
|
870
875
|
"URL_PULL",
|
|
@@ -55,6 +55,7 @@ __all__ = (
|
|
|
55
55
|
"Av1SceneChangeDetectType",
|
|
56
56
|
"Av1SpatialAqType",
|
|
57
57
|
"Av1TemporalAqType",
|
|
58
|
+
"Av1TimecodeInsertionBehaviorType",
|
|
58
59
|
"AvailBlankingStateType",
|
|
59
60
|
"BandwidthReductionFilterStrengthType",
|
|
60
61
|
"BandwidthReductionPostFilterSharpeningType",
|
|
@@ -96,6 +97,7 @@ __all__ = (
|
|
|
96
97
|
"CmafTimedMetadataId3FrameType",
|
|
97
98
|
"CmafTimedMetadataPassthroughType",
|
|
98
99
|
"ColorSpaceType",
|
|
100
|
+
"ConnectionModeType",
|
|
99
101
|
"ContentTypeType",
|
|
100
102
|
"DashRoleAudioType",
|
|
101
103
|
"DashRoleCaptionType",
|
|
@@ -482,6 +484,7 @@ Av1RateControlModeType = Literal["CBR", "QVBR"]
|
|
|
482
484
|
Av1SceneChangeDetectType = Literal["DISABLED", "ENABLED"]
|
|
483
485
|
Av1SpatialAqType = Literal["DISABLED", "ENABLED"]
|
|
484
486
|
Av1TemporalAqType = Literal["DISABLED", "ENABLED"]
|
|
487
|
+
Av1TimecodeInsertionBehaviorType = Literal["DISABLED", "METADATA_OBU"]
|
|
485
488
|
AvailBlankingStateType = Literal["DISABLED", "ENABLED"]
|
|
486
489
|
BandwidthReductionFilterStrengthType = Literal[
|
|
487
490
|
"AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4"
|
|
@@ -562,6 +565,7 @@ CmafNielsenId3BehaviorType = Literal["NO_PASSTHROUGH", "PASSTHROUGH"]
|
|
|
562
565
|
CmafTimedMetadataId3FrameType = Literal["NONE", "PRIV", "TDRL"]
|
|
563
566
|
CmafTimedMetadataPassthroughType = Literal["DISABLED", "ENABLED"]
|
|
564
567
|
ColorSpaceType = Literal["HDR10", "HLG_2020", "REC_601", "REC_709"]
|
|
568
|
+
ConnectionModeType = Literal["CALLER", "LISTENER"]
|
|
565
569
|
ContentTypeType = Literal["image/jpeg"]
|
|
566
570
|
DashRoleAudioType = Literal[
|
|
567
571
|
"ALTERNATE",
|
|
@@ -863,6 +867,7 @@ InputTypeType = Literal[
|
|
|
863
867
|
"SDI",
|
|
864
868
|
"SMPTE_2110_RECEIVER_GROUP",
|
|
865
869
|
"SRT_CALLER",
|
|
870
|
+
"SRT_LISTENER",
|
|
866
871
|
"TS_FILE",
|
|
867
872
|
"UDP_PUSH",
|
|
868
873
|
"URL_PULL",
|
|
@@ -55,6 +55,7 @@ from .literals import (
|
|
|
55
55
|
Av1SceneChangeDetectType,
|
|
56
56
|
Av1SpatialAqType,
|
|
57
57
|
Av1TemporalAqType,
|
|
58
|
+
Av1TimecodeInsertionBehaviorType,
|
|
58
59
|
AvailBlankingStateType,
|
|
59
60
|
BandwidthReductionFilterStrengthType,
|
|
60
61
|
BandwidthReductionPostFilterSharpeningType,
|
|
@@ -86,6 +87,7 @@ from .literals import (
|
|
|
86
87
|
CmafTimedMetadataId3FrameType,
|
|
87
88
|
CmafTimedMetadataPassthroughType,
|
|
88
89
|
ColorSpaceType,
|
|
90
|
+
ConnectionModeType,
|
|
89
91
|
DashRoleAudioType,
|
|
90
92
|
DashRoleCaptionType,
|
|
91
93
|
DeviceSettingsSyncStateType,
|
|
@@ -582,6 +584,7 @@ __all__ = (
|
|
|
582
584
|
"DescribeSdiSourceResponseTypeDef",
|
|
583
585
|
"DescribeThumbnailsRequestTypeDef",
|
|
584
586
|
"DescribeThumbnailsResponseTypeDef",
|
|
587
|
+
"DisabledLockingSettingsTypeDef",
|
|
585
588
|
"DvbNitSettingsTypeDef",
|
|
586
589
|
"DvbSdtSettingsTypeDef",
|
|
587
590
|
"DvbSubDestinationSettingsTypeDef",
|
|
@@ -837,7 +840,9 @@ __all__ = (
|
|
|
837
840
|
"NielsenNaesIiNwTypeDef",
|
|
838
841
|
"NielsenWatermarksSettingsTypeDef",
|
|
839
842
|
"NodeInterfaceMappingCreateRequestTypeDef",
|
|
843
|
+
"NodeInterfaceMappingOutputTypeDef",
|
|
840
844
|
"NodeInterfaceMappingTypeDef",
|
|
845
|
+
"NodeInterfaceMappingUnionTypeDef",
|
|
841
846
|
"OfferingTypeDef",
|
|
842
847
|
"OutputDestinationOutputTypeDef",
|
|
843
848
|
"OutputDestinationSettingsTypeDef",
|
|
@@ -923,6 +928,10 @@ __all__ = (
|
|
|
923
928
|
"SrtCallerSourceRequestTypeDef",
|
|
924
929
|
"SrtCallerSourceTypeDef",
|
|
925
930
|
"SrtGroupSettingsTypeDef",
|
|
931
|
+
"SrtListenerDecryptionRequestTypeDef",
|
|
932
|
+
"SrtListenerDecryptionTypeDef",
|
|
933
|
+
"SrtListenerSettingsRequestTypeDef",
|
|
934
|
+
"SrtListenerSettingsTypeDef",
|
|
926
935
|
"SrtOutputDestinationSettingsTypeDef",
|
|
927
936
|
"SrtOutputSettingsTypeDef",
|
|
928
937
|
"SrtSettingsRequestTypeDef",
|
|
@@ -1529,16 +1538,17 @@ class RouteTypeDef(TypedDict):
|
|
|
1529
1538
|
Gateway: NotRequired[str]
|
|
1530
1539
|
|
|
1531
1540
|
|
|
1532
|
-
class
|
|
1541
|
+
class NodeInterfaceMappingCreateRequestTypeDef(TypedDict):
|
|
1533
1542
|
LogicalInterfaceName: NotRequired[str]
|
|
1534
1543
|
NetworkInterfaceMode: NotRequired[NetworkInterfaceModeType]
|
|
1535
1544
|
PhysicalInterfaceName: NotRequired[str]
|
|
1536
1545
|
|
|
1537
1546
|
|
|
1538
|
-
class
|
|
1547
|
+
class NodeInterfaceMappingOutputTypeDef(TypedDict):
|
|
1539
1548
|
LogicalInterfaceName: NotRequired[str]
|
|
1540
1549
|
NetworkInterfaceMode: NotRequired[NetworkInterfaceModeType]
|
|
1541
1550
|
PhysicalInterfaceName: NotRequired[str]
|
|
1551
|
+
PhysicalInterfaceIpAddresses: NotRequired[list[str]]
|
|
1542
1552
|
|
|
1543
1553
|
|
|
1544
1554
|
class SdiSourceMappingTypeDef(TypedDict):
|
|
@@ -1857,6 +1867,10 @@ class DescribeThumbnailsRequestTypeDef(TypedDict):
|
|
|
1857
1867
|
ThumbnailType: str
|
|
1858
1868
|
|
|
1859
1869
|
|
|
1870
|
+
class DisabledLockingSettingsTypeDef(TypedDict):
|
|
1871
|
+
CustomEpoch: NotRequired[str]
|
|
1872
|
+
|
|
1873
|
+
|
|
1860
1874
|
class DvbNitSettingsTypeDef(TypedDict):
|
|
1861
1875
|
NetworkId: int
|
|
1862
1876
|
NetworkName: str
|
|
@@ -2496,6 +2510,13 @@ class NielsenNaesIiNwTypeDef(TypedDict):
|
|
|
2496
2510
|
Timezone: NotRequired[NielsenWatermarkTimezonesType]
|
|
2497
2511
|
|
|
2498
2512
|
|
|
2513
|
+
class NodeInterfaceMappingTypeDef(TypedDict):
|
|
2514
|
+
LogicalInterfaceName: NotRequired[str]
|
|
2515
|
+
NetworkInterfaceMode: NotRequired[NetworkInterfaceModeType]
|
|
2516
|
+
PhysicalInterfaceName: NotRequired[str]
|
|
2517
|
+
PhysicalInterfaceIpAddresses: NotRequired[Sequence[str]]
|
|
2518
|
+
|
|
2519
|
+
|
|
2499
2520
|
class OutputDestinationSettingsTypeDef(TypedDict):
|
|
2500
2521
|
PasswordParam: NotRequired[str]
|
|
2501
2522
|
StreamName: NotRequired[str]
|
|
@@ -2507,6 +2528,8 @@ class SrtOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2507
2528
|
EncryptionPassphraseSecretArn: NotRequired[str]
|
|
2508
2529
|
StreamId: NotRequired[str]
|
|
2509
2530
|
Url: NotRequired[str]
|
|
2531
|
+
ConnectionMode: NotRequired[ConnectionModeType]
|
|
2532
|
+
ListenerPort: NotRequired[int]
|
|
2510
2533
|
|
|
2511
2534
|
|
|
2512
2535
|
class RtmpGroupSettingsOutputTypeDef(TypedDict):
|
|
@@ -2543,6 +2566,7 @@ class RtmpGroupSettingsTypeDef(TypedDict):
|
|
|
2543
2566
|
|
|
2544
2567
|
class PipelineLockingSettingsTypeDef(TypedDict):
|
|
2545
2568
|
PipelineLockingMethod: NotRequired[PipelineLockingMethodType]
|
|
2569
|
+
CustomEpoch: NotRequired[str]
|
|
2546
2570
|
|
|
2547
2571
|
|
|
2548
2572
|
class PipelinePauseStateSettingsTypeDef(TypedDict):
|
|
@@ -2633,6 +2657,16 @@ class SrtCallerDecryptionTypeDef(TypedDict):
|
|
|
2633
2657
|
PassphraseSecretArn: NotRequired[str]
|
|
2634
2658
|
|
|
2635
2659
|
|
|
2660
|
+
class SrtListenerDecryptionRequestTypeDef(TypedDict):
|
|
2661
|
+
Algorithm: AlgorithmType
|
|
2662
|
+
PassphraseSecretArn: str
|
|
2663
|
+
|
|
2664
|
+
|
|
2665
|
+
class SrtListenerDecryptionTypeDef(TypedDict):
|
|
2666
|
+
Algorithm: AlgorithmType
|
|
2667
|
+
PassphraseSecretArn: str
|
|
2668
|
+
|
|
2669
|
+
|
|
2636
2670
|
class StartChannelRequestTypeDef(TypedDict):
|
|
2637
2671
|
ChannelId: str
|
|
2638
2672
|
|
|
@@ -3439,15 +3473,6 @@ class UpdateNetworkResponseTypeDef(TypedDict):
|
|
|
3439
3473
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3440
3474
|
|
|
3441
3475
|
|
|
3442
|
-
class CreateNodeRegistrationScriptRequestTypeDef(TypedDict):
|
|
3443
|
-
ClusterId: str
|
|
3444
|
-
Id: NotRequired[str]
|
|
3445
|
-
Name: NotRequired[str]
|
|
3446
|
-
NodeInterfaceMappings: NotRequired[Sequence[NodeInterfaceMappingTypeDef]]
|
|
3447
|
-
RequestId: NotRequired[str]
|
|
3448
|
-
Role: NotRequired[NodeRoleType]
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
3476
|
class CreateNodeRequestTypeDef(TypedDict):
|
|
3452
3477
|
ClusterId: str
|
|
3453
3478
|
Name: NotRequired[str]
|
|
@@ -3465,7 +3490,7 @@ class CreateNodeResponseTypeDef(TypedDict):
|
|
|
3465
3490
|
Id: str
|
|
3466
3491
|
InstanceArn: str
|
|
3467
3492
|
Name: str
|
|
3468
|
-
NodeInterfaceMappings: list[
|
|
3493
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3469
3494
|
Role: NodeRoleType
|
|
3470
3495
|
State: NodeStateType
|
|
3471
3496
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3480,7 +3505,7 @@ class DeleteNodeResponseTypeDef(TypedDict):
|
|
|
3480
3505
|
Id: str
|
|
3481
3506
|
InstanceArn: str
|
|
3482
3507
|
Name: str
|
|
3483
|
-
NodeInterfaceMappings: list[
|
|
3508
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3484
3509
|
Role: NodeRoleType
|
|
3485
3510
|
State: NodeStateType
|
|
3486
3511
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3495,7 +3520,7 @@ class DescribeNodeResponseTypeDef(TypedDict):
|
|
|
3495
3520
|
Id: str
|
|
3496
3521
|
InstanceArn: str
|
|
3497
3522
|
Name: str
|
|
3498
|
-
NodeInterfaceMappings: list[
|
|
3523
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3499
3524
|
Role: NodeRoleType
|
|
3500
3525
|
State: NodeStateType
|
|
3501
3526
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3511,7 +3536,7 @@ class DescribeNodeSummaryTypeDef(TypedDict):
|
|
|
3511
3536
|
InstanceArn: NotRequired[str]
|
|
3512
3537
|
ManagedInstanceId: NotRequired[str]
|
|
3513
3538
|
Name: NotRequired[str]
|
|
3514
|
-
NodeInterfaceMappings: NotRequired[list[
|
|
3539
|
+
NodeInterfaceMappings: NotRequired[list[NodeInterfaceMappingOutputTypeDef]]
|
|
3515
3540
|
Role: NotRequired[NodeRoleType]
|
|
3516
3541
|
State: NotRequired[NodeStateType]
|
|
3517
3542
|
SdiSourceMappings: NotRequired[list[SdiSourceMappingTypeDef]]
|
|
@@ -3525,7 +3550,7 @@ class UpdateNodeResponseTypeDef(TypedDict):
|
|
|
3525
3550
|
Id: str
|
|
3526
3551
|
InstanceArn: str
|
|
3527
3552
|
Name: str
|
|
3528
|
-
NodeInterfaceMappings: list[
|
|
3553
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3529
3554
|
Role: NodeRoleType
|
|
3530
3555
|
State: NodeStateType
|
|
3531
3556
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3540,7 +3565,7 @@ class UpdateNodeStateResponseTypeDef(TypedDict):
|
|
|
3540
3565
|
Id: str
|
|
3541
3566
|
InstanceArn: str
|
|
3542
3567
|
Name: str
|
|
3543
|
-
NodeInterfaceMappings: list[
|
|
3568
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3544
3569
|
Role: NodeRoleType
|
|
3545
3570
|
State: NodeStateType
|
|
3546
3571
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3808,6 +3833,7 @@ class DescribeInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
3808
3833
|
State: InputSecurityGroupStateType
|
|
3809
3834
|
Tags: dict[str, str]
|
|
3810
3835
|
WhitelistRules: list[InputWhitelistRuleTypeDef]
|
|
3836
|
+
Channels: list[str]
|
|
3811
3837
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3812
3838
|
|
|
3813
3839
|
|
|
@@ -3818,6 +3844,7 @@ class InputSecurityGroupTypeDef(TypedDict):
|
|
|
3818
3844
|
State: NotRequired[InputSecurityGroupStateType]
|
|
3819
3845
|
Tags: NotRequired[dict[str, str]]
|
|
3820
3846
|
WhitelistRules: NotRequired[list[InputWhitelistRuleTypeDef]]
|
|
3847
|
+
Channels: NotRequired[list[str]]
|
|
3821
3848
|
|
|
3822
3849
|
|
|
3823
3850
|
class DescribeLinkedChannelSettingsTypeDef(TypedDict):
|
|
@@ -4237,6 +4264,11 @@ class NielsenWatermarksSettingsTypeDef(TypedDict):
|
|
|
4237
4264
|
NielsenNaesIiNwSettings: NotRequired[NielsenNaesIiNwTypeDef]
|
|
4238
4265
|
|
|
4239
4266
|
|
|
4267
|
+
NodeInterfaceMappingUnionTypeDef = Union[
|
|
4268
|
+
NodeInterfaceMappingTypeDef, NodeInterfaceMappingOutputTypeDef
|
|
4269
|
+
]
|
|
4270
|
+
|
|
4271
|
+
|
|
4240
4272
|
class OutputDestinationOutputTypeDef(TypedDict):
|
|
4241
4273
|
Id: NotRequired[str]
|
|
4242
4274
|
MediaPackageSettings: NotRequired[list[MediaPackageOutputDestinationSettingsTypeDef]]
|
|
@@ -4258,6 +4290,7 @@ class OutputDestinationTypeDef(TypedDict):
|
|
|
4258
4290
|
class OutputLockingSettingsTypeDef(TypedDict):
|
|
4259
4291
|
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
4260
4292
|
PipelineLockingSettings: NotRequired[PipelineLockingSettingsTypeDef]
|
|
4293
|
+
DisabledLockingSettings: NotRequired[DisabledLockingSettingsTypeDef]
|
|
4261
4294
|
|
|
4262
4295
|
|
|
4263
4296
|
class PauseStateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
@@ -4325,6 +4358,18 @@ class SrtCallerSourceTypeDef(TypedDict):
|
|
|
4325
4358
|
StreamId: NotRequired[str]
|
|
4326
4359
|
|
|
4327
4360
|
|
|
4361
|
+
class SrtListenerSettingsRequestTypeDef(TypedDict):
|
|
4362
|
+
Decryption: SrtListenerDecryptionRequestTypeDef
|
|
4363
|
+
MinimumLatency: int
|
|
4364
|
+
StreamId: NotRequired[str]
|
|
4365
|
+
|
|
4366
|
+
|
|
4367
|
+
class SrtListenerSettingsTypeDef(TypedDict):
|
|
4368
|
+
Decryption: NotRequired[SrtListenerDecryptionTypeDef]
|
|
4369
|
+
MinimumLatency: NotRequired[int]
|
|
4370
|
+
StreamId: NotRequired[str]
|
|
4371
|
+
|
|
4372
|
+
|
|
4328
4373
|
StaticImageOutputDeactivateScheduleActionSettingsUnionTypeDef = Union[
|
|
4329
4374
|
StaticImageOutputDeactivateScheduleActionSettingsTypeDef,
|
|
4330
4375
|
StaticImageOutputDeactivateScheduleActionSettingsOutputTypeDef,
|
|
@@ -4504,6 +4549,7 @@ class Av1SettingsOutputTypeDef(TypedDict):
|
|
|
4504
4549
|
MinBitrate: NotRequired[int]
|
|
4505
4550
|
SpatialAq: NotRequired[Av1SpatialAqType]
|
|
4506
4551
|
TemporalAq: NotRequired[Av1TemporalAqType]
|
|
4552
|
+
TimecodeInsertion: NotRequired[Av1TimecodeInsertionBehaviorType]
|
|
4507
4553
|
|
|
4508
4554
|
|
|
4509
4555
|
class Av1SettingsTypeDef(TypedDict):
|
|
@@ -4529,6 +4575,7 @@ class Av1SettingsTypeDef(TypedDict):
|
|
|
4529
4575
|
MinBitrate: NotRequired[int]
|
|
4530
4576
|
SpatialAq: NotRequired[Av1SpatialAqType]
|
|
4531
4577
|
TemporalAq: NotRequired[Av1TemporalAqType]
|
|
4578
|
+
TimecodeInsertion: NotRequired[Av1TimecodeInsertionBehaviorType]
|
|
4532
4579
|
|
|
4533
4580
|
|
|
4534
4581
|
class AvailConfigurationTypeDef(TypedDict):
|
|
@@ -5242,6 +5289,15 @@ class AudioWatermarkSettingsTypeDef(TypedDict):
|
|
|
5242
5289
|
NielsenWatermarksSettings: NotRequired[NielsenWatermarksSettingsTypeDef]
|
|
5243
5290
|
|
|
5244
5291
|
|
|
5292
|
+
class CreateNodeRegistrationScriptRequestTypeDef(TypedDict):
|
|
5293
|
+
ClusterId: str
|
|
5294
|
+
Id: NotRequired[str]
|
|
5295
|
+
Name: NotRequired[str]
|
|
5296
|
+
NodeInterfaceMappings: NotRequired[Sequence[NodeInterfaceMappingUnionTypeDef]]
|
|
5297
|
+
RequestId: NotRequired[str]
|
|
5298
|
+
Role: NotRequired[NodeRoleType]
|
|
5299
|
+
|
|
5300
|
+
|
|
5245
5301
|
OutputDestinationUnionTypeDef = Union[OutputDestinationTypeDef, OutputDestinationOutputTypeDef]
|
|
5246
5302
|
|
|
5247
5303
|
|
|
@@ -5266,10 +5322,12 @@ class Scte35DescriptorSettingsTypeDef(TypedDict):
|
|
|
5266
5322
|
|
|
5267
5323
|
class SrtSettingsRequestTypeDef(TypedDict):
|
|
5268
5324
|
SrtCallerSources: NotRequired[Sequence[SrtCallerSourceRequestTypeDef]]
|
|
5325
|
+
SrtListenerSettings: NotRequired[SrtListenerSettingsRequestTypeDef]
|
|
5269
5326
|
|
|
5270
5327
|
|
|
5271
5328
|
class SrtSettingsTypeDef(TypedDict):
|
|
5272
5329
|
SrtCallerSources: NotRequired[list[SrtCallerSourceTypeDef]]
|
|
5330
|
+
SrtListenerSettings: NotRequired[SrtListenerSettingsTypeDef]
|
|
5273
5331
|
|
|
5274
5332
|
|
|
5275
5333
|
class DescribeThumbnailsResponseTypeDef(TypedDict):
|
|
@@ -5948,6 +6006,7 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5948
6006
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5949
6007
|
UsedChannelEngineVersions: NotRequired[list[ChannelEngineVersionResponseTypeDef]]
|
|
5950
6008
|
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
6009
|
+
ChannelSecurityGroups: NotRequired[list[str]]
|
|
5951
6010
|
|
|
5952
6011
|
|
|
5953
6012
|
class OutputGroupOutputTypeDef(TypedDict):
|
|
@@ -6090,6 +6149,7 @@ class ChannelTypeDef(TypedDict):
|
|
|
6090
6149
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
6091
6150
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
6092
6151
|
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
6152
|
+
ChannelSecurityGroups: NotRequired[list[str]]
|
|
6093
6153
|
|
|
6094
6154
|
|
|
6095
6155
|
class DeleteChannelResponseTypeDef(TypedDict):
|
|
@@ -6114,6 +6174,7 @@ class DeleteChannelResponseTypeDef(TypedDict):
|
|
|
6114
6174
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6115
6175
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6116
6176
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6177
|
+
ChannelSecurityGroups: list[str]
|
|
6117
6178
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6118
6179
|
|
|
6119
6180
|
|
|
@@ -6139,6 +6200,7 @@ class DescribeChannelResponseTypeDef(TypedDict):
|
|
|
6139
6200
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6140
6201
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6141
6202
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6203
|
+
ChannelSecurityGroups: list[str]
|
|
6142
6204
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6143
6205
|
|
|
6144
6206
|
|
|
@@ -6165,6 +6227,7 @@ class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
|
6165
6227
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6166
6228
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6167
6229
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6230
|
+
ChannelSecurityGroups: list[str]
|
|
6168
6231
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6169
6232
|
|
|
6170
6233
|
|
|
@@ -6190,6 +6253,7 @@ class StartChannelResponseTypeDef(TypedDict):
|
|
|
6190
6253
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6191
6254
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6192
6255
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6256
|
+
ChannelSecurityGroups: list[str]
|
|
6193
6257
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6194
6258
|
|
|
6195
6259
|
|
|
@@ -6215,6 +6279,7 @@ class StopChannelResponseTypeDef(TypedDict):
|
|
|
6215
6279
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6216
6280
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
6217
6281
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
6282
|
+
ChannelSecurityGroups: list[str]
|
|
6218
6283
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6219
6284
|
|
|
6220
6285
|
|
|
@@ -6283,6 +6348,7 @@ class CreateChannelRequestTypeDef(TypedDict):
|
|
|
6283
6348
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionRequestTypeDef]
|
|
6284
6349
|
DryRun: NotRequired[bool]
|
|
6285
6350
|
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
6351
|
+
ChannelSecurityGroups: NotRequired[Sequence[str]]
|
|
6286
6352
|
|
|
6287
6353
|
|
|
6288
6354
|
class UpdateChannelRequestTypeDef(TypedDict):
|
|
@@ -6300,6 +6366,7 @@ class UpdateChannelRequestTypeDef(TypedDict):
|
|
|
6300
6366
|
DryRun: NotRequired[bool]
|
|
6301
6367
|
AnywhereSettings: NotRequired[AnywhereSettingsTypeDef]
|
|
6302
6368
|
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
6369
|
+
ChannelSecurityGroups: NotRequired[Sequence[str]]
|
|
6303
6370
|
|
|
6304
6371
|
|
|
6305
6372
|
class BatchUpdateScheduleRequestTypeDef(TypedDict):
|
|
@@ -55,6 +55,7 @@ from .literals import (
|
|
|
55
55
|
Av1SceneChangeDetectType,
|
|
56
56
|
Av1SpatialAqType,
|
|
57
57
|
Av1TemporalAqType,
|
|
58
|
+
Av1TimecodeInsertionBehaviorType,
|
|
58
59
|
AvailBlankingStateType,
|
|
59
60
|
BandwidthReductionFilterStrengthType,
|
|
60
61
|
BandwidthReductionPostFilterSharpeningType,
|
|
@@ -86,6 +87,7 @@ from .literals import (
|
|
|
86
87
|
CmafTimedMetadataId3FrameType,
|
|
87
88
|
CmafTimedMetadataPassthroughType,
|
|
88
89
|
ColorSpaceType,
|
|
90
|
+
ConnectionModeType,
|
|
89
91
|
DashRoleAudioType,
|
|
90
92
|
DashRoleCaptionType,
|
|
91
93
|
DeviceSettingsSyncStateType,
|
|
@@ -581,6 +583,7 @@ __all__ = (
|
|
|
581
583
|
"DescribeSdiSourceResponseTypeDef",
|
|
582
584
|
"DescribeThumbnailsRequestTypeDef",
|
|
583
585
|
"DescribeThumbnailsResponseTypeDef",
|
|
586
|
+
"DisabledLockingSettingsTypeDef",
|
|
584
587
|
"DvbNitSettingsTypeDef",
|
|
585
588
|
"DvbSdtSettingsTypeDef",
|
|
586
589
|
"DvbSubDestinationSettingsTypeDef",
|
|
@@ -836,7 +839,9 @@ __all__ = (
|
|
|
836
839
|
"NielsenNaesIiNwTypeDef",
|
|
837
840
|
"NielsenWatermarksSettingsTypeDef",
|
|
838
841
|
"NodeInterfaceMappingCreateRequestTypeDef",
|
|
842
|
+
"NodeInterfaceMappingOutputTypeDef",
|
|
839
843
|
"NodeInterfaceMappingTypeDef",
|
|
844
|
+
"NodeInterfaceMappingUnionTypeDef",
|
|
840
845
|
"OfferingTypeDef",
|
|
841
846
|
"OutputDestinationOutputTypeDef",
|
|
842
847
|
"OutputDestinationSettingsTypeDef",
|
|
@@ -922,6 +927,10 @@ __all__ = (
|
|
|
922
927
|
"SrtCallerSourceRequestTypeDef",
|
|
923
928
|
"SrtCallerSourceTypeDef",
|
|
924
929
|
"SrtGroupSettingsTypeDef",
|
|
930
|
+
"SrtListenerDecryptionRequestTypeDef",
|
|
931
|
+
"SrtListenerDecryptionTypeDef",
|
|
932
|
+
"SrtListenerSettingsRequestTypeDef",
|
|
933
|
+
"SrtListenerSettingsTypeDef",
|
|
925
934
|
"SrtOutputDestinationSettingsTypeDef",
|
|
926
935
|
"SrtOutputSettingsTypeDef",
|
|
927
936
|
"SrtSettingsRequestTypeDef",
|
|
@@ -1447,15 +1456,16 @@ class RouteTypeDef(TypedDict):
|
|
|
1447
1456
|
Cidr: NotRequired[str]
|
|
1448
1457
|
Gateway: NotRequired[str]
|
|
1449
1458
|
|
|
1450
|
-
class
|
|
1459
|
+
class NodeInterfaceMappingCreateRequestTypeDef(TypedDict):
|
|
1451
1460
|
LogicalInterfaceName: NotRequired[str]
|
|
1452
1461
|
NetworkInterfaceMode: NotRequired[NetworkInterfaceModeType]
|
|
1453
1462
|
PhysicalInterfaceName: NotRequired[str]
|
|
1454
1463
|
|
|
1455
|
-
class
|
|
1464
|
+
class NodeInterfaceMappingOutputTypeDef(TypedDict):
|
|
1456
1465
|
LogicalInterfaceName: NotRequired[str]
|
|
1457
1466
|
NetworkInterfaceMode: NotRequired[NetworkInterfaceModeType]
|
|
1458
1467
|
PhysicalInterfaceName: NotRequired[str]
|
|
1468
|
+
PhysicalInterfaceIpAddresses: NotRequired[list[str]]
|
|
1459
1469
|
|
|
1460
1470
|
class SdiSourceMappingTypeDef(TypedDict):
|
|
1461
1471
|
CardNumber: NotRequired[int]
|
|
@@ -1718,6 +1728,9 @@ class DescribeThumbnailsRequestTypeDef(TypedDict):
|
|
|
1718
1728
|
PipelineId: str
|
|
1719
1729
|
ThumbnailType: str
|
|
1720
1730
|
|
|
1731
|
+
class DisabledLockingSettingsTypeDef(TypedDict):
|
|
1732
|
+
CustomEpoch: NotRequired[str]
|
|
1733
|
+
|
|
1721
1734
|
class DvbNitSettingsTypeDef(TypedDict):
|
|
1722
1735
|
NetworkId: int
|
|
1723
1736
|
NetworkName: str
|
|
@@ -2258,6 +2271,12 @@ class NielsenNaesIiNwTypeDef(TypedDict):
|
|
|
2258
2271
|
Sid: float
|
|
2259
2272
|
Timezone: NotRequired[NielsenWatermarkTimezonesType]
|
|
2260
2273
|
|
|
2274
|
+
class NodeInterfaceMappingTypeDef(TypedDict):
|
|
2275
|
+
LogicalInterfaceName: NotRequired[str]
|
|
2276
|
+
NetworkInterfaceMode: NotRequired[NetworkInterfaceModeType]
|
|
2277
|
+
PhysicalInterfaceName: NotRequired[str]
|
|
2278
|
+
PhysicalInterfaceIpAddresses: NotRequired[Sequence[str]]
|
|
2279
|
+
|
|
2261
2280
|
class OutputDestinationSettingsTypeDef(TypedDict):
|
|
2262
2281
|
PasswordParam: NotRequired[str]
|
|
2263
2282
|
StreamName: NotRequired[str]
|
|
@@ -2268,6 +2287,8 @@ class SrtOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2268
2287
|
EncryptionPassphraseSecretArn: NotRequired[str]
|
|
2269
2288
|
StreamId: NotRequired[str]
|
|
2270
2289
|
Url: NotRequired[str]
|
|
2290
|
+
ConnectionMode: NotRequired[ConnectionModeType]
|
|
2291
|
+
ListenerPort: NotRequired[int]
|
|
2271
2292
|
|
|
2272
2293
|
class RtmpGroupSettingsOutputTypeDef(TypedDict):
|
|
2273
2294
|
AdMarkers: NotRequired[list[Literal["ON_CUE_POINT_SCTE35"]]]
|
|
@@ -2299,6 +2320,7 @@ class RtmpGroupSettingsTypeDef(TypedDict):
|
|
|
2299
2320
|
|
|
2300
2321
|
class PipelineLockingSettingsTypeDef(TypedDict):
|
|
2301
2322
|
PipelineLockingMethod: NotRequired[PipelineLockingMethodType]
|
|
2323
|
+
CustomEpoch: NotRequired[str]
|
|
2302
2324
|
|
|
2303
2325
|
class PipelinePauseStateSettingsTypeDef(TypedDict):
|
|
2304
2326
|
PipelineId: PipelineIdType
|
|
@@ -2370,6 +2392,14 @@ class SrtCallerDecryptionTypeDef(TypedDict):
|
|
|
2370
2392
|
Algorithm: NotRequired[AlgorithmType]
|
|
2371
2393
|
PassphraseSecretArn: NotRequired[str]
|
|
2372
2394
|
|
|
2395
|
+
class SrtListenerDecryptionRequestTypeDef(TypedDict):
|
|
2396
|
+
Algorithm: AlgorithmType
|
|
2397
|
+
PassphraseSecretArn: str
|
|
2398
|
+
|
|
2399
|
+
class SrtListenerDecryptionTypeDef(TypedDict):
|
|
2400
|
+
Algorithm: AlgorithmType
|
|
2401
|
+
PassphraseSecretArn: str
|
|
2402
|
+
|
|
2373
2403
|
class StartChannelRequestTypeDef(TypedDict):
|
|
2374
2404
|
ChannelId: str
|
|
2375
2405
|
|
|
@@ -3078,14 +3108,6 @@ class UpdateNetworkResponseTypeDef(TypedDict):
|
|
|
3078
3108
|
State: NetworkStateType
|
|
3079
3109
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3080
3110
|
|
|
3081
|
-
class CreateNodeRegistrationScriptRequestTypeDef(TypedDict):
|
|
3082
|
-
ClusterId: str
|
|
3083
|
-
Id: NotRequired[str]
|
|
3084
|
-
Name: NotRequired[str]
|
|
3085
|
-
NodeInterfaceMappings: NotRequired[Sequence[NodeInterfaceMappingTypeDef]]
|
|
3086
|
-
RequestId: NotRequired[str]
|
|
3087
|
-
Role: NotRequired[NodeRoleType]
|
|
3088
|
-
|
|
3089
3111
|
class CreateNodeRequestTypeDef(TypedDict):
|
|
3090
3112
|
ClusterId: str
|
|
3091
3113
|
Name: NotRequired[str]
|
|
@@ -3102,7 +3124,7 @@ class CreateNodeResponseTypeDef(TypedDict):
|
|
|
3102
3124
|
Id: str
|
|
3103
3125
|
InstanceArn: str
|
|
3104
3126
|
Name: str
|
|
3105
|
-
NodeInterfaceMappings: list[
|
|
3127
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3106
3128
|
Role: NodeRoleType
|
|
3107
3129
|
State: NodeStateType
|
|
3108
3130
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3116,7 +3138,7 @@ class DeleteNodeResponseTypeDef(TypedDict):
|
|
|
3116
3138
|
Id: str
|
|
3117
3139
|
InstanceArn: str
|
|
3118
3140
|
Name: str
|
|
3119
|
-
NodeInterfaceMappings: list[
|
|
3141
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3120
3142
|
Role: NodeRoleType
|
|
3121
3143
|
State: NodeStateType
|
|
3122
3144
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3130,7 +3152,7 @@ class DescribeNodeResponseTypeDef(TypedDict):
|
|
|
3130
3152
|
Id: str
|
|
3131
3153
|
InstanceArn: str
|
|
3132
3154
|
Name: str
|
|
3133
|
-
NodeInterfaceMappings: list[
|
|
3155
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3134
3156
|
Role: NodeRoleType
|
|
3135
3157
|
State: NodeStateType
|
|
3136
3158
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3145,7 +3167,7 @@ class DescribeNodeSummaryTypeDef(TypedDict):
|
|
|
3145
3167
|
InstanceArn: NotRequired[str]
|
|
3146
3168
|
ManagedInstanceId: NotRequired[str]
|
|
3147
3169
|
Name: NotRequired[str]
|
|
3148
|
-
NodeInterfaceMappings: NotRequired[list[
|
|
3170
|
+
NodeInterfaceMappings: NotRequired[list[NodeInterfaceMappingOutputTypeDef]]
|
|
3149
3171
|
Role: NotRequired[NodeRoleType]
|
|
3150
3172
|
State: NotRequired[NodeStateType]
|
|
3151
3173
|
SdiSourceMappings: NotRequired[list[SdiSourceMappingTypeDef]]
|
|
@@ -3158,7 +3180,7 @@ class UpdateNodeResponseTypeDef(TypedDict):
|
|
|
3158
3180
|
Id: str
|
|
3159
3181
|
InstanceArn: str
|
|
3160
3182
|
Name: str
|
|
3161
|
-
NodeInterfaceMappings: list[
|
|
3183
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3162
3184
|
Role: NodeRoleType
|
|
3163
3185
|
State: NodeStateType
|
|
3164
3186
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3172,7 +3194,7 @@ class UpdateNodeStateResponseTypeDef(TypedDict):
|
|
|
3172
3194
|
Id: str
|
|
3173
3195
|
InstanceArn: str
|
|
3174
3196
|
Name: str
|
|
3175
|
-
NodeInterfaceMappings: list[
|
|
3197
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingOutputTypeDef]
|
|
3176
3198
|
Role: NodeRoleType
|
|
3177
3199
|
State: NodeStateType
|
|
3178
3200
|
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
@@ -3405,6 +3427,7 @@ class DescribeInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
3405
3427
|
State: InputSecurityGroupStateType
|
|
3406
3428
|
Tags: dict[str, str]
|
|
3407
3429
|
WhitelistRules: list[InputWhitelistRuleTypeDef]
|
|
3430
|
+
Channels: list[str]
|
|
3408
3431
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3409
3432
|
|
|
3410
3433
|
class InputSecurityGroupTypeDef(TypedDict):
|
|
@@ -3414,6 +3437,7 @@ class InputSecurityGroupTypeDef(TypedDict):
|
|
|
3414
3437
|
State: NotRequired[InputSecurityGroupStateType]
|
|
3415
3438
|
Tags: NotRequired[dict[str, str]]
|
|
3416
3439
|
WhitelistRules: NotRequired[list[InputWhitelistRuleTypeDef]]
|
|
3440
|
+
Channels: NotRequired[list[str]]
|
|
3417
3441
|
|
|
3418
3442
|
class DescribeLinkedChannelSettingsTypeDef(TypedDict):
|
|
3419
3443
|
FollowerChannelSettings: NotRequired[DescribeFollowerChannelSettingsTypeDef]
|
|
@@ -3769,6 +3793,10 @@ class NielsenWatermarksSettingsTypeDef(TypedDict):
|
|
|
3769
3793
|
NielsenDistributionType: NotRequired[NielsenWatermarksDistributionTypesType]
|
|
3770
3794
|
NielsenNaesIiNwSettings: NotRequired[NielsenNaesIiNwTypeDef]
|
|
3771
3795
|
|
|
3796
|
+
NodeInterfaceMappingUnionTypeDef = Union[
|
|
3797
|
+
NodeInterfaceMappingTypeDef, NodeInterfaceMappingOutputTypeDef
|
|
3798
|
+
]
|
|
3799
|
+
|
|
3772
3800
|
class OutputDestinationOutputTypeDef(TypedDict):
|
|
3773
3801
|
Id: NotRequired[str]
|
|
3774
3802
|
MediaPackageSettings: NotRequired[list[MediaPackageOutputDestinationSettingsTypeDef]]
|
|
@@ -3788,6 +3816,7 @@ class OutputDestinationTypeDef(TypedDict):
|
|
|
3788
3816
|
class OutputLockingSettingsTypeDef(TypedDict):
|
|
3789
3817
|
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3790
3818
|
PipelineLockingSettings: NotRequired[PipelineLockingSettingsTypeDef]
|
|
3819
|
+
DisabledLockingSettings: NotRequired[DisabledLockingSettingsTypeDef]
|
|
3791
3820
|
|
|
3792
3821
|
class PauseStateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
3793
3822
|
Pipelines: NotRequired[list[PipelinePauseStateSettingsTypeDef]]
|
|
@@ -3845,6 +3874,16 @@ class SrtCallerSourceTypeDef(TypedDict):
|
|
|
3845
3874
|
SrtListenerPort: NotRequired[str]
|
|
3846
3875
|
StreamId: NotRequired[str]
|
|
3847
3876
|
|
|
3877
|
+
class SrtListenerSettingsRequestTypeDef(TypedDict):
|
|
3878
|
+
Decryption: SrtListenerDecryptionRequestTypeDef
|
|
3879
|
+
MinimumLatency: int
|
|
3880
|
+
StreamId: NotRequired[str]
|
|
3881
|
+
|
|
3882
|
+
class SrtListenerSettingsTypeDef(TypedDict):
|
|
3883
|
+
Decryption: NotRequired[SrtListenerDecryptionTypeDef]
|
|
3884
|
+
MinimumLatency: NotRequired[int]
|
|
3885
|
+
StreamId: NotRequired[str]
|
|
3886
|
+
|
|
3848
3887
|
StaticImageOutputDeactivateScheduleActionSettingsUnionTypeDef = Union[
|
|
3849
3888
|
StaticImageOutputDeactivateScheduleActionSettingsTypeDef,
|
|
3850
3889
|
StaticImageOutputDeactivateScheduleActionSettingsOutputTypeDef,
|
|
@@ -4008,6 +4047,7 @@ class Av1SettingsOutputTypeDef(TypedDict):
|
|
|
4008
4047
|
MinBitrate: NotRequired[int]
|
|
4009
4048
|
SpatialAq: NotRequired[Av1SpatialAqType]
|
|
4010
4049
|
TemporalAq: NotRequired[Av1TemporalAqType]
|
|
4050
|
+
TimecodeInsertion: NotRequired[Av1TimecodeInsertionBehaviorType]
|
|
4011
4051
|
|
|
4012
4052
|
class Av1SettingsTypeDef(TypedDict):
|
|
4013
4053
|
FramerateDenominator: int
|
|
@@ -4032,6 +4072,7 @@ class Av1SettingsTypeDef(TypedDict):
|
|
|
4032
4072
|
MinBitrate: NotRequired[int]
|
|
4033
4073
|
SpatialAq: NotRequired[Av1SpatialAqType]
|
|
4034
4074
|
TemporalAq: NotRequired[Av1TemporalAqType]
|
|
4075
|
+
TimecodeInsertion: NotRequired[Av1TimecodeInsertionBehaviorType]
|
|
4035
4076
|
|
|
4036
4077
|
class AvailConfigurationTypeDef(TypedDict):
|
|
4037
4078
|
AvailSettings: NotRequired[AvailSettingsTypeDef]
|
|
@@ -4689,6 +4730,14 @@ class MultiplexProgramSettingsTypeDef(TypedDict):
|
|
|
4689
4730
|
class AudioWatermarkSettingsTypeDef(TypedDict):
|
|
4690
4731
|
NielsenWatermarksSettings: NotRequired[NielsenWatermarksSettingsTypeDef]
|
|
4691
4732
|
|
|
4733
|
+
class CreateNodeRegistrationScriptRequestTypeDef(TypedDict):
|
|
4734
|
+
ClusterId: str
|
|
4735
|
+
Id: NotRequired[str]
|
|
4736
|
+
Name: NotRequired[str]
|
|
4737
|
+
NodeInterfaceMappings: NotRequired[Sequence[NodeInterfaceMappingUnionTypeDef]]
|
|
4738
|
+
RequestId: NotRequired[str]
|
|
4739
|
+
Role: NotRequired[NodeRoleType]
|
|
4740
|
+
|
|
4692
4741
|
OutputDestinationUnionTypeDef = Union[OutputDestinationTypeDef, OutputDestinationOutputTypeDef]
|
|
4693
4742
|
|
|
4694
4743
|
class GlobalConfigurationTypeDef(TypedDict):
|
|
@@ -4709,9 +4758,11 @@ class Scte35DescriptorSettingsTypeDef(TypedDict):
|
|
|
4709
4758
|
|
|
4710
4759
|
class SrtSettingsRequestTypeDef(TypedDict):
|
|
4711
4760
|
SrtCallerSources: NotRequired[Sequence[SrtCallerSourceRequestTypeDef]]
|
|
4761
|
+
SrtListenerSettings: NotRequired[SrtListenerSettingsRequestTypeDef]
|
|
4712
4762
|
|
|
4713
4763
|
class SrtSettingsTypeDef(TypedDict):
|
|
4714
4764
|
SrtCallerSources: NotRequired[list[SrtCallerSourceTypeDef]]
|
|
4765
|
+
SrtListenerSettings: NotRequired[SrtListenerSettingsTypeDef]
|
|
4715
4766
|
|
|
4716
4767
|
class DescribeThumbnailsResponseTypeDef(TypedDict):
|
|
4717
4768
|
ThumbnailDetails: list[ThumbnailDetailTypeDef]
|
|
@@ -5323,6 +5374,7 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5323
5374
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5324
5375
|
UsedChannelEngineVersions: NotRequired[list[ChannelEngineVersionResponseTypeDef]]
|
|
5325
5376
|
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
5377
|
+
ChannelSecurityGroups: NotRequired[list[str]]
|
|
5326
5378
|
|
|
5327
5379
|
class OutputGroupOutputTypeDef(TypedDict):
|
|
5328
5380
|
OutputGroupSettings: OutputGroupSettingsOutputTypeDef
|
|
@@ -5452,6 +5504,7 @@ class ChannelTypeDef(TypedDict):
|
|
|
5452
5504
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5453
5505
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5454
5506
|
LinkedChannelSettings: NotRequired[DescribeLinkedChannelSettingsTypeDef]
|
|
5507
|
+
ChannelSecurityGroups: NotRequired[list[str]]
|
|
5455
5508
|
|
|
5456
5509
|
class DeleteChannelResponseTypeDef(TypedDict):
|
|
5457
5510
|
Arn: str
|
|
@@ -5475,6 +5528,7 @@ class DeleteChannelResponseTypeDef(TypedDict):
|
|
|
5475
5528
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5476
5529
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5477
5530
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5531
|
+
ChannelSecurityGroups: list[str]
|
|
5478
5532
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5479
5533
|
|
|
5480
5534
|
class DescribeChannelResponseTypeDef(TypedDict):
|
|
@@ -5499,6 +5553,7 @@ class DescribeChannelResponseTypeDef(TypedDict):
|
|
|
5499
5553
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5500
5554
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5501
5555
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5556
|
+
ChannelSecurityGroups: list[str]
|
|
5502
5557
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5503
5558
|
|
|
5504
5559
|
class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
@@ -5524,6 +5579,7 @@ class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
|
5524
5579
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5525
5580
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5526
5581
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5582
|
+
ChannelSecurityGroups: list[str]
|
|
5527
5583
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5528
5584
|
|
|
5529
5585
|
class StartChannelResponseTypeDef(TypedDict):
|
|
@@ -5548,6 +5604,7 @@ class StartChannelResponseTypeDef(TypedDict):
|
|
|
5548
5604
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5549
5605
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5550
5606
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5607
|
+
ChannelSecurityGroups: list[str]
|
|
5551
5608
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5552
5609
|
|
|
5553
5610
|
class StopChannelResponseTypeDef(TypedDict):
|
|
@@ -5572,6 +5629,7 @@ class StopChannelResponseTypeDef(TypedDict):
|
|
|
5572
5629
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5573
5630
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
5574
5631
|
LinkedChannelSettings: DescribeLinkedChannelSettingsTypeDef
|
|
5632
|
+
ChannelSecurityGroups: list[str]
|
|
5575
5633
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5576
5634
|
|
|
5577
5635
|
EncoderSettingsUnionTypeDef = Union[EncoderSettingsTypeDef, EncoderSettingsOutputTypeDef]
|
|
@@ -5630,6 +5688,7 @@ class CreateChannelRequestTypeDef(TypedDict):
|
|
|
5630
5688
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionRequestTypeDef]
|
|
5631
5689
|
DryRun: NotRequired[bool]
|
|
5632
5690
|
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
5691
|
+
ChannelSecurityGroups: NotRequired[Sequence[str]]
|
|
5633
5692
|
|
|
5634
5693
|
class UpdateChannelRequestTypeDef(TypedDict):
|
|
5635
5694
|
ChannelId: str
|
|
@@ -5646,6 +5705,7 @@ class UpdateChannelRequestTypeDef(TypedDict):
|
|
|
5646
5705
|
DryRun: NotRequired[bool]
|
|
5647
5706
|
AnywhereSettings: NotRequired[AnywhereSettingsTypeDef]
|
|
5648
5707
|
LinkedChannelSettings: NotRequired[LinkedChannelSettingsTypeDef]
|
|
5708
|
+
ChannelSecurityGroups: NotRequired[Sequence[str]]
|
|
5649
5709
|
|
|
5650
5710
|
class BatchUpdateScheduleRequestTypeDef(TypedDict):
|
|
5651
5711
|
ChannelId: str
|
types_boto3_medialive/version.py
CHANGED
{types_boto3_medialive-1.42.25.dist-info → types_boto3_medialive-1.42.42.dist-info}/METADATA
RENAMED
|
@@ -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.42
|
|
4
|
+
Summary: Type annotations for boto3 MediaLive 1.42.42 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.42](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.42' 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=AytWjVZiNR9SEH8WVvq73tbsUHAzC8knJ2RX7w4fpMU,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=rPfyzlgwHoTsIB9juk-TAE-ClHt2Q6PXbbBTGdd-sLw,54297
|
|
7
|
+
types_boto3_medialive/literals.pyi,sha256=3KiyllM1ofrgSJ-gECHpL2v3SjyrdhhPmNJ0C36sqjg,54295
|
|
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=hx6pwABmVxEq_ZajFV3LDD8jq10TATJOduo8Wc-Pv9s,215470
|
|
12
|
+
types_boto3_medialive/type_defs.pyi,sha256=6mAqdwfhfSoKU00ScqkFkSHk_gIlxxCXrY3HLfLQ_RQ,214808
|
|
13
|
+
types_boto3_medialive/version.py,sha256=e6HoYfetC3qcC0gAdQCVrDkrRgu8bjbOwNSmZtKJDJE,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.42.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
|
|
17
|
+
types_boto3_medialive-1.42.42.dist-info/METADATA,sha256=LM4jqtf2Gk7HzsoUqXzQRLKPZGei5qSgTr8BTu_RhsA,21169
|
|
18
|
+
types_boto3_medialive-1.42.42.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
19
|
+
types_boto3_medialive-1.42.42.dist-info/top_level.txt,sha256=ObnwlKE8EUI6nh64SLkLF3YrioCtul-5VbXe2USlsFg,22
|
|
20
|
+
types_boto3_medialive-1.42.42.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
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,,
|
{types_boto3_medialive-1.42.25.dist-info → types_boto3_medialive-1.42.42.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{types_boto3_medialive-1.42.25.dist-info → types_boto3_medialive-1.42.42.dist-info}/top_level.txt
RENAMED
|
File without changes
|