types-boto3-medialive 1.40.16__py3-none-any.whl → 1.40.35__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 +9 -13
- types_boto3_medialive/literals.pyi +9 -13
- types_boto3_medialive/type_defs.py +53 -7
- types_boto3_medialive/type_defs.pyi +47 -6
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.dist-info}/METADATA +4 -4
- {types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.dist-info}/RECORD +11 -11
- {types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.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.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 MediaLive 1.40.35\n"
|
|
16
|
+
"Version: 1.40.35\n"
|
|
17
17
|
"Builder version: 8.11.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.40.
|
|
29
|
+
sys.stdout.write("1.40.35\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -170,6 +170,7 @@ __all__ = (
|
|
|
170
170
|
"H265ColorMetadataType",
|
|
171
171
|
"H265DeblockingType",
|
|
172
172
|
"H265FlickerAqType",
|
|
173
|
+
"H265GopBReferenceType",
|
|
173
174
|
"H265GopSizeUnitsType",
|
|
174
175
|
"H265LevelType",
|
|
175
176
|
"H265LookAheadRateControlType",
|
|
@@ -179,15 +180,18 @@ __all__ = (
|
|
|
179
180
|
"H265RateControlModeType",
|
|
180
181
|
"H265ScanTypeType",
|
|
181
182
|
"H265SceneChangeDetectType",
|
|
183
|
+
"H265SubGopLengthType",
|
|
182
184
|
"H265TierType",
|
|
183
185
|
"H265TilePaddingType",
|
|
184
186
|
"H265TimecodeInsertionBehaviorType",
|
|
185
187
|
"H265TreeblockSizeType",
|
|
186
188
|
"HlsAdMarkersType",
|
|
187
189
|
"HlsAkamaiHttpTransferModeType",
|
|
190
|
+
"HlsAutoSelectType",
|
|
188
191
|
"HlsCaptionLanguageSettingType",
|
|
189
192
|
"HlsClientCacheType",
|
|
190
193
|
"HlsCodecSpecificationType",
|
|
194
|
+
"HlsDefaultType",
|
|
191
195
|
"HlsDirectoryStructureType",
|
|
192
196
|
"HlsDiscontinuityTagsType",
|
|
193
197
|
"HlsEncryptionTypeType",
|
|
@@ -718,6 +722,7 @@ H265AlternativeTransferFunctionType = Literal["INSERT", "OMIT"]
|
|
|
718
722
|
H265ColorMetadataType = Literal["IGNORE", "INSERT"]
|
|
719
723
|
H265DeblockingType = Literal["DISABLED", "ENABLED"]
|
|
720
724
|
H265FlickerAqType = Literal["DISABLED", "ENABLED"]
|
|
725
|
+
H265GopBReferenceType = Literal["DISABLED", "ENABLED"]
|
|
721
726
|
H265GopSizeUnitsType = Literal["FRAMES", "SECONDS"]
|
|
722
727
|
H265LevelType = Literal[
|
|
723
728
|
"H265_LEVEL_1",
|
|
@@ -742,15 +747,18 @@ H265ProfileType = Literal["MAIN", "MAIN_10BIT"]
|
|
|
742
747
|
H265RateControlModeType = Literal["CBR", "MULTIPLEX", "QVBR"]
|
|
743
748
|
H265ScanTypeType = Literal["INTERLACED", "PROGRESSIVE"]
|
|
744
749
|
H265SceneChangeDetectType = Literal["DISABLED", "ENABLED"]
|
|
750
|
+
H265SubGopLengthType = Literal["DYNAMIC", "FIXED"]
|
|
745
751
|
H265TierType = Literal["HIGH", "MAIN"]
|
|
746
752
|
H265TilePaddingType = Literal["NONE", "PADDED"]
|
|
747
753
|
H265TimecodeInsertionBehaviorType = Literal["DISABLED", "PIC_TIMING_SEI"]
|
|
748
754
|
H265TreeblockSizeType = Literal["AUTO", "TREE_SIZE_32X32"]
|
|
749
755
|
HlsAdMarkersType = Literal["ADOBE", "ELEMENTAL", "ELEMENTAL_SCTE35"]
|
|
750
756
|
HlsAkamaiHttpTransferModeType = Literal["CHUNKED", "NON_CHUNKED"]
|
|
757
|
+
HlsAutoSelectType = Literal["NO", "OMIT", "YES"]
|
|
751
758
|
HlsCaptionLanguageSettingType = Literal["INSERT", "NONE", "OMIT"]
|
|
752
759
|
HlsClientCacheType = Literal["DISABLED", "ENABLED"]
|
|
753
760
|
HlsCodecSpecificationType = Literal["RFC_4281", "RFC_6381"]
|
|
761
|
+
HlsDefaultType = Literal["NO", "OMIT", "YES"]
|
|
754
762
|
HlsDirectoryStructureType = Literal["SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"]
|
|
755
763
|
HlsDiscontinuityTagsType = Literal["INSERT", "NEVER_INSERT"]
|
|
756
764
|
HlsEncryptionTypeType = Literal["AES128", "SAMPLE_AES"]
|
|
@@ -1379,8 +1387,6 @@ ServiceName = Literal[
|
|
|
1379
1387
|
"omics",
|
|
1380
1388
|
"opensearch",
|
|
1381
1389
|
"opensearchserverless",
|
|
1382
|
-
"opsworks",
|
|
1383
|
-
"opsworkscm",
|
|
1384
1390
|
"organizations",
|
|
1385
1391
|
"osis",
|
|
1386
1392
|
"outposts",
|
|
@@ -1462,7 +1468,6 @@ ServiceName = Literal[
|
|
|
1462
1468
|
"shield",
|
|
1463
1469
|
"signer",
|
|
1464
1470
|
"simspaceweaver",
|
|
1465
|
-
"sms",
|
|
1466
1471
|
"snow-device-management",
|
|
1467
1472
|
"snowball",
|
|
1468
1473
|
"sns",
|
|
@@ -1513,16 +1518,7 @@ ServiceName = Literal[
|
|
|
1513
1518
|
"xray",
|
|
1514
1519
|
]
|
|
1515
1520
|
ResourceServiceName = Literal[
|
|
1516
|
-
"cloudformation",
|
|
1517
|
-
"cloudwatch",
|
|
1518
|
-
"dynamodb",
|
|
1519
|
-
"ec2",
|
|
1520
|
-
"glacier",
|
|
1521
|
-
"iam",
|
|
1522
|
-
"opsworks",
|
|
1523
|
-
"s3",
|
|
1524
|
-
"sns",
|
|
1525
|
-
"sqs",
|
|
1521
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
1526
1522
|
]
|
|
1527
1523
|
PaginatorName = Literal[
|
|
1528
1524
|
"describe_schedule",
|
|
@@ -169,6 +169,7 @@ __all__ = (
|
|
|
169
169
|
"H265ColorMetadataType",
|
|
170
170
|
"H265DeblockingType",
|
|
171
171
|
"H265FlickerAqType",
|
|
172
|
+
"H265GopBReferenceType",
|
|
172
173
|
"H265GopSizeUnitsType",
|
|
173
174
|
"H265LevelType",
|
|
174
175
|
"H265LookAheadRateControlType",
|
|
@@ -178,15 +179,18 @@ __all__ = (
|
|
|
178
179
|
"H265RateControlModeType",
|
|
179
180
|
"H265ScanTypeType",
|
|
180
181
|
"H265SceneChangeDetectType",
|
|
182
|
+
"H265SubGopLengthType",
|
|
181
183
|
"H265TierType",
|
|
182
184
|
"H265TilePaddingType",
|
|
183
185
|
"H265TimecodeInsertionBehaviorType",
|
|
184
186
|
"H265TreeblockSizeType",
|
|
185
187
|
"HlsAdMarkersType",
|
|
186
188
|
"HlsAkamaiHttpTransferModeType",
|
|
189
|
+
"HlsAutoSelectType",
|
|
187
190
|
"HlsCaptionLanguageSettingType",
|
|
188
191
|
"HlsClientCacheType",
|
|
189
192
|
"HlsCodecSpecificationType",
|
|
193
|
+
"HlsDefaultType",
|
|
190
194
|
"HlsDirectoryStructureType",
|
|
191
195
|
"HlsDiscontinuityTagsType",
|
|
192
196
|
"HlsEncryptionTypeType",
|
|
@@ -716,6 +720,7 @@ H265AlternativeTransferFunctionType = Literal["INSERT", "OMIT"]
|
|
|
716
720
|
H265ColorMetadataType = Literal["IGNORE", "INSERT"]
|
|
717
721
|
H265DeblockingType = Literal["DISABLED", "ENABLED"]
|
|
718
722
|
H265FlickerAqType = Literal["DISABLED", "ENABLED"]
|
|
723
|
+
H265GopBReferenceType = Literal["DISABLED", "ENABLED"]
|
|
719
724
|
H265GopSizeUnitsType = Literal["FRAMES", "SECONDS"]
|
|
720
725
|
H265LevelType = Literal[
|
|
721
726
|
"H265_LEVEL_1",
|
|
@@ -740,15 +745,18 @@ H265ProfileType = Literal["MAIN", "MAIN_10BIT"]
|
|
|
740
745
|
H265RateControlModeType = Literal["CBR", "MULTIPLEX", "QVBR"]
|
|
741
746
|
H265ScanTypeType = Literal["INTERLACED", "PROGRESSIVE"]
|
|
742
747
|
H265SceneChangeDetectType = Literal["DISABLED", "ENABLED"]
|
|
748
|
+
H265SubGopLengthType = Literal["DYNAMIC", "FIXED"]
|
|
743
749
|
H265TierType = Literal["HIGH", "MAIN"]
|
|
744
750
|
H265TilePaddingType = Literal["NONE", "PADDED"]
|
|
745
751
|
H265TimecodeInsertionBehaviorType = Literal["DISABLED", "PIC_TIMING_SEI"]
|
|
746
752
|
H265TreeblockSizeType = Literal["AUTO", "TREE_SIZE_32X32"]
|
|
747
753
|
HlsAdMarkersType = Literal["ADOBE", "ELEMENTAL", "ELEMENTAL_SCTE35"]
|
|
748
754
|
HlsAkamaiHttpTransferModeType = Literal["CHUNKED", "NON_CHUNKED"]
|
|
755
|
+
HlsAutoSelectType = Literal["NO", "OMIT", "YES"]
|
|
749
756
|
HlsCaptionLanguageSettingType = Literal["INSERT", "NONE", "OMIT"]
|
|
750
757
|
HlsClientCacheType = Literal["DISABLED", "ENABLED"]
|
|
751
758
|
HlsCodecSpecificationType = Literal["RFC_4281", "RFC_6381"]
|
|
759
|
+
HlsDefaultType = Literal["NO", "OMIT", "YES"]
|
|
752
760
|
HlsDirectoryStructureType = Literal["SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"]
|
|
753
761
|
HlsDiscontinuityTagsType = Literal["INSERT", "NEVER_INSERT"]
|
|
754
762
|
HlsEncryptionTypeType = Literal["AES128", "SAMPLE_AES"]
|
|
@@ -1377,8 +1385,6 @@ ServiceName = Literal[
|
|
|
1377
1385
|
"omics",
|
|
1378
1386
|
"opensearch",
|
|
1379
1387
|
"opensearchserverless",
|
|
1380
|
-
"opsworks",
|
|
1381
|
-
"opsworkscm",
|
|
1382
1388
|
"organizations",
|
|
1383
1389
|
"osis",
|
|
1384
1390
|
"outposts",
|
|
@@ -1460,7 +1466,6 @@ ServiceName = Literal[
|
|
|
1460
1466
|
"shield",
|
|
1461
1467
|
"signer",
|
|
1462
1468
|
"simspaceweaver",
|
|
1463
|
-
"sms",
|
|
1464
1469
|
"snow-device-management",
|
|
1465
1470
|
"snowball",
|
|
1466
1471
|
"sns",
|
|
@@ -1511,16 +1516,7 @@ ServiceName = Literal[
|
|
|
1511
1516
|
"xray",
|
|
1512
1517
|
]
|
|
1513
1518
|
ResourceServiceName = Literal[
|
|
1514
|
-
"cloudformation",
|
|
1515
|
-
"cloudwatch",
|
|
1516
|
-
"dynamodb",
|
|
1517
|
-
"ec2",
|
|
1518
|
-
"glacier",
|
|
1519
|
-
"iam",
|
|
1520
|
-
"opsworks",
|
|
1521
|
-
"s3",
|
|
1522
|
-
"sns",
|
|
1523
|
-
"sqs",
|
|
1519
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
1524
1520
|
]
|
|
1525
1521
|
PaginatorName = Literal[
|
|
1526
1522
|
"describe_schedule",
|
|
@@ -156,6 +156,7 @@ from .literals import (
|
|
|
156
156
|
H265ColorMetadataType,
|
|
157
157
|
H265DeblockingType,
|
|
158
158
|
H265FlickerAqType,
|
|
159
|
+
H265GopBReferenceType,
|
|
159
160
|
H265GopSizeUnitsType,
|
|
160
161
|
H265LevelType,
|
|
161
162
|
H265LookAheadRateControlType,
|
|
@@ -165,15 +166,18 @@ from .literals import (
|
|
|
165
166
|
H265RateControlModeType,
|
|
166
167
|
H265ScanTypeType,
|
|
167
168
|
H265SceneChangeDetectType,
|
|
169
|
+
H265SubGopLengthType,
|
|
168
170
|
H265TierType,
|
|
169
171
|
H265TilePaddingType,
|
|
170
172
|
H265TimecodeInsertionBehaviorType,
|
|
171
173
|
H265TreeblockSizeType,
|
|
172
174
|
HlsAdMarkersType,
|
|
173
175
|
HlsAkamaiHttpTransferModeType,
|
|
176
|
+
HlsAutoSelectType,
|
|
174
177
|
HlsCaptionLanguageSettingType,
|
|
175
178
|
HlsClientCacheType,
|
|
176
179
|
HlsCodecSpecificationType,
|
|
180
|
+
HlsDefaultType,
|
|
177
181
|
HlsDirectoryStructureType,
|
|
178
182
|
HlsDiscontinuityTagsType,
|
|
179
183
|
HlsEncryptionTypeType,
|
|
@@ -760,8 +764,13 @@ __all__ = (
|
|
|
760
764
|
"MaintenanceUpdateSettingsTypeDef",
|
|
761
765
|
"MediaConnectFlowRequestTypeDef",
|
|
762
766
|
"MediaConnectFlowTypeDef",
|
|
767
|
+
"MediaPackageGroupSettingsOutputTypeDef",
|
|
763
768
|
"MediaPackageGroupSettingsTypeDef",
|
|
764
769
|
"MediaPackageOutputDestinationSettingsTypeDef",
|
|
770
|
+
"MediaPackageOutputSettingsTypeDef",
|
|
771
|
+
"MediaPackageV2DestinationSettingsTypeDef",
|
|
772
|
+
"MediaPackageV2GroupSettingsOutputTypeDef",
|
|
773
|
+
"MediaPackageV2GroupSettingsTypeDef",
|
|
765
774
|
"MediaResourceNeighborTypeDef",
|
|
766
775
|
"MediaResourceTypeDef",
|
|
767
776
|
"MonitorDeploymentTypeDef",
|
|
@@ -2260,6 +2269,13 @@ class MediaPackageOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2260
2269
|
ChannelName: NotRequired[str]
|
|
2261
2270
|
|
|
2262
2271
|
|
|
2272
|
+
class MediaPackageV2DestinationSettingsTypeDef(TypedDict):
|
|
2273
|
+
AudioGroupId: NotRequired[str]
|
|
2274
|
+
AudioRenditionSets: NotRequired[str]
|
|
2275
|
+
HlsAutoSelect: NotRequired[HlsAutoSelectType]
|
|
2276
|
+
HlsDefault: NotRequired[HlsDefaultType]
|
|
2277
|
+
|
|
2278
|
+
|
|
2263
2279
|
class MediaResourceNeighborTypeDef(TypedDict):
|
|
2264
2280
|
Arn: str
|
|
2265
2281
|
Name: NotRequired[str]
|
|
@@ -2634,10 +2650,6 @@ class AdditionalDestinationsTypeDef(TypedDict):
|
|
|
2634
2650
|
Destination: OutputLocationRefTypeDef
|
|
2635
2651
|
|
|
2636
2652
|
|
|
2637
|
-
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
2638
|
-
Destination: OutputLocationRefTypeDef
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
2653
|
class MsSmoothGroupSettingsTypeDef(TypedDict):
|
|
2642
2654
|
Destination: OutputLocationRefTypeDef
|
|
2643
2655
|
AcquisitionPointId: NotRequired[str]
|
|
@@ -3097,6 +3109,14 @@ class UpdateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3097
3109
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3098
3110
|
|
|
3099
3111
|
|
|
3112
|
+
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
3113
|
+
CaptionLanguageMappings: NotRequired[List[CaptionLanguageMappingTypeDef]]
|
|
3114
|
+
|
|
3115
|
+
|
|
3116
|
+
class MediaPackageV2GroupSettingsTypeDef(TypedDict):
|
|
3117
|
+
CaptionLanguageMappings: NotRequired[Sequence[CaptionLanguageMappingTypeDef]]
|
|
3118
|
+
|
|
3119
|
+
|
|
3100
3120
|
class TeletextSourceSettingsTypeDef(TypedDict):
|
|
3101
3121
|
OutputRectangle: NotRequired[CaptionRectangleTypeDef]
|
|
3102
3122
|
PageNumber: NotRequired[str]
|
|
@@ -3993,6 +4013,10 @@ class StandardHlsSettingsTypeDef(TypedDict):
|
|
|
3993
4013
|
AudioRenditionSets: NotRequired[str]
|
|
3994
4014
|
|
|
3995
4015
|
|
|
4016
|
+
class MediaPackageOutputSettingsTypeDef(TypedDict):
|
|
4017
|
+
MediaPackageV2DestinationSettings: NotRequired[MediaPackageV2DestinationSettingsTypeDef]
|
|
4018
|
+
|
|
4019
|
+
|
|
3996
4020
|
class MediaResourceTypeDef(TypedDict):
|
|
3997
4021
|
Destinations: NotRequired[List[MediaResourceNeighborTypeDef]]
|
|
3998
4022
|
Name: NotRequired[str]
|
|
@@ -4282,6 +4306,7 @@ class Av1SettingsOutputTypeDef(TypedDict):
|
|
|
4282
4306
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
4283
4307
|
Bitrate: NotRequired[int]
|
|
4284
4308
|
RateControlMode: NotRequired[Av1RateControlModeType]
|
|
4309
|
+
MinBitrate: NotRequired[int]
|
|
4285
4310
|
|
|
4286
4311
|
|
|
4287
4312
|
class Av1SettingsTypeDef(TypedDict):
|
|
@@ -4304,6 +4329,7 @@ class Av1SettingsTypeDef(TypedDict):
|
|
|
4304
4329
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
4305
4330
|
Bitrate: NotRequired[int]
|
|
4306
4331
|
RateControlMode: NotRequired[Av1RateControlModeType]
|
|
4332
|
+
MinBitrate: NotRequired[int]
|
|
4307
4333
|
|
|
4308
4334
|
|
|
4309
4335
|
class AvailConfigurationTypeDef(TypedDict):
|
|
@@ -4311,6 +4337,16 @@ class AvailConfigurationTypeDef(TypedDict):
|
|
|
4311
4337
|
Scte35SegmentationScope: NotRequired[Scte35SegmentationScopeType]
|
|
4312
4338
|
|
|
4313
4339
|
|
|
4340
|
+
class MediaPackageGroupSettingsOutputTypeDef(TypedDict):
|
|
4341
|
+
Destination: OutputLocationRefTypeDef
|
|
4342
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsOutputTypeDef]
|
|
4343
|
+
|
|
4344
|
+
|
|
4345
|
+
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
4346
|
+
Destination: OutputLocationRefTypeDef
|
|
4347
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsTypeDef]
|
|
4348
|
+
|
|
4349
|
+
|
|
4314
4350
|
class CaptionSelectorSettingsOutputTypeDef(TypedDict):
|
|
4315
4351
|
AncillarySourceSettings: NotRequired[AncillarySourceSettingsTypeDef]
|
|
4316
4352
|
AribSourceSettings: NotRequired[Dict[str, Any]]
|
|
@@ -4546,6 +4582,7 @@ class H264SettingsOutputTypeDef(TypedDict):
|
|
|
4546
4582
|
TimecodeInsertion: NotRequired[H264TimecodeInsertionBehaviorType]
|
|
4547
4583
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
4548
4584
|
MinQp: NotRequired[int]
|
|
4585
|
+
MinBitrate: NotRequired[int]
|
|
4549
4586
|
|
|
4550
4587
|
|
|
4551
4588
|
class H264SettingsTypeDef(TypedDict):
|
|
@@ -4592,6 +4629,7 @@ class H264SettingsTypeDef(TypedDict):
|
|
|
4592
4629
|
TimecodeInsertion: NotRequired[H264TimecodeInsertionBehaviorType]
|
|
4593
4630
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
4594
4631
|
MinQp: NotRequired[int]
|
|
4632
|
+
MinBitrate: NotRequired[int]
|
|
4595
4633
|
|
|
4596
4634
|
|
|
4597
4635
|
class H265SettingsOutputTypeDef(TypedDict):
|
|
@@ -4633,6 +4671,10 @@ class H265SettingsOutputTypeDef(TypedDict):
|
|
|
4633
4671
|
TreeblockSize: NotRequired[H265TreeblockSizeType]
|
|
4634
4672
|
MinQp: NotRequired[int]
|
|
4635
4673
|
Deblocking: NotRequired[H265DeblockingType]
|
|
4674
|
+
GopBReference: NotRequired[H265GopBReferenceType]
|
|
4675
|
+
GopNumBFrames: NotRequired[int]
|
|
4676
|
+
MinBitrate: NotRequired[int]
|
|
4677
|
+
SubgopLength: NotRequired[H265SubGopLengthType]
|
|
4636
4678
|
|
|
4637
4679
|
|
|
4638
4680
|
class H265SettingsTypeDef(TypedDict):
|
|
@@ -4674,6 +4716,10 @@ class H265SettingsTypeDef(TypedDict):
|
|
|
4674
4716
|
TreeblockSize: NotRequired[H265TreeblockSizeType]
|
|
4675
4717
|
MinQp: NotRequired[int]
|
|
4676
4718
|
Deblocking: NotRequired[H265DeblockingType]
|
|
4719
|
+
GopBReference: NotRequired[H265GopBReferenceType]
|
|
4720
|
+
GopNumBFrames: NotRequired[int]
|
|
4721
|
+
MinBitrate: NotRequired[int]
|
|
4722
|
+
SubgopLength: NotRequired[H265SubGopLengthType]
|
|
4677
4723
|
|
|
4678
4724
|
|
|
4679
4725
|
class Mpeg2SettingsTypeDef(TypedDict):
|
|
@@ -5388,7 +5434,7 @@ class OutputGroupSettingsOutputTypeDef(TypedDict):
|
|
|
5388
5434
|
ArchiveGroupSettings: NotRequired[ArchiveGroupSettingsTypeDef]
|
|
5389
5435
|
FrameCaptureGroupSettings: NotRequired[FrameCaptureGroupSettingsTypeDef]
|
|
5390
5436
|
HlsGroupSettings: NotRequired[HlsGroupSettingsOutputTypeDef]
|
|
5391
|
-
MediaPackageGroupSettings: NotRequired[
|
|
5437
|
+
MediaPackageGroupSettings: NotRequired[MediaPackageGroupSettingsOutputTypeDef]
|
|
5392
5438
|
MsSmoothGroupSettings: NotRequired[MsSmoothGroupSettingsTypeDef]
|
|
5393
5439
|
MultiplexGroupSettings: NotRequired[Dict[str, Any]]
|
|
5394
5440
|
RtmpGroupSettings: NotRequired[RtmpGroupSettingsOutputTypeDef]
|
|
@@ -5522,7 +5568,7 @@ class OutputSettingsOutputTypeDef(TypedDict):
|
|
|
5522
5568
|
ArchiveOutputSettings: NotRequired[ArchiveOutputSettingsOutputTypeDef]
|
|
5523
5569
|
FrameCaptureOutputSettings: NotRequired[FrameCaptureOutputSettingsTypeDef]
|
|
5524
5570
|
HlsOutputSettings: NotRequired[HlsOutputSettingsOutputTypeDef]
|
|
5525
|
-
MediaPackageOutputSettings: NotRequired[
|
|
5571
|
+
MediaPackageOutputSettings: NotRequired[MediaPackageOutputSettingsTypeDef]
|
|
5526
5572
|
MsSmoothOutputSettings: NotRequired[MsSmoothOutputSettingsTypeDef]
|
|
5527
5573
|
MultiplexOutputSettings: NotRequired[MultiplexOutputSettingsTypeDef]
|
|
5528
5574
|
RtmpOutputSettings: NotRequired[RtmpOutputSettingsTypeDef]
|
|
@@ -5535,7 +5581,7 @@ class OutputSettingsTypeDef(TypedDict):
|
|
|
5535
5581
|
ArchiveOutputSettings: NotRequired[ArchiveOutputSettingsTypeDef]
|
|
5536
5582
|
FrameCaptureOutputSettings: NotRequired[FrameCaptureOutputSettingsTypeDef]
|
|
5537
5583
|
HlsOutputSettings: NotRequired[HlsOutputSettingsTypeDef]
|
|
5538
|
-
MediaPackageOutputSettings: NotRequired[
|
|
5584
|
+
MediaPackageOutputSettings: NotRequired[MediaPackageOutputSettingsTypeDef]
|
|
5539
5585
|
MsSmoothOutputSettings: NotRequired[MsSmoothOutputSettingsTypeDef]
|
|
5540
5586
|
MultiplexOutputSettings: NotRequired[MultiplexOutputSettingsTypeDef]
|
|
5541
5587
|
RtmpOutputSettings: NotRequired[RtmpOutputSettingsTypeDef]
|
|
@@ -156,6 +156,7 @@ from .literals import (
|
|
|
156
156
|
H265ColorMetadataType,
|
|
157
157
|
H265DeblockingType,
|
|
158
158
|
H265FlickerAqType,
|
|
159
|
+
H265GopBReferenceType,
|
|
159
160
|
H265GopSizeUnitsType,
|
|
160
161
|
H265LevelType,
|
|
161
162
|
H265LookAheadRateControlType,
|
|
@@ -165,15 +166,18 @@ from .literals import (
|
|
|
165
166
|
H265RateControlModeType,
|
|
166
167
|
H265ScanTypeType,
|
|
167
168
|
H265SceneChangeDetectType,
|
|
169
|
+
H265SubGopLengthType,
|
|
168
170
|
H265TierType,
|
|
169
171
|
H265TilePaddingType,
|
|
170
172
|
H265TimecodeInsertionBehaviorType,
|
|
171
173
|
H265TreeblockSizeType,
|
|
172
174
|
HlsAdMarkersType,
|
|
173
175
|
HlsAkamaiHttpTransferModeType,
|
|
176
|
+
HlsAutoSelectType,
|
|
174
177
|
HlsCaptionLanguageSettingType,
|
|
175
178
|
HlsClientCacheType,
|
|
176
179
|
HlsCodecSpecificationType,
|
|
180
|
+
HlsDefaultType,
|
|
177
181
|
HlsDirectoryStructureType,
|
|
178
182
|
HlsDiscontinuityTagsType,
|
|
179
183
|
HlsEncryptionTypeType,
|
|
@@ -759,8 +763,13 @@ __all__ = (
|
|
|
759
763
|
"MaintenanceUpdateSettingsTypeDef",
|
|
760
764
|
"MediaConnectFlowRequestTypeDef",
|
|
761
765
|
"MediaConnectFlowTypeDef",
|
|
766
|
+
"MediaPackageGroupSettingsOutputTypeDef",
|
|
762
767
|
"MediaPackageGroupSettingsTypeDef",
|
|
763
768
|
"MediaPackageOutputDestinationSettingsTypeDef",
|
|
769
|
+
"MediaPackageOutputSettingsTypeDef",
|
|
770
|
+
"MediaPackageV2DestinationSettingsTypeDef",
|
|
771
|
+
"MediaPackageV2GroupSettingsOutputTypeDef",
|
|
772
|
+
"MediaPackageV2GroupSettingsTypeDef",
|
|
764
773
|
"MediaResourceNeighborTypeDef",
|
|
765
774
|
"MediaResourceTypeDef",
|
|
766
775
|
"MonitorDeploymentTypeDef",
|
|
@@ -2051,6 +2060,12 @@ class MediaPackageOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2051
2060
|
ChannelGroup: NotRequired[str]
|
|
2052
2061
|
ChannelName: NotRequired[str]
|
|
2053
2062
|
|
|
2063
|
+
class MediaPackageV2DestinationSettingsTypeDef(TypedDict):
|
|
2064
|
+
AudioGroupId: NotRequired[str]
|
|
2065
|
+
AudioRenditionSets: NotRequired[str]
|
|
2066
|
+
HlsAutoSelect: NotRequired[HlsAutoSelectType]
|
|
2067
|
+
HlsDefault: NotRequired[HlsDefaultType]
|
|
2068
|
+
|
|
2054
2069
|
class MediaResourceNeighborTypeDef(TypedDict):
|
|
2055
2070
|
Arn: str
|
|
2056
2071
|
Name: NotRequired[str]
|
|
@@ -2363,9 +2378,6 @@ class UpdateAccountConfigurationRequestTypeDef(TypedDict):
|
|
|
2363
2378
|
class AdditionalDestinationsTypeDef(TypedDict):
|
|
2364
2379
|
Destination: OutputLocationRefTypeDef
|
|
2365
2380
|
|
|
2366
|
-
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
2367
|
-
Destination: OutputLocationRefTypeDef
|
|
2368
|
-
|
|
2369
2381
|
class MsSmoothGroupSettingsTypeDef(TypedDict):
|
|
2370
2382
|
Destination: OutputLocationRefTypeDef
|
|
2371
2383
|
AcquisitionPointId: NotRequired[str]
|
|
@@ -2777,6 +2789,12 @@ class UpdateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2777
2789
|
Tags: Dict[str, str]
|
|
2778
2790
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2779
2791
|
|
|
2792
|
+
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
2793
|
+
CaptionLanguageMappings: NotRequired[List[CaptionLanguageMappingTypeDef]]
|
|
2794
|
+
|
|
2795
|
+
class MediaPackageV2GroupSettingsTypeDef(TypedDict):
|
|
2796
|
+
CaptionLanguageMappings: NotRequired[Sequence[CaptionLanguageMappingTypeDef]]
|
|
2797
|
+
|
|
2780
2798
|
class TeletextSourceSettingsTypeDef(TypedDict):
|
|
2781
2799
|
OutputRectangle: NotRequired[CaptionRectangleTypeDef]
|
|
2782
2800
|
PageNumber: NotRequired[str]
|
|
@@ -3560,6 +3578,9 @@ class StandardHlsSettingsTypeDef(TypedDict):
|
|
|
3560
3578
|
M3u8Settings: M3u8SettingsTypeDef
|
|
3561
3579
|
AudioRenditionSets: NotRequired[str]
|
|
3562
3580
|
|
|
3581
|
+
class MediaPackageOutputSettingsTypeDef(TypedDict):
|
|
3582
|
+
MediaPackageV2DestinationSettings: NotRequired[MediaPackageV2DestinationSettingsTypeDef]
|
|
3583
|
+
|
|
3563
3584
|
class MediaResourceTypeDef(TypedDict):
|
|
3564
3585
|
Destinations: NotRequired[List[MediaResourceNeighborTypeDef]]
|
|
3565
3586
|
Name: NotRequired[str]
|
|
@@ -3813,6 +3834,7 @@ class Av1SettingsOutputTypeDef(TypedDict):
|
|
|
3813
3834
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
3814
3835
|
Bitrate: NotRequired[int]
|
|
3815
3836
|
RateControlMode: NotRequired[Av1RateControlModeType]
|
|
3837
|
+
MinBitrate: NotRequired[int]
|
|
3816
3838
|
|
|
3817
3839
|
class Av1SettingsTypeDef(TypedDict):
|
|
3818
3840
|
FramerateDenominator: int
|
|
@@ -3834,11 +3856,20 @@ class Av1SettingsTypeDef(TypedDict):
|
|
|
3834
3856
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
3835
3857
|
Bitrate: NotRequired[int]
|
|
3836
3858
|
RateControlMode: NotRequired[Av1RateControlModeType]
|
|
3859
|
+
MinBitrate: NotRequired[int]
|
|
3837
3860
|
|
|
3838
3861
|
class AvailConfigurationTypeDef(TypedDict):
|
|
3839
3862
|
AvailSettings: NotRequired[AvailSettingsTypeDef]
|
|
3840
3863
|
Scte35SegmentationScope: NotRequired[Scte35SegmentationScopeType]
|
|
3841
3864
|
|
|
3865
|
+
class MediaPackageGroupSettingsOutputTypeDef(TypedDict):
|
|
3866
|
+
Destination: OutputLocationRefTypeDef
|
|
3867
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsOutputTypeDef]
|
|
3868
|
+
|
|
3869
|
+
class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
3870
|
+
Destination: OutputLocationRefTypeDef
|
|
3871
|
+
MediapackageV2GroupSettings: NotRequired[MediaPackageV2GroupSettingsTypeDef]
|
|
3872
|
+
|
|
3842
3873
|
class CaptionSelectorSettingsOutputTypeDef(TypedDict):
|
|
3843
3874
|
AncillarySourceSettings: NotRequired[AncillarySourceSettingsTypeDef]
|
|
3844
3875
|
AribSourceSettings: NotRequired[Dict[str, Any]]
|
|
@@ -4048,6 +4079,7 @@ class H264SettingsOutputTypeDef(TypedDict):
|
|
|
4048
4079
|
TimecodeInsertion: NotRequired[H264TimecodeInsertionBehaviorType]
|
|
4049
4080
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
4050
4081
|
MinQp: NotRequired[int]
|
|
4082
|
+
MinBitrate: NotRequired[int]
|
|
4051
4083
|
|
|
4052
4084
|
class H264SettingsTypeDef(TypedDict):
|
|
4053
4085
|
AdaptiveQuantization: NotRequired[H264AdaptiveQuantizationType]
|
|
@@ -4093,6 +4125,7 @@ class H264SettingsTypeDef(TypedDict):
|
|
|
4093
4125
|
TimecodeInsertion: NotRequired[H264TimecodeInsertionBehaviorType]
|
|
4094
4126
|
TimecodeBurninSettings: NotRequired[TimecodeBurninSettingsTypeDef]
|
|
4095
4127
|
MinQp: NotRequired[int]
|
|
4128
|
+
MinBitrate: NotRequired[int]
|
|
4096
4129
|
|
|
4097
4130
|
class H265SettingsOutputTypeDef(TypedDict):
|
|
4098
4131
|
FramerateDenominator: int
|
|
@@ -4133,6 +4166,10 @@ class H265SettingsOutputTypeDef(TypedDict):
|
|
|
4133
4166
|
TreeblockSize: NotRequired[H265TreeblockSizeType]
|
|
4134
4167
|
MinQp: NotRequired[int]
|
|
4135
4168
|
Deblocking: NotRequired[H265DeblockingType]
|
|
4169
|
+
GopBReference: NotRequired[H265GopBReferenceType]
|
|
4170
|
+
GopNumBFrames: NotRequired[int]
|
|
4171
|
+
MinBitrate: NotRequired[int]
|
|
4172
|
+
SubgopLength: NotRequired[H265SubGopLengthType]
|
|
4136
4173
|
|
|
4137
4174
|
class H265SettingsTypeDef(TypedDict):
|
|
4138
4175
|
FramerateDenominator: int
|
|
@@ -4173,6 +4210,10 @@ class H265SettingsTypeDef(TypedDict):
|
|
|
4173
4210
|
TreeblockSize: NotRequired[H265TreeblockSizeType]
|
|
4174
4211
|
MinQp: NotRequired[int]
|
|
4175
4212
|
Deblocking: NotRequired[H265DeblockingType]
|
|
4213
|
+
GopBReference: NotRequired[H265GopBReferenceType]
|
|
4214
|
+
GopNumBFrames: NotRequired[int]
|
|
4215
|
+
MinBitrate: NotRequired[int]
|
|
4216
|
+
SubgopLength: NotRequired[H265SubGopLengthType]
|
|
4176
4217
|
|
|
4177
4218
|
class Mpeg2SettingsTypeDef(TypedDict):
|
|
4178
4219
|
FramerateDenominator: int
|
|
@@ -4820,7 +4861,7 @@ class OutputGroupSettingsOutputTypeDef(TypedDict):
|
|
|
4820
4861
|
ArchiveGroupSettings: NotRequired[ArchiveGroupSettingsTypeDef]
|
|
4821
4862
|
FrameCaptureGroupSettings: NotRequired[FrameCaptureGroupSettingsTypeDef]
|
|
4822
4863
|
HlsGroupSettings: NotRequired[HlsGroupSettingsOutputTypeDef]
|
|
4823
|
-
MediaPackageGroupSettings: NotRequired[
|
|
4864
|
+
MediaPackageGroupSettings: NotRequired[MediaPackageGroupSettingsOutputTypeDef]
|
|
4824
4865
|
MsSmoothGroupSettings: NotRequired[MsSmoothGroupSettingsTypeDef]
|
|
4825
4866
|
MultiplexGroupSettings: NotRequired[Dict[str, Any]]
|
|
4826
4867
|
RtmpGroupSettings: NotRequired[RtmpGroupSettingsOutputTypeDef]
|
|
@@ -4945,7 +4986,7 @@ class OutputSettingsOutputTypeDef(TypedDict):
|
|
|
4945
4986
|
ArchiveOutputSettings: NotRequired[ArchiveOutputSettingsOutputTypeDef]
|
|
4946
4987
|
FrameCaptureOutputSettings: NotRequired[FrameCaptureOutputSettingsTypeDef]
|
|
4947
4988
|
HlsOutputSettings: NotRequired[HlsOutputSettingsOutputTypeDef]
|
|
4948
|
-
MediaPackageOutputSettings: NotRequired[
|
|
4989
|
+
MediaPackageOutputSettings: NotRequired[MediaPackageOutputSettingsTypeDef]
|
|
4949
4990
|
MsSmoothOutputSettings: NotRequired[MsSmoothOutputSettingsTypeDef]
|
|
4950
4991
|
MultiplexOutputSettings: NotRequired[MultiplexOutputSettingsTypeDef]
|
|
4951
4992
|
RtmpOutputSettings: NotRequired[RtmpOutputSettingsTypeDef]
|
|
@@ -4957,7 +4998,7 @@ class OutputSettingsTypeDef(TypedDict):
|
|
|
4957
4998
|
ArchiveOutputSettings: NotRequired[ArchiveOutputSettingsTypeDef]
|
|
4958
4999
|
FrameCaptureOutputSettings: NotRequired[FrameCaptureOutputSettingsTypeDef]
|
|
4959
5000
|
HlsOutputSettings: NotRequired[HlsOutputSettingsTypeDef]
|
|
4960
|
-
MediaPackageOutputSettings: NotRequired[
|
|
5001
|
+
MediaPackageOutputSettings: NotRequired[MediaPackageOutputSettingsTypeDef]
|
|
4961
5002
|
MsSmoothOutputSettings: NotRequired[MsSmoothOutputSettingsTypeDef]
|
|
4962
5003
|
MultiplexOutputSettings: NotRequired[MultiplexOutputSettingsTypeDef]
|
|
4963
5004
|
RtmpOutputSettings: NotRequired[RtmpOutputSettingsTypeDef]
|
types_boto3_medialive/version.py
CHANGED
{types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-medialive
|
|
3
|
-
Version: 1.40.
|
|
4
|
-
Summary: Type annotations for boto3 MediaLive 1.40.
|
|
3
|
+
Version: 1.40.35
|
|
4
|
+
Summary: Type annotations for boto3 MediaLive 1.40.35 service generated with mypy-boto3-builder 8.11.0
|
|
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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 MediaLive 1.40.
|
|
59
|
+
Type annotations for [boto3 MediaLive 1.40.35](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.35' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3` AWS SDK.
|
|
124
124
|
3. Add `MediaLive` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
types_boto3_medialive/__init__.py,sha256=O8z4BCW20d8oS1sP9r3K5Vd9YET1hOEZP6UimRmp9Xw,9246
|
|
2
2
|
types_boto3_medialive/__init__.pyi,sha256=woytB_2JCqZYwiEoPU6RVtNACohmXUlZPWMJZjg5tCk,9245
|
|
3
|
-
types_boto3_medialive/__main__.py,sha256=
|
|
3
|
+
types_boto3_medialive/__main__.py,sha256=E3yH97urm_Bk1C6B-iHGijooh2ymI6NIA2_lNi0mcas,993
|
|
4
4
|
types_boto3_medialive/client.py,sha256=WvfJV56JrL45_Z_RV6KtvxIvRKfXqOkYy9vXehSnMFo,96925
|
|
5
5
|
types_boto3_medialive/client.pyi,sha256=eZWGKI3vmBcY7c3btjYX7tTtm9W1rkVKNZ9jy_CggOs,96922
|
|
6
|
-
types_boto3_medialive/literals.py,sha256=
|
|
7
|
-
types_boto3_medialive/literals.pyi,sha256=
|
|
6
|
+
types_boto3_medialive/literals.py,sha256=fJBnrgm8Aem8Jatov1gfxsEQGI_Syz3BXjt1kbzszkQ,52911
|
|
7
|
+
types_boto3_medialive/literals.pyi,sha256=94ATfgzmdj7XcMOQGL3KYc0JAScbwljkbQb5grkgYys,52909
|
|
8
8
|
types_boto3_medialive/paginator.py,sha256=7Zw5m_EOQvMI27bZ6a0cgBv8cWa_-5IMlYyy0UILwEw,29618
|
|
9
9
|
types_boto3_medialive/paginator.pyi,sha256=4pQIMSX4HqSdd8JAy20Nk5AYOu6kCQ2dKcn4rBbsOGk,29557
|
|
10
10
|
types_boto3_medialive/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_medialive/type_defs.py,sha256=
|
|
12
|
-
types_boto3_medialive/type_defs.pyi,sha256=
|
|
13
|
-
types_boto3_medialive/version.py,sha256=
|
|
11
|
+
types_boto3_medialive/type_defs.py,sha256=2S0TrVjz_Rsz9QamwQJxbQZGMU4eBXRRsk3qg-_r6r8,206138
|
|
12
|
+
types_boto3_medialive/type_defs.pyi,sha256=hMKKny3bI3xpjGjEJHfKHGimBLOqtPhKdynBAr523vs,205507
|
|
13
|
+
types_boto3_medialive/version.py,sha256=r64oU_Tf7CBL_nulBFgh4EM9io8iGShYDu8hLnv8Qvo,93
|
|
14
14
|
types_boto3_medialive/waiter.py,sha256=QcGR2lxcXrx6MqN32xtv3fQegxEgv9qZ5UUBA03N2qE,24281
|
|
15
15
|
types_boto3_medialive/waiter.pyi,sha256=bC4PsWq4om-y5VJim-inhJF1ezVeYJ9pR8RisgKBBn0,24236
|
|
16
|
-
types_boto3_medialive-1.40.
|
|
17
|
-
types_boto3_medialive-1.40.
|
|
18
|
-
types_boto3_medialive-1.40.
|
|
19
|
-
types_boto3_medialive-1.40.
|
|
20
|
-
types_boto3_medialive-1.40.
|
|
16
|
+
types_boto3_medialive-1.40.35.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_medialive-1.40.35.dist-info/METADATA,sha256=PFp_n7gQBQ9eD9ErhdavtuvaCmWIAlryQSku6oY-3cE,21102
|
|
18
|
+
types_boto3_medialive-1.40.35.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
types_boto3_medialive-1.40.35.dist-info/top_level.txt,sha256=ObnwlKE8EUI6nh64SLkLF3YrioCtul-5VbXe2USlsFg,22
|
|
20
|
+
types_boto3_medialive-1.40.35.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{types_boto3_medialive-1.40.16.dist-info → types_boto3_medialive-1.40.35.dist-info}/top_level.txt
RENAMED
|
File without changes
|