mypy-boto3-medialive 1.37.11__py3-none-any.whl → 1.37.26__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.
@@ -12,9 +12,9 @@ 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.37.11\n"
16
- "Version: 1.37.11\n"
17
- "Builder version: 8.10.0\n"
15
+ "Type annotations for boto3 MediaLive 1.37.26\n"
16
+ "Version: 1.37.26\n"
17
+ "Builder version: 8.10.1\n"
18
18
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medialive//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive.html#medialive\n"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\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.37.11\n")
29
+ sys.stdout.write("1.37.26\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -824,6 +824,7 @@ InputTypeType = Literal[
824
824
  "RTMP_PULL",
825
825
  "RTMP_PUSH",
826
826
  "RTP_PUSH",
827
+ "SMPTE_2110_RECEIVER_GROUP",
827
828
  "SRT_CALLER",
828
829
  "TS_FILE",
829
830
  "UDP_PUSH",
@@ -822,6 +822,7 @@ InputTypeType = Literal[
822
822
  "RTMP_PULL",
823
823
  "RTMP_PUSH",
824
824
  "RTP_PUSH",
825
+ "SMPTE_2110_RECEIVER_GROUP",
825
826
  "SRT_CALLER",
826
827
  "TS_FILE",
827
828
  "UDP_PUSH",
@@ -654,6 +654,7 @@ __all__ = (
654
654
  "InputPrepareScheduleActionSettingsTypeDef",
655
655
  "InputPrepareScheduleActionSettingsUnionTypeDef",
656
656
  "InputRequestDestinationRouteTypeDef",
657
+ "InputSdpLocationTypeDef",
657
658
  "InputSecurityGroupTypeDef",
658
659
  "InputSettingsOutputTypeDef",
659
660
  "InputSettingsTypeDef",
@@ -851,6 +852,13 @@ __all__ = (
851
852
  "Scte35TimeSignalScheduleActionSettingsTypeDef",
852
853
  "Scte35TimeSignalScheduleActionSettingsUnionTypeDef",
853
854
  "SignalMapSummaryTypeDef",
855
+ "Smpte2110ReceiverGroupOutputTypeDef",
856
+ "Smpte2110ReceiverGroupSdpSettingsOutputTypeDef",
857
+ "Smpte2110ReceiverGroupSdpSettingsTypeDef",
858
+ "Smpte2110ReceiverGroupSettingsOutputTypeDef",
859
+ "Smpte2110ReceiverGroupSettingsTypeDef",
860
+ "Smpte2110ReceiverGroupSettingsUnionTypeDef",
861
+ "Smpte2110ReceiverGroupTypeDef",
854
862
  "SrtCallerDecryptionRequestTypeDef",
855
863
  "SrtCallerDecryptionTypeDef",
856
864
  "SrtCallerSourceRequestTypeDef",
@@ -1971,6 +1979,11 @@ class InputDeviceUhdAudioChannelPairConfigTypeDef(TypedDict):
1971
1979
  Profile: NotRequired[InputDeviceUhdAudioChannelPairProfileType]
1972
1980
 
1973
1981
 
1982
+ class InputSdpLocationTypeDef(TypedDict):
1983
+ MediaIndex: NotRequired[int]
1984
+ SdpUrl: NotRequired[str]
1985
+
1986
+
1974
1987
  class IpPoolUpdateRequestTypeDef(TypedDict):
1975
1988
  Cidr: NotRequired[str]
1976
1989
 
@@ -3818,6 +3831,18 @@ class InputDeviceUhdSettingsTypeDef(TypedDict):
3818
3831
  AudioChannelPairs: NotRequired[List[InputDeviceUhdAudioChannelPairConfigTypeDef]]
3819
3832
 
3820
3833
 
3834
+ class Smpte2110ReceiverGroupSdpSettingsOutputTypeDef(TypedDict):
3835
+ AncillarySdps: NotRequired[List[InputSdpLocationTypeDef]]
3836
+ AudioSdps: NotRequired[List[InputSdpLocationTypeDef]]
3837
+ VideoSdp: NotRequired[InputSdpLocationTypeDef]
3838
+
3839
+
3840
+ class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
3841
+ AncillarySdps: NotRequired[Sequence[InputSdpLocationTypeDef]]
3842
+ AudioSdps: NotRequired[Sequence[InputSdpLocationTypeDef]]
3843
+ VideoSdp: NotRequired[InputSdpLocationTypeDef]
3844
+
3845
+
3821
3846
  class ListInputDeviceTransfersResponseTypeDef(TypedDict):
3822
3847
  InputDeviceTransfers: List[TransferringInputDeviceSummaryTypeDef]
3823
3848
  ResponseMetadata: ResponseMetadataTypeDef
@@ -4589,6 +4614,14 @@ UpdateInputDeviceResponseTypeDef = TypedDict(
4589
4614
  )
4590
4615
 
4591
4616
 
4617
+ class Smpte2110ReceiverGroupOutputTypeDef(TypedDict):
4618
+ SdpSettings: NotRequired[Smpte2110ReceiverGroupSdpSettingsOutputTypeDef]
4619
+
4620
+
4621
+ class Smpte2110ReceiverGroupTypeDef(TypedDict):
4622
+ SdpSettings: NotRequired[Smpte2110ReceiverGroupSdpSettingsTypeDef]
4623
+
4624
+
4592
4625
  class HlsSettingsOutputTypeDef(TypedDict):
4593
4626
  AudioOnlyHlsSettings: NotRequired[AudioOnlyHlsSettingsTypeDef]
4594
4627
  Fmp4HlsSettings: NotRequired[Fmp4HlsSettingsTypeDef]
@@ -5057,6 +5090,14 @@ class ListInputDevicesResponseTypeDef(TypedDict):
5057
5090
  NextToken: NotRequired[str]
5058
5091
 
5059
5092
 
5093
+ class Smpte2110ReceiverGroupSettingsOutputTypeDef(TypedDict):
5094
+ Smpte2110ReceiverGroups: NotRequired[List[Smpte2110ReceiverGroupOutputTypeDef]]
5095
+
5096
+
5097
+ class Smpte2110ReceiverGroupSettingsTypeDef(TypedDict):
5098
+ Smpte2110ReceiverGroups: NotRequired[Sequence[Smpte2110ReceiverGroupTypeDef]]
5099
+
5100
+
5060
5101
  class HlsOutputSettingsOutputTypeDef(TypedDict):
5061
5102
  HlsSettings: HlsSettingsOutputTypeDef
5062
5103
  H265PackagingType: NotRequired[HlsH265PackagingTypeType]
@@ -5162,91 +5203,6 @@ class Scte35DescriptorTypeDef(TypedDict):
5162
5203
  Scte35DescriptorSettings: Scte35DescriptorSettingsTypeDef
5163
5204
 
5164
5205
 
5165
- CreateInputRequestTypeDef = TypedDict(
5166
- "CreateInputRequestTypeDef",
5167
- {
5168
- "Destinations": NotRequired[Sequence[InputDestinationRequestTypeDef]],
5169
- "InputDevices": NotRequired[Sequence[InputDeviceSettingsTypeDef]],
5170
- "InputSecurityGroups": NotRequired[Sequence[str]],
5171
- "MediaConnectFlows": NotRequired[Sequence[MediaConnectFlowRequestTypeDef]],
5172
- "Name": NotRequired[str],
5173
- "RequestId": NotRequired[str],
5174
- "RoleArn": NotRequired[str],
5175
- "Sources": NotRequired[Sequence[InputSourceRequestTypeDef]],
5176
- "Tags": NotRequired[Mapping[str, str]],
5177
- "Type": NotRequired[InputTypeType],
5178
- "Vpc": NotRequired[InputVpcRequestTypeDef],
5179
- "SrtSettings": NotRequired[SrtSettingsRequestTypeDef],
5180
- "InputNetworkLocation": NotRequired[InputNetworkLocationType],
5181
- "MulticastSettings": NotRequired[MulticastSettingsCreateRequestTypeDef],
5182
- },
5183
- )
5184
-
5185
-
5186
- class UpdateInputRequestTypeDef(TypedDict):
5187
- InputId: str
5188
- Destinations: NotRequired[Sequence[InputDestinationRequestTypeDef]]
5189
- InputDevices: NotRequired[Sequence[InputDeviceRequestTypeDef]]
5190
- InputSecurityGroups: NotRequired[Sequence[str]]
5191
- MediaConnectFlows: NotRequired[Sequence[MediaConnectFlowRequestTypeDef]]
5192
- Name: NotRequired[str]
5193
- RoleArn: NotRequired[str]
5194
- Sources: NotRequired[Sequence[InputSourceRequestTypeDef]]
5195
- SrtSettings: NotRequired[SrtSettingsRequestTypeDef]
5196
- MulticastSettings: NotRequired[MulticastSettingsUpdateRequestTypeDef]
5197
-
5198
-
5199
- DescribeInputResponseTypeDef = TypedDict(
5200
- "DescribeInputResponseTypeDef",
5201
- {
5202
- "Arn": str,
5203
- "AttachedChannels": List[str],
5204
- "Destinations": List[InputDestinationTypeDef],
5205
- "Id": str,
5206
- "InputClass": InputClassType,
5207
- "InputDevices": List[InputDeviceSettingsTypeDef],
5208
- "InputPartnerIds": List[str],
5209
- "InputSourceType": InputSourceTypeType,
5210
- "MediaConnectFlows": List[MediaConnectFlowTypeDef],
5211
- "Name": str,
5212
- "RoleArn": str,
5213
- "SecurityGroups": List[str],
5214
- "Sources": List[InputSourceTypeDef],
5215
- "State": InputStateType,
5216
- "Tags": Dict[str, str],
5217
- "Type": InputTypeType,
5218
- "SrtSettings": SrtSettingsTypeDef,
5219
- "InputNetworkLocation": InputNetworkLocationType,
5220
- "MulticastSettings": MulticastSettingsTypeDef,
5221
- "ResponseMetadata": ResponseMetadataTypeDef,
5222
- },
5223
- )
5224
- InputTypeDef = TypedDict(
5225
- "InputTypeDef",
5226
- {
5227
- "Arn": NotRequired[str],
5228
- "AttachedChannels": NotRequired[List[str]],
5229
- "Destinations": NotRequired[List[InputDestinationTypeDef]],
5230
- "Id": NotRequired[str],
5231
- "InputClass": NotRequired[InputClassType],
5232
- "InputDevices": NotRequired[List[InputDeviceSettingsTypeDef]],
5233
- "InputPartnerIds": NotRequired[List[str]],
5234
- "InputSourceType": NotRequired[InputSourceTypeType],
5235
- "MediaConnectFlows": NotRequired[List[MediaConnectFlowTypeDef]],
5236
- "Name": NotRequired[str],
5237
- "RoleArn": NotRequired[str],
5238
- "SecurityGroups": NotRequired[List[str]],
5239
- "Sources": NotRequired[List[InputSourceTypeDef]],
5240
- "State": NotRequired[InputStateType],
5241
- "Tags": NotRequired[Dict[str, str]],
5242
- "Type": NotRequired[InputTypeType],
5243
- "SrtSettings": NotRequired[SrtSettingsTypeDef],
5244
- "InputNetworkLocation": NotRequired[InputNetworkLocationType],
5245
- "MulticastSettings": NotRequired[MulticastSettingsTypeDef],
5246
- },
5247
- )
5248
-
5249
-
5250
5206
  class OutputGroupSettingsOutputTypeDef(TypedDict):
5251
5207
  ArchiveGroupSettings: NotRequired[ArchiveGroupSettingsTypeDef]
5252
5208
  FrameCaptureGroupSettings: NotRequired[FrameCaptureGroupSettingsTypeDef]
@@ -5323,6 +5279,62 @@ class VideoDescriptionTypeDef(TypedDict):
5323
5279
  Width: NotRequired[int]
5324
5280
 
5325
5281
 
5282
+ DescribeInputResponseTypeDef = TypedDict(
5283
+ "DescribeInputResponseTypeDef",
5284
+ {
5285
+ "Arn": str,
5286
+ "AttachedChannels": List[str],
5287
+ "Destinations": List[InputDestinationTypeDef],
5288
+ "Id": str,
5289
+ "InputClass": InputClassType,
5290
+ "InputDevices": List[InputDeviceSettingsTypeDef],
5291
+ "InputPartnerIds": List[str],
5292
+ "InputSourceType": InputSourceTypeType,
5293
+ "MediaConnectFlows": List[MediaConnectFlowTypeDef],
5294
+ "Name": str,
5295
+ "RoleArn": str,
5296
+ "SecurityGroups": List[str],
5297
+ "Sources": List[InputSourceTypeDef],
5298
+ "State": InputStateType,
5299
+ "Tags": Dict[str, str],
5300
+ "Type": InputTypeType,
5301
+ "SrtSettings": SrtSettingsTypeDef,
5302
+ "InputNetworkLocation": InputNetworkLocationType,
5303
+ "MulticastSettings": MulticastSettingsTypeDef,
5304
+ "Smpte2110ReceiverGroupSettings": Smpte2110ReceiverGroupSettingsOutputTypeDef,
5305
+ "ResponseMetadata": ResponseMetadataTypeDef,
5306
+ },
5307
+ )
5308
+ InputTypeDef = TypedDict(
5309
+ "InputTypeDef",
5310
+ {
5311
+ "Arn": NotRequired[str],
5312
+ "AttachedChannels": NotRequired[List[str]],
5313
+ "Destinations": NotRequired[List[InputDestinationTypeDef]],
5314
+ "Id": NotRequired[str],
5315
+ "InputClass": NotRequired[InputClassType],
5316
+ "InputDevices": NotRequired[List[InputDeviceSettingsTypeDef]],
5317
+ "InputPartnerIds": NotRequired[List[str]],
5318
+ "InputSourceType": NotRequired[InputSourceTypeType],
5319
+ "MediaConnectFlows": NotRequired[List[MediaConnectFlowTypeDef]],
5320
+ "Name": NotRequired[str],
5321
+ "RoleArn": NotRequired[str],
5322
+ "SecurityGroups": NotRequired[List[str]],
5323
+ "Sources": NotRequired[List[InputSourceTypeDef]],
5324
+ "State": NotRequired[InputStateType],
5325
+ "Tags": NotRequired[Dict[str, str]],
5326
+ "Type": NotRequired[InputTypeType],
5327
+ "SrtSettings": NotRequired[SrtSettingsTypeDef],
5328
+ "InputNetworkLocation": NotRequired[InputNetworkLocationType],
5329
+ "MulticastSettings": NotRequired[MulticastSettingsTypeDef],
5330
+ "Smpte2110ReceiverGroupSettings": NotRequired[Smpte2110ReceiverGroupSettingsOutputTypeDef],
5331
+ },
5332
+ )
5333
+ Smpte2110ReceiverGroupSettingsUnionTypeDef = Union[
5334
+ Smpte2110ReceiverGroupSettingsTypeDef, Smpte2110ReceiverGroupSettingsOutputTypeDef
5335
+ ]
5336
+
5337
+
5326
5338
  class OutputSettingsOutputTypeDef(TypedDict):
5327
5339
  ArchiveOutputSettings: NotRequired[ArchiveOutputSettingsOutputTypeDef]
5328
5340
  FrameCaptureOutputSettings: NotRequired[FrameCaptureOutputSettingsTypeDef]
@@ -5367,6 +5379,22 @@ class Scte35TimeSignalScheduleActionSettingsTypeDef(TypedDict):
5367
5379
  Scte35Descriptors: Sequence[Scte35DescriptorTypeDef]
5368
5380
 
5369
5381
 
5382
+ class AudioSelectorTypeDef(TypedDict):
5383
+ Name: str
5384
+ SelectorSettings: NotRequired[AudioSelectorSettingsUnionTypeDef]
5385
+
5386
+
5387
+ class InputAttachmentOutputTypeDef(TypedDict):
5388
+ AutomaticInputFailoverSettings: NotRequired[AutomaticInputFailoverSettingsOutputTypeDef]
5389
+ InputAttachmentName: NotRequired[str]
5390
+ InputId: NotRequired[str]
5391
+ InputSettings: NotRequired[InputSettingsOutputTypeDef]
5392
+ LogicalInterfaceNames: NotRequired[List[str]]
5393
+
5394
+
5395
+ CaptionSelectorUnionTypeDef = Union[CaptionSelectorTypeDef, CaptionSelectorOutputTypeDef]
5396
+
5397
+
5370
5398
  class CreateInputResponseTypeDef(TypedDict):
5371
5399
  Input: InputTypeDef
5372
5400
  ResponseMetadata: ResponseMetadataTypeDef
@@ -5388,20 +5416,40 @@ class UpdateInputResponseTypeDef(TypedDict):
5388
5416
  ResponseMetadata: ResponseMetadataTypeDef
5389
5417
 
5390
5418
 
5391
- class AudioSelectorTypeDef(TypedDict):
5392
- Name: str
5393
- SelectorSettings: NotRequired[AudioSelectorSettingsUnionTypeDef]
5394
-
5395
-
5396
- class InputAttachmentOutputTypeDef(TypedDict):
5397
- AutomaticInputFailoverSettings: NotRequired[AutomaticInputFailoverSettingsOutputTypeDef]
5398
- InputAttachmentName: NotRequired[str]
5399
- InputId: NotRequired[str]
5400
- InputSettings: NotRequired[InputSettingsOutputTypeDef]
5401
- LogicalInterfaceNames: NotRequired[List[str]]
5419
+ CreateInputRequestTypeDef = TypedDict(
5420
+ "CreateInputRequestTypeDef",
5421
+ {
5422
+ "Destinations": NotRequired[Sequence[InputDestinationRequestTypeDef]],
5423
+ "InputDevices": NotRequired[Sequence[InputDeviceSettingsTypeDef]],
5424
+ "InputSecurityGroups": NotRequired[Sequence[str]],
5425
+ "MediaConnectFlows": NotRequired[Sequence[MediaConnectFlowRequestTypeDef]],
5426
+ "Name": NotRequired[str],
5427
+ "RequestId": NotRequired[str],
5428
+ "RoleArn": NotRequired[str],
5429
+ "Sources": NotRequired[Sequence[InputSourceRequestTypeDef]],
5430
+ "Tags": NotRequired[Mapping[str, str]],
5431
+ "Type": NotRequired[InputTypeType],
5432
+ "Vpc": NotRequired[InputVpcRequestTypeDef],
5433
+ "SrtSettings": NotRequired[SrtSettingsRequestTypeDef],
5434
+ "InputNetworkLocation": NotRequired[InputNetworkLocationType],
5435
+ "MulticastSettings": NotRequired[MulticastSettingsCreateRequestTypeDef],
5436
+ "Smpte2110ReceiverGroupSettings": NotRequired[Smpte2110ReceiverGroupSettingsUnionTypeDef],
5437
+ },
5438
+ )
5402
5439
 
5403
5440
 
5404
- CaptionSelectorUnionTypeDef = Union[CaptionSelectorTypeDef, CaptionSelectorOutputTypeDef]
5441
+ class UpdateInputRequestTypeDef(TypedDict):
5442
+ InputId: str
5443
+ Destinations: NotRequired[Sequence[InputDestinationRequestTypeDef]]
5444
+ InputDevices: NotRequired[Sequence[InputDeviceRequestTypeDef]]
5445
+ InputSecurityGroups: NotRequired[Sequence[str]]
5446
+ MediaConnectFlows: NotRequired[Sequence[MediaConnectFlowRequestTypeDef]]
5447
+ Name: NotRequired[str]
5448
+ RoleArn: NotRequired[str]
5449
+ Sources: NotRequired[Sequence[InputSourceRequestTypeDef]]
5450
+ SrtSettings: NotRequired[SrtSettingsRequestTypeDef]
5451
+ MulticastSettings: NotRequired[MulticastSettingsUpdateRequestTypeDef]
5452
+ Smpte2110ReceiverGroupSettings: NotRequired[Smpte2110ReceiverGroupSettingsUnionTypeDef]
5405
5453
 
5406
5454
 
5407
5455
  class ExtraTypeDef(TypedDict):
@@ -653,6 +653,7 @@ __all__ = (
653
653
  "InputPrepareScheduleActionSettingsTypeDef",
654
654
  "InputPrepareScheduleActionSettingsUnionTypeDef",
655
655
  "InputRequestDestinationRouteTypeDef",
656
+ "InputSdpLocationTypeDef",
656
657
  "InputSecurityGroupTypeDef",
657
658
  "InputSettingsOutputTypeDef",
658
659
  "InputSettingsTypeDef",
@@ -850,6 +851,13 @@ __all__ = (
850
851
  "Scte35TimeSignalScheduleActionSettingsTypeDef",
851
852
  "Scte35TimeSignalScheduleActionSettingsUnionTypeDef",
852
853
  "SignalMapSummaryTypeDef",
854
+ "Smpte2110ReceiverGroupOutputTypeDef",
855
+ "Smpte2110ReceiverGroupSdpSettingsOutputTypeDef",
856
+ "Smpte2110ReceiverGroupSdpSettingsTypeDef",
857
+ "Smpte2110ReceiverGroupSettingsOutputTypeDef",
858
+ "Smpte2110ReceiverGroupSettingsTypeDef",
859
+ "Smpte2110ReceiverGroupSettingsUnionTypeDef",
860
+ "Smpte2110ReceiverGroupTypeDef",
853
861
  "SrtCallerDecryptionRequestTypeDef",
854
862
  "SrtCallerDecryptionTypeDef",
855
863
  "SrtCallerSourceRequestTypeDef",
@@ -1796,6 +1804,10 @@ class InputDeviceUhdAudioChannelPairConfigTypeDef(TypedDict):
1796
1804
  Id: NotRequired[int]
1797
1805
  Profile: NotRequired[InputDeviceUhdAudioChannelPairProfileType]
1798
1806
 
1807
+ class InputSdpLocationTypeDef(TypedDict):
1808
+ MediaIndex: NotRequired[int]
1809
+ SdpUrl: NotRequired[str]
1810
+
1799
1811
  class IpPoolUpdateRequestTypeDef(TypedDict):
1800
1812
  Cidr: NotRequired[str]
1801
1813
 
@@ -3406,6 +3418,16 @@ class InputDeviceUhdSettingsTypeDef(TypedDict):
3406
3418
  MediaconnectSettings: NotRequired[InputDeviceMediaConnectSettingsTypeDef]
3407
3419
  AudioChannelPairs: NotRequired[List[InputDeviceUhdAudioChannelPairConfigTypeDef]]
3408
3420
 
3421
+ class Smpte2110ReceiverGroupSdpSettingsOutputTypeDef(TypedDict):
3422
+ AncillarySdps: NotRequired[List[InputSdpLocationTypeDef]]
3423
+ AudioSdps: NotRequired[List[InputSdpLocationTypeDef]]
3424
+ VideoSdp: NotRequired[InputSdpLocationTypeDef]
3425
+
3426
+ class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
3427
+ AncillarySdps: NotRequired[Sequence[InputSdpLocationTypeDef]]
3428
+ AudioSdps: NotRequired[Sequence[InputSdpLocationTypeDef]]
3429
+ VideoSdp: NotRequired[InputSdpLocationTypeDef]
3430
+
3409
3431
  class ListInputDeviceTransfersResponseTypeDef(TypedDict):
3410
3432
  InputDeviceTransfers: List[TransferringInputDeviceSummaryTypeDef]
3411
3433
  ResponseMetadata: ResponseMetadataTypeDef
@@ -4100,6 +4122,12 @@ UpdateInputDeviceResponseTypeDef = TypedDict(
4100
4122
  },
4101
4123
  )
4102
4124
 
4125
+ class Smpte2110ReceiverGroupOutputTypeDef(TypedDict):
4126
+ SdpSettings: NotRequired[Smpte2110ReceiverGroupSdpSettingsOutputTypeDef]
4127
+
4128
+ class Smpte2110ReceiverGroupTypeDef(TypedDict):
4129
+ SdpSettings: NotRequired[Smpte2110ReceiverGroupSdpSettingsTypeDef]
4130
+
4103
4131
  class HlsSettingsOutputTypeDef(TypedDict):
4104
4132
  AudioOnlyHlsSettings: NotRequired[AudioOnlyHlsSettingsTypeDef]
4105
4133
  Fmp4HlsSettings: NotRequired[Fmp4HlsSettingsTypeDef]
@@ -4526,6 +4554,12 @@ class ListInputDevicesResponseTypeDef(TypedDict):
4526
4554
  ResponseMetadata: ResponseMetadataTypeDef
4527
4555
  NextToken: NotRequired[str]
4528
4556
 
4557
+ class Smpte2110ReceiverGroupSettingsOutputTypeDef(TypedDict):
4558
+ Smpte2110ReceiverGroups: NotRequired[List[Smpte2110ReceiverGroupOutputTypeDef]]
4559
+
4560
+ class Smpte2110ReceiverGroupSettingsTypeDef(TypedDict):
4561
+ Smpte2110ReceiverGroups: NotRequired[Sequence[Smpte2110ReceiverGroupTypeDef]]
4562
+
4529
4563
  class HlsOutputSettingsOutputTypeDef(TypedDict):
4530
4564
  HlsSettings: HlsSettingsOutputTypeDef
4531
4565
  H265PackagingType: NotRequired[HlsH265PackagingTypeType]
@@ -4618,88 +4652,6 @@ class UpdateChannelClassRequestTypeDef(TypedDict):
4618
4652
  class Scte35DescriptorTypeDef(TypedDict):
4619
4653
  Scte35DescriptorSettings: Scte35DescriptorSettingsTypeDef
4620
4654
 
4621
- CreateInputRequestTypeDef = TypedDict(
4622
- "CreateInputRequestTypeDef",
4623
- {
4624
- "Destinations": NotRequired[Sequence[InputDestinationRequestTypeDef]],
4625
- "InputDevices": NotRequired[Sequence[InputDeviceSettingsTypeDef]],
4626
- "InputSecurityGroups": NotRequired[Sequence[str]],
4627
- "MediaConnectFlows": NotRequired[Sequence[MediaConnectFlowRequestTypeDef]],
4628
- "Name": NotRequired[str],
4629
- "RequestId": NotRequired[str],
4630
- "RoleArn": NotRequired[str],
4631
- "Sources": NotRequired[Sequence[InputSourceRequestTypeDef]],
4632
- "Tags": NotRequired[Mapping[str, str]],
4633
- "Type": NotRequired[InputTypeType],
4634
- "Vpc": NotRequired[InputVpcRequestTypeDef],
4635
- "SrtSettings": NotRequired[SrtSettingsRequestTypeDef],
4636
- "InputNetworkLocation": NotRequired[InputNetworkLocationType],
4637
- "MulticastSettings": NotRequired[MulticastSettingsCreateRequestTypeDef],
4638
- },
4639
- )
4640
-
4641
- class UpdateInputRequestTypeDef(TypedDict):
4642
- InputId: str
4643
- Destinations: NotRequired[Sequence[InputDestinationRequestTypeDef]]
4644
- InputDevices: NotRequired[Sequence[InputDeviceRequestTypeDef]]
4645
- InputSecurityGroups: NotRequired[Sequence[str]]
4646
- MediaConnectFlows: NotRequired[Sequence[MediaConnectFlowRequestTypeDef]]
4647
- Name: NotRequired[str]
4648
- RoleArn: NotRequired[str]
4649
- Sources: NotRequired[Sequence[InputSourceRequestTypeDef]]
4650
- SrtSettings: NotRequired[SrtSettingsRequestTypeDef]
4651
- MulticastSettings: NotRequired[MulticastSettingsUpdateRequestTypeDef]
4652
-
4653
- DescribeInputResponseTypeDef = TypedDict(
4654
- "DescribeInputResponseTypeDef",
4655
- {
4656
- "Arn": str,
4657
- "AttachedChannels": List[str],
4658
- "Destinations": List[InputDestinationTypeDef],
4659
- "Id": str,
4660
- "InputClass": InputClassType,
4661
- "InputDevices": List[InputDeviceSettingsTypeDef],
4662
- "InputPartnerIds": List[str],
4663
- "InputSourceType": InputSourceTypeType,
4664
- "MediaConnectFlows": List[MediaConnectFlowTypeDef],
4665
- "Name": str,
4666
- "RoleArn": str,
4667
- "SecurityGroups": List[str],
4668
- "Sources": List[InputSourceTypeDef],
4669
- "State": InputStateType,
4670
- "Tags": Dict[str, str],
4671
- "Type": InputTypeType,
4672
- "SrtSettings": SrtSettingsTypeDef,
4673
- "InputNetworkLocation": InputNetworkLocationType,
4674
- "MulticastSettings": MulticastSettingsTypeDef,
4675
- "ResponseMetadata": ResponseMetadataTypeDef,
4676
- },
4677
- )
4678
- InputTypeDef = TypedDict(
4679
- "InputTypeDef",
4680
- {
4681
- "Arn": NotRequired[str],
4682
- "AttachedChannels": NotRequired[List[str]],
4683
- "Destinations": NotRequired[List[InputDestinationTypeDef]],
4684
- "Id": NotRequired[str],
4685
- "InputClass": NotRequired[InputClassType],
4686
- "InputDevices": NotRequired[List[InputDeviceSettingsTypeDef]],
4687
- "InputPartnerIds": NotRequired[List[str]],
4688
- "InputSourceType": NotRequired[InputSourceTypeType],
4689
- "MediaConnectFlows": NotRequired[List[MediaConnectFlowTypeDef]],
4690
- "Name": NotRequired[str],
4691
- "RoleArn": NotRequired[str],
4692
- "SecurityGroups": NotRequired[List[str]],
4693
- "Sources": NotRequired[List[InputSourceTypeDef]],
4694
- "State": NotRequired[InputStateType],
4695
- "Tags": NotRequired[Dict[str, str]],
4696
- "Type": NotRequired[InputTypeType],
4697
- "SrtSettings": NotRequired[SrtSettingsTypeDef],
4698
- "InputNetworkLocation": NotRequired[InputNetworkLocationType],
4699
- "MulticastSettings": NotRequired[MulticastSettingsTypeDef],
4700
- },
4701
- )
4702
-
4703
4655
  class OutputGroupSettingsOutputTypeDef(TypedDict):
4704
4656
  ArchiveGroupSettings: NotRequired[ArchiveGroupSettingsTypeDef]
4705
4657
  FrameCaptureGroupSettings: NotRequired[FrameCaptureGroupSettingsTypeDef]
@@ -4768,6 +4720,61 @@ class VideoDescriptionTypeDef(TypedDict):
4768
4720
  Sharpness: NotRequired[int]
4769
4721
  Width: NotRequired[int]
4770
4722
 
4723
+ DescribeInputResponseTypeDef = TypedDict(
4724
+ "DescribeInputResponseTypeDef",
4725
+ {
4726
+ "Arn": str,
4727
+ "AttachedChannels": List[str],
4728
+ "Destinations": List[InputDestinationTypeDef],
4729
+ "Id": str,
4730
+ "InputClass": InputClassType,
4731
+ "InputDevices": List[InputDeviceSettingsTypeDef],
4732
+ "InputPartnerIds": List[str],
4733
+ "InputSourceType": InputSourceTypeType,
4734
+ "MediaConnectFlows": List[MediaConnectFlowTypeDef],
4735
+ "Name": str,
4736
+ "RoleArn": str,
4737
+ "SecurityGroups": List[str],
4738
+ "Sources": List[InputSourceTypeDef],
4739
+ "State": InputStateType,
4740
+ "Tags": Dict[str, str],
4741
+ "Type": InputTypeType,
4742
+ "SrtSettings": SrtSettingsTypeDef,
4743
+ "InputNetworkLocation": InputNetworkLocationType,
4744
+ "MulticastSettings": MulticastSettingsTypeDef,
4745
+ "Smpte2110ReceiverGroupSettings": Smpte2110ReceiverGroupSettingsOutputTypeDef,
4746
+ "ResponseMetadata": ResponseMetadataTypeDef,
4747
+ },
4748
+ )
4749
+ InputTypeDef = TypedDict(
4750
+ "InputTypeDef",
4751
+ {
4752
+ "Arn": NotRequired[str],
4753
+ "AttachedChannels": NotRequired[List[str]],
4754
+ "Destinations": NotRequired[List[InputDestinationTypeDef]],
4755
+ "Id": NotRequired[str],
4756
+ "InputClass": NotRequired[InputClassType],
4757
+ "InputDevices": NotRequired[List[InputDeviceSettingsTypeDef]],
4758
+ "InputPartnerIds": NotRequired[List[str]],
4759
+ "InputSourceType": NotRequired[InputSourceTypeType],
4760
+ "MediaConnectFlows": NotRequired[List[MediaConnectFlowTypeDef]],
4761
+ "Name": NotRequired[str],
4762
+ "RoleArn": NotRequired[str],
4763
+ "SecurityGroups": NotRequired[List[str]],
4764
+ "Sources": NotRequired[List[InputSourceTypeDef]],
4765
+ "State": NotRequired[InputStateType],
4766
+ "Tags": NotRequired[Dict[str, str]],
4767
+ "Type": NotRequired[InputTypeType],
4768
+ "SrtSettings": NotRequired[SrtSettingsTypeDef],
4769
+ "InputNetworkLocation": NotRequired[InputNetworkLocationType],
4770
+ "MulticastSettings": NotRequired[MulticastSettingsTypeDef],
4771
+ "Smpte2110ReceiverGroupSettings": NotRequired[Smpte2110ReceiverGroupSettingsOutputTypeDef],
4772
+ },
4773
+ )
4774
+ Smpte2110ReceiverGroupSettingsUnionTypeDef = Union[
4775
+ Smpte2110ReceiverGroupSettingsTypeDef, Smpte2110ReceiverGroupSettingsOutputTypeDef
4776
+ ]
4777
+
4771
4778
  class OutputSettingsOutputTypeDef(TypedDict):
4772
4779
  ArchiveOutputSettings: NotRequired[ArchiveOutputSettingsOutputTypeDef]
4773
4780
  FrameCaptureOutputSettings: NotRequired[FrameCaptureOutputSettingsTypeDef]
@@ -4806,6 +4813,19 @@ class Scte35TimeSignalScheduleActionSettingsOutputTypeDef(TypedDict):
4806
4813
  class Scte35TimeSignalScheduleActionSettingsTypeDef(TypedDict):
4807
4814
  Scte35Descriptors: Sequence[Scte35DescriptorTypeDef]
4808
4815
 
4816
+ class AudioSelectorTypeDef(TypedDict):
4817
+ Name: str
4818
+ SelectorSettings: NotRequired[AudioSelectorSettingsUnionTypeDef]
4819
+
4820
+ class InputAttachmentOutputTypeDef(TypedDict):
4821
+ AutomaticInputFailoverSettings: NotRequired[AutomaticInputFailoverSettingsOutputTypeDef]
4822
+ InputAttachmentName: NotRequired[str]
4823
+ InputId: NotRequired[str]
4824
+ InputSettings: NotRequired[InputSettingsOutputTypeDef]
4825
+ LogicalInterfaceNames: NotRequired[List[str]]
4826
+
4827
+ CaptionSelectorUnionTypeDef = Union[CaptionSelectorTypeDef, CaptionSelectorOutputTypeDef]
4828
+
4809
4829
  class CreateInputResponseTypeDef(TypedDict):
4810
4830
  Input: InputTypeDef
4811
4831
  ResponseMetadata: ResponseMetadataTypeDef
@@ -4823,18 +4843,39 @@ class UpdateInputResponseTypeDef(TypedDict):
4823
4843
  Input: InputTypeDef
4824
4844
  ResponseMetadata: ResponseMetadataTypeDef
4825
4845
 
4826
- class AudioSelectorTypeDef(TypedDict):
4827
- Name: str
4828
- SelectorSettings: NotRequired[AudioSelectorSettingsUnionTypeDef]
4829
-
4830
- class InputAttachmentOutputTypeDef(TypedDict):
4831
- AutomaticInputFailoverSettings: NotRequired[AutomaticInputFailoverSettingsOutputTypeDef]
4832
- InputAttachmentName: NotRequired[str]
4833
- InputId: NotRequired[str]
4834
- InputSettings: NotRequired[InputSettingsOutputTypeDef]
4835
- LogicalInterfaceNames: NotRequired[List[str]]
4846
+ CreateInputRequestTypeDef = TypedDict(
4847
+ "CreateInputRequestTypeDef",
4848
+ {
4849
+ "Destinations": NotRequired[Sequence[InputDestinationRequestTypeDef]],
4850
+ "InputDevices": NotRequired[Sequence[InputDeviceSettingsTypeDef]],
4851
+ "InputSecurityGroups": NotRequired[Sequence[str]],
4852
+ "MediaConnectFlows": NotRequired[Sequence[MediaConnectFlowRequestTypeDef]],
4853
+ "Name": NotRequired[str],
4854
+ "RequestId": NotRequired[str],
4855
+ "RoleArn": NotRequired[str],
4856
+ "Sources": NotRequired[Sequence[InputSourceRequestTypeDef]],
4857
+ "Tags": NotRequired[Mapping[str, str]],
4858
+ "Type": NotRequired[InputTypeType],
4859
+ "Vpc": NotRequired[InputVpcRequestTypeDef],
4860
+ "SrtSettings": NotRequired[SrtSettingsRequestTypeDef],
4861
+ "InputNetworkLocation": NotRequired[InputNetworkLocationType],
4862
+ "MulticastSettings": NotRequired[MulticastSettingsCreateRequestTypeDef],
4863
+ "Smpte2110ReceiverGroupSettings": NotRequired[Smpte2110ReceiverGroupSettingsUnionTypeDef],
4864
+ },
4865
+ )
4836
4866
 
4837
- CaptionSelectorUnionTypeDef = Union[CaptionSelectorTypeDef, CaptionSelectorOutputTypeDef]
4867
+ class UpdateInputRequestTypeDef(TypedDict):
4868
+ InputId: str
4869
+ Destinations: NotRequired[Sequence[InputDestinationRequestTypeDef]]
4870
+ InputDevices: NotRequired[Sequence[InputDeviceRequestTypeDef]]
4871
+ InputSecurityGroups: NotRequired[Sequence[str]]
4872
+ MediaConnectFlows: NotRequired[Sequence[MediaConnectFlowRequestTypeDef]]
4873
+ Name: NotRequired[str]
4874
+ RoleArn: NotRequired[str]
4875
+ Sources: NotRequired[Sequence[InputSourceRequestTypeDef]]
4876
+ SrtSettings: NotRequired[SrtSettingsRequestTypeDef]
4877
+ MulticastSettings: NotRequired[MulticastSettingsUpdateRequestTypeDef]
4878
+ Smpte2110ReceiverGroupSettings: NotRequired[Smpte2110ReceiverGroupSettingsUnionTypeDef]
4838
4879
 
4839
4880
  class ExtraTypeDef(TypedDict):
4840
4881
  OutputSettings: OutputSettingsOutputTypeDef
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.37.11"
7
+ __version__ = "1.37.26"
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: mypy-boto3-medialive
3
- Version: 1.37.11
4
- Summary: Type annotations for boto3 MediaLive 1.37.11 service generated with mypy-boto3-builder 8.10.0
3
+ Version: 1.37.26
4
+ Summary: Type annotations for boto3 MediaLive 1.37.26 service generated with mypy-boto3-builder 8.10.1
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -39,6 +39,7 @@ Dynamic: description-content-type
39
39
  Dynamic: home-page
40
40
  Dynamic: keywords
41
41
  Dynamic: license
42
+ Dynamic: license-file
42
43
  Dynamic: project-url
43
44
  Dynamic: requires-dist
44
45
  Dynamic: requires-python
@@ -55,7 +56,7 @@ Dynamic: summary
55
56
 
56
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
57
58
 
58
- Type annotations for [boto3 MediaLive 1.37.11](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 MediaLive 1.37.26](https://pypi.org/project/boto3/)
59
60
  compatible with [VSCode](https://code.visualstudio.com/),
60
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
61
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -64,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
64
65
  [pyright](https://github.com/microsoft/pyright) and other tools.
65
66
 
66
67
  Generated with
67
- [mypy-boto3-builder 8.10.0](https://github.com/youtype/mypy_boto3_builder).
68
+ [mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
68
69
 
69
70
  More information can be found on
70
71
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -118,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
118
119
  isolation.
119
120
 
120
121
  1. Run mypy-boto3-builder in your package root directory:
121
- `uvx --with 'boto3==1.37.11' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.37.26' mypy-boto3-builder`
122
123
  2. Select `boto3-stubs` AWS SDK.
123
124
  3. Add `MediaLive` service.
124
125
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ mypy_boto3_medialive/__init__.py,sha256=iew7GNRi1qckUDRS2Fi7P2NEfh--4ifM08-VxTvAk10,9052
2
+ mypy_boto3_medialive/__init__.pyi,sha256=GvKoVzaeZ_9t9mYQDaYjdYhMyD28z11qZ7tJEInTZTg,9051
3
+ mypy_boto3_medialive/__main__.py,sha256=X0AOuyg2IOh6qRrxPzfwPsqj9RpRuMEopcjpzc_yBBA,992
4
+ mypy_boto3_medialive/client.py,sha256=eRXLA9Xt5AgE-ydwrbJKGgoeJrrY0BACuacR0cGK8BU,93392
5
+ mypy_boto3_medialive/client.pyi,sha256=T6deFHz8v6JWA4L5zTpurgu0SATaIlKCZodtUvrZBLo,93389
6
+ mypy_boto3_medialive/literals.py,sha256=FC8zFJvWanixOWEJFYZWCb-6xooRGbA9aj2KYfYZXX0,51582
7
+ mypy_boto3_medialive/literals.pyi,sha256=8nIKDY_cehIrK0DIidxW9tzMyq3HjrvWGjtv30ptrGE,51580
8
+ mypy_boto3_medialive/paginator.py,sha256=PwU9Z8nvZ5_Qxe0B2VobrgJlMotoV2yydSym2_2lFAc,28232
9
+ mypy_boto3_medialive/paginator.pyi,sha256=SuZB1VJfBPTlRfMFsoPDT2VWfNhDg7lRR5JiUqQs45A,28174
10
+ mypy_boto3_medialive/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_medialive/type_defs.py,sha256=_9TfiehQIM0fkgkDk_tvBAODlCtd-tzFl90_8J_7NYA,198114
12
+ mypy_boto3_medialive/type_defs.pyi,sha256=Q0MKu357ckey26AVC0n517ve_JjooGVZcmWdn9ecJMM,197505
13
+ mypy_boto3_medialive/version.py,sha256=Ut0My4TW0rfoZepj658ZESmTN5Wy5gRBgrl-Loh_i1g,93
14
+ mypy_boto3_medialive/waiter.py,sha256=n9l-8UtzIbpEpz4lAC2o6v5Avj2GOF8fun4k86xnia8,24234
15
+ mypy_boto3_medialive/waiter.pyi,sha256=PzQ13dgUdecnzm957PNlH2dWfrjWU91H3-alvGWgcsc,24189
16
+ mypy_boto3_medialive-1.37.26.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_medialive-1.37.26.dist-info/METADATA,sha256=1_Y3Q49aMCcwUqacom-QcVp9U7vPCDnf9xsvf9SqOHo,20948
18
+ mypy_boto3_medialive-1.37.26.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
19
+ mypy_boto3_medialive-1.37.26.dist-info/top_level.txt,sha256=VjnOXkRNs_BRQa4NLXgtBUEDSVwJS4L6e9J0r8yfovA,21
20
+ mypy_boto3_medialive-1.37.26.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,20 +0,0 @@
1
- mypy_boto3_medialive/__init__.py,sha256=iew7GNRi1qckUDRS2Fi7P2NEfh--4ifM08-VxTvAk10,9052
2
- mypy_boto3_medialive/__init__.pyi,sha256=GvKoVzaeZ_9t9mYQDaYjdYhMyD28z11qZ7tJEInTZTg,9051
3
- mypy_boto3_medialive/__main__.py,sha256=nZKuIUKvkuCxk-t5Rn7gFj4CfM8ddDSFeKBrOLTmbAU,992
4
- mypy_boto3_medialive/client.py,sha256=eRXLA9Xt5AgE-ydwrbJKGgoeJrrY0BACuacR0cGK8BU,93392
5
- mypy_boto3_medialive/client.pyi,sha256=T6deFHz8v6JWA4L5zTpurgu0SATaIlKCZodtUvrZBLo,93389
6
- mypy_boto3_medialive/literals.py,sha256=Pz0HPEBMNiaNfYn_vVBRkRxN6DyITDXmJC_ZTSuOgZQ,51549
7
- mypy_boto3_medialive/literals.pyi,sha256=P2SiwKHNU8u6IP80QRKQkhpnR9iJ3EFbYILLHobLqz0,51547
8
- mypy_boto3_medialive/paginator.py,sha256=PwU9Z8nvZ5_Qxe0B2VobrgJlMotoV2yydSym2_2lFAc,28232
9
- mypy_boto3_medialive/paginator.pyi,sha256=SuZB1VJfBPTlRfMFsoPDT2VWfNhDg7lRR5JiUqQs45A,28174
10
- mypy_boto3_medialive/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_medialive/type_defs.py,sha256=TSDW5bkKSH-QQl8Z6nXa3hSs0ErvuqZ8xdEBG0y8LOo,196110
12
- mypy_boto3_medialive/type_defs.pyi,sha256=_s86N6rVxogBDL_QDRqq6jDrGo93fd5eCJ9GXUB0kls,195508
13
- mypy_boto3_medialive/version.py,sha256=XzDvi1GFC75zI2bQtp6_KPFv9-OzICJxY3gVoC9B_dQ,93
14
- mypy_boto3_medialive/waiter.py,sha256=n9l-8UtzIbpEpz4lAC2o6v5Avj2GOF8fun4k86xnia8,24234
15
- mypy_boto3_medialive/waiter.pyi,sha256=PzQ13dgUdecnzm957PNlH2dWfrjWU91H3-alvGWgcsc,24189
16
- mypy_boto3_medialive-1.37.11.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_medialive-1.37.11.dist-info/METADATA,sha256=1Zg6Wx5Q-z7US37Dzn0H2JIPARIL5EU4zfqvkqA8x2g,20926
18
- mypy_boto3_medialive-1.37.11.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
19
- mypy_boto3_medialive-1.37.11.dist-info/top_level.txt,sha256=VjnOXkRNs_BRQa4NLXgtBUEDSVwJS4L6e9J0r8yfovA,21
20
- mypy_boto3_medialive-1.37.11.dist-info/RECORD,,