types-boto3-medialive 1.40.45__py3-none-any.whl → 1.40.74__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_medialive/__init__.py +12 -0
- types_boto3_medialive/__init__.pyi +12 -0
- types_boto3_medialive/__main__.py +4 -4
- types_boto3_medialive/client.py +93 -28
- types_boto3_medialive/client.pyi +93 -28
- types_boto3_medialive/literals.py +16 -7
- types_boto3_medialive/literals.pyi +16 -7
- types_boto3_medialive/paginator.py +78 -0
- types_boto3_medialive/paginator.pyi +69 -0
- types_boto3_medialive/type_defs.py +400 -302
- types_boto3_medialive/type_defs.pyi +388 -302
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/METADATA +21 -25
- types_boto3_medialive-1.40.74.dist-info/RECORD +20 -0
- types_boto3_medialive-1.40.45.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/top_level.txt +0 -0
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Any, Union
|
|
22
23
|
|
|
@@ -65,6 +66,7 @@ from .literals import (
|
|
|
65
66
|
BurnInShadowColorType,
|
|
66
67
|
BurnInTeletextGridControlType,
|
|
67
68
|
CdiInputResolutionType,
|
|
69
|
+
ChannelAlertStateType,
|
|
68
70
|
ChannelClassType,
|
|
69
71
|
ChannelPipelineIdToRestartType,
|
|
70
72
|
ChannelPlacementGroupStateType,
|
|
@@ -73,6 +75,7 @@ from .literals import (
|
|
|
73
75
|
CloudWatchAlarmTemplateStatisticType,
|
|
74
76
|
CloudWatchAlarmTemplateTargetResourceTypeType,
|
|
75
77
|
CloudWatchAlarmTemplateTreatMissingDataType,
|
|
78
|
+
ClusterAlertStateType,
|
|
76
79
|
ClusterStateType,
|
|
77
80
|
CmafId3BehaviorType,
|
|
78
81
|
CmafIngestSegmentLengthUnitsType,
|
|
@@ -271,6 +274,7 @@ from .literals import (
|
|
|
271
274
|
Mpeg2SubGopLengthType,
|
|
272
275
|
Mpeg2TimecodeInsertionBehaviorType,
|
|
273
276
|
MsSmoothH265PackagingTypeType,
|
|
277
|
+
MultiplexAlertStateType,
|
|
274
278
|
MultiplexStateType,
|
|
275
279
|
NetworkInputServerValidationType,
|
|
276
280
|
NetworkInterfaceModeType,
|
|
@@ -345,12 +349,6 @@ from .literals import (
|
|
|
345
349
|
WebvttDestinationStyleControlType,
|
|
346
350
|
)
|
|
347
351
|
|
|
348
|
-
if sys.version_info >= (3, 9):
|
|
349
|
-
from builtins import dict as Dict
|
|
350
|
-
from builtins import list as List
|
|
351
|
-
from collections.abc import Mapping, Sequence
|
|
352
|
-
else:
|
|
353
|
-
from typing import Dict, List, Mapping, Sequence
|
|
354
352
|
if sys.version_info >= (3, 12):
|
|
355
353
|
from typing import Literal, NotRequired, TypedDict
|
|
356
354
|
else:
|
|
@@ -436,6 +434,7 @@ __all__ = (
|
|
|
436
434
|
"CaptionSelectorTypeDef",
|
|
437
435
|
"CaptionSelectorUnionTypeDef",
|
|
438
436
|
"CdiInputSpecificationTypeDef",
|
|
437
|
+
"ChannelAlertTypeDef",
|
|
439
438
|
"ChannelEgressEndpointTypeDef",
|
|
440
439
|
"ChannelEngineVersionRequestTypeDef",
|
|
441
440
|
"ChannelEngineVersionResponseTypeDef",
|
|
@@ -444,6 +443,7 @@ __all__ = (
|
|
|
444
443
|
"ClaimDeviceRequestTypeDef",
|
|
445
444
|
"CloudWatchAlarmTemplateGroupSummaryTypeDef",
|
|
446
445
|
"CloudWatchAlarmTemplateSummaryTypeDef",
|
|
446
|
+
"ClusterAlertTypeDef",
|
|
447
447
|
"ClusterNetworkSettingsCreateRequestTypeDef",
|
|
448
448
|
"ClusterNetworkSettingsTypeDef",
|
|
449
449
|
"ClusterNetworkSettingsUpdateRequestTypeDef",
|
|
@@ -696,6 +696,9 @@ __all__ = (
|
|
|
696
696
|
"IpPoolTypeDef",
|
|
697
697
|
"IpPoolUpdateRequestTypeDef",
|
|
698
698
|
"KeyProviderSettingsTypeDef",
|
|
699
|
+
"ListAlertsRequestPaginateTypeDef",
|
|
700
|
+
"ListAlertsRequestTypeDef",
|
|
701
|
+
"ListAlertsResponseTypeDef",
|
|
699
702
|
"ListChannelPlacementGroupsRequestPaginateTypeDef",
|
|
700
703
|
"ListChannelPlacementGroupsRequestTypeDef",
|
|
701
704
|
"ListChannelPlacementGroupsResponseTypeDef",
|
|
@@ -708,6 +711,9 @@ __all__ = (
|
|
|
708
711
|
"ListCloudWatchAlarmTemplatesRequestPaginateTypeDef",
|
|
709
712
|
"ListCloudWatchAlarmTemplatesRequestTypeDef",
|
|
710
713
|
"ListCloudWatchAlarmTemplatesResponseTypeDef",
|
|
714
|
+
"ListClusterAlertsRequestPaginateTypeDef",
|
|
715
|
+
"ListClusterAlertsRequestTypeDef",
|
|
716
|
+
"ListClusterAlertsResponseTypeDef",
|
|
711
717
|
"ListClustersRequestPaginateTypeDef",
|
|
712
718
|
"ListClustersRequestTypeDef",
|
|
713
719
|
"ListClustersResponseTypeDef",
|
|
@@ -729,6 +735,9 @@ __all__ = (
|
|
|
729
735
|
"ListInputsRequestPaginateTypeDef",
|
|
730
736
|
"ListInputsRequestTypeDef",
|
|
731
737
|
"ListInputsResponseTypeDef",
|
|
738
|
+
"ListMultiplexAlertsRequestPaginateTypeDef",
|
|
739
|
+
"ListMultiplexAlertsRequestTypeDef",
|
|
740
|
+
"ListMultiplexAlertsResponseTypeDef",
|
|
732
741
|
"ListMultiplexProgramsRequestPaginateTypeDef",
|
|
733
742
|
"ListMultiplexProgramsRequestTypeDef",
|
|
734
743
|
"ListMultiplexProgramsResponseTypeDef",
|
|
@@ -790,6 +799,7 @@ __all__ = (
|
|
|
790
799
|
"MulticastSourceCreateRequestTypeDef",
|
|
791
800
|
"MulticastSourceTypeDef",
|
|
792
801
|
"MulticastSourceUpdateRequestTypeDef",
|
|
802
|
+
"MultiplexAlertTypeDef",
|
|
793
803
|
"MultiplexContainerSettingsTypeDef",
|
|
794
804
|
"MultiplexM2tsSettingsTypeDef",
|
|
795
805
|
"MultiplexMediaConnectOutputDestinationSettingsTypeDef",
|
|
@@ -1166,7 +1176,7 @@ class BatchSuccessfulResultModelTypeDef(TypedDict):
|
|
|
1166
1176
|
class ResponseMetadataTypeDef(TypedDict):
|
|
1167
1177
|
RequestId: str
|
|
1168
1178
|
HTTPStatusCode: int
|
|
1169
|
-
HTTPHeaders:
|
|
1179
|
+
HTTPHeaders: dict[str, str]
|
|
1170
1180
|
RetryAttempts: int
|
|
1171
1181
|
HostId: NotRequired[str]
|
|
1172
1182
|
|
|
@@ -1230,6 +1240,15 @@ class Scte27SourceSettingsTypeDef(TypedDict):
|
|
|
1230
1240
|
class CdiInputSpecificationTypeDef(TypedDict):
|
|
1231
1241
|
Resolution: NotRequired[CdiInputResolutionType]
|
|
1232
1242
|
|
|
1243
|
+
class ChannelAlertTypeDef(TypedDict):
|
|
1244
|
+
AlertType: NotRequired[str]
|
|
1245
|
+
ClearedTimestamp: NotRequired[datetime]
|
|
1246
|
+
Id: NotRequired[str]
|
|
1247
|
+
Message: NotRequired[str]
|
|
1248
|
+
PipelineId: NotRequired[str]
|
|
1249
|
+
SetTimestamp: NotRequired[datetime]
|
|
1250
|
+
State: NotRequired[ChannelAlertStateType]
|
|
1251
|
+
|
|
1233
1252
|
class ChannelEgressEndpointTypeDef(TypedDict):
|
|
1234
1253
|
SourceIp: NotRequired[str]
|
|
1235
1254
|
|
|
@@ -1256,10 +1275,10 @@ class MaintenanceStatusTypeDef(TypedDict):
|
|
|
1256
1275
|
MaintenanceStartTime: NotRequired[str]
|
|
1257
1276
|
|
|
1258
1277
|
class VpcOutputSettingsDescriptionTypeDef(TypedDict):
|
|
1259
|
-
AvailabilityZones: NotRequired[
|
|
1260
|
-
NetworkInterfaceIds: NotRequired[
|
|
1261
|
-
SecurityGroupIds: NotRequired[
|
|
1262
|
-
SubnetIds: NotRequired[
|
|
1278
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
1279
|
+
NetworkInterfaceIds: NotRequired[list[str]]
|
|
1280
|
+
SecurityGroupIds: NotRequired[list[str]]
|
|
1281
|
+
SubnetIds: NotRequired[list[str]]
|
|
1263
1282
|
|
|
1264
1283
|
class ClaimDeviceRequestTypeDef(TypedDict):
|
|
1265
1284
|
Id: NotRequired[str]
|
|
@@ -1272,7 +1291,7 @@ class CloudWatchAlarmTemplateGroupSummaryTypeDef(TypedDict):
|
|
|
1272
1291
|
TemplateCount: int
|
|
1273
1292
|
Description: NotRequired[str]
|
|
1274
1293
|
ModifiedAt: NotRequired[datetime]
|
|
1275
|
-
Tags: NotRequired[
|
|
1294
|
+
Tags: NotRequired[dict[str, str]]
|
|
1276
1295
|
|
|
1277
1296
|
class CloudWatchAlarmTemplateSummaryTypeDef(TypedDict):
|
|
1278
1297
|
Arn: str
|
|
@@ -1291,7 +1310,17 @@ class CloudWatchAlarmTemplateSummaryTypeDef(TypedDict):
|
|
|
1291
1310
|
DatapointsToAlarm: NotRequired[int]
|
|
1292
1311
|
Description: NotRequired[str]
|
|
1293
1312
|
ModifiedAt: NotRequired[datetime]
|
|
1294
|
-
Tags: NotRequired[
|
|
1313
|
+
Tags: NotRequired[dict[str, str]]
|
|
1314
|
+
|
|
1315
|
+
class ClusterAlertTypeDef(TypedDict):
|
|
1316
|
+
AlertType: NotRequired[str]
|
|
1317
|
+
ChannelId: NotRequired[str]
|
|
1318
|
+
ClearedTimestamp: NotRequired[datetime]
|
|
1319
|
+
Id: NotRequired[str]
|
|
1320
|
+
Message: NotRequired[str]
|
|
1321
|
+
NodeId: NotRequired[str]
|
|
1322
|
+
SetTimestamp: NotRequired[datetime]
|
|
1323
|
+
State: NotRequired[ClusterAlertStateType]
|
|
1295
1324
|
|
|
1296
1325
|
class InterfaceMappingCreateRequestTypeDef(TypedDict):
|
|
1297
1326
|
LogicalInterfaceName: NotRequired[str]
|
|
@@ -1437,7 +1466,7 @@ SdiSourceTypeDef = TypedDict(
|
|
|
1437
1466
|
{
|
|
1438
1467
|
"Arn": NotRequired[str],
|
|
1439
1468
|
"Id": NotRequired[str],
|
|
1440
|
-
"Inputs": NotRequired[
|
|
1469
|
+
"Inputs": NotRequired[list[str]],
|
|
1441
1470
|
"Mode": NotRequired[SdiSourceModeType],
|
|
1442
1471
|
"Name": NotRequired[str],
|
|
1443
1472
|
"State": NotRequired[SdiSourceStateType],
|
|
@@ -1500,21 +1529,21 @@ class DeleteMultiplexProgramRequestTypeDef(TypedDict):
|
|
|
1500
1529
|
ProgramName: str
|
|
1501
1530
|
|
|
1502
1531
|
class MultiplexProgramPacketIdentifiersMapOutputTypeDef(TypedDict):
|
|
1503
|
-
AudioPids: NotRequired[
|
|
1504
|
-
DvbSubPids: NotRequired[
|
|
1532
|
+
AudioPids: NotRequired[list[int]]
|
|
1533
|
+
DvbSubPids: NotRequired[list[int]]
|
|
1505
1534
|
DvbTeletextPid: NotRequired[int]
|
|
1506
1535
|
EtvPlatformPid: NotRequired[int]
|
|
1507
1536
|
EtvSignalPid: NotRequired[int]
|
|
1508
|
-
KlvDataPids: NotRequired[
|
|
1537
|
+
KlvDataPids: NotRequired[list[int]]
|
|
1509
1538
|
PcrPid: NotRequired[int]
|
|
1510
1539
|
PmtPid: NotRequired[int]
|
|
1511
1540
|
PrivateMetadataPid: NotRequired[int]
|
|
1512
|
-
Scte27Pids: NotRequired[
|
|
1541
|
+
Scte27Pids: NotRequired[list[int]]
|
|
1513
1542
|
Scte35Pid: NotRequired[int]
|
|
1514
1543
|
TimedMetadataPid: NotRequired[int]
|
|
1515
1544
|
VideoPid: NotRequired[int]
|
|
1516
1545
|
AribCaptionsPid: NotRequired[int]
|
|
1517
|
-
DvbTeletextPids: NotRequired[
|
|
1546
|
+
DvbTeletextPids: NotRequired[list[int]]
|
|
1518
1547
|
EcmPid: NotRequired[int]
|
|
1519
1548
|
Smpte2038Pid: NotRequired[int]
|
|
1520
1549
|
|
|
@@ -1572,11 +1601,11 @@ class WaiterConfigTypeDef(TypedDict):
|
|
|
1572
1601
|
|
|
1573
1602
|
class DescribeChannelPlacementGroupSummaryTypeDef(TypedDict):
|
|
1574
1603
|
Arn: NotRequired[str]
|
|
1575
|
-
Channels: NotRequired[
|
|
1604
|
+
Channels: NotRequired[list[str]]
|
|
1576
1605
|
ClusterId: NotRequired[str]
|
|
1577
1606
|
Id: NotRequired[str]
|
|
1578
1607
|
Name: NotRequired[str]
|
|
1579
|
-
Nodes: NotRequired[
|
|
1608
|
+
Nodes: NotRequired[list[str]]
|
|
1580
1609
|
State: NotRequired[ChannelPlacementGroupStateType]
|
|
1581
1610
|
|
|
1582
1611
|
class DescribeChannelRequestTypeDef(TypedDict):
|
|
@@ -1600,7 +1629,7 @@ class InputDeviceHdSettingsTypeDef(TypedDict):
|
|
|
1600
1629
|
LatencyMs: NotRequired[int]
|
|
1601
1630
|
|
|
1602
1631
|
class InputDeviceNetworkSettingsTypeDef(TypedDict):
|
|
1603
|
-
DnsAddresses: NotRequired[
|
|
1632
|
+
DnsAddresses: NotRequired[list[str]]
|
|
1604
1633
|
Gateway: NotRequired[str]
|
|
1605
1634
|
IpAddress: NotRequired[str]
|
|
1606
1635
|
IpScheme: NotRequired[InputDeviceIpSchemeType]
|
|
@@ -1712,7 +1741,7 @@ class EventBridgeRuleTemplateGroupSummaryTypeDef(TypedDict):
|
|
|
1712
1741
|
TemplateCount: int
|
|
1713
1742
|
Description: NotRequired[str]
|
|
1714
1743
|
ModifiedAt: NotRequired[datetime]
|
|
1715
|
-
Tags: NotRequired[
|
|
1744
|
+
Tags: NotRequired[dict[str, str]]
|
|
1716
1745
|
|
|
1717
1746
|
class EventBridgeRuleTemplateSummaryTypeDef(TypedDict):
|
|
1718
1747
|
Arn: str
|
|
@@ -1724,7 +1753,7 @@ class EventBridgeRuleTemplateSummaryTypeDef(TypedDict):
|
|
|
1724
1753
|
Name: str
|
|
1725
1754
|
Description: NotRequired[str]
|
|
1726
1755
|
ModifiedAt: NotRequired[datetime]
|
|
1727
|
-
Tags: NotRequired[
|
|
1756
|
+
Tags: NotRequired[dict[str, str]]
|
|
1728
1757
|
|
|
1729
1758
|
class InputLossFailoverSettingsTypeDef(TypedDict):
|
|
1730
1759
|
InputLossThresholdMsec: NotRequired[int]
|
|
@@ -1772,9 +1801,9 @@ class GetSignalMapRequestTypeDef(TypedDict):
|
|
|
1772
1801
|
Identifier: str
|
|
1773
1802
|
|
|
1774
1803
|
class H264ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
1775
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
1776
|
-
Rec601Settings: NotRequired[
|
|
1777
|
-
Rec709Settings: NotRequired[
|
|
1804
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
1805
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
1806
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
1778
1807
|
|
|
1779
1808
|
class H264ColorSpaceSettingsTypeDef(TypedDict):
|
|
1780
1809
|
ColorSpacePassthroughSettings: NotRequired[Mapping[str, Any]]
|
|
@@ -1884,6 +1913,12 @@ class InputSdpLocationTypeDef(TypedDict):
|
|
|
1884
1913
|
class IpPoolUpdateRequestTypeDef(TypedDict):
|
|
1885
1914
|
Cidr: NotRequired[str]
|
|
1886
1915
|
|
|
1916
|
+
class ListAlertsRequestTypeDef(TypedDict):
|
|
1917
|
+
ChannelId: str
|
|
1918
|
+
MaxResults: NotRequired[int]
|
|
1919
|
+
NextToken: NotRequired[str]
|
|
1920
|
+
StateFilter: NotRequired[str]
|
|
1921
|
+
|
|
1887
1922
|
class ListChannelPlacementGroupsRequestTypeDef(TypedDict):
|
|
1888
1923
|
ClusterId: str
|
|
1889
1924
|
MaxResults: NotRequired[int]
|
|
@@ -1906,6 +1941,12 @@ class ListCloudWatchAlarmTemplatesRequestTypeDef(TypedDict):
|
|
|
1906
1941
|
Scope: NotRequired[str]
|
|
1907
1942
|
SignalMapIdentifier: NotRequired[str]
|
|
1908
1943
|
|
|
1944
|
+
class ListClusterAlertsRequestTypeDef(TypedDict):
|
|
1945
|
+
ClusterId: str
|
|
1946
|
+
MaxResults: NotRequired[int]
|
|
1947
|
+
NextToken: NotRequired[str]
|
|
1948
|
+
StateFilter: NotRequired[str]
|
|
1949
|
+
|
|
1909
1950
|
class ListClustersRequestTypeDef(TypedDict):
|
|
1910
1951
|
MaxResults: NotRequired[int]
|
|
1911
1952
|
NextToken: NotRequired[str]
|
|
@@ -1944,6 +1985,21 @@ class ListInputsRequestTypeDef(TypedDict):
|
|
|
1944
1985
|
MaxResults: NotRequired[int]
|
|
1945
1986
|
NextToken: NotRequired[str]
|
|
1946
1987
|
|
|
1988
|
+
class ListMultiplexAlertsRequestTypeDef(TypedDict):
|
|
1989
|
+
MultiplexId: str
|
|
1990
|
+
MaxResults: NotRequired[int]
|
|
1991
|
+
NextToken: NotRequired[str]
|
|
1992
|
+
StateFilter: NotRequired[str]
|
|
1993
|
+
|
|
1994
|
+
class MultiplexAlertTypeDef(TypedDict):
|
|
1995
|
+
AlertType: NotRequired[str]
|
|
1996
|
+
ClearedTimestamp: NotRequired[datetime]
|
|
1997
|
+
Id: NotRequired[str]
|
|
1998
|
+
Message: NotRequired[str]
|
|
1999
|
+
PipelineId: NotRequired[str]
|
|
2000
|
+
SetTimestamp: NotRequired[datetime]
|
|
2001
|
+
State: NotRequired[MultiplexAlertStateType]
|
|
2002
|
+
|
|
1947
2003
|
class ListMultiplexProgramsRequestTypeDef(TypedDict):
|
|
1948
2004
|
MultiplexId: str
|
|
1949
2005
|
MaxResults: NotRequired[int]
|
|
@@ -2001,7 +2057,7 @@ SdiSourceSummaryTypeDef = TypedDict(
|
|
|
2001
2057
|
{
|
|
2002
2058
|
"Arn": NotRequired[str],
|
|
2003
2059
|
"Id": NotRequired[str],
|
|
2004
|
-
"Inputs": NotRequired[
|
|
2060
|
+
"Inputs": NotRequired[list[str]],
|
|
2005
2061
|
"Mode": NotRequired[SdiSourceModeType],
|
|
2006
2062
|
"Name": NotRequired[str],
|
|
2007
2063
|
"State": NotRequired[SdiSourceStateType],
|
|
@@ -2024,7 +2080,7 @@ class SignalMapSummaryTypeDef(TypedDict):
|
|
|
2024
2080
|
Status: SignalMapStatusType
|
|
2025
2081
|
Description: NotRequired[str]
|
|
2026
2082
|
ModifiedAt: NotRequired[datetime]
|
|
2027
|
-
Tags: NotRequired[
|
|
2083
|
+
Tags: NotRequired[dict[str, str]]
|
|
2028
2084
|
|
|
2029
2085
|
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
2030
2086
|
ResourceArn: str
|
|
@@ -2077,7 +2133,7 @@ class MotionGraphicsActivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2077
2133
|
Username: NotRequired[str]
|
|
2078
2134
|
|
|
2079
2135
|
class MotionGraphicsSettingsOutputTypeDef(TypedDict):
|
|
2080
|
-
HtmlMotionGraphicsSettings: NotRequired[
|
|
2136
|
+
HtmlMotionGraphicsSettings: NotRequired[dict[str, Any]]
|
|
2081
2137
|
|
|
2082
2138
|
class MotionGraphicsSettingsTypeDef(TypedDict):
|
|
2083
2139
|
HtmlMotionGraphicsSettings: NotRequired[Mapping[str, Any]]
|
|
@@ -2181,7 +2237,7 @@ class SrtOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2181
2237
|
Url: NotRequired[str]
|
|
2182
2238
|
|
|
2183
2239
|
class RtmpGroupSettingsOutputTypeDef(TypedDict):
|
|
2184
|
-
AdMarkers: NotRequired[
|
|
2240
|
+
AdMarkers: NotRequired[list[Literal["ON_CUE_POINT_SCTE35"]]]
|
|
2185
2241
|
AuthenticationScheme: NotRequired[AuthenticationSchemeType]
|
|
2186
2242
|
CacheFullBehavior: NotRequired[RtmpCacheFullBehaviorType]
|
|
2187
2243
|
CacheLength: NotRequired[int]
|
|
@@ -2242,7 +2298,7 @@ class StaticImageDeactivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2242
2298
|
Layer: NotRequired[int]
|
|
2243
2299
|
|
|
2244
2300
|
class StaticImageOutputDeactivateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
2245
|
-
OutputNames:
|
|
2301
|
+
OutputNames: list[str]
|
|
2246
2302
|
FadeOut: NotRequired[int]
|
|
2247
2303
|
Layer: NotRequired[int]
|
|
2248
2304
|
|
|
@@ -2409,7 +2465,7 @@ class ArchiveCdnSettingsTypeDef(TypedDict):
|
|
|
2409
2465
|
ArchiveS3Settings: NotRequired[ArchiveS3SettingsTypeDef]
|
|
2410
2466
|
|
|
2411
2467
|
class AudioChannelMappingOutputTypeDef(TypedDict):
|
|
2412
|
-
InputChannelLevels:
|
|
2468
|
+
InputChannelLevels: list[InputChannelLevelTypeDef]
|
|
2413
2469
|
OutputChannel: int
|
|
2414
2470
|
|
|
2415
2471
|
class AudioChannelMappingTypeDef(TypedDict):
|
|
@@ -2422,7 +2478,7 @@ class AudioCodecSettingsOutputTypeDef(TypedDict):
|
|
|
2422
2478
|
Eac3AtmosSettings: NotRequired[Eac3AtmosSettingsTypeDef]
|
|
2423
2479
|
Eac3Settings: NotRequired[Eac3SettingsTypeDef]
|
|
2424
2480
|
Mp2Settings: NotRequired[Mp2SettingsTypeDef]
|
|
2425
|
-
PassThroughSettings: NotRequired[
|
|
2481
|
+
PassThroughSettings: NotRequired[dict[str, Any]]
|
|
2426
2482
|
WavSettings: NotRequired[WavSettingsTypeDef]
|
|
2427
2483
|
|
|
2428
2484
|
class AudioCodecSettingsTypeDef(TypedDict):
|
|
@@ -2512,7 +2568,7 @@ class StaticImageActivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2512
2568
|
|
|
2513
2569
|
class StaticImageOutputActivateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
2514
2570
|
Image: InputLocationTypeDef
|
|
2515
|
-
OutputNames:
|
|
2571
|
+
OutputNames: list[str]
|
|
2516
2572
|
Duration: NotRequired[int]
|
|
2517
2573
|
FadeIn: NotRequired[int]
|
|
2518
2574
|
FadeOut: NotRequired[int]
|
|
@@ -2541,7 +2597,7 @@ class StaticKeySettingsTypeDef(TypedDict):
|
|
|
2541
2597
|
KeyProviderServer: NotRequired[InputLocationTypeDef]
|
|
2542
2598
|
|
|
2543
2599
|
class AudioTrackSelectionOutputTypeDef(TypedDict):
|
|
2544
|
-
Tracks:
|
|
2600
|
+
Tracks: list[AudioTrackTypeDef]
|
|
2545
2601
|
DolbyEDecode: NotRequired[AudioDolbyEDecodeTypeDef]
|
|
2546
2602
|
|
|
2547
2603
|
class AudioTrackSelectionTypeDef(TypedDict):
|
|
@@ -2549,10 +2605,10 @@ class AudioTrackSelectionTypeDef(TypedDict):
|
|
|
2549
2605
|
DolbyEDecode: NotRequired[AudioDolbyEDecodeTypeDef]
|
|
2550
2606
|
|
|
2551
2607
|
class Av1ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
2552
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
2608
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
2553
2609
|
Hdr10Settings: NotRequired[Hdr10SettingsTypeDef]
|
|
2554
|
-
Rec601Settings: NotRequired[
|
|
2555
|
-
Rec709Settings: NotRequired[
|
|
2610
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
2611
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
2556
2612
|
|
|
2557
2613
|
class Av1ColorSpaceSettingsTypeDef(TypedDict):
|
|
2558
2614
|
ColorSpacePassthroughSettings: NotRequired[Mapping[str, Any]]
|
|
@@ -2561,11 +2617,11 @@ class Av1ColorSpaceSettingsTypeDef(TypedDict):
|
|
|
2561
2617
|
Rec709Settings: NotRequired[Mapping[str, Any]]
|
|
2562
2618
|
|
|
2563
2619
|
class H265ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
2564
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
2565
|
-
DolbyVision81Settings: NotRequired[
|
|
2620
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
2621
|
+
DolbyVision81Settings: NotRequired[dict[str, Any]]
|
|
2566
2622
|
Hdr10Settings: NotRequired[Hdr10SettingsTypeDef]
|
|
2567
|
-
Rec601Settings: NotRequired[
|
|
2568
|
-
Rec709Settings: NotRequired[
|
|
2623
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
2624
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
2569
2625
|
|
|
2570
2626
|
class H265ColorSpaceSettingsTypeDef(TypedDict):
|
|
2571
2627
|
ColorSpacePassthroughSettings: NotRequired[Mapping[str, Any]]
|
|
@@ -2588,27 +2644,27 @@ class AvailSettingsTypeDef(TypedDict):
|
|
|
2588
2644
|
Scte35TimeSignalApos: NotRequired[Scte35TimeSignalAposTypeDef]
|
|
2589
2645
|
|
|
2590
2646
|
class BatchDeleteResponseTypeDef(TypedDict):
|
|
2591
|
-
Failed:
|
|
2592
|
-
Successful:
|
|
2647
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2648
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2593
2649
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2594
2650
|
|
|
2595
2651
|
class BatchStartResponseTypeDef(TypedDict):
|
|
2596
|
-
Failed:
|
|
2597
|
-
Successful:
|
|
2652
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2653
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2598
2654
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2599
2655
|
|
|
2600
2656
|
class BatchStopResponseTypeDef(TypedDict):
|
|
2601
|
-
Failed:
|
|
2602
|
-
Successful:
|
|
2657
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2658
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2603
2659
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2604
2660
|
|
|
2605
2661
|
class CreateChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2606
2662
|
Arn: str
|
|
2607
|
-
Channels:
|
|
2663
|
+
Channels: list[str]
|
|
2608
2664
|
ClusterId: str
|
|
2609
2665
|
Id: str
|
|
2610
2666
|
Name: str
|
|
2611
|
-
Nodes:
|
|
2667
|
+
Nodes: list[str]
|
|
2612
2668
|
State: ChannelPlacementGroupStateType
|
|
2613
2669
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2614
2670
|
|
|
@@ -2619,7 +2675,7 @@ class CreateCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2619
2675
|
Id: str
|
|
2620
2676
|
ModifiedAt: datetime
|
|
2621
2677
|
Name: str
|
|
2622
|
-
Tags:
|
|
2678
|
+
Tags: dict[str, str]
|
|
2623
2679
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2624
2680
|
|
|
2625
2681
|
class CreateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
@@ -2636,7 +2692,7 @@ class CreateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
2636
2692
|
Name: str
|
|
2637
2693
|
Period: int
|
|
2638
2694
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
2639
|
-
Tags:
|
|
2695
|
+
Tags: dict[str, str]
|
|
2640
2696
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
2641
2697
|
Threshold: float
|
|
2642
2698
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -2649,7 +2705,7 @@ class CreateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2649
2705
|
Id: str
|
|
2650
2706
|
ModifiedAt: datetime
|
|
2651
2707
|
Name: str
|
|
2652
|
-
Tags:
|
|
2708
|
+
Tags: dict[str, str]
|
|
2653
2709
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2654
2710
|
|
|
2655
2711
|
class CreateNodeRegistrationScriptResponseTypeDef(TypedDict):
|
|
@@ -2658,11 +2714,11 @@ class CreateNodeRegistrationScriptResponseTypeDef(TypedDict):
|
|
|
2658
2714
|
|
|
2659
2715
|
class DeleteChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2660
2716
|
Arn: str
|
|
2661
|
-
Channels:
|
|
2717
|
+
Channels: list[str]
|
|
2662
2718
|
ClusterId: str
|
|
2663
2719
|
Id: str
|
|
2664
2720
|
Name: str
|
|
2665
|
-
Nodes:
|
|
2721
|
+
Nodes: list[str]
|
|
2666
2722
|
State: ChannelPlacementGroupStateType
|
|
2667
2723
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2668
2724
|
|
|
@@ -2672,11 +2728,11 @@ class DescribeAccountConfigurationResponseTypeDef(TypedDict):
|
|
|
2672
2728
|
|
|
2673
2729
|
class DescribeChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2674
2730
|
Arn: str
|
|
2675
|
-
Channels:
|
|
2731
|
+
Channels: list[str]
|
|
2676
2732
|
ClusterId: str
|
|
2677
2733
|
Id: str
|
|
2678
2734
|
Name: str
|
|
2679
|
-
Nodes:
|
|
2735
|
+
Nodes: list[str]
|
|
2680
2736
|
State: ChannelPlacementGroupStateType
|
|
2681
2737
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2682
2738
|
|
|
@@ -2698,7 +2754,7 @@ class GetCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2698
2754
|
Id: str
|
|
2699
2755
|
ModifiedAt: datetime
|
|
2700
2756
|
Name: str
|
|
2701
|
-
Tags:
|
|
2757
|
+
Tags: dict[str, str]
|
|
2702
2758
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2703
2759
|
|
|
2704
2760
|
class GetCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
@@ -2715,7 +2771,7 @@ class GetCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
2715
2771
|
Name: str
|
|
2716
2772
|
Period: int
|
|
2717
2773
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
2718
|
-
Tags:
|
|
2774
|
+
Tags: dict[str, str]
|
|
2719
2775
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
2720
2776
|
Threshold: float
|
|
2721
2777
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -2728,11 +2784,11 @@ class GetEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2728
2784
|
Id: str
|
|
2729
2785
|
ModifiedAt: datetime
|
|
2730
2786
|
Name: str
|
|
2731
|
-
Tags:
|
|
2787
|
+
Tags: dict[str, str]
|
|
2732
2788
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2733
2789
|
|
|
2734
2790
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
2735
|
-
Tags:
|
|
2791
|
+
Tags: dict[str, str]
|
|
2736
2792
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2737
2793
|
|
|
2738
2794
|
class UpdateAccountConfigurationResponseTypeDef(TypedDict):
|
|
@@ -2741,11 +2797,11 @@ class UpdateAccountConfigurationResponseTypeDef(TypedDict):
|
|
|
2741
2797
|
|
|
2742
2798
|
class UpdateChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2743
2799
|
Arn: str
|
|
2744
|
-
Channels:
|
|
2800
|
+
Channels: list[str]
|
|
2745
2801
|
ClusterId: str
|
|
2746
2802
|
Id: str
|
|
2747
2803
|
Name: str
|
|
2748
|
-
Nodes:
|
|
2804
|
+
Nodes: list[str]
|
|
2749
2805
|
State: ChannelPlacementGroupStateType
|
|
2750
2806
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2751
2807
|
|
|
@@ -2756,7 +2812,7 @@ class UpdateCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2756
2812
|
Id: str
|
|
2757
2813
|
ModifiedAt: datetime
|
|
2758
2814
|
Name: str
|
|
2759
|
-
Tags:
|
|
2815
|
+
Tags: dict[str, str]
|
|
2760
2816
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2761
2817
|
|
|
2762
2818
|
class UpdateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
@@ -2773,7 +2829,7 @@ class UpdateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
2773
2829
|
Name: str
|
|
2774
2830
|
Period: int
|
|
2775
2831
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
2776
|
-
Tags:
|
|
2832
|
+
Tags: dict[str, str]
|
|
2777
2833
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
2778
2834
|
Threshold: float
|
|
2779
2835
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -2786,11 +2842,11 @@ class UpdateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2786
2842
|
Id: str
|
|
2787
2843
|
ModifiedAt: datetime
|
|
2788
2844
|
Name: str
|
|
2789
|
-
Tags:
|
|
2845
|
+
Tags: dict[str, str]
|
|
2790
2846
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2791
2847
|
|
|
2792
2848
|
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
2793
|
-
CaptionLanguageMappings: NotRequired[
|
|
2849
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
2794
2850
|
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
2795
2851
|
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
2796
2852
|
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
@@ -2817,8 +2873,13 @@ class TeletextSourceSettingsTypeDef(TypedDict):
|
|
|
2817
2873
|
OutputRectangle: NotRequired[CaptionRectangleTypeDef]
|
|
2818
2874
|
PageNumber: NotRequired[str]
|
|
2819
2875
|
|
|
2876
|
+
class ListAlertsResponseTypeDef(TypedDict):
|
|
2877
|
+
Alerts: list[ChannelAlertTypeDef]
|
|
2878
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
2879
|
+
NextToken: NotRequired[str]
|
|
2880
|
+
|
|
2820
2881
|
class ListVersionsResponseTypeDef(TypedDict):
|
|
2821
|
-
Versions:
|
|
2882
|
+
Versions: list[ChannelEngineVersionResponseTypeDef]
|
|
2822
2883
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2823
2884
|
|
|
2824
2885
|
class PipelineDetailTypeDef(TypedDict):
|
|
@@ -2830,12 +2891,17 @@ class PipelineDetailTypeDef(TypedDict):
|
|
|
2830
2891
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
2831
2892
|
|
|
2832
2893
|
class ListCloudWatchAlarmTemplateGroupsResponseTypeDef(TypedDict):
|
|
2833
|
-
CloudWatchAlarmTemplateGroups:
|
|
2894
|
+
CloudWatchAlarmTemplateGroups: list[CloudWatchAlarmTemplateGroupSummaryTypeDef]
|
|
2834
2895
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2835
2896
|
NextToken: NotRequired[str]
|
|
2836
2897
|
|
|
2837
2898
|
class ListCloudWatchAlarmTemplatesResponseTypeDef(TypedDict):
|
|
2838
|
-
CloudWatchAlarmTemplates:
|
|
2899
|
+
CloudWatchAlarmTemplates: list[CloudWatchAlarmTemplateSummaryTypeDef]
|
|
2900
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
2901
|
+
NextToken: NotRequired[str]
|
|
2902
|
+
|
|
2903
|
+
class ListClusterAlertsResponseTypeDef(TypedDict):
|
|
2904
|
+
Alerts: list[ClusterAlertTypeDef]
|
|
2839
2905
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2840
2906
|
NextToken: NotRequired[str]
|
|
2841
2907
|
|
|
@@ -2845,14 +2911,14 @@ class ClusterNetworkSettingsCreateRequestTypeDef(TypedDict):
|
|
|
2845
2911
|
|
|
2846
2912
|
class ClusterNetworkSettingsTypeDef(TypedDict):
|
|
2847
2913
|
DefaultRoute: NotRequired[str]
|
|
2848
|
-
InterfaceMappings: NotRequired[
|
|
2914
|
+
InterfaceMappings: NotRequired[list[InterfaceMappingTypeDef]]
|
|
2849
2915
|
|
|
2850
2916
|
class ClusterNetworkSettingsUpdateRequestTypeDef(TypedDict):
|
|
2851
2917
|
DefaultRoute: NotRequired[str]
|
|
2852
2918
|
InterfaceMappings: NotRequired[Sequence[InterfaceMappingUpdateRequestTypeDef]]
|
|
2853
2919
|
|
|
2854
2920
|
class ColorCorrectionSettingsOutputTypeDef(TypedDict):
|
|
2855
|
-
GlobalColorCorrections:
|
|
2921
|
+
GlobalColorCorrections: list[ColorCorrectionTypeDef]
|
|
2856
2922
|
|
|
2857
2923
|
class ColorCorrectionSettingsTypeDef(TypedDict):
|
|
2858
2924
|
GlobalColorCorrections: Sequence[ColorCorrectionTypeDef]
|
|
@@ -2870,26 +2936,26 @@ class CreateEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
2870
2936
|
Arn: str
|
|
2871
2937
|
CreatedAt: datetime
|
|
2872
2938
|
Description: str
|
|
2873
|
-
EventTargets:
|
|
2939
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
2874
2940
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
2875
2941
|
GroupId: str
|
|
2876
2942
|
Id: str
|
|
2877
2943
|
ModifiedAt: datetime
|
|
2878
2944
|
Name: str
|
|
2879
|
-
Tags:
|
|
2945
|
+
Tags: dict[str, str]
|
|
2880
2946
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2881
2947
|
|
|
2882
2948
|
class GetEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
2883
2949
|
Arn: str
|
|
2884
2950
|
CreatedAt: datetime
|
|
2885
2951
|
Description: str
|
|
2886
|
-
EventTargets:
|
|
2952
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
2887
2953
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
2888
2954
|
GroupId: str
|
|
2889
2955
|
Id: str
|
|
2890
2956
|
ModifiedAt: datetime
|
|
2891
2957
|
Name: str
|
|
2892
|
-
Tags:
|
|
2958
|
+
Tags: dict[str, str]
|
|
2893
2959
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2894
2960
|
|
|
2895
2961
|
class UpdateEventBridgeRuleTemplateRequestTypeDef(TypedDict):
|
|
@@ -2904,13 +2970,13 @@ class UpdateEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
2904
2970
|
Arn: str
|
|
2905
2971
|
CreatedAt: datetime
|
|
2906
2972
|
Description: str
|
|
2907
|
-
EventTargets:
|
|
2973
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
2908
2974
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
2909
2975
|
GroupId: str
|
|
2910
2976
|
Id: str
|
|
2911
2977
|
ModifiedAt: datetime
|
|
2912
2978
|
Name: str
|
|
2913
|
-
Tags:
|
|
2979
|
+
Tags: dict[str, str]
|
|
2914
2980
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2915
2981
|
|
|
2916
2982
|
class CreateInputSecurityGroupRequestTypeDef(TypedDict):
|
|
@@ -2938,50 +3004,50 @@ class CreateNetworkRequestTypeDef(TypedDict):
|
|
|
2938
3004
|
|
|
2939
3005
|
class CreateNetworkResponseTypeDef(TypedDict):
|
|
2940
3006
|
Arn: str
|
|
2941
|
-
AssociatedClusterIds:
|
|
3007
|
+
AssociatedClusterIds: list[str]
|
|
2942
3008
|
Id: str
|
|
2943
|
-
IpPools:
|
|
3009
|
+
IpPools: list[IpPoolTypeDef]
|
|
2944
3010
|
Name: str
|
|
2945
|
-
Routes:
|
|
3011
|
+
Routes: list[RouteTypeDef]
|
|
2946
3012
|
State: NetworkStateType
|
|
2947
3013
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2948
3014
|
|
|
2949
3015
|
class DeleteNetworkResponseTypeDef(TypedDict):
|
|
2950
3016
|
Arn: str
|
|
2951
|
-
AssociatedClusterIds:
|
|
3017
|
+
AssociatedClusterIds: list[str]
|
|
2952
3018
|
Id: str
|
|
2953
|
-
IpPools:
|
|
3019
|
+
IpPools: list[IpPoolTypeDef]
|
|
2954
3020
|
Name: str
|
|
2955
|
-
Routes:
|
|
3021
|
+
Routes: list[RouteTypeDef]
|
|
2956
3022
|
State: NetworkStateType
|
|
2957
3023
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2958
3024
|
|
|
2959
3025
|
class DescribeNetworkResponseTypeDef(TypedDict):
|
|
2960
3026
|
Arn: str
|
|
2961
|
-
AssociatedClusterIds:
|
|
3027
|
+
AssociatedClusterIds: list[str]
|
|
2962
3028
|
Id: str
|
|
2963
|
-
IpPools:
|
|
3029
|
+
IpPools: list[IpPoolTypeDef]
|
|
2964
3030
|
Name: str
|
|
2965
|
-
Routes:
|
|
3031
|
+
Routes: list[RouteTypeDef]
|
|
2966
3032
|
State: NetworkStateType
|
|
2967
3033
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2968
3034
|
|
|
2969
3035
|
class DescribeNetworkSummaryTypeDef(TypedDict):
|
|
2970
3036
|
Arn: NotRequired[str]
|
|
2971
|
-
AssociatedClusterIds: NotRequired[
|
|
3037
|
+
AssociatedClusterIds: NotRequired[list[str]]
|
|
2972
3038
|
Id: NotRequired[str]
|
|
2973
|
-
IpPools: NotRequired[
|
|
3039
|
+
IpPools: NotRequired[list[IpPoolTypeDef]]
|
|
2974
3040
|
Name: NotRequired[str]
|
|
2975
|
-
Routes: NotRequired[
|
|
3041
|
+
Routes: NotRequired[list[RouteTypeDef]]
|
|
2976
3042
|
State: NotRequired[NetworkStateType]
|
|
2977
3043
|
|
|
2978
3044
|
class UpdateNetworkResponseTypeDef(TypedDict):
|
|
2979
3045
|
Arn: str
|
|
2980
|
-
AssociatedClusterIds:
|
|
3046
|
+
AssociatedClusterIds: list[str]
|
|
2981
3047
|
Id: str
|
|
2982
|
-
IpPools:
|
|
3048
|
+
IpPools: list[IpPoolTypeDef]
|
|
2983
3049
|
Name: str
|
|
2984
|
-
Routes:
|
|
3050
|
+
Routes: list[RouteTypeDef]
|
|
2985
3051
|
State: NetworkStateType
|
|
2986
3052
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2987
3053
|
|
|
@@ -3003,86 +3069,86 @@ class CreateNodeRequestTypeDef(TypedDict):
|
|
|
3003
3069
|
|
|
3004
3070
|
class CreateNodeResponseTypeDef(TypedDict):
|
|
3005
3071
|
Arn: str
|
|
3006
|
-
ChannelPlacementGroups:
|
|
3072
|
+
ChannelPlacementGroups: list[str]
|
|
3007
3073
|
ClusterId: str
|
|
3008
3074
|
ConnectionState: NodeConnectionStateType
|
|
3009
3075
|
Id: str
|
|
3010
3076
|
InstanceArn: str
|
|
3011
3077
|
Name: str
|
|
3012
|
-
NodeInterfaceMappings:
|
|
3078
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3013
3079
|
Role: NodeRoleType
|
|
3014
3080
|
State: NodeStateType
|
|
3015
|
-
SdiSourceMappings:
|
|
3081
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3016
3082
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3017
3083
|
|
|
3018
3084
|
class DeleteNodeResponseTypeDef(TypedDict):
|
|
3019
3085
|
Arn: str
|
|
3020
|
-
ChannelPlacementGroups:
|
|
3086
|
+
ChannelPlacementGroups: list[str]
|
|
3021
3087
|
ClusterId: str
|
|
3022
3088
|
ConnectionState: NodeConnectionStateType
|
|
3023
3089
|
Id: str
|
|
3024
3090
|
InstanceArn: str
|
|
3025
3091
|
Name: str
|
|
3026
|
-
NodeInterfaceMappings:
|
|
3092
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3027
3093
|
Role: NodeRoleType
|
|
3028
3094
|
State: NodeStateType
|
|
3029
|
-
SdiSourceMappings:
|
|
3095
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3030
3096
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3031
3097
|
|
|
3032
3098
|
class DescribeNodeResponseTypeDef(TypedDict):
|
|
3033
3099
|
Arn: str
|
|
3034
|
-
ChannelPlacementGroups:
|
|
3100
|
+
ChannelPlacementGroups: list[str]
|
|
3035
3101
|
ClusterId: str
|
|
3036
3102
|
ConnectionState: NodeConnectionStateType
|
|
3037
3103
|
Id: str
|
|
3038
3104
|
InstanceArn: str
|
|
3039
3105
|
Name: str
|
|
3040
|
-
NodeInterfaceMappings:
|
|
3106
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3041
3107
|
Role: NodeRoleType
|
|
3042
3108
|
State: NodeStateType
|
|
3043
|
-
SdiSourceMappings:
|
|
3109
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3044
3110
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3045
3111
|
|
|
3046
3112
|
class DescribeNodeSummaryTypeDef(TypedDict):
|
|
3047
3113
|
Arn: NotRequired[str]
|
|
3048
|
-
ChannelPlacementGroups: NotRequired[
|
|
3114
|
+
ChannelPlacementGroups: NotRequired[list[str]]
|
|
3049
3115
|
ClusterId: NotRequired[str]
|
|
3050
3116
|
ConnectionState: NotRequired[NodeConnectionStateType]
|
|
3051
3117
|
Id: NotRequired[str]
|
|
3052
3118
|
InstanceArn: NotRequired[str]
|
|
3053
3119
|
ManagedInstanceId: NotRequired[str]
|
|
3054
3120
|
Name: NotRequired[str]
|
|
3055
|
-
NodeInterfaceMappings: NotRequired[
|
|
3121
|
+
NodeInterfaceMappings: NotRequired[list[NodeInterfaceMappingTypeDef]]
|
|
3056
3122
|
Role: NotRequired[NodeRoleType]
|
|
3057
3123
|
State: NotRequired[NodeStateType]
|
|
3058
|
-
SdiSourceMappings: NotRequired[
|
|
3124
|
+
SdiSourceMappings: NotRequired[list[SdiSourceMappingTypeDef]]
|
|
3059
3125
|
|
|
3060
3126
|
class UpdateNodeResponseTypeDef(TypedDict):
|
|
3061
3127
|
Arn: str
|
|
3062
|
-
ChannelPlacementGroups:
|
|
3128
|
+
ChannelPlacementGroups: list[str]
|
|
3063
3129
|
ClusterId: str
|
|
3064
3130
|
ConnectionState: NodeConnectionStateType
|
|
3065
3131
|
Id: str
|
|
3066
3132
|
InstanceArn: str
|
|
3067
3133
|
Name: str
|
|
3068
|
-
NodeInterfaceMappings:
|
|
3134
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3069
3135
|
Role: NodeRoleType
|
|
3070
3136
|
State: NodeStateType
|
|
3071
|
-
SdiSourceMappings:
|
|
3137
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3072
3138
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3073
3139
|
|
|
3074
3140
|
class UpdateNodeStateResponseTypeDef(TypedDict):
|
|
3075
3141
|
Arn: str
|
|
3076
|
-
ChannelPlacementGroups:
|
|
3142
|
+
ChannelPlacementGroups: list[str]
|
|
3077
3143
|
ClusterId: str
|
|
3078
3144
|
ConnectionState: NodeConnectionStateType
|
|
3079
3145
|
Id: str
|
|
3080
3146
|
InstanceArn: str
|
|
3081
3147
|
Name: str
|
|
3082
|
-
NodeInterfaceMappings:
|
|
3148
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3083
3149
|
Role: NodeRoleType
|
|
3084
3150
|
State: NodeStateType
|
|
3085
|
-
SdiSourceMappings:
|
|
3151
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3086
3152
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3087
3153
|
|
|
3088
3154
|
class CreateSdiSourceResponseTypeDef(TypedDict):
|
|
@@ -3133,7 +3199,7 @@ class DeleteReservationResponseTypeDef(TypedDict):
|
|
|
3133
3199
|
ResourceSpecification: ReservationResourceSpecificationTypeDef
|
|
3134
3200
|
Start: str
|
|
3135
3201
|
State: ReservationStateType
|
|
3136
|
-
Tags:
|
|
3202
|
+
Tags: dict[str, str]
|
|
3137
3203
|
UsagePrice: float
|
|
3138
3204
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3139
3205
|
|
|
@@ -3169,7 +3235,7 @@ class DescribeReservationResponseTypeDef(TypedDict):
|
|
|
3169
3235
|
ResourceSpecification: ReservationResourceSpecificationTypeDef
|
|
3170
3236
|
Start: str
|
|
3171
3237
|
State: ReservationStateType
|
|
3172
|
-
Tags:
|
|
3238
|
+
Tags: dict[str, str]
|
|
3173
3239
|
UsagePrice: float
|
|
3174
3240
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3175
3241
|
|
|
@@ -3204,7 +3270,7 @@ class ReservationTypeDef(TypedDict):
|
|
|
3204
3270
|
ResourceSpecification: NotRequired[ReservationResourceSpecificationTypeDef]
|
|
3205
3271
|
Start: NotRequired[str]
|
|
3206
3272
|
State: NotRequired[ReservationStateType]
|
|
3207
|
-
Tags: NotRequired[
|
|
3273
|
+
Tags: NotRequired[dict[str, str]]
|
|
3208
3274
|
UsagePrice: NotRequired[float]
|
|
3209
3275
|
|
|
3210
3276
|
class DescribeChannelPlacementGroupRequestWaitExtraExtraTypeDef(TypedDict):
|
|
@@ -3301,31 +3367,36 @@ class GetSignalMapRequestWaitTypeDef(TypedDict):
|
|
|
3301
3367
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
3302
3368
|
|
|
3303
3369
|
class ListChannelPlacementGroupsResponseTypeDef(TypedDict):
|
|
3304
|
-
ChannelPlacementGroups:
|
|
3370
|
+
ChannelPlacementGroups: list[DescribeChannelPlacementGroupSummaryTypeDef]
|
|
3305
3371
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3306
3372
|
NextToken: NotRequired[str]
|
|
3307
3373
|
|
|
3308
3374
|
class DescribeInputSecurityGroupResponseTypeDef(TypedDict):
|
|
3309
3375
|
Arn: str
|
|
3310
3376
|
Id: str
|
|
3311
|
-
Inputs:
|
|
3377
|
+
Inputs: list[str]
|
|
3312
3378
|
State: InputSecurityGroupStateType
|
|
3313
|
-
Tags:
|
|
3314
|
-
WhitelistRules:
|
|
3379
|
+
Tags: dict[str, str]
|
|
3380
|
+
WhitelistRules: list[InputWhitelistRuleTypeDef]
|
|
3315
3381
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3316
3382
|
|
|
3317
3383
|
class InputSecurityGroupTypeDef(TypedDict):
|
|
3318
3384
|
Arn: NotRequired[str]
|
|
3319
3385
|
Id: NotRequired[str]
|
|
3320
|
-
Inputs: NotRequired[
|
|
3386
|
+
Inputs: NotRequired[list[str]]
|
|
3321
3387
|
State: NotRequired[InputSecurityGroupStateType]
|
|
3322
|
-
Tags: NotRequired[
|
|
3323
|
-
WhitelistRules: NotRequired[
|
|
3388
|
+
Tags: NotRequired[dict[str, str]]
|
|
3389
|
+
WhitelistRules: NotRequired[list[InputWhitelistRuleTypeDef]]
|
|
3324
3390
|
|
|
3325
3391
|
class DescribeScheduleRequestPaginateTypeDef(TypedDict):
|
|
3326
3392
|
ChannelId: str
|
|
3327
3393
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3328
3394
|
|
|
3395
|
+
class ListAlertsRequestPaginateTypeDef(TypedDict):
|
|
3396
|
+
ChannelId: str
|
|
3397
|
+
StateFilter: NotRequired[str]
|
|
3398
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3399
|
+
|
|
3329
3400
|
class ListChannelPlacementGroupsRequestPaginateTypeDef(TypedDict):
|
|
3330
3401
|
ClusterId: str
|
|
3331
3402
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -3344,6 +3415,11 @@ class ListCloudWatchAlarmTemplatesRequestPaginateTypeDef(TypedDict):
|
|
|
3344
3415
|
SignalMapIdentifier: NotRequired[str]
|
|
3345
3416
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3346
3417
|
|
|
3418
|
+
class ListClusterAlertsRequestPaginateTypeDef(TypedDict):
|
|
3419
|
+
ClusterId: str
|
|
3420
|
+
StateFilter: NotRequired[str]
|
|
3421
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3422
|
+
|
|
3347
3423
|
class ListClustersRequestPaginateTypeDef(TypedDict):
|
|
3348
3424
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3349
3425
|
|
|
@@ -3369,6 +3445,11 @@ class ListInputSecurityGroupsRequestPaginateTypeDef(TypedDict):
|
|
|
3369
3445
|
class ListInputsRequestPaginateTypeDef(TypedDict):
|
|
3370
3446
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3371
3447
|
|
|
3448
|
+
class ListMultiplexAlertsRequestPaginateTypeDef(TypedDict):
|
|
3449
|
+
MultiplexId: str
|
|
3450
|
+
StateFilter: NotRequired[str]
|
|
3451
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3452
|
+
|
|
3372
3453
|
class ListMultiplexProgramsRequestPaginateTypeDef(TypedDict):
|
|
3373
3454
|
MultiplexId: str
|
|
3374
3455
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -3467,19 +3548,19 @@ class M2tsSettingsTypeDef(TypedDict):
|
|
|
3467
3548
|
|
|
3468
3549
|
class OutputLockingSettingsOutputTypeDef(TypedDict):
|
|
3469
3550
|
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3470
|
-
PipelineLockingSettings: NotRequired[
|
|
3551
|
+
PipelineLockingSettings: NotRequired[dict[str, Any]]
|
|
3471
3552
|
|
|
3472
3553
|
class OutputLockingSettingsTypeDef(TypedDict):
|
|
3473
3554
|
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3474
3555
|
PipelineLockingSettings: NotRequired[Mapping[str, Any]]
|
|
3475
3556
|
|
|
3476
3557
|
class ListEventBridgeRuleTemplateGroupsResponseTypeDef(TypedDict):
|
|
3477
|
-
EventBridgeRuleTemplateGroups:
|
|
3558
|
+
EventBridgeRuleTemplateGroups: list[EventBridgeRuleTemplateGroupSummaryTypeDef]
|
|
3478
3559
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3479
3560
|
NextToken: NotRequired[str]
|
|
3480
3561
|
|
|
3481
3562
|
class ListEventBridgeRuleTemplatesResponseTypeDef(TypedDict):
|
|
3482
|
-
EventBridgeRuleTemplates:
|
|
3563
|
+
EventBridgeRuleTemplates: list[EventBridgeRuleTemplateSummaryTypeDef]
|
|
3483
3564
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3484
3565
|
NextToken: NotRequired[str]
|
|
3485
3566
|
|
|
@@ -3491,7 +3572,7 @@ class FailoverConditionSettingsTypeDef(TypedDict):
|
|
|
3491
3572
|
class ScheduleActionStartSettingsOutputTypeDef(TypedDict):
|
|
3492
3573
|
FixedModeScheduleActionStartSettings: NotRequired[FixedModeScheduleActionStartSettingsTypeDef]
|
|
3493
3574
|
FollowModeScheduleActionStartSettings: NotRequired[FollowModeScheduleActionStartSettingsTypeDef]
|
|
3494
|
-
ImmediateModeScheduleActionStartSettings: NotRequired[
|
|
3575
|
+
ImmediateModeScheduleActionStartSettings: NotRequired[dict[str, Any]]
|
|
3495
3576
|
|
|
3496
3577
|
class ScheduleActionStartSettingsTypeDef(TypedDict):
|
|
3497
3578
|
FixedModeScheduleActionStartSettings: NotRequired[FixedModeScheduleActionStartSettingsTypeDef]
|
|
@@ -3536,7 +3617,7 @@ class InputDestinationTypeDef(TypedDict):
|
|
|
3536
3617
|
Url: NotRequired[str]
|
|
3537
3618
|
Vpc: NotRequired[InputDestinationVpcTypeDef]
|
|
3538
3619
|
Network: NotRequired[str]
|
|
3539
|
-
NetworkRoutes: NotRequired[
|
|
3620
|
+
NetworkRoutes: NotRequired[list[InputDestinationRouteTypeDef]]
|
|
3540
3621
|
|
|
3541
3622
|
class InputDeviceConfigurableSettingsTypeDef(TypedDict):
|
|
3542
3623
|
ConfiguredInput: NotRequired[InputDeviceConfiguredInputType]
|
|
@@ -3559,12 +3640,12 @@ class InputDeviceUhdSettingsTypeDef(TypedDict):
|
|
|
3559
3640
|
LatencyMs: NotRequired[int]
|
|
3560
3641
|
Codec: NotRequired[InputDeviceCodecType]
|
|
3561
3642
|
MediaconnectSettings: NotRequired[InputDeviceMediaConnectSettingsTypeDef]
|
|
3562
|
-
AudioChannelPairs: NotRequired[
|
|
3643
|
+
AudioChannelPairs: NotRequired[list[InputDeviceUhdAudioChannelPairConfigTypeDef]]
|
|
3563
3644
|
InputResolution: NotRequired[str]
|
|
3564
3645
|
|
|
3565
3646
|
class Smpte2110ReceiverGroupSdpSettingsOutputTypeDef(TypedDict):
|
|
3566
|
-
AncillarySdps: NotRequired[
|
|
3567
|
-
AudioSdps: NotRequired[
|
|
3647
|
+
AncillarySdps: NotRequired[list[InputSdpLocationTypeDef]]
|
|
3648
|
+
AudioSdps: NotRequired[list[InputSdpLocationTypeDef]]
|
|
3568
3649
|
VideoSdp: NotRequired[InputSdpLocationTypeDef]
|
|
3569
3650
|
|
|
3570
3651
|
class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
|
|
@@ -3573,22 +3654,27 @@ class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
|
|
|
3573
3654
|
VideoSdp: NotRequired[InputSdpLocationTypeDef]
|
|
3574
3655
|
|
|
3575
3656
|
class ListInputDeviceTransfersResponseTypeDef(TypedDict):
|
|
3576
|
-
InputDeviceTransfers:
|
|
3657
|
+
InputDeviceTransfers: list[TransferringInputDeviceSummaryTypeDef]
|
|
3658
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
3659
|
+
NextToken: NotRequired[str]
|
|
3660
|
+
|
|
3661
|
+
class ListMultiplexAlertsResponseTypeDef(TypedDict):
|
|
3662
|
+
Alerts: list[MultiplexAlertTypeDef]
|
|
3577
3663
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3578
3664
|
NextToken: NotRequired[str]
|
|
3579
3665
|
|
|
3580
3666
|
class ListMultiplexProgramsResponseTypeDef(TypedDict):
|
|
3581
|
-
MultiplexPrograms:
|
|
3667
|
+
MultiplexPrograms: list[MultiplexProgramSummaryTypeDef]
|
|
3582
3668
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3583
3669
|
NextToken: NotRequired[str]
|
|
3584
3670
|
|
|
3585
3671
|
class ListSdiSourcesResponseTypeDef(TypedDict):
|
|
3586
|
-
SdiSources:
|
|
3672
|
+
SdiSources: list[SdiSourceSummaryTypeDef]
|
|
3587
3673
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3588
3674
|
NextToken: NotRequired[str]
|
|
3589
3675
|
|
|
3590
3676
|
class ListSignalMapsResponseTypeDef(TypedDict):
|
|
3591
|
-
SignalMaps:
|
|
3677
|
+
SignalMaps: list[SignalMapSummaryTypeDef]
|
|
3592
3678
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3593
3679
|
NextToken: NotRequired[str]
|
|
3594
3680
|
|
|
@@ -3600,9 +3686,9 @@ class MediaPackageOutputSettingsTypeDef(TypedDict):
|
|
|
3600
3686
|
MediaPackageV2DestinationSettings: NotRequired[MediaPackageV2DestinationSettingsTypeDef]
|
|
3601
3687
|
|
|
3602
3688
|
class MediaResourceTypeDef(TypedDict):
|
|
3603
|
-
Destinations: NotRequired[
|
|
3689
|
+
Destinations: NotRequired[list[MediaResourceNeighborTypeDef]]
|
|
3604
3690
|
Name: NotRequired[str]
|
|
3605
|
-
Sources: NotRequired[
|
|
3691
|
+
Sources: NotRequired[list[MediaResourceNeighborTypeDef]]
|
|
3606
3692
|
|
|
3607
3693
|
class MotionGraphicsConfigurationOutputTypeDef(TypedDict):
|
|
3608
3694
|
MotionGraphicsSettings: MotionGraphicsSettingsOutputTypeDef
|
|
@@ -3621,7 +3707,7 @@ class MulticastSettingsCreateRequestTypeDef(TypedDict):
|
|
|
3621
3707
|
Sources: NotRequired[Sequence[MulticastSourceCreateRequestTypeDef]]
|
|
3622
3708
|
|
|
3623
3709
|
class MulticastSettingsTypeDef(TypedDict):
|
|
3624
|
-
Sources: NotRequired[
|
|
3710
|
+
Sources: NotRequired[list[MulticastSourceTypeDef]]
|
|
3625
3711
|
|
|
3626
3712
|
class MulticastSettingsUpdateRequestTypeDef(TypedDict):
|
|
3627
3713
|
Sources: NotRequired[Sequence[MulticastSourceUpdateRequestTypeDef]]
|
|
@@ -3638,14 +3724,14 @@ MultiplexProgramPacketIdentifiersMapUnionTypeDef = Union[
|
|
|
3638
3724
|
|
|
3639
3725
|
class MultiplexSummaryTypeDef(TypedDict):
|
|
3640
3726
|
Arn: NotRequired[str]
|
|
3641
|
-
AvailabilityZones: NotRequired[
|
|
3727
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
3642
3728
|
Id: NotRequired[str]
|
|
3643
3729
|
MultiplexSettings: NotRequired[MultiplexSettingsSummaryTypeDef]
|
|
3644
3730
|
Name: NotRequired[str]
|
|
3645
3731
|
PipelinesRunningCount: NotRequired[int]
|
|
3646
3732
|
ProgramCount: NotRequired[int]
|
|
3647
3733
|
State: NotRequired[MultiplexStateType]
|
|
3648
|
-
Tags: NotRequired[
|
|
3734
|
+
Tags: NotRequired[dict[str, str]]
|
|
3649
3735
|
|
|
3650
3736
|
class MultiplexVideoSettingsTypeDef(TypedDict):
|
|
3651
3737
|
ConstantBitrate: NotRequired[int]
|
|
@@ -3658,11 +3744,11 @@ class NielsenWatermarksSettingsTypeDef(TypedDict):
|
|
|
3658
3744
|
|
|
3659
3745
|
class OutputDestinationOutputTypeDef(TypedDict):
|
|
3660
3746
|
Id: NotRequired[str]
|
|
3661
|
-
MediaPackageSettings: NotRequired[
|
|
3747
|
+
MediaPackageSettings: NotRequired[list[MediaPackageOutputDestinationSettingsTypeDef]]
|
|
3662
3748
|
MultiplexSettings: NotRequired[MultiplexProgramChannelDestinationSettingsTypeDef]
|
|
3663
|
-
Settings: NotRequired[
|
|
3664
|
-
SrtSettings: NotRequired[
|
|
3665
|
-
LogicalInterfaceNames: NotRequired[
|
|
3749
|
+
Settings: NotRequired[list[OutputDestinationSettingsTypeDef]]
|
|
3750
|
+
SrtSettings: NotRequired[list[SrtOutputDestinationSettingsTypeDef]]
|
|
3751
|
+
LogicalInterfaceNames: NotRequired[list[str]]
|
|
3666
3752
|
|
|
3667
3753
|
class OutputDestinationTypeDef(TypedDict):
|
|
3668
3754
|
Id: NotRequired[str]
|
|
@@ -3673,7 +3759,7 @@ class OutputDestinationTypeDef(TypedDict):
|
|
|
3673
3759
|
LogicalInterfaceNames: NotRequired[Sequence[str]]
|
|
3674
3760
|
|
|
3675
3761
|
class PauseStateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
3676
|
-
Pipelines: NotRequired[
|
|
3762
|
+
Pipelines: NotRequired[list[PipelinePauseStateSettingsTypeDef]]
|
|
3677
3763
|
|
|
3678
3764
|
class PauseStateScheduleActionSettingsTypeDef(TypedDict):
|
|
3679
3765
|
Pipelines: NotRequired[Sequence[PipelinePauseStateSettingsTypeDef]]
|
|
@@ -3725,7 +3811,7 @@ StaticImageOutputDeactivateScheduleActionSettingsUnionTypeDef = Union[
|
|
|
3725
3811
|
|
|
3726
3812
|
class ThumbnailDetailTypeDef(TypedDict):
|
|
3727
3813
|
PipelineId: NotRequired[str]
|
|
3728
|
-
Thumbnails: NotRequired[
|
|
3814
|
+
Thumbnails: NotRequired[list[ThumbnailTypeDef]]
|
|
3729
3815
|
|
|
3730
3816
|
class VideoSelectorSettingsTypeDef(TypedDict):
|
|
3731
3817
|
VideoSelectorPid: NotRequired[VideoSelectorPidTypeDef]
|
|
@@ -3744,11 +3830,11 @@ class CmafIngestGroupSettingsOutputTypeDef(TypedDict):
|
|
|
3744
3830
|
Scte35NameModifier: NotRequired[str]
|
|
3745
3831
|
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
3746
3832
|
Id3NameModifier: NotRequired[str]
|
|
3747
|
-
CaptionLanguageMappings: NotRequired[
|
|
3833
|
+
CaptionLanguageMappings: NotRequired[list[CmafIngestCaptionLanguageMappingTypeDef]]
|
|
3748
3834
|
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
3749
3835
|
TimedMetadataId3Period: NotRequired[int]
|
|
3750
3836
|
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
3751
|
-
AdditionalDestinations: NotRequired[
|
|
3837
|
+
AdditionalDestinations: NotRequired[list[AdditionalDestinationsTypeDef]]
|
|
3752
3838
|
|
|
3753
3839
|
class CmafIngestGroupSettingsTypeDef(TypedDict):
|
|
3754
3840
|
Destination: OutputLocationRefTypeDef
|
|
@@ -3775,7 +3861,7 @@ class ArchiveGroupSettingsTypeDef(TypedDict):
|
|
|
3775
3861
|
RolloverInterval: NotRequired[int]
|
|
3776
3862
|
|
|
3777
3863
|
class RemixSettingsOutputTypeDef(TypedDict):
|
|
3778
|
-
ChannelMappings:
|
|
3864
|
+
ChannelMappings: list[AudioChannelMappingOutputTypeDef]
|
|
3779
3865
|
ChannelsIn: NotRequired[int]
|
|
3780
3866
|
ChannelsOut: NotRequired[int]
|
|
3781
3867
|
|
|
@@ -3785,17 +3871,17 @@ class RemixSettingsTypeDef(TypedDict):
|
|
|
3785
3871
|
ChannelsOut: NotRequired[int]
|
|
3786
3872
|
|
|
3787
3873
|
class CaptionDestinationSettingsOutputTypeDef(TypedDict):
|
|
3788
|
-
AribDestinationSettings: NotRequired[
|
|
3874
|
+
AribDestinationSettings: NotRequired[dict[str, Any]]
|
|
3789
3875
|
BurnInDestinationSettings: NotRequired[BurnInDestinationSettingsTypeDef]
|
|
3790
3876
|
DvbSubDestinationSettings: NotRequired[DvbSubDestinationSettingsTypeDef]
|
|
3791
3877
|
EbuTtDDestinationSettings: NotRequired[EbuTtDDestinationSettingsTypeDef]
|
|
3792
|
-
EmbeddedDestinationSettings: NotRequired[
|
|
3793
|
-
EmbeddedPlusScte20DestinationSettings: NotRequired[
|
|
3794
|
-
RtmpCaptionInfoDestinationSettings: NotRequired[
|
|
3795
|
-
Scte20PlusEmbeddedDestinationSettings: NotRequired[
|
|
3796
|
-
Scte27DestinationSettings: NotRequired[
|
|
3797
|
-
SmpteTtDestinationSettings: NotRequired[
|
|
3798
|
-
TeletextDestinationSettings: NotRequired[
|
|
3878
|
+
EmbeddedDestinationSettings: NotRequired[dict[str, Any]]
|
|
3879
|
+
EmbeddedPlusScte20DestinationSettings: NotRequired[dict[str, Any]]
|
|
3880
|
+
RtmpCaptionInfoDestinationSettings: NotRequired[dict[str, Any]]
|
|
3881
|
+
Scte20PlusEmbeddedDestinationSettings: NotRequired[dict[str, Any]]
|
|
3882
|
+
Scte27DestinationSettings: NotRequired[dict[str, Any]]
|
|
3883
|
+
SmpteTtDestinationSettings: NotRequired[dict[str, Any]]
|
|
3884
|
+
TeletextDestinationSettings: NotRequired[dict[str, Any]]
|
|
3799
3885
|
TtmlDestinationSettings: NotRequired[TtmlDestinationSettingsTypeDef]
|
|
3800
3886
|
WebvttDestinationSettings: NotRequired[WebvttDestinationSettingsTypeDef]
|
|
3801
3887
|
|
|
@@ -3890,7 +3976,7 @@ class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
|
3890
3976
|
|
|
3891
3977
|
class CaptionSelectorSettingsOutputTypeDef(TypedDict):
|
|
3892
3978
|
AncillarySourceSettings: NotRequired[AncillarySourceSettingsTypeDef]
|
|
3893
|
-
AribSourceSettings: NotRequired[
|
|
3979
|
+
AribSourceSettings: NotRequired[dict[str, Any]]
|
|
3894
3980
|
DvbSubSourceSettings: NotRequired[DvbSubSourceSettingsTypeDef]
|
|
3895
3981
|
EmbeddedSourceSettings: NotRequired[EmbeddedSourceSettingsTypeDef]
|
|
3896
3982
|
Scte20SourceSettings: NotRequired[Scte20SourceSettingsTypeDef]
|
|
@@ -3916,7 +4002,7 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
3916
4002
|
|
|
3917
4003
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
3918
4004
|
Arn: str
|
|
3919
|
-
ChannelIds:
|
|
4005
|
+
ChannelIds: list[str]
|
|
3920
4006
|
ClusterType: Literal["ON_PREMISES"]
|
|
3921
4007
|
Id: str
|
|
3922
4008
|
InstanceRoleArn: str
|
|
@@ -3927,7 +4013,7 @@ class CreateClusterResponseTypeDef(TypedDict):
|
|
|
3927
4013
|
|
|
3928
4014
|
class DeleteClusterResponseTypeDef(TypedDict):
|
|
3929
4015
|
Arn: str
|
|
3930
|
-
ChannelIds:
|
|
4016
|
+
ChannelIds: list[str]
|
|
3931
4017
|
ClusterType: Literal["ON_PREMISES"]
|
|
3932
4018
|
Id: str
|
|
3933
4019
|
InstanceRoleArn: str
|
|
@@ -3938,7 +4024,7 @@ class DeleteClusterResponseTypeDef(TypedDict):
|
|
|
3938
4024
|
|
|
3939
4025
|
class DescribeClusterResponseTypeDef(TypedDict):
|
|
3940
4026
|
Arn: str
|
|
3941
|
-
ChannelIds:
|
|
4027
|
+
ChannelIds: list[str]
|
|
3942
4028
|
ClusterType: Literal["ON_PREMISES"]
|
|
3943
4029
|
Id: str
|
|
3944
4030
|
InstanceRoleArn: str
|
|
@@ -3949,7 +4035,7 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
3949
4035
|
|
|
3950
4036
|
class DescribeClusterSummaryTypeDef(TypedDict):
|
|
3951
4037
|
Arn: NotRequired[str]
|
|
3952
|
-
ChannelIds: NotRequired[
|
|
4038
|
+
ChannelIds: NotRequired[list[str]]
|
|
3953
4039
|
ClusterType: NotRequired[Literal["ON_PREMISES"]]
|
|
3954
4040
|
Id: NotRequired[str]
|
|
3955
4041
|
InstanceRoleArn: NotRequired[str]
|
|
@@ -3959,7 +4045,7 @@ class DescribeClusterSummaryTypeDef(TypedDict):
|
|
|
3959
4045
|
|
|
3960
4046
|
class UpdateClusterResponseTypeDef(TypedDict):
|
|
3961
4047
|
Arn: str
|
|
3962
|
-
ChannelIds:
|
|
4048
|
+
ChannelIds: list[str]
|
|
3963
4049
|
ClusterType: Literal["ON_PREMISES"]
|
|
3964
4050
|
Id: str
|
|
3965
4051
|
Name: str
|
|
@@ -3973,22 +4059,22 @@ class UpdateClusterRequestTypeDef(TypedDict):
|
|
|
3973
4059
|
NetworkSettings: NotRequired[ClusterNetworkSettingsUpdateRequestTypeDef]
|
|
3974
4060
|
|
|
3975
4061
|
class ListNetworksResponseTypeDef(TypedDict):
|
|
3976
|
-
Networks:
|
|
4062
|
+
Networks: list[DescribeNetworkSummaryTypeDef]
|
|
3977
4063
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3978
4064
|
NextToken: NotRequired[str]
|
|
3979
4065
|
|
|
3980
4066
|
class ListNodesResponseTypeDef(TypedDict):
|
|
3981
|
-
Nodes:
|
|
4067
|
+
Nodes: list[DescribeNodeSummaryTypeDef]
|
|
3982
4068
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3983
4069
|
NextToken: NotRequired[str]
|
|
3984
4070
|
|
|
3985
4071
|
class ListOfferingsResponseTypeDef(TypedDict):
|
|
3986
|
-
Offerings:
|
|
4072
|
+
Offerings: list[OfferingTypeDef]
|
|
3987
4073
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3988
4074
|
NextToken: NotRequired[str]
|
|
3989
4075
|
|
|
3990
4076
|
class ListReservationsResponseTypeDef(TypedDict):
|
|
3991
|
-
Reservations:
|
|
4077
|
+
Reservations: list[ReservationTypeDef]
|
|
3992
4078
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3993
4079
|
NextToken: NotRequired[str]
|
|
3994
4080
|
|
|
@@ -4005,7 +4091,7 @@ class CreateInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
4005
4091
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4006
4092
|
|
|
4007
4093
|
class ListInputSecurityGroupsResponseTypeDef(TypedDict):
|
|
4008
|
-
InputSecurityGroups:
|
|
4094
|
+
InputSecurityGroups: list[InputSecurityGroupTypeDef]
|
|
4009
4095
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4010
4096
|
NextToken: NotRequired[str]
|
|
4011
4097
|
|
|
@@ -4015,7 +4101,7 @@ class UpdateInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
4015
4101
|
|
|
4016
4102
|
class ArchiveContainerSettingsOutputTypeDef(TypedDict):
|
|
4017
4103
|
M2tsSettings: NotRequired[M2tsSettingsTypeDef]
|
|
4018
|
-
RawSettings: NotRequired[
|
|
4104
|
+
RawSettings: NotRequired[dict[str, Any]]
|
|
4019
4105
|
|
|
4020
4106
|
class ArchiveContainerSettingsTypeDef(TypedDict):
|
|
4021
4107
|
M2tsSettings: NotRequired[M2tsSettingsTypeDef]
|
|
@@ -4255,7 +4341,7 @@ class Mpeg2SettingsTypeDef(TypedDict):
|
|
|
4255
4341
|
class InputPrepareScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4256
4342
|
InputAttachmentNameReference: NotRequired[str]
|
|
4257
4343
|
InputClippingSettings: NotRequired[InputClippingSettingsTypeDef]
|
|
4258
|
-
UrlPath: NotRequired[
|
|
4344
|
+
UrlPath: NotRequired[list[str]]
|
|
4259
4345
|
|
|
4260
4346
|
class InputPrepareScheduleActionSettingsTypeDef(TypedDict):
|
|
4261
4347
|
InputAttachmentNameReference: NotRequired[str]
|
|
@@ -4265,7 +4351,7 @@ class InputPrepareScheduleActionSettingsTypeDef(TypedDict):
|
|
|
4265
4351
|
class InputSwitchScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4266
4352
|
InputAttachmentNameReference: str
|
|
4267
4353
|
InputClippingSettings: NotRequired[InputClippingSettingsTypeDef]
|
|
4268
|
-
UrlPath: NotRequired[
|
|
4354
|
+
UrlPath: NotRequired[list[str]]
|
|
4269
4355
|
|
|
4270
4356
|
class InputSwitchScheduleActionSettingsTypeDef(TypedDict):
|
|
4271
4357
|
InputAttachmentNameReference: str
|
|
@@ -4294,9 +4380,9 @@ DescribeInputDeviceResponseTypeDef = TypedDict(
|
|
|
4294
4380
|
"SerialNumber": str,
|
|
4295
4381
|
"Type": InputDeviceTypeType,
|
|
4296
4382
|
"UhdDeviceSettings": InputDeviceUhdSettingsTypeDef,
|
|
4297
|
-
"Tags":
|
|
4383
|
+
"Tags": dict[str, str],
|
|
4298
4384
|
"AvailabilityZone": str,
|
|
4299
|
-
"MedialiveInputArns":
|
|
4385
|
+
"MedialiveInputArns": list[str],
|
|
4300
4386
|
"OutputType": InputDeviceOutputTypeType,
|
|
4301
4387
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4302
4388
|
},
|
|
@@ -4316,9 +4402,9 @@ InputDeviceSummaryTypeDef = TypedDict(
|
|
|
4316
4402
|
"SerialNumber": NotRequired[str],
|
|
4317
4403
|
"Type": NotRequired[InputDeviceTypeType],
|
|
4318
4404
|
"UhdDeviceSettings": NotRequired[InputDeviceUhdSettingsTypeDef],
|
|
4319
|
-
"Tags": NotRequired[
|
|
4405
|
+
"Tags": NotRequired[dict[str, str]],
|
|
4320
4406
|
"AvailabilityZone": NotRequired[str],
|
|
4321
|
-
"MedialiveInputArns": NotRequired[
|
|
4407
|
+
"MedialiveInputArns": NotRequired[list[str]],
|
|
4322
4408
|
"OutputType": NotRequired[InputDeviceOutputTypeType],
|
|
4323
4409
|
},
|
|
4324
4410
|
)
|
|
@@ -4337,9 +4423,9 @@ UpdateInputDeviceResponseTypeDef = TypedDict(
|
|
|
4337
4423
|
"SerialNumber": str,
|
|
4338
4424
|
"Type": InputDeviceTypeType,
|
|
4339
4425
|
"UhdDeviceSettings": InputDeviceUhdSettingsTypeDef,
|
|
4340
|
-
"Tags":
|
|
4426
|
+
"Tags": dict[str, str],
|
|
4341
4427
|
"AvailabilityZone": str,
|
|
4342
|
-
"MedialiveInputArns":
|
|
4428
|
+
"MedialiveInputArns": list[str],
|
|
4343
4429
|
"OutputType": InputDeviceOutputTypeType,
|
|
4344
4430
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4345
4431
|
},
|
|
@@ -4354,7 +4440,7 @@ class Smpte2110ReceiverGroupTypeDef(TypedDict):
|
|
|
4354
4440
|
class HlsSettingsOutputTypeDef(TypedDict):
|
|
4355
4441
|
AudioOnlyHlsSettings: NotRequired[AudioOnlyHlsSettingsTypeDef]
|
|
4356
4442
|
Fmp4HlsSettings: NotRequired[Fmp4HlsSettingsTypeDef]
|
|
4357
|
-
FrameCaptureHlsSettings: NotRequired[
|
|
4443
|
+
FrameCaptureHlsSettings: NotRequired[dict[str, Any]]
|
|
4358
4444
|
StandardHlsSettings: NotRequired[StandardHlsSettingsTypeDef]
|
|
4359
4445
|
|
|
4360
4446
|
class HlsSettingsTypeDef(TypedDict):
|
|
@@ -4365,107 +4451,107 @@ class HlsSettingsTypeDef(TypedDict):
|
|
|
4365
4451
|
|
|
4366
4452
|
class CreateSignalMapResponseTypeDef(TypedDict):
|
|
4367
4453
|
Arn: str
|
|
4368
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
4454
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4369
4455
|
CreatedAt: datetime
|
|
4370
4456
|
Description: str
|
|
4371
4457
|
DiscoveryEntryPointArn: str
|
|
4372
4458
|
ErrorMessage: str
|
|
4373
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4374
|
-
FailedMediaResourceMap:
|
|
4459
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
4460
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4375
4461
|
Id: str
|
|
4376
4462
|
LastDiscoveredAt: datetime
|
|
4377
4463
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4378
|
-
MediaResourceMap:
|
|
4464
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4379
4465
|
ModifiedAt: datetime
|
|
4380
4466
|
MonitorChangesPendingDeployment: bool
|
|
4381
4467
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4382
4468
|
Name: str
|
|
4383
4469
|
Status: SignalMapStatusType
|
|
4384
|
-
Tags:
|
|
4470
|
+
Tags: dict[str, str]
|
|
4385
4471
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4386
4472
|
|
|
4387
4473
|
class GetSignalMapResponseTypeDef(TypedDict):
|
|
4388
4474
|
Arn: str
|
|
4389
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
4475
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4390
4476
|
CreatedAt: datetime
|
|
4391
4477
|
Description: str
|
|
4392
4478
|
DiscoveryEntryPointArn: str
|
|
4393
4479
|
ErrorMessage: str
|
|
4394
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4395
|
-
FailedMediaResourceMap:
|
|
4480
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
4481
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4396
4482
|
Id: str
|
|
4397
4483
|
LastDiscoveredAt: datetime
|
|
4398
4484
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4399
|
-
MediaResourceMap:
|
|
4485
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4400
4486
|
ModifiedAt: datetime
|
|
4401
4487
|
MonitorChangesPendingDeployment: bool
|
|
4402
4488
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4403
4489
|
Name: str
|
|
4404
4490
|
Status: SignalMapStatusType
|
|
4405
|
-
Tags:
|
|
4491
|
+
Tags: dict[str, str]
|
|
4406
4492
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4407
4493
|
|
|
4408
4494
|
class StartDeleteMonitorDeploymentResponseTypeDef(TypedDict):
|
|
4409
4495
|
Arn: str
|
|
4410
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
4496
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4411
4497
|
CreatedAt: datetime
|
|
4412
4498
|
Description: str
|
|
4413
4499
|
DiscoveryEntryPointArn: str
|
|
4414
4500
|
ErrorMessage: str
|
|
4415
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4416
|
-
FailedMediaResourceMap:
|
|
4501
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
4502
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4417
4503
|
Id: str
|
|
4418
4504
|
LastDiscoveredAt: datetime
|
|
4419
4505
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4420
|
-
MediaResourceMap:
|
|
4506
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4421
4507
|
ModifiedAt: datetime
|
|
4422
4508
|
MonitorChangesPendingDeployment: bool
|
|
4423
4509
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4424
4510
|
Name: str
|
|
4425
4511
|
Status: SignalMapStatusType
|
|
4426
|
-
Tags:
|
|
4512
|
+
Tags: dict[str, str]
|
|
4427
4513
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4428
4514
|
|
|
4429
4515
|
class StartMonitorDeploymentResponseTypeDef(TypedDict):
|
|
4430
4516
|
Arn: str
|
|
4431
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
4517
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4432
4518
|
CreatedAt: datetime
|
|
4433
4519
|
Description: str
|
|
4434
4520
|
DiscoveryEntryPointArn: str
|
|
4435
4521
|
ErrorMessage: str
|
|
4436
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4437
|
-
FailedMediaResourceMap:
|
|
4522
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
4523
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4438
4524
|
Id: str
|
|
4439
4525
|
LastDiscoveredAt: datetime
|
|
4440
4526
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4441
|
-
MediaResourceMap:
|
|
4527
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4442
4528
|
ModifiedAt: datetime
|
|
4443
4529
|
MonitorChangesPendingDeployment: bool
|
|
4444
4530
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4445
4531
|
Name: str
|
|
4446
4532
|
Status: SignalMapStatusType
|
|
4447
|
-
Tags:
|
|
4533
|
+
Tags: dict[str, str]
|
|
4448
4534
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4449
4535
|
|
|
4450
4536
|
class StartUpdateSignalMapResponseTypeDef(TypedDict):
|
|
4451
4537
|
Arn: str
|
|
4452
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
4538
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4453
4539
|
CreatedAt: datetime
|
|
4454
4540
|
Description: str
|
|
4455
4541
|
DiscoveryEntryPointArn: str
|
|
4456
4542
|
ErrorMessage: str
|
|
4457
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4458
|
-
FailedMediaResourceMap:
|
|
4543
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
4544
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4459
4545
|
Id: str
|
|
4460
4546
|
LastDiscoveredAt: datetime
|
|
4461
4547
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4462
|
-
MediaResourceMap:
|
|
4548
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4463
4549
|
ModifiedAt: datetime
|
|
4464
4550
|
MonitorChangesPendingDeployment: bool
|
|
4465
4551
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4466
4552
|
Name: str
|
|
4467
4553
|
Status: SignalMapStatusType
|
|
4468
|
-
Tags:
|
|
4554
|
+
Tags: dict[str, str]
|
|
4469
4555
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4470
4556
|
|
|
4471
4557
|
class MultiplexOutputSettingsTypeDef(TypedDict):
|
|
@@ -4474,66 +4560,66 @@ class MultiplexOutputSettingsTypeDef(TypedDict):
|
|
|
4474
4560
|
|
|
4475
4561
|
class DeleteMultiplexResponseTypeDef(TypedDict):
|
|
4476
4562
|
Arn: str
|
|
4477
|
-
AvailabilityZones:
|
|
4478
|
-
Destinations:
|
|
4563
|
+
AvailabilityZones: list[str]
|
|
4564
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
4479
4565
|
Id: str
|
|
4480
4566
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
4481
4567
|
Name: str
|
|
4482
4568
|
PipelinesRunningCount: int
|
|
4483
4569
|
ProgramCount: int
|
|
4484
4570
|
State: MultiplexStateType
|
|
4485
|
-
Tags:
|
|
4571
|
+
Tags: dict[str, str]
|
|
4486
4572
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4487
4573
|
|
|
4488
4574
|
class DescribeMultiplexResponseTypeDef(TypedDict):
|
|
4489
4575
|
Arn: str
|
|
4490
|
-
AvailabilityZones:
|
|
4491
|
-
Destinations:
|
|
4576
|
+
AvailabilityZones: list[str]
|
|
4577
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
4492
4578
|
Id: str
|
|
4493
4579
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
4494
4580
|
Name: str
|
|
4495
4581
|
PipelinesRunningCount: int
|
|
4496
4582
|
ProgramCount: int
|
|
4497
4583
|
State: MultiplexStateType
|
|
4498
|
-
Tags:
|
|
4584
|
+
Tags: dict[str, str]
|
|
4499
4585
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4500
4586
|
|
|
4501
4587
|
class MultiplexTypeDef(TypedDict):
|
|
4502
4588
|
Arn: NotRequired[str]
|
|
4503
|
-
AvailabilityZones: NotRequired[
|
|
4504
|
-
Destinations: NotRequired[
|
|
4589
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
4590
|
+
Destinations: NotRequired[list[MultiplexOutputDestinationTypeDef]]
|
|
4505
4591
|
Id: NotRequired[str]
|
|
4506
4592
|
MultiplexSettings: NotRequired[MultiplexSettingsTypeDef]
|
|
4507
4593
|
Name: NotRequired[str]
|
|
4508
4594
|
PipelinesRunningCount: NotRequired[int]
|
|
4509
4595
|
ProgramCount: NotRequired[int]
|
|
4510
4596
|
State: NotRequired[MultiplexStateType]
|
|
4511
|
-
Tags: NotRequired[
|
|
4597
|
+
Tags: NotRequired[dict[str, str]]
|
|
4512
4598
|
|
|
4513
4599
|
class StartMultiplexResponseTypeDef(TypedDict):
|
|
4514
4600
|
Arn: str
|
|
4515
|
-
AvailabilityZones:
|
|
4516
|
-
Destinations:
|
|
4601
|
+
AvailabilityZones: list[str]
|
|
4602
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
4517
4603
|
Id: str
|
|
4518
4604
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
4519
4605
|
Name: str
|
|
4520
4606
|
PipelinesRunningCount: int
|
|
4521
4607
|
ProgramCount: int
|
|
4522
4608
|
State: MultiplexStateType
|
|
4523
|
-
Tags:
|
|
4609
|
+
Tags: dict[str, str]
|
|
4524
4610
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4525
4611
|
|
|
4526
4612
|
class StopMultiplexResponseTypeDef(TypedDict):
|
|
4527
4613
|
Arn: str
|
|
4528
|
-
AvailabilityZones:
|
|
4529
|
-
Destinations:
|
|
4614
|
+
AvailabilityZones: list[str]
|
|
4615
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
4530
4616
|
Id: str
|
|
4531
4617
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
4532
4618
|
Name: str
|
|
4533
4619
|
PipelinesRunningCount: int
|
|
4534
4620
|
ProgramCount: int
|
|
4535
4621
|
State: MultiplexStateType
|
|
4536
|
-
Tags:
|
|
4622
|
+
Tags: dict[str, str]
|
|
4537
4623
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4538
4624
|
|
|
4539
4625
|
class UpdateMultiplexRequestTypeDef(TypedDict):
|
|
@@ -4545,7 +4631,7 @@ class UpdateMultiplexRequestTypeDef(TypedDict):
|
|
|
4545
4631
|
]
|
|
4546
4632
|
|
|
4547
4633
|
class ListMultiplexesResponseTypeDef(TypedDict):
|
|
4548
|
-
Multiplexes:
|
|
4634
|
+
Multiplexes: list[MultiplexSummaryTypeDef]
|
|
4549
4635
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4550
4636
|
NextToken: NotRequired[str]
|
|
4551
4637
|
|
|
@@ -4570,10 +4656,10 @@ class SrtSettingsRequestTypeDef(TypedDict):
|
|
|
4570
4656
|
SrtCallerSources: NotRequired[Sequence[SrtCallerSourceRequestTypeDef]]
|
|
4571
4657
|
|
|
4572
4658
|
class SrtSettingsTypeDef(TypedDict):
|
|
4573
|
-
SrtCallerSources: NotRequired[
|
|
4659
|
+
SrtCallerSources: NotRequired[list[SrtCallerSourceTypeDef]]
|
|
4574
4660
|
|
|
4575
4661
|
class DescribeThumbnailsResponseTypeDef(TypedDict):
|
|
4576
|
-
ThumbnailDetails:
|
|
4662
|
+
ThumbnailDetails: list[ThumbnailDetailTypeDef]
|
|
4577
4663
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4578
4664
|
|
|
4579
4665
|
class VideoSelectorTypeDef(TypedDict):
|
|
@@ -4589,7 +4675,7 @@ class CaptionDescriptionOutputTypeDef(TypedDict):
|
|
|
4589
4675
|
DestinationSettings: NotRequired[CaptionDestinationSettingsOutputTypeDef]
|
|
4590
4676
|
LanguageCode: NotRequired[str]
|
|
4591
4677
|
LanguageDescription: NotRequired[str]
|
|
4592
|
-
CaptionDashRoles: NotRequired[
|
|
4678
|
+
CaptionDashRoles: NotRequired[list[DashRoleCaptionType]]
|
|
4593
4679
|
DvbDashAccessibility: NotRequired[DvbDashAccessibilityType]
|
|
4594
4680
|
|
|
4595
4681
|
class CaptionDescriptionTypeDef(TypedDict):
|
|
@@ -4604,12 +4690,12 @@ class CaptionDescriptionTypeDef(TypedDict):
|
|
|
4604
4690
|
|
|
4605
4691
|
class HlsGroupSettingsOutputTypeDef(TypedDict):
|
|
4606
4692
|
Destination: OutputLocationRefTypeDef
|
|
4607
|
-
AdMarkers: NotRequired[
|
|
4693
|
+
AdMarkers: NotRequired[list[HlsAdMarkersType]]
|
|
4608
4694
|
BaseUrlContent: NotRequired[str]
|
|
4609
4695
|
BaseUrlContent1: NotRequired[str]
|
|
4610
4696
|
BaseUrlManifest: NotRequired[str]
|
|
4611
4697
|
BaseUrlManifest1: NotRequired[str]
|
|
4612
|
-
CaptionLanguageMappings: NotRequired[
|
|
4698
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
4613
4699
|
CaptionLanguageSetting: NotRequired[HlsCaptionLanguageSettingType]
|
|
4614
4700
|
ClientCache: NotRequired[HlsClientCacheType]
|
|
4615
4701
|
CodecSpecification: NotRequired[HlsCodecSpecificationType]
|
|
@@ -4712,7 +4798,7 @@ CaptionSelectorSettingsUnionTypeDef = Union[
|
|
|
4712
4798
|
]
|
|
4713
4799
|
|
|
4714
4800
|
class ListClustersResponseTypeDef(TypedDict):
|
|
4715
|
-
Clusters:
|
|
4801
|
+
Clusters: list[DescribeClusterSummaryTypeDef]
|
|
4716
4802
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4717
4803
|
NextToken: NotRequired[str]
|
|
4718
4804
|
|
|
@@ -4742,7 +4828,7 @@ class UdpOutputSettingsTypeDef(TypedDict):
|
|
|
4742
4828
|
class AutomaticInputFailoverSettingsOutputTypeDef(TypedDict):
|
|
4743
4829
|
SecondaryInputId: str
|
|
4744
4830
|
ErrorClearTimeMsec: NotRequired[int]
|
|
4745
|
-
FailoverConditions: NotRequired[
|
|
4831
|
+
FailoverConditions: NotRequired[list[FailoverConditionTypeDef]]
|
|
4746
4832
|
InputPreference: NotRequired[InputPreferenceType]
|
|
4747
4833
|
|
|
4748
4834
|
class AutomaticInputFailoverSettingsTypeDef(TypedDict):
|
|
@@ -4773,12 +4859,12 @@ InputSwitchScheduleActionSettingsUnionTypeDef = Union[
|
|
|
4773
4859
|
]
|
|
4774
4860
|
|
|
4775
4861
|
class ListInputDevicesResponseTypeDef(TypedDict):
|
|
4776
|
-
InputDevices:
|
|
4862
|
+
InputDevices: list[InputDeviceSummaryTypeDef]
|
|
4777
4863
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4778
4864
|
NextToken: NotRequired[str]
|
|
4779
4865
|
|
|
4780
4866
|
class Smpte2110ReceiverGroupSettingsOutputTypeDef(TypedDict):
|
|
4781
|
-
Smpte2110ReceiverGroups: NotRequired[
|
|
4867
|
+
Smpte2110ReceiverGroups: NotRequired[list[Smpte2110ReceiverGroupOutputTypeDef]]
|
|
4782
4868
|
|
|
4783
4869
|
class Smpte2110ReceiverGroupSettingsTypeDef(TypedDict):
|
|
4784
4870
|
Smpte2110ReceiverGroups: NotRequired[Sequence[Smpte2110ReceiverGroupTypeDef]]
|
|
@@ -4813,7 +4899,7 @@ class DeleteMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
4813
4899
|
ChannelId: str
|
|
4814
4900
|
MultiplexProgramSettings: MultiplexProgramSettingsTypeDef
|
|
4815
4901
|
PacketIdentifiersMap: MultiplexProgramPacketIdentifiersMapOutputTypeDef
|
|
4816
|
-
PipelineDetails:
|
|
4902
|
+
PipelineDetails: list[MultiplexProgramPipelineDetailTypeDef]
|
|
4817
4903
|
ProgramName: str
|
|
4818
4904
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4819
4905
|
|
|
@@ -4821,7 +4907,7 @@ class DescribeMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
4821
4907
|
ChannelId: str
|
|
4822
4908
|
MultiplexProgramSettings: MultiplexProgramSettingsTypeDef
|
|
4823
4909
|
PacketIdentifiersMap: MultiplexProgramPacketIdentifiersMapOutputTypeDef
|
|
4824
|
-
PipelineDetails:
|
|
4910
|
+
PipelineDetails: list[MultiplexProgramPipelineDetailTypeDef]
|
|
4825
4911
|
ProgramName: str
|
|
4826
4912
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4827
4913
|
|
|
@@ -4829,7 +4915,7 @@ class MultiplexProgramTypeDef(TypedDict):
|
|
|
4829
4915
|
ChannelId: NotRequired[str]
|
|
4830
4916
|
MultiplexProgramSettings: NotRequired[MultiplexProgramSettingsTypeDef]
|
|
4831
4917
|
PacketIdentifiersMap: NotRequired[MultiplexProgramPacketIdentifiersMapOutputTypeDef]
|
|
4832
|
-
PipelineDetails: NotRequired[
|
|
4918
|
+
PipelineDetails: NotRequired[list[MultiplexProgramPipelineDetailTypeDef]]
|
|
4833
4919
|
ProgramName: NotRequired[str]
|
|
4834
4920
|
|
|
4835
4921
|
class UpdateMultiplexProgramRequestTypeDef(TypedDict):
|
|
@@ -4849,7 +4935,7 @@ class AudioDescriptionOutputTypeDef(TypedDict):
|
|
|
4849
4935
|
LanguageCodeControl: NotRequired[AudioDescriptionLanguageCodeControlType]
|
|
4850
4936
|
RemixSettings: NotRequired[RemixSettingsOutputTypeDef]
|
|
4851
4937
|
StreamName: NotRequired[str]
|
|
4852
|
-
AudioDashRoles: NotRequired[
|
|
4938
|
+
AudioDashRoles: NotRequired[list[DashRoleAudioType]]
|
|
4853
4939
|
DvbDashAccessibility: NotRequired[DvbDashAccessibilityType]
|
|
4854
4940
|
|
|
4855
4941
|
class AudioDescriptionTypeDef(TypedDict):
|
|
@@ -4881,7 +4967,7 @@ class OutputGroupSettingsOutputTypeDef(TypedDict):
|
|
|
4881
4967
|
HlsGroupSettings: NotRequired[HlsGroupSettingsOutputTypeDef]
|
|
4882
4968
|
MediaPackageGroupSettings: NotRequired[MediaPackageGroupSettingsOutputTypeDef]
|
|
4883
4969
|
MsSmoothGroupSettings: NotRequired[MsSmoothGroupSettingsTypeDef]
|
|
4884
|
-
MultiplexGroupSettings: NotRequired[
|
|
4970
|
+
MultiplexGroupSettings: NotRequired[dict[str, Any]]
|
|
4885
4971
|
RtmpGroupSettings: NotRequired[RtmpGroupSettingsOutputTypeDef]
|
|
4886
4972
|
UdpGroupSettings: NotRequired[UdpGroupSettingsTypeDef]
|
|
4887
4973
|
CmafIngestGroupSettings: NotRequired[CmafIngestGroupSettingsOutputTypeDef]
|
|
@@ -4904,8 +4990,8 @@ AudioSelectorSettingsUnionTypeDef = Union[
|
|
|
4904
4990
|
]
|
|
4905
4991
|
|
|
4906
4992
|
class InputSettingsOutputTypeDef(TypedDict):
|
|
4907
|
-
AudioSelectors: NotRequired[
|
|
4908
|
-
CaptionSelectors: NotRequired[
|
|
4993
|
+
AudioSelectors: NotRequired[list[AudioSelectorOutputTypeDef]]
|
|
4994
|
+
CaptionSelectors: NotRequired[list[CaptionSelectorOutputTypeDef]]
|
|
4909
4995
|
DeblockFilter: NotRequired[InputDeblockFilterType]
|
|
4910
4996
|
DenoiseFilter: NotRequired[InputDenoiseFilterType]
|
|
4911
4997
|
FilterStrength: NotRequired[int]
|
|
@@ -4947,26 +5033,26 @@ DescribeInputResponseTypeDef = TypedDict(
|
|
|
4947
5033
|
"DescribeInputResponseTypeDef",
|
|
4948
5034
|
{
|
|
4949
5035
|
"Arn": str,
|
|
4950
|
-
"AttachedChannels":
|
|
4951
|
-
"Destinations":
|
|
5036
|
+
"AttachedChannels": list[str],
|
|
5037
|
+
"Destinations": list[InputDestinationTypeDef],
|
|
4952
5038
|
"Id": str,
|
|
4953
5039
|
"InputClass": InputClassType,
|
|
4954
|
-
"InputDevices":
|
|
4955
|
-
"InputPartnerIds":
|
|
5040
|
+
"InputDevices": list[InputDeviceSettingsTypeDef],
|
|
5041
|
+
"InputPartnerIds": list[str],
|
|
4956
5042
|
"InputSourceType": InputSourceTypeType,
|
|
4957
|
-
"MediaConnectFlows":
|
|
5043
|
+
"MediaConnectFlows": list[MediaConnectFlowTypeDef],
|
|
4958
5044
|
"Name": str,
|
|
4959
5045
|
"RoleArn": str,
|
|
4960
|
-
"SecurityGroups":
|
|
4961
|
-
"Sources":
|
|
5046
|
+
"SecurityGroups": list[str],
|
|
5047
|
+
"Sources": list[InputSourceTypeDef],
|
|
4962
5048
|
"State": InputStateType,
|
|
4963
|
-
"Tags":
|
|
5049
|
+
"Tags": dict[str, str],
|
|
4964
5050
|
"Type": InputTypeType,
|
|
4965
5051
|
"SrtSettings": SrtSettingsTypeDef,
|
|
4966
5052
|
"InputNetworkLocation": InputNetworkLocationType,
|
|
4967
5053
|
"MulticastSettings": MulticastSettingsTypeDef,
|
|
4968
5054
|
"Smpte2110ReceiverGroupSettings": Smpte2110ReceiverGroupSettingsOutputTypeDef,
|
|
4969
|
-
"SdiSources":
|
|
5055
|
+
"SdiSources": list[str],
|
|
4970
5056
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4971
5057
|
},
|
|
4972
5058
|
)
|
|
@@ -4974,26 +5060,26 @@ InputTypeDef = TypedDict(
|
|
|
4974
5060
|
"InputTypeDef",
|
|
4975
5061
|
{
|
|
4976
5062
|
"Arn": NotRequired[str],
|
|
4977
|
-
"AttachedChannels": NotRequired[
|
|
4978
|
-
"Destinations": NotRequired[
|
|
5063
|
+
"AttachedChannels": NotRequired[list[str]],
|
|
5064
|
+
"Destinations": NotRequired[list[InputDestinationTypeDef]],
|
|
4979
5065
|
"Id": NotRequired[str],
|
|
4980
5066
|
"InputClass": NotRequired[InputClassType],
|
|
4981
|
-
"InputDevices": NotRequired[
|
|
4982
|
-
"InputPartnerIds": NotRequired[
|
|
5067
|
+
"InputDevices": NotRequired[list[InputDeviceSettingsTypeDef]],
|
|
5068
|
+
"InputPartnerIds": NotRequired[list[str]],
|
|
4983
5069
|
"InputSourceType": NotRequired[InputSourceTypeType],
|
|
4984
|
-
"MediaConnectFlows": NotRequired[
|
|
5070
|
+
"MediaConnectFlows": NotRequired[list[MediaConnectFlowTypeDef]],
|
|
4985
5071
|
"Name": NotRequired[str],
|
|
4986
5072
|
"RoleArn": NotRequired[str],
|
|
4987
|
-
"SecurityGroups": NotRequired[
|
|
4988
|
-
"Sources": NotRequired[
|
|
5073
|
+
"SecurityGroups": NotRequired[list[str]],
|
|
5074
|
+
"Sources": NotRequired[list[InputSourceTypeDef]],
|
|
4989
5075
|
"State": NotRequired[InputStateType],
|
|
4990
|
-
"Tags": NotRequired[
|
|
5076
|
+
"Tags": NotRequired[dict[str, str]],
|
|
4991
5077
|
"Type": NotRequired[InputTypeType],
|
|
4992
5078
|
"SrtSettings": NotRequired[SrtSettingsTypeDef],
|
|
4993
5079
|
"InputNetworkLocation": NotRequired[InputNetworkLocationType],
|
|
4994
5080
|
"MulticastSettings": NotRequired[MulticastSettingsTypeDef],
|
|
4995
5081
|
"Smpte2110ReceiverGroupSettings": NotRequired[Smpte2110ReceiverGroupSettingsOutputTypeDef],
|
|
4996
|
-
"SdiSources": NotRequired[
|
|
5082
|
+
"SdiSources": NotRequired[list[str]],
|
|
4997
5083
|
},
|
|
4998
5084
|
)
|
|
4999
5085
|
Smpte2110ReceiverGroupSettingsUnionTypeDef = Union[
|
|
@@ -5033,7 +5119,7 @@ class UpdateMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
5033
5119
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5034
5120
|
|
|
5035
5121
|
class Scte35TimeSignalScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
5036
|
-
Scte35Descriptors:
|
|
5122
|
+
Scte35Descriptors: list[Scte35DescriptorTypeDef]
|
|
5037
5123
|
|
|
5038
5124
|
class Scte35TimeSignalScheduleActionSettingsTypeDef(TypedDict):
|
|
5039
5125
|
Scte35Descriptors: Sequence[Scte35DescriptorTypeDef]
|
|
@@ -5047,7 +5133,7 @@ class InputAttachmentOutputTypeDef(TypedDict):
|
|
|
5047
5133
|
InputAttachmentName: NotRequired[str]
|
|
5048
5134
|
InputId: NotRequired[str]
|
|
5049
5135
|
InputSettings: NotRequired[InputSettingsOutputTypeDef]
|
|
5050
|
-
LogicalInterfaceNames: NotRequired[
|
|
5136
|
+
LogicalInterfaceNames: NotRequired[list[str]]
|
|
5051
5137
|
|
|
5052
5138
|
CaptionSelectorUnionTypeDef = Union[CaptionSelectorTypeDef, CaptionSelectorOutputTypeDef]
|
|
5053
5139
|
|
|
@@ -5060,7 +5146,7 @@ class CreatePartnerInputResponseTypeDef(TypedDict):
|
|
|
5060
5146
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5061
5147
|
|
|
5062
5148
|
class ListInputsResponseTypeDef(TypedDict):
|
|
5063
|
-
Inputs:
|
|
5149
|
+
Inputs: list[InputTypeDef]
|
|
5064
5150
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5065
5151
|
NextToken: NotRequired[str]
|
|
5066
5152
|
|
|
@@ -5106,8 +5192,8 @@ class UpdateInputRequestTypeDef(TypedDict):
|
|
|
5106
5192
|
|
|
5107
5193
|
class ExtraTypeDef(TypedDict):
|
|
5108
5194
|
OutputSettings: OutputSettingsOutputTypeDef
|
|
5109
|
-
AudioDescriptionNames: NotRequired[
|
|
5110
|
-
CaptionDescriptionNames: NotRequired[
|
|
5195
|
+
AudioDescriptionNames: NotRequired[list[str]]
|
|
5196
|
+
CaptionDescriptionNames: NotRequired[list[str]]
|
|
5111
5197
|
OutputName: NotRequired[str]
|
|
5112
5198
|
VideoDescriptionName: NotRequired[str]
|
|
5113
5199
|
|
|
@@ -5126,7 +5212,7 @@ class ScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
|
5126
5212
|
MotionGraphicsImageActivateSettings: NotRequired[
|
|
5127
5213
|
MotionGraphicsActivateScheduleActionSettingsTypeDef
|
|
5128
5214
|
]
|
|
5129
|
-
MotionGraphicsImageDeactivateSettings: NotRequired[
|
|
5215
|
+
MotionGraphicsImageDeactivateSettings: NotRequired[dict[str, Any]]
|
|
5130
5216
|
PauseStateSettings: NotRequired[PauseStateScheduleActionSettingsOutputTypeDef]
|
|
5131
5217
|
Scte35InputSettings: NotRequired[Scte35InputScheduleActionSettingsTypeDef]
|
|
5132
5218
|
Scte35ReturnToNetworkSettings: NotRequired[Scte35ReturnToNetworkScheduleActionSettingsTypeDef]
|
|
@@ -5153,10 +5239,10 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5153
5239
|
Arn: NotRequired[str]
|
|
5154
5240
|
CdiInputSpecification: NotRequired[CdiInputSpecificationTypeDef]
|
|
5155
5241
|
ChannelClass: NotRequired[ChannelClassType]
|
|
5156
|
-
Destinations: NotRequired[
|
|
5157
|
-
EgressEndpoints: NotRequired[
|
|
5242
|
+
Destinations: NotRequired[list[OutputDestinationOutputTypeDef]]
|
|
5243
|
+
EgressEndpoints: NotRequired[list[ChannelEgressEndpointTypeDef]]
|
|
5158
5244
|
Id: NotRequired[str]
|
|
5159
|
-
InputAttachments: NotRequired[
|
|
5245
|
+
InputAttachments: NotRequired[list[InputAttachmentOutputTypeDef]]
|
|
5160
5246
|
InputSpecification: NotRequired[InputSpecificationTypeDef]
|
|
5161
5247
|
LogLevel: NotRequired[LogLevelType]
|
|
5162
5248
|
Maintenance: NotRequired[MaintenanceStatusTypeDef]
|
|
@@ -5164,15 +5250,15 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5164
5250
|
PipelinesRunningCount: NotRequired[int]
|
|
5165
5251
|
RoleArn: NotRequired[str]
|
|
5166
5252
|
State: NotRequired[ChannelStateType]
|
|
5167
|
-
Tags: NotRequired[
|
|
5253
|
+
Tags: NotRequired[dict[str, str]]
|
|
5168
5254
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
5169
5255
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5170
5256
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5171
|
-
UsedChannelEngineVersions: NotRequired[
|
|
5257
|
+
UsedChannelEngineVersions: NotRequired[list[ChannelEngineVersionResponseTypeDef]]
|
|
5172
5258
|
|
|
5173
5259
|
class OutputGroupOutputTypeDef(TypedDict):
|
|
5174
5260
|
OutputGroupSettings: OutputGroupSettingsOutputTypeDef
|
|
5175
|
-
Outputs:
|
|
5261
|
+
Outputs: list[ExtraTypeDef]
|
|
5176
5262
|
Name: NotRequired[str]
|
|
5177
5263
|
|
|
5178
5264
|
class OutputGroupTypeDef(TypedDict):
|
|
@@ -5224,19 +5310,19 @@ class InputSettingsTypeDef(TypedDict):
|
|
|
5224
5310
|
VideoSelector: NotRequired[VideoSelectorTypeDef]
|
|
5225
5311
|
|
|
5226
5312
|
class ListChannelsResponseTypeDef(TypedDict):
|
|
5227
|
-
Channels:
|
|
5313
|
+
Channels: list[ChannelSummaryTypeDef]
|
|
5228
5314
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5229
5315
|
NextToken: NotRequired[str]
|
|
5230
5316
|
|
|
5231
5317
|
class EncoderSettingsOutputTypeDef(TypedDict):
|
|
5232
|
-
AudioDescriptions:
|
|
5233
|
-
OutputGroups:
|
|
5318
|
+
AudioDescriptions: list[AudioDescriptionOutputTypeDef]
|
|
5319
|
+
OutputGroups: list[OutputGroupOutputTypeDef]
|
|
5234
5320
|
TimecodeConfig: TimecodeConfigTypeDef
|
|
5235
|
-
VideoDescriptions:
|
|
5321
|
+
VideoDescriptions: list[VideoDescriptionOutputTypeDef]
|
|
5236
5322
|
AvailBlanking: NotRequired[AvailBlankingTypeDef]
|
|
5237
5323
|
AvailConfiguration: NotRequired[AvailConfigurationTypeDef]
|
|
5238
5324
|
BlackoutSlate: NotRequired[BlackoutSlateTypeDef]
|
|
5239
|
-
CaptionDescriptions: NotRequired[
|
|
5325
|
+
CaptionDescriptions: NotRequired[list[CaptionDescriptionOutputTypeDef]]
|
|
5240
5326
|
FeatureActivations: NotRequired[FeatureActivationsTypeDef]
|
|
5241
5327
|
GlobalConfiguration: NotRequired[GlobalConfigurationOutputTypeDef]
|
|
5242
5328
|
MotionGraphicsConfiguration: NotRequired[MotionGraphicsConfigurationOutputTypeDef]
|
|
@@ -5261,13 +5347,13 @@ class EncoderSettingsTypeDef(TypedDict):
|
|
|
5261
5347
|
ColorCorrectionSettings: NotRequired[ColorCorrectionSettingsTypeDef]
|
|
5262
5348
|
|
|
5263
5349
|
class BatchScheduleActionCreateResultTypeDef(TypedDict):
|
|
5264
|
-
ScheduleActions:
|
|
5350
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5265
5351
|
|
|
5266
5352
|
class BatchScheduleActionDeleteResultTypeDef(TypedDict):
|
|
5267
|
-
ScheduleActions:
|
|
5353
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5268
5354
|
|
|
5269
5355
|
class DescribeScheduleResponseTypeDef(TypedDict):
|
|
5270
|
-
ScheduleActions:
|
|
5356
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5271
5357
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5272
5358
|
NextToken: NotRequired[str]
|
|
5273
5359
|
|
|
@@ -5280,20 +5366,20 @@ class ChannelTypeDef(TypedDict):
|
|
|
5280
5366
|
Arn: NotRequired[str]
|
|
5281
5367
|
CdiInputSpecification: NotRequired[CdiInputSpecificationTypeDef]
|
|
5282
5368
|
ChannelClass: NotRequired[ChannelClassType]
|
|
5283
|
-
Destinations: NotRequired[
|
|
5284
|
-
EgressEndpoints: NotRequired[
|
|
5369
|
+
Destinations: NotRequired[list[OutputDestinationOutputTypeDef]]
|
|
5370
|
+
EgressEndpoints: NotRequired[list[ChannelEgressEndpointTypeDef]]
|
|
5285
5371
|
EncoderSettings: NotRequired[EncoderSettingsOutputTypeDef]
|
|
5286
5372
|
Id: NotRequired[str]
|
|
5287
|
-
InputAttachments: NotRequired[
|
|
5373
|
+
InputAttachments: NotRequired[list[InputAttachmentOutputTypeDef]]
|
|
5288
5374
|
InputSpecification: NotRequired[InputSpecificationTypeDef]
|
|
5289
5375
|
LogLevel: NotRequired[LogLevelType]
|
|
5290
5376
|
Maintenance: NotRequired[MaintenanceStatusTypeDef]
|
|
5291
5377
|
Name: NotRequired[str]
|
|
5292
|
-
PipelineDetails: NotRequired[
|
|
5378
|
+
PipelineDetails: NotRequired[list[PipelineDetailTypeDef]]
|
|
5293
5379
|
PipelinesRunningCount: NotRequired[int]
|
|
5294
5380
|
RoleArn: NotRequired[str]
|
|
5295
5381
|
State: NotRequired[ChannelStateType]
|
|
5296
|
-
Tags: NotRequired[
|
|
5382
|
+
Tags: NotRequired[dict[str, str]]
|
|
5297
5383
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
5298
5384
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5299
5385
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
@@ -5302,20 +5388,20 @@ class DeleteChannelResponseTypeDef(TypedDict):
|
|
|
5302
5388
|
Arn: str
|
|
5303
5389
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5304
5390
|
ChannelClass: ChannelClassType
|
|
5305
|
-
Destinations:
|
|
5306
|
-
EgressEndpoints:
|
|
5391
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
5392
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5307
5393
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5308
5394
|
Id: str
|
|
5309
|
-
InputAttachments:
|
|
5395
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5310
5396
|
InputSpecification: InputSpecificationTypeDef
|
|
5311
5397
|
LogLevel: LogLevelType
|
|
5312
5398
|
Maintenance: MaintenanceStatusTypeDef
|
|
5313
5399
|
Name: str
|
|
5314
|
-
PipelineDetails:
|
|
5400
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5315
5401
|
PipelinesRunningCount: int
|
|
5316
5402
|
RoleArn: str
|
|
5317
5403
|
State: ChannelStateType
|
|
5318
|
-
Tags:
|
|
5404
|
+
Tags: dict[str, str]
|
|
5319
5405
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5320
5406
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5321
5407
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -5325,20 +5411,20 @@ class DescribeChannelResponseTypeDef(TypedDict):
|
|
|
5325
5411
|
Arn: str
|
|
5326
5412
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5327
5413
|
ChannelClass: ChannelClassType
|
|
5328
|
-
Destinations:
|
|
5329
|
-
EgressEndpoints:
|
|
5414
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
5415
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5330
5416
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5331
5417
|
Id: str
|
|
5332
|
-
InputAttachments:
|
|
5418
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5333
5419
|
InputSpecification: InputSpecificationTypeDef
|
|
5334
5420
|
LogLevel: LogLevelType
|
|
5335
5421
|
Maintenance: MaintenanceStatusTypeDef
|
|
5336
5422
|
Name: str
|
|
5337
|
-
PipelineDetails:
|
|
5423
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5338
5424
|
PipelinesRunningCount: int
|
|
5339
5425
|
RoleArn: str
|
|
5340
5426
|
State: ChannelStateType
|
|
5341
|
-
Tags:
|
|
5427
|
+
Tags: dict[str, str]
|
|
5342
5428
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5343
5429
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5344
5430
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -5348,21 +5434,21 @@ class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
|
5348
5434
|
Arn: str
|
|
5349
5435
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5350
5436
|
ChannelClass: ChannelClassType
|
|
5351
|
-
Destinations:
|
|
5352
|
-
EgressEndpoints:
|
|
5437
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
5438
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5353
5439
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5354
5440
|
Id: str
|
|
5355
|
-
InputAttachments:
|
|
5441
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5356
5442
|
InputSpecification: InputSpecificationTypeDef
|
|
5357
5443
|
LogLevel: LogLevelType
|
|
5358
5444
|
Maintenance: MaintenanceStatusTypeDef
|
|
5359
5445
|
MaintenanceStatus: str
|
|
5360
5446
|
Name: str
|
|
5361
|
-
PipelineDetails:
|
|
5447
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5362
5448
|
PipelinesRunningCount: int
|
|
5363
5449
|
RoleArn: str
|
|
5364
5450
|
State: ChannelStateType
|
|
5365
|
-
Tags:
|
|
5451
|
+
Tags: dict[str, str]
|
|
5366
5452
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5367
5453
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5368
5454
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -5372,20 +5458,20 @@ class StartChannelResponseTypeDef(TypedDict):
|
|
|
5372
5458
|
Arn: str
|
|
5373
5459
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5374
5460
|
ChannelClass: ChannelClassType
|
|
5375
|
-
Destinations:
|
|
5376
|
-
EgressEndpoints:
|
|
5461
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
5462
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5377
5463
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5378
5464
|
Id: str
|
|
5379
|
-
InputAttachments:
|
|
5465
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5380
5466
|
InputSpecification: InputSpecificationTypeDef
|
|
5381
5467
|
LogLevel: LogLevelType
|
|
5382
5468
|
Maintenance: MaintenanceStatusTypeDef
|
|
5383
5469
|
Name: str
|
|
5384
|
-
PipelineDetails:
|
|
5470
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5385
5471
|
PipelinesRunningCount: int
|
|
5386
5472
|
RoleArn: str
|
|
5387
5473
|
State: ChannelStateType
|
|
5388
|
-
Tags:
|
|
5474
|
+
Tags: dict[str, str]
|
|
5389
5475
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5390
5476
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5391
5477
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -5395,20 +5481,20 @@ class StopChannelResponseTypeDef(TypedDict):
|
|
|
5395
5481
|
Arn: str
|
|
5396
5482
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5397
5483
|
ChannelClass: ChannelClassType
|
|
5398
|
-
Destinations:
|
|
5399
|
-
EgressEndpoints:
|
|
5484
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
5485
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5400
5486
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5401
5487
|
Id: str
|
|
5402
|
-
InputAttachments:
|
|
5488
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5403
5489
|
InputSpecification: InputSpecificationTypeDef
|
|
5404
5490
|
LogLevel: LogLevelType
|
|
5405
5491
|
Maintenance: MaintenanceStatusTypeDef
|
|
5406
5492
|
Name: str
|
|
5407
|
-
PipelineDetails:
|
|
5493
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5408
5494
|
PipelinesRunningCount: int
|
|
5409
5495
|
RoleArn: str
|
|
5410
5496
|
State: ChannelStateType
|
|
5411
|
-
Tags:
|
|
5497
|
+
Tags: dict[str, str]
|
|
5412
5498
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5413
5499
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5414
5500
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|