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:
|
|
@@ -437,6 +435,7 @@ __all__ = (
|
|
|
437
435
|
"CaptionSelectorTypeDef",
|
|
438
436
|
"CaptionSelectorUnionTypeDef",
|
|
439
437
|
"CdiInputSpecificationTypeDef",
|
|
438
|
+
"ChannelAlertTypeDef",
|
|
440
439
|
"ChannelEgressEndpointTypeDef",
|
|
441
440
|
"ChannelEngineVersionRequestTypeDef",
|
|
442
441
|
"ChannelEngineVersionResponseTypeDef",
|
|
@@ -445,6 +444,7 @@ __all__ = (
|
|
|
445
444
|
"ClaimDeviceRequestTypeDef",
|
|
446
445
|
"CloudWatchAlarmTemplateGroupSummaryTypeDef",
|
|
447
446
|
"CloudWatchAlarmTemplateSummaryTypeDef",
|
|
447
|
+
"ClusterAlertTypeDef",
|
|
448
448
|
"ClusterNetworkSettingsCreateRequestTypeDef",
|
|
449
449
|
"ClusterNetworkSettingsTypeDef",
|
|
450
450
|
"ClusterNetworkSettingsUpdateRequestTypeDef",
|
|
@@ -697,6 +697,9 @@ __all__ = (
|
|
|
697
697
|
"IpPoolTypeDef",
|
|
698
698
|
"IpPoolUpdateRequestTypeDef",
|
|
699
699
|
"KeyProviderSettingsTypeDef",
|
|
700
|
+
"ListAlertsRequestPaginateTypeDef",
|
|
701
|
+
"ListAlertsRequestTypeDef",
|
|
702
|
+
"ListAlertsResponseTypeDef",
|
|
700
703
|
"ListChannelPlacementGroupsRequestPaginateTypeDef",
|
|
701
704
|
"ListChannelPlacementGroupsRequestTypeDef",
|
|
702
705
|
"ListChannelPlacementGroupsResponseTypeDef",
|
|
@@ -709,6 +712,9 @@ __all__ = (
|
|
|
709
712
|
"ListCloudWatchAlarmTemplatesRequestPaginateTypeDef",
|
|
710
713
|
"ListCloudWatchAlarmTemplatesRequestTypeDef",
|
|
711
714
|
"ListCloudWatchAlarmTemplatesResponseTypeDef",
|
|
715
|
+
"ListClusterAlertsRequestPaginateTypeDef",
|
|
716
|
+
"ListClusterAlertsRequestTypeDef",
|
|
717
|
+
"ListClusterAlertsResponseTypeDef",
|
|
712
718
|
"ListClustersRequestPaginateTypeDef",
|
|
713
719
|
"ListClustersRequestTypeDef",
|
|
714
720
|
"ListClustersResponseTypeDef",
|
|
@@ -730,6 +736,9 @@ __all__ = (
|
|
|
730
736
|
"ListInputsRequestPaginateTypeDef",
|
|
731
737
|
"ListInputsRequestTypeDef",
|
|
732
738
|
"ListInputsResponseTypeDef",
|
|
739
|
+
"ListMultiplexAlertsRequestPaginateTypeDef",
|
|
740
|
+
"ListMultiplexAlertsRequestTypeDef",
|
|
741
|
+
"ListMultiplexAlertsResponseTypeDef",
|
|
733
742
|
"ListMultiplexProgramsRequestPaginateTypeDef",
|
|
734
743
|
"ListMultiplexProgramsRequestTypeDef",
|
|
735
744
|
"ListMultiplexProgramsResponseTypeDef",
|
|
@@ -791,6 +800,7 @@ __all__ = (
|
|
|
791
800
|
"MulticastSourceCreateRequestTypeDef",
|
|
792
801
|
"MulticastSourceTypeDef",
|
|
793
802
|
"MulticastSourceUpdateRequestTypeDef",
|
|
803
|
+
"MultiplexAlertTypeDef",
|
|
794
804
|
"MultiplexContainerSettingsTypeDef",
|
|
795
805
|
"MultiplexM2tsSettingsTypeDef",
|
|
796
806
|
"MultiplexMediaConnectOutputDestinationSettingsTypeDef",
|
|
@@ -1198,7 +1208,7 @@ class BatchSuccessfulResultModelTypeDef(TypedDict):
|
|
|
1198
1208
|
class ResponseMetadataTypeDef(TypedDict):
|
|
1199
1209
|
RequestId: str
|
|
1200
1210
|
HTTPStatusCode: int
|
|
1201
|
-
HTTPHeaders:
|
|
1211
|
+
HTTPHeaders: dict[str, str]
|
|
1202
1212
|
RetryAttempts: int
|
|
1203
1213
|
HostId: NotRequired[str]
|
|
1204
1214
|
|
|
@@ -1277,6 +1287,16 @@ class CdiInputSpecificationTypeDef(TypedDict):
|
|
|
1277
1287
|
Resolution: NotRequired[CdiInputResolutionType]
|
|
1278
1288
|
|
|
1279
1289
|
|
|
1290
|
+
class ChannelAlertTypeDef(TypedDict):
|
|
1291
|
+
AlertType: NotRequired[str]
|
|
1292
|
+
ClearedTimestamp: NotRequired[datetime]
|
|
1293
|
+
Id: NotRequired[str]
|
|
1294
|
+
Message: NotRequired[str]
|
|
1295
|
+
PipelineId: NotRequired[str]
|
|
1296
|
+
SetTimestamp: NotRequired[datetime]
|
|
1297
|
+
State: NotRequired[ChannelAlertStateType]
|
|
1298
|
+
|
|
1299
|
+
|
|
1280
1300
|
class ChannelEgressEndpointTypeDef(TypedDict):
|
|
1281
1301
|
SourceIp: NotRequired[str]
|
|
1282
1302
|
|
|
@@ -1309,10 +1329,10 @@ class MaintenanceStatusTypeDef(TypedDict):
|
|
|
1309
1329
|
|
|
1310
1330
|
|
|
1311
1331
|
class VpcOutputSettingsDescriptionTypeDef(TypedDict):
|
|
1312
|
-
AvailabilityZones: NotRequired[
|
|
1313
|
-
NetworkInterfaceIds: NotRequired[
|
|
1314
|
-
SecurityGroupIds: NotRequired[
|
|
1315
|
-
SubnetIds: NotRequired[
|
|
1332
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
1333
|
+
NetworkInterfaceIds: NotRequired[list[str]]
|
|
1334
|
+
SecurityGroupIds: NotRequired[list[str]]
|
|
1335
|
+
SubnetIds: NotRequired[list[str]]
|
|
1316
1336
|
|
|
1317
1337
|
|
|
1318
1338
|
class ClaimDeviceRequestTypeDef(TypedDict):
|
|
@@ -1327,7 +1347,7 @@ class CloudWatchAlarmTemplateGroupSummaryTypeDef(TypedDict):
|
|
|
1327
1347
|
TemplateCount: int
|
|
1328
1348
|
Description: NotRequired[str]
|
|
1329
1349
|
ModifiedAt: NotRequired[datetime]
|
|
1330
|
-
Tags: NotRequired[
|
|
1350
|
+
Tags: NotRequired[dict[str, str]]
|
|
1331
1351
|
|
|
1332
1352
|
|
|
1333
1353
|
class CloudWatchAlarmTemplateSummaryTypeDef(TypedDict):
|
|
@@ -1347,7 +1367,18 @@ class CloudWatchAlarmTemplateSummaryTypeDef(TypedDict):
|
|
|
1347
1367
|
DatapointsToAlarm: NotRequired[int]
|
|
1348
1368
|
Description: NotRequired[str]
|
|
1349
1369
|
ModifiedAt: NotRequired[datetime]
|
|
1350
|
-
Tags: NotRequired[
|
|
1370
|
+
Tags: NotRequired[dict[str, str]]
|
|
1371
|
+
|
|
1372
|
+
|
|
1373
|
+
class ClusterAlertTypeDef(TypedDict):
|
|
1374
|
+
AlertType: NotRequired[str]
|
|
1375
|
+
ChannelId: NotRequired[str]
|
|
1376
|
+
ClearedTimestamp: NotRequired[datetime]
|
|
1377
|
+
Id: NotRequired[str]
|
|
1378
|
+
Message: NotRequired[str]
|
|
1379
|
+
NodeId: NotRequired[str]
|
|
1380
|
+
SetTimestamp: NotRequired[datetime]
|
|
1381
|
+
State: NotRequired[ClusterAlertStateType]
|
|
1351
1382
|
|
|
1352
1383
|
|
|
1353
1384
|
class InterfaceMappingCreateRequestTypeDef(TypedDict):
|
|
@@ -1521,7 +1552,7 @@ SdiSourceTypeDef = TypedDict(
|
|
|
1521
1552
|
{
|
|
1522
1553
|
"Arn": NotRequired[str],
|
|
1523
1554
|
"Id": NotRequired[str],
|
|
1524
|
-
"Inputs": NotRequired[
|
|
1555
|
+
"Inputs": NotRequired[list[str]],
|
|
1525
1556
|
"Mode": NotRequired[SdiSourceModeType],
|
|
1526
1557
|
"Name": NotRequired[str],
|
|
1527
1558
|
"State": NotRequired[SdiSourceStateType],
|
|
@@ -1599,21 +1630,21 @@ class DeleteMultiplexProgramRequestTypeDef(TypedDict):
|
|
|
1599
1630
|
|
|
1600
1631
|
|
|
1601
1632
|
class MultiplexProgramPacketIdentifiersMapOutputTypeDef(TypedDict):
|
|
1602
|
-
AudioPids: NotRequired[
|
|
1603
|
-
DvbSubPids: NotRequired[
|
|
1633
|
+
AudioPids: NotRequired[list[int]]
|
|
1634
|
+
DvbSubPids: NotRequired[list[int]]
|
|
1604
1635
|
DvbTeletextPid: NotRequired[int]
|
|
1605
1636
|
EtvPlatformPid: NotRequired[int]
|
|
1606
1637
|
EtvSignalPid: NotRequired[int]
|
|
1607
|
-
KlvDataPids: NotRequired[
|
|
1638
|
+
KlvDataPids: NotRequired[list[int]]
|
|
1608
1639
|
PcrPid: NotRequired[int]
|
|
1609
1640
|
PmtPid: NotRequired[int]
|
|
1610
1641
|
PrivateMetadataPid: NotRequired[int]
|
|
1611
|
-
Scte27Pids: NotRequired[
|
|
1642
|
+
Scte27Pids: NotRequired[list[int]]
|
|
1612
1643
|
Scte35Pid: NotRequired[int]
|
|
1613
1644
|
TimedMetadataPid: NotRequired[int]
|
|
1614
1645
|
VideoPid: NotRequired[int]
|
|
1615
1646
|
AribCaptionsPid: NotRequired[int]
|
|
1616
|
-
DvbTeletextPids: NotRequired[
|
|
1647
|
+
DvbTeletextPids: NotRequired[list[int]]
|
|
1617
1648
|
EcmPid: NotRequired[int]
|
|
1618
1649
|
Smpte2038Pid: NotRequired[int]
|
|
1619
1650
|
|
|
@@ -1685,11 +1716,11 @@ class WaiterConfigTypeDef(TypedDict):
|
|
|
1685
1716
|
|
|
1686
1717
|
class DescribeChannelPlacementGroupSummaryTypeDef(TypedDict):
|
|
1687
1718
|
Arn: NotRequired[str]
|
|
1688
|
-
Channels: NotRequired[
|
|
1719
|
+
Channels: NotRequired[list[str]]
|
|
1689
1720
|
ClusterId: NotRequired[str]
|
|
1690
1721
|
Id: NotRequired[str]
|
|
1691
1722
|
Name: NotRequired[str]
|
|
1692
|
-
Nodes: NotRequired[
|
|
1723
|
+
Nodes: NotRequired[list[str]]
|
|
1693
1724
|
State: NotRequired[ChannelPlacementGroupStateType]
|
|
1694
1725
|
|
|
1695
1726
|
|
|
@@ -1718,7 +1749,7 @@ class InputDeviceHdSettingsTypeDef(TypedDict):
|
|
|
1718
1749
|
|
|
1719
1750
|
|
|
1720
1751
|
class InputDeviceNetworkSettingsTypeDef(TypedDict):
|
|
1721
|
-
DnsAddresses: NotRequired[
|
|
1752
|
+
DnsAddresses: NotRequired[list[str]]
|
|
1722
1753
|
Gateway: NotRequired[str]
|
|
1723
1754
|
IpAddress: NotRequired[str]
|
|
1724
1755
|
IpScheme: NotRequired[InputDeviceIpSchemeType]
|
|
@@ -1855,7 +1886,7 @@ class EventBridgeRuleTemplateGroupSummaryTypeDef(TypedDict):
|
|
|
1855
1886
|
TemplateCount: int
|
|
1856
1887
|
Description: NotRequired[str]
|
|
1857
1888
|
ModifiedAt: NotRequired[datetime]
|
|
1858
|
-
Tags: NotRequired[
|
|
1889
|
+
Tags: NotRequired[dict[str, str]]
|
|
1859
1890
|
|
|
1860
1891
|
|
|
1861
1892
|
class EventBridgeRuleTemplateSummaryTypeDef(TypedDict):
|
|
@@ -1868,7 +1899,7 @@ class EventBridgeRuleTemplateSummaryTypeDef(TypedDict):
|
|
|
1868
1899
|
Name: str
|
|
1869
1900
|
Description: NotRequired[str]
|
|
1870
1901
|
ModifiedAt: NotRequired[datetime]
|
|
1871
|
-
Tags: NotRequired[
|
|
1902
|
+
Tags: NotRequired[dict[str, str]]
|
|
1872
1903
|
|
|
1873
1904
|
|
|
1874
1905
|
class InputLossFailoverSettingsTypeDef(TypedDict):
|
|
@@ -1930,9 +1961,9 @@ class GetSignalMapRequestTypeDef(TypedDict):
|
|
|
1930
1961
|
|
|
1931
1962
|
|
|
1932
1963
|
class H264ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
1933
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
1934
|
-
Rec601Settings: NotRequired[
|
|
1935
|
-
Rec709Settings: NotRequired[
|
|
1964
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
1965
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
1966
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
1936
1967
|
|
|
1937
1968
|
|
|
1938
1969
|
class H264ColorSpaceSettingsTypeDef(TypedDict):
|
|
@@ -2066,6 +2097,13 @@ class IpPoolUpdateRequestTypeDef(TypedDict):
|
|
|
2066
2097
|
Cidr: NotRequired[str]
|
|
2067
2098
|
|
|
2068
2099
|
|
|
2100
|
+
class ListAlertsRequestTypeDef(TypedDict):
|
|
2101
|
+
ChannelId: str
|
|
2102
|
+
MaxResults: NotRequired[int]
|
|
2103
|
+
NextToken: NotRequired[str]
|
|
2104
|
+
StateFilter: NotRequired[str]
|
|
2105
|
+
|
|
2106
|
+
|
|
2069
2107
|
class ListChannelPlacementGroupsRequestTypeDef(TypedDict):
|
|
2070
2108
|
ClusterId: str
|
|
2071
2109
|
MaxResults: NotRequired[int]
|
|
@@ -2092,6 +2130,13 @@ class ListCloudWatchAlarmTemplatesRequestTypeDef(TypedDict):
|
|
|
2092
2130
|
SignalMapIdentifier: NotRequired[str]
|
|
2093
2131
|
|
|
2094
2132
|
|
|
2133
|
+
class ListClusterAlertsRequestTypeDef(TypedDict):
|
|
2134
|
+
ClusterId: str
|
|
2135
|
+
MaxResults: NotRequired[int]
|
|
2136
|
+
NextToken: NotRequired[str]
|
|
2137
|
+
StateFilter: NotRequired[str]
|
|
2138
|
+
|
|
2139
|
+
|
|
2095
2140
|
class ListClustersRequestTypeDef(TypedDict):
|
|
2096
2141
|
MaxResults: NotRequired[int]
|
|
2097
2142
|
NextToken: NotRequired[str]
|
|
@@ -2138,6 +2183,23 @@ class ListInputsRequestTypeDef(TypedDict):
|
|
|
2138
2183
|
NextToken: NotRequired[str]
|
|
2139
2184
|
|
|
2140
2185
|
|
|
2186
|
+
class ListMultiplexAlertsRequestTypeDef(TypedDict):
|
|
2187
|
+
MultiplexId: str
|
|
2188
|
+
MaxResults: NotRequired[int]
|
|
2189
|
+
NextToken: NotRequired[str]
|
|
2190
|
+
StateFilter: NotRequired[str]
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
class MultiplexAlertTypeDef(TypedDict):
|
|
2194
|
+
AlertType: NotRequired[str]
|
|
2195
|
+
ClearedTimestamp: NotRequired[datetime]
|
|
2196
|
+
Id: NotRequired[str]
|
|
2197
|
+
Message: NotRequired[str]
|
|
2198
|
+
PipelineId: NotRequired[str]
|
|
2199
|
+
SetTimestamp: NotRequired[datetime]
|
|
2200
|
+
State: NotRequired[MultiplexAlertStateType]
|
|
2201
|
+
|
|
2202
|
+
|
|
2141
2203
|
class ListMultiplexProgramsRequestTypeDef(TypedDict):
|
|
2142
2204
|
MultiplexId: str
|
|
2143
2205
|
MaxResults: NotRequired[int]
|
|
@@ -2203,7 +2265,7 @@ SdiSourceSummaryTypeDef = TypedDict(
|
|
|
2203
2265
|
{
|
|
2204
2266
|
"Arn": NotRequired[str],
|
|
2205
2267
|
"Id": NotRequired[str],
|
|
2206
|
-
"Inputs": NotRequired[
|
|
2268
|
+
"Inputs": NotRequired[list[str]],
|
|
2207
2269
|
"Mode": NotRequired[SdiSourceModeType],
|
|
2208
2270
|
"Name": NotRequired[str],
|
|
2209
2271
|
"State": NotRequired[SdiSourceStateType],
|
|
@@ -2228,7 +2290,7 @@ class SignalMapSummaryTypeDef(TypedDict):
|
|
|
2228
2290
|
Status: SignalMapStatusType
|
|
2229
2291
|
Description: NotRequired[str]
|
|
2230
2292
|
ModifiedAt: NotRequired[datetime]
|
|
2231
|
-
Tags: NotRequired[
|
|
2293
|
+
Tags: NotRequired[dict[str, str]]
|
|
2232
2294
|
|
|
2233
2295
|
|
|
2234
2296
|
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
@@ -2289,7 +2351,7 @@ class MotionGraphicsActivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2289
2351
|
|
|
2290
2352
|
|
|
2291
2353
|
class MotionGraphicsSettingsOutputTypeDef(TypedDict):
|
|
2292
|
-
HtmlMotionGraphicsSettings: NotRequired[
|
|
2354
|
+
HtmlMotionGraphicsSettings: NotRequired[dict[str, Any]]
|
|
2293
2355
|
|
|
2294
2356
|
|
|
2295
2357
|
class MotionGraphicsSettingsTypeDef(TypedDict):
|
|
@@ -2411,7 +2473,7 @@ class SrtOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2411
2473
|
|
|
2412
2474
|
|
|
2413
2475
|
class RtmpGroupSettingsOutputTypeDef(TypedDict):
|
|
2414
|
-
AdMarkers: NotRequired[
|
|
2476
|
+
AdMarkers: NotRequired[list[Literal["ON_CUE_POINT_SCTE35"]]]
|
|
2415
2477
|
AuthenticationScheme: NotRequired[AuthenticationSchemeType]
|
|
2416
2478
|
CacheFullBehavior: NotRequired[RtmpCacheFullBehaviorType]
|
|
2417
2479
|
CacheLength: NotRequired[int]
|
|
@@ -2485,7 +2547,7 @@ class StaticImageDeactivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2485
2547
|
|
|
2486
2548
|
|
|
2487
2549
|
class StaticImageOutputDeactivateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
2488
|
-
OutputNames:
|
|
2550
|
+
OutputNames: list[str]
|
|
2489
2551
|
FadeOut: NotRequired[int]
|
|
2490
2552
|
Layer: NotRequired[int]
|
|
2491
2553
|
|
|
@@ -2684,7 +2746,7 @@ class ArchiveCdnSettingsTypeDef(TypedDict):
|
|
|
2684
2746
|
|
|
2685
2747
|
|
|
2686
2748
|
class AudioChannelMappingOutputTypeDef(TypedDict):
|
|
2687
|
-
InputChannelLevels:
|
|
2749
|
+
InputChannelLevels: list[InputChannelLevelTypeDef]
|
|
2688
2750
|
OutputChannel: int
|
|
2689
2751
|
|
|
2690
2752
|
|
|
@@ -2699,7 +2761,7 @@ class AudioCodecSettingsOutputTypeDef(TypedDict):
|
|
|
2699
2761
|
Eac3AtmosSettings: NotRequired[Eac3AtmosSettingsTypeDef]
|
|
2700
2762
|
Eac3Settings: NotRequired[Eac3SettingsTypeDef]
|
|
2701
2763
|
Mp2Settings: NotRequired[Mp2SettingsTypeDef]
|
|
2702
|
-
PassThroughSettings: NotRequired[
|
|
2764
|
+
PassThroughSettings: NotRequired[dict[str, Any]]
|
|
2703
2765
|
WavSettings: NotRequired[WavSettingsTypeDef]
|
|
2704
2766
|
|
|
2705
2767
|
|
|
@@ -2798,7 +2860,7 @@ class StaticImageActivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2798
2860
|
|
|
2799
2861
|
class StaticImageOutputActivateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
2800
2862
|
Image: InputLocationTypeDef
|
|
2801
|
-
OutputNames:
|
|
2863
|
+
OutputNames: list[str]
|
|
2802
2864
|
Duration: NotRequired[int]
|
|
2803
2865
|
FadeIn: NotRequired[int]
|
|
2804
2866
|
FadeOut: NotRequired[int]
|
|
@@ -2830,7 +2892,7 @@ class StaticKeySettingsTypeDef(TypedDict):
|
|
|
2830
2892
|
|
|
2831
2893
|
|
|
2832
2894
|
class AudioTrackSelectionOutputTypeDef(TypedDict):
|
|
2833
|
-
Tracks:
|
|
2895
|
+
Tracks: list[AudioTrackTypeDef]
|
|
2834
2896
|
DolbyEDecode: NotRequired[AudioDolbyEDecodeTypeDef]
|
|
2835
2897
|
|
|
2836
2898
|
|
|
@@ -2840,10 +2902,10 @@ class AudioTrackSelectionTypeDef(TypedDict):
|
|
|
2840
2902
|
|
|
2841
2903
|
|
|
2842
2904
|
class Av1ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
2843
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
2905
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
2844
2906
|
Hdr10Settings: NotRequired[Hdr10SettingsTypeDef]
|
|
2845
|
-
Rec601Settings: NotRequired[
|
|
2846
|
-
Rec709Settings: NotRequired[
|
|
2907
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
2908
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
2847
2909
|
|
|
2848
2910
|
|
|
2849
2911
|
class Av1ColorSpaceSettingsTypeDef(TypedDict):
|
|
@@ -2854,11 +2916,11 @@ class Av1ColorSpaceSettingsTypeDef(TypedDict):
|
|
|
2854
2916
|
|
|
2855
2917
|
|
|
2856
2918
|
class H265ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
2857
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
2858
|
-
DolbyVision81Settings: NotRequired[
|
|
2919
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
2920
|
+
DolbyVision81Settings: NotRequired[dict[str, Any]]
|
|
2859
2921
|
Hdr10Settings: NotRequired[Hdr10SettingsTypeDef]
|
|
2860
|
-
Rec601Settings: NotRequired[
|
|
2861
|
-
Rec709Settings: NotRequired[
|
|
2922
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
2923
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
2862
2924
|
|
|
2863
2925
|
|
|
2864
2926
|
class H265ColorSpaceSettingsTypeDef(TypedDict):
|
|
@@ -2886,30 +2948,30 @@ class AvailSettingsTypeDef(TypedDict):
|
|
|
2886
2948
|
|
|
2887
2949
|
|
|
2888
2950
|
class BatchDeleteResponseTypeDef(TypedDict):
|
|
2889
|
-
Failed:
|
|
2890
|
-
Successful:
|
|
2951
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2952
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2891
2953
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2892
2954
|
|
|
2893
2955
|
|
|
2894
2956
|
class BatchStartResponseTypeDef(TypedDict):
|
|
2895
|
-
Failed:
|
|
2896
|
-
Successful:
|
|
2957
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2958
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2897
2959
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2898
2960
|
|
|
2899
2961
|
|
|
2900
2962
|
class BatchStopResponseTypeDef(TypedDict):
|
|
2901
|
-
Failed:
|
|
2902
|
-
Successful:
|
|
2963
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2964
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2903
2965
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2904
2966
|
|
|
2905
2967
|
|
|
2906
2968
|
class CreateChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2907
2969
|
Arn: str
|
|
2908
|
-
Channels:
|
|
2970
|
+
Channels: list[str]
|
|
2909
2971
|
ClusterId: str
|
|
2910
2972
|
Id: str
|
|
2911
2973
|
Name: str
|
|
2912
|
-
Nodes:
|
|
2974
|
+
Nodes: list[str]
|
|
2913
2975
|
State: ChannelPlacementGroupStateType
|
|
2914
2976
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2915
2977
|
|
|
@@ -2921,7 +2983,7 @@ class CreateCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2921
2983
|
Id: str
|
|
2922
2984
|
ModifiedAt: datetime
|
|
2923
2985
|
Name: str
|
|
2924
|
-
Tags:
|
|
2986
|
+
Tags: dict[str, str]
|
|
2925
2987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2926
2988
|
|
|
2927
2989
|
|
|
@@ -2939,7 +3001,7 @@ class CreateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
2939
3001
|
Name: str
|
|
2940
3002
|
Period: int
|
|
2941
3003
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
2942
|
-
Tags:
|
|
3004
|
+
Tags: dict[str, str]
|
|
2943
3005
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
2944
3006
|
Threshold: float
|
|
2945
3007
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -2953,7 +3015,7 @@ class CreateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2953
3015
|
Id: str
|
|
2954
3016
|
ModifiedAt: datetime
|
|
2955
3017
|
Name: str
|
|
2956
|
-
Tags:
|
|
3018
|
+
Tags: dict[str, str]
|
|
2957
3019
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2958
3020
|
|
|
2959
3021
|
|
|
@@ -2964,11 +3026,11 @@ class CreateNodeRegistrationScriptResponseTypeDef(TypedDict):
|
|
|
2964
3026
|
|
|
2965
3027
|
class DeleteChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2966
3028
|
Arn: str
|
|
2967
|
-
Channels:
|
|
3029
|
+
Channels: list[str]
|
|
2968
3030
|
ClusterId: str
|
|
2969
3031
|
Id: str
|
|
2970
3032
|
Name: str
|
|
2971
|
-
Nodes:
|
|
3033
|
+
Nodes: list[str]
|
|
2972
3034
|
State: ChannelPlacementGroupStateType
|
|
2973
3035
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2974
3036
|
|
|
@@ -2980,11 +3042,11 @@ class DescribeAccountConfigurationResponseTypeDef(TypedDict):
|
|
|
2980
3042
|
|
|
2981
3043
|
class DescribeChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2982
3044
|
Arn: str
|
|
2983
|
-
Channels:
|
|
3045
|
+
Channels: list[str]
|
|
2984
3046
|
ClusterId: str
|
|
2985
3047
|
Id: str
|
|
2986
3048
|
Name: str
|
|
2987
|
-
Nodes:
|
|
3049
|
+
Nodes: list[str]
|
|
2988
3050
|
State: ChannelPlacementGroupStateType
|
|
2989
3051
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2990
3052
|
|
|
@@ -3009,7 +3071,7 @@ class GetCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3009
3071
|
Id: str
|
|
3010
3072
|
ModifiedAt: datetime
|
|
3011
3073
|
Name: str
|
|
3012
|
-
Tags:
|
|
3074
|
+
Tags: dict[str, str]
|
|
3013
3075
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3014
3076
|
|
|
3015
3077
|
|
|
@@ -3027,7 +3089,7 @@ class GetCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
3027
3089
|
Name: str
|
|
3028
3090
|
Period: int
|
|
3029
3091
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
3030
|
-
Tags:
|
|
3092
|
+
Tags: dict[str, str]
|
|
3031
3093
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
3032
3094
|
Threshold: float
|
|
3033
3095
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -3041,12 +3103,12 @@ class GetEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3041
3103
|
Id: str
|
|
3042
3104
|
ModifiedAt: datetime
|
|
3043
3105
|
Name: str
|
|
3044
|
-
Tags:
|
|
3106
|
+
Tags: dict[str, str]
|
|
3045
3107
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3046
3108
|
|
|
3047
3109
|
|
|
3048
3110
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
3049
|
-
Tags:
|
|
3111
|
+
Tags: dict[str, str]
|
|
3050
3112
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3051
3113
|
|
|
3052
3114
|
|
|
@@ -3057,11 +3119,11 @@ class UpdateAccountConfigurationResponseTypeDef(TypedDict):
|
|
|
3057
3119
|
|
|
3058
3120
|
class UpdateChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
3059
3121
|
Arn: str
|
|
3060
|
-
Channels:
|
|
3122
|
+
Channels: list[str]
|
|
3061
3123
|
ClusterId: str
|
|
3062
3124
|
Id: str
|
|
3063
3125
|
Name: str
|
|
3064
|
-
Nodes:
|
|
3126
|
+
Nodes: list[str]
|
|
3065
3127
|
State: ChannelPlacementGroupStateType
|
|
3066
3128
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3067
3129
|
|
|
@@ -3073,7 +3135,7 @@ class UpdateCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3073
3135
|
Id: str
|
|
3074
3136
|
ModifiedAt: datetime
|
|
3075
3137
|
Name: str
|
|
3076
|
-
Tags:
|
|
3138
|
+
Tags: dict[str, str]
|
|
3077
3139
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3078
3140
|
|
|
3079
3141
|
|
|
@@ -3091,7 +3153,7 @@ class UpdateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
3091
3153
|
Name: str
|
|
3092
3154
|
Period: int
|
|
3093
3155
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
3094
|
-
Tags:
|
|
3156
|
+
Tags: dict[str, str]
|
|
3095
3157
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
3096
3158
|
Threshold: float
|
|
3097
3159
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -3105,12 +3167,12 @@ class UpdateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3105
3167
|
Id: str
|
|
3106
3168
|
ModifiedAt: datetime
|
|
3107
3169
|
Name: str
|
|
3108
|
-
Tags:
|
|
3170
|
+
Tags: dict[str, str]
|
|
3109
3171
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3110
3172
|
|
|
3111
3173
|
|
|
3112
3174
|
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
3113
|
-
CaptionLanguageMappings: NotRequired[
|
|
3175
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
3114
3176
|
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
3115
3177
|
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
3116
3178
|
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
@@ -3140,8 +3202,14 @@ class TeletextSourceSettingsTypeDef(TypedDict):
|
|
|
3140
3202
|
PageNumber: NotRequired[str]
|
|
3141
3203
|
|
|
3142
3204
|
|
|
3205
|
+
class ListAlertsResponseTypeDef(TypedDict):
|
|
3206
|
+
Alerts: list[ChannelAlertTypeDef]
|
|
3207
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
3208
|
+
NextToken: NotRequired[str]
|
|
3209
|
+
|
|
3210
|
+
|
|
3143
3211
|
class ListVersionsResponseTypeDef(TypedDict):
|
|
3144
|
-
Versions:
|
|
3212
|
+
Versions: list[ChannelEngineVersionResponseTypeDef]
|
|
3145
3213
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3146
3214
|
|
|
3147
3215
|
|
|
@@ -3155,13 +3223,19 @@ class PipelineDetailTypeDef(TypedDict):
|
|
|
3155
3223
|
|
|
3156
3224
|
|
|
3157
3225
|
class ListCloudWatchAlarmTemplateGroupsResponseTypeDef(TypedDict):
|
|
3158
|
-
CloudWatchAlarmTemplateGroups:
|
|
3226
|
+
CloudWatchAlarmTemplateGroups: list[CloudWatchAlarmTemplateGroupSummaryTypeDef]
|
|
3159
3227
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3160
3228
|
NextToken: NotRequired[str]
|
|
3161
3229
|
|
|
3162
3230
|
|
|
3163
3231
|
class ListCloudWatchAlarmTemplatesResponseTypeDef(TypedDict):
|
|
3164
|
-
CloudWatchAlarmTemplates:
|
|
3232
|
+
CloudWatchAlarmTemplates: list[CloudWatchAlarmTemplateSummaryTypeDef]
|
|
3233
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
3234
|
+
NextToken: NotRequired[str]
|
|
3235
|
+
|
|
3236
|
+
|
|
3237
|
+
class ListClusterAlertsResponseTypeDef(TypedDict):
|
|
3238
|
+
Alerts: list[ClusterAlertTypeDef]
|
|
3165
3239
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3166
3240
|
NextToken: NotRequired[str]
|
|
3167
3241
|
|
|
@@ -3173,7 +3247,7 @@ class ClusterNetworkSettingsCreateRequestTypeDef(TypedDict):
|
|
|
3173
3247
|
|
|
3174
3248
|
class ClusterNetworkSettingsTypeDef(TypedDict):
|
|
3175
3249
|
DefaultRoute: NotRequired[str]
|
|
3176
|
-
InterfaceMappings: NotRequired[
|
|
3250
|
+
InterfaceMappings: NotRequired[list[InterfaceMappingTypeDef]]
|
|
3177
3251
|
|
|
3178
3252
|
|
|
3179
3253
|
class ClusterNetworkSettingsUpdateRequestTypeDef(TypedDict):
|
|
@@ -3182,7 +3256,7 @@ class ClusterNetworkSettingsUpdateRequestTypeDef(TypedDict):
|
|
|
3182
3256
|
|
|
3183
3257
|
|
|
3184
3258
|
class ColorCorrectionSettingsOutputTypeDef(TypedDict):
|
|
3185
|
-
GlobalColorCorrections:
|
|
3259
|
+
GlobalColorCorrections: list[ColorCorrectionTypeDef]
|
|
3186
3260
|
|
|
3187
3261
|
|
|
3188
3262
|
class ColorCorrectionSettingsTypeDef(TypedDict):
|
|
@@ -3203,13 +3277,13 @@ class CreateEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
3203
3277
|
Arn: str
|
|
3204
3278
|
CreatedAt: datetime
|
|
3205
3279
|
Description: str
|
|
3206
|
-
EventTargets:
|
|
3280
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
3207
3281
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
3208
3282
|
GroupId: str
|
|
3209
3283
|
Id: str
|
|
3210
3284
|
ModifiedAt: datetime
|
|
3211
3285
|
Name: str
|
|
3212
|
-
Tags:
|
|
3286
|
+
Tags: dict[str, str]
|
|
3213
3287
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3214
3288
|
|
|
3215
3289
|
|
|
@@ -3217,13 +3291,13 @@ class GetEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
3217
3291
|
Arn: str
|
|
3218
3292
|
CreatedAt: datetime
|
|
3219
3293
|
Description: str
|
|
3220
|
-
EventTargets:
|
|
3294
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
3221
3295
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
3222
3296
|
GroupId: str
|
|
3223
3297
|
Id: str
|
|
3224
3298
|
ModifiedAt: datetime
|
|
3225
3299
|
Name: str
|
|
3226
|
-
Tags:
|
|
3300
|
+
Tags: dict[str, str]
|
|
3227
3301
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3228
3302
|
|
|
3229
3303
|
|
|
@@ -3240,13 +3314,13 @@ class UpdateEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
3240
3314
|
Arn: str
|
|
3241
3315
|
CreatedAt: datetime
|
|
3242
3316
|
Description: str
|
|
3243
|
-
EventTargets:
|
|
3317
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
3244
3318
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
3245
3319
|
GroupId: str
|
|
3246
3320
|
Id: str
|
|
3247
3321
|
ModifiedAt: datetime
|
|
3248
3322
|
Name: str
|
|
3249
|
-
Tags:
|
|
3323
|
+
Tags: dict[str, str]
|
|
3250
3324
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3251
3325
|
|
|
3252
3326
|
|
|
@@ -3279,54 +3353,54 @@ class CreateNetworkRequestTypeDef(TypedDict):
|
|
|
3279
3353
|
|
|
3280
3354
|
class CreateNetworkResponseTypeDef(TypedDict):
|
|
3281
3355
|
Arn: str
|
|
3282
|
-
AssociatedClusterIds:
|
|
3356
|
+
AssociatedClusterIds: list[str]
|
|
3283
3357
|
Id: str
|
|
3284
|
-
IpPools:
|
|
3358
|
+
IpPools: list[IpPoolTypeDef]
|
|
3285
3359
|
Name: str
|
|
3286
|
-
Routes:
|
|
3360
|
+
Routes: list[RouteTypeDef]
|
|
3287
3361
|
State: NetworkStateType
|
|
3288
3362
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3289
3363
|
|
|
3290
3364
|
|
|
3291
3365
|
class DeleteNetworkResponseTypeDef(TypedDict):
|
|
3292
3366
|
Arn: str
|
|
3293
|
-
AssociatedClusterIds:
|
|
3367
|
+
AssociatedClusterIds: list[str]
|
|
3294
3368
|
Id: str
|
|
3295
|
-
IpPools:
|
|
3369
|
+
IpPools: list[IpPoolTypeDef]
|
|
3296
3370
|
Name: str
|
|
3297
|
-
Routes:
|
|
3371
|
+
Routes: list[RouteTypeDef]
|
|
3298
3372
|
State: NetworkStateType
|
|
3299
3373
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3300
3374
|
|
|
3301
3375
|
|
|
3302
3376
|
class DescribeNetworkResponseTypeDef(TypedDict):
|
|
3303
3377
|
Arn: str
|
|
3304
|
-
AssociatedClusterIds:
|
|
3378
|
+
AssociatedClusterIds: list[str]
|
|
3305
3379
|
Id: str
|
|
3306
|
-
IpPools:
|
|
3380
|
+
IpPools: list[IpPoolTypeDef]
|
|
3307
3381
|
Name: str
|
|
3308
|
-
Routes:
|
|
3382
|
+
Routes: list[RouteTypeDef]
|
|
3309
3383
|
State: NetworkStateType
|
|
3310
3384
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3311
3385
|
|
|
3312
3386
|
|
|
3313
3387
|
class DescribeNetworkSummaryTypeDef(TypedDict):
|
|
3314
3388
|
Arn: NotRequired[str]
|
|
3315
|
-
AssociatedClusterIds: NotRequired[
|
|
3389
|
+
AssociatedClusterIds: NotRequired[list[str]]
|
|
3316
3390
|
Id: NotRequired[str]
|
|
3317
|
-
IpPools: NotRequired[
|
|
3391
|
+
IpPools: NotRequired[list[IpPoolTypeDef]]
|
|
3318
3392
|
Name: NotRequired[str]
|
|
3319
|
-
Routes: NotRequired[
|
|
3393
|
+
Routes: NotRequired[list[RouteTypeDef]]
|
|
3320
3394
|
State: NotRequired[NetworkStateType]
|
|
3321
3395
|
|
|
3322
3396
|
|
|
3323
3397
|
class UpdateNetworkResponseTypeDef(TypedDict):
|
|
3324
3398
|
Arn: str
|
|
3325
|
-
AssociatedClusterIds:
|
|
3399
|
+
AssociatedClusterIds: list[str]
|
|
3326
3400
|
Id: str
|
|
3327
|
-
IpPools:
|
|
3401
|
+
IpPools: list[IpPoolTypeDef]
|
|
3328
3402
|
Name: str
|
|
3329
|
-
Routes:
|
|
3403
|
+
Routes: list[RouteTypeDef]
|
|
3330
3404
|
State: NetworkStateType
|
|
3331
3405
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3332
3406
|
|
|
@@ -3351,91 +3425,91 @@ class CreateNodeRequestTypeDef(TypedDict):
|
|
|
3351
3425
|
|
|
3352
3426
|
class CreateNodeResponseTypeDef(TypedDict):
|
|
3353
3427
|
Arn: str
|
|
3354
|
-
ChannelPlacementGroups:
|
|
3428
|
+
ChannelPlacementGroups: list[str]
|
|
3355
3429
|
ClusterId: str
|
|
3356
3430
|
ConnectionState: NodeConnectionStateType
|
|
3357
3431
|
Id: str
|
|
3358
3432
|
InstanceArn: str
|
|
3359
3433
|
Name: str
|
|
3360
|
-
NodeInterfaceMappings:
|
|
3434
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3361
3435
|
Role: NodeRoleType
|
|
3362
3436
|
State: NodeStateType
|
|
3363
|
-
SdiSourceMappings:
|
|
3437
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3364
3438
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3365
3439
|
|
|
3366
3440
|
|
|
3367
3441
|
class DeleteNodeResponseTypeDef(TypedDict):
|
|
3368
3442
|
Arn: str
|
|
3369
|
-
ChannelPlacementGroups:
|
|
3443
|
+
ChannelPlacementGroups: list[str]
|
|
3370
3444
|
ClusterId: str
|
|
3371
3445
|
ConnectionState: NodeConnectionStateType
|
|
3372
3446
|
Id: str
|
|
3373
3447
|
InstanceArn: str
|
|
3374
3448
|
Name: str
|
|
3375
|
-
NodeInterfaceMappings:
|
|
3449
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3376
3450
|
Role: NodeRoleType
|
|
3377
3451
|
State: NodeStateType
|
|
3378
|
-
SdiSourceMappings:
|
|
3452
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3379
3453
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3380
3454
|
|
|
3381
3455
|
|
|
3382
3456
|
class DescribeNodeResponseTypeDef(TypedDict):
|
|
3383
3457
|
Arn: str
|
|
3384
|
-
ChannelPlacementGroups:
|
|
3458
|
+
ChannelPlacementGroups: list[str]
|
|
3385
3459
|
ClusterId: str
|
|
3386
3460
|
ConnectionState: NodeConnectionStateType
|
|
3387
3461
|
Id: str
|
|
3388
3462
|
InstanceArn: str
|
|
3389
3463
|
Name: str
|
|
3390
|
-
NodeInterfaceMappings:
|
|
3464
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3391
3465
|
Role: NodeRoleType
|
|
3392
3466
|
State: NodeStateType
|
|
3393
|
-
SdiSourceMappings:
|
|
3467
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3394
3468
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3395
3469
|
|
|
3396
3470
|
|
|
3397
3471
|
class DescribeNodeSummaryTypeDef(TypedDict):
|
|
3398
3472
|
Arn: NotRequired[str]
|
|
3399
|
-
ChannelPlacementGroups: NotRequired[
|
|
3473
|
+
ChannelPlacementGroups: NotRequired[list[str]]
|
|
3400
3474
|
ClusterId: NotRequired[str]
|
|
3401
3475
|
ConnectionState: NotRequired[NodeConnectionStateType]
|
|
3402
3476
|
Id: NotRequired[str]
|
|
3403
3477
|
InstanceArn: NotRequired[str]
|
|
3404
3478
|
ManagedInstanceId: NotRequired[str]
|
|
3405
3479
|
Name: NotRequired[str]
|
|
3406
|
-
NodeInterfaceMappings: NotRequired[
|
|
3480
|
+
NodeInterfaceMappings: NotRequired[list[NodeInterfaceMappingTypeDef]]
|
|
3407
3481
|
Role: NotRequired[NodeRoleType]
|
|
3408
3482
|
State: NotRequired[NodeStateType]
|
|
3409
|
-
SdiSourceMappings: NotRequired[
|
|
3483
|
+
SdiSourceMappings: NotRequired[list[SdiSourceMappingTypeDef]]
|
|
3410
3484
|
|
|
3411
3485
|
|
|
3412
3486
|
class UpdateNodeResponseTypeDef(TypedDict):
|
|
3413
3487
|
Arn: str
|
|
3414
|
-
ChannelPlacementGroups:
|
|
3488
|
+
ChannelPlacementGroups: list[str]
|
|
3415
3489
|
ClusterId: str
|
|
3416
3490
|
ConnectionState: NodeConnectionStateType
|
|
3417
3491
|
Id: str
|
|
3418
3492
|
InstanceArn: str
|
|
3419
3493
|
Name: str
|
|
3420
|
-
NodeInterfaceMappings:
|
|
3494
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3421
3495
|
Role: NodeRoleType
|
|
3422
3496
|
State: NodeStateType
|
|
3423
|
-
SdiSourceMappings:
|
|
3497
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3424
3498
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3425
3499
|
|
|
3426
3500
|
|
|
3427
3501
|
class UpdateNodeStateResponseTypeDef(TypedDict):
|
|
3428
3502
|
Arn: str
|
|
3429
|
-
ChannelPlacementGroups:
|
|
3503
|
+
ChannelPlacementGroups: list[str]
|
|
3430
3504
|
ClusterId: str
|
|
3431
3505
|
ConnectionState: NodeConnectionStateType
|
|
3432
3506
|
Id: str
|
|
3433
3507
|
InstanceArn: str
|
|
3434
3508
|
Name: str
|
|
3435
|
-
NodeInterfaceMappings:
|
|
3509
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3436
3510
|
Role: NodeRoleType
|
|
3437
3511
|
State: NodeStateType
|
|
3438
|
-
SdiSourceMappings:
|
|
3512
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3439
3513
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3440
3514
|
|
|
3441
3515
|
|
|
@@ -3493,7 +3567,7 @@ class DeleteReservationResponseTypeDef(TypedDict):
|
|
|
3493
3567
|
ResourceSpecification: ReservationResourceSpecificationTypeDef
|
|
3494
3568
|
Start: str
|
|
3495
3569
|
State: ReservationStateType
|
|
3496
|
-
Tags:
|
|
3570
|
+
Tags: dict[str, str]
|
|
3497
3571
|
UsagePrice: float
|
|
3498
3572
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3499
3573
|
|
|
@@ -3531,7 +3605,7 @@ class DescribeReservationResponseTypeDef(TypedDict):
|
|
|
3531
3605
|
ResourceSpecification: ReservationResourceSpecificationTypeDef
|
|
3532
3606
|
Start: str
|
|
3533
3607
|
State: ReservationStateType
|
|
3534
|
-
Tags:
|
|
3608
|
+
Tags: dict[str, str]
|
|
3535
3609
|
UsagePrice: float
|
|
3536
3610
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3537
3611
|
|
|
@@ -3568,7 +3642,7 @@ class ReservationTypeDef(TypedDict):
|
|
|
3568
3642
|
ResourceSpecification: NotRequired[ReservationResourceSpecificationTypeDef]
|
|
3569
3643
|
Start: NotRequired[str]
|
|
3570
3644
|
State: NotRequired[ReservationStateType]
|
|
3571
|
-
Tags: NotRequired[
|
|
3645
|
+
Tags: NotRequired[dict[str, str]]
|
|
3572
3646
|
UsagePrice: NotRequired[float]
|
|
3573
3647
|
|
|
3574
3648
|
|
|
@@ -3688,7 +3762,7 @@ class GetSignalMapRequestWaitTypeDef(TypedDict):
|
|
|
3688
3762
|
|
|
3689
3763
|
|
|
3690
3764
|
class ListChannelPlacementGroupsResponseTypeDef(TypedDict):
|
|
3691
|
-
ChannelPlacementGroups:
|
|
3765
|
+
ChannelPlacementGroups: list[DescribeChannelPlacementGroupSummaryTypeDef]
|
|
3692
3766
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3693
3767
|
NextToken: NotRequired[str]
|
|
3694
3768
|
|
|
@@ -3696,20 +3770,20 @@ class ListChannelPlacementGroupsResponseTypeDef(TypedDict):
|
|
|
3696
3770
|
class DescribeInputSecurityGroupResponseTypeDef(TypedDict):
|
|
3697
3771
|
Arn: str
|
|
3698
3772
|
Id: str
|
|
3699
|
-
Inputs:
|
|
3773
|
+
Inputs: list[str]
|
|
3700
3774
|
State: InputSecurityGroupStateType
|
|
3701
|
-
Tags:
|
|
3702
|
-
WhitelistRules:
|
|
3775
|
+
Tags: dict[str, str]
|
|
3776
|
+
WhitelistRules: list[InputWhitelistRuleTypeDef]
|
|
3703
3777
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3704
3778
|
|
|
3705
3779
|
|
|
3706
3780
|
class InputSecurityGroupTypeDef(TypedDict):
|
|
3707
3781
|
Arn: NotRequired[str]
|
|
3708
3782
|
Id: NotRequired[str]
|
|
3709
|
-
Inputs: NotRequired[
|
|
3783
|
+
Inputs: NotRequired[list[str]]
|
|
3710
3784
|
State: NotRequired[InputSecurityGroupStateType]
|
|
3711
|
-
Tags: NotRequired[
|
|
3712
|
-
WhitelistRules: NotRequired[
|
|
3785
|
+
Tags: NotRequired[dict[str, str]]
|
|
3786
|
+
WhitelistRules: NotRequired[list[InputWhitelistRuleTypeDef]]
|
|
3713
3787
|
|
|
3714
3788
|
|
|
3715
3789
|
class DescribeScheduleRequestPaginateTypeDef(TypedDict):
|
|
@@ -3717,6 +3791,12 @@ class DescribeScheduleRequestPaginateTypeDef(TypedDict):
|
|
|
3717
3791
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3718
3792
|
|
|
3719
3793
|
|
|
3794
|
+
class ListAlertsRequestPaginateTypeDef(TypedDict):
|
|
3795
|
+
ChannelId: str
|
|
3796
|
+
StateFilter: NotRequired[str]
|
|
3797
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3798
|
+
|
|
3799
|
+
|
|
3720
3800
|
class ListChannelPlacementGroupsRequestPaginateTypeDef(TypedDict):
|
|
3721
3801
|
ClusterId: str
|
|
3722
3802
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -3739,6 +3819,12 @@ class ListCloudWatchAlarmTemplatesRequestPaginateTypeDef(TypedDict):
|
|
|
3739
3819
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3740
3820
|
|
|
3741
3821
|
|
|
3822
|
+
class ListClusterAlertsRequestPaginateTypeDef(TypedDict):
|
|
3823
|
+
ClusterId: str
|
|
3824
|
+
StateFilter: NotRequired[str]
|
|
3825
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3826
|
+
|
|
3827
|
+
|
|
3742
3828
|
class ListClustersRequestPaginateTypeDef(TypedDict):
|
|
3743
3829
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3744
3830
|
|
|
@@ -3771,6 +3857,12 @@ class ListInputsRequestPaginateTypeDef(TypedDict):
|
|
|
3771
3857
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3772
3858
|
|
|
3773
3859
|
|
|
3860
|
+
class ListMultiplexAlertsRequestPaginateTypeDef(TypedDict):
|
|
3861
|
+
MultiplexId: str
|
|
3862
|
+
StateFilter: NotRequired[str]
|
|
3863
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
3864
|
+
|
|
3865
|
+
|
|
3774
3866
|
class ListMultiplexProgramsRequestPaginateTypeDef(TypedDict):
|
|
3775
3867
|
MultiplexId: str
|
|
3776
3868
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -3878,7 +3970,7 @@ class M2tsSettingsTypeDef(TypedDict):
|
|
|
3878
3970
|
|
|
3879
3971
|
class OutputLockingSettingsOutputTypeDef(TypedDict):
|
|
3880
3972
|
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3881
|
-
PipelineLockingSettings: NotRequired[
|
|
3973
|
+
PipelineLockingSettings: NotRequired[dict[str, Any]]
|
|
3882
3974
|
|
|
3883
3975
|
|
|
3884
3976
|
class OutputLockingSettingsTypeDef(TypedDict):
|
|
@@ -3887,13 +3979,13 @@ class OutputLockingSettingsTypeDef(TypedDict):
|
|
|
3887
3979
|
|
|
3888
3980
|
|
|
3889
3981
|
class ListEventBridgeRuleTemplateGroupsResponseTypeDef(TypedDict):
|
|
3890
|
-
EventBridgeRuleTemplateGroups:
|
|
3982
|
+
EventBridgeRuleTemplateGroups: list[EventBridgeRuleTemplateGroupSummaryTypeDef]
|
|
3891
3983
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3892
3984
|
NextToken: NotRequired[str]
|
|
3893
3985
|
|
|
3894
3986
|
|
|
3895
3987
|
class ListEventBridgeRuleTemplatesResponseTypeDef(TypedDict):
|
|
3896
|
-
EventBridgeRuleTemplates:
|
|
3988
|
+
EventBridgeRuleTemplates: list[EventBridgeRuleTemplateSummaryTypeDef]
|
|
3897
3989
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3898
3990
|
NextToken: NotRequired[str]
|
|
3899
3991
|
|
|
@@ -3907,7 +3999,7 @@ class FailoverConditionSettingsTypeDef(TypedDict):
|
|
|
3907
3999
|
class ScheduleActionStartSettingsOutputTypeDef(TypedDict):
|
|
3908
4000
|
FixedModeScheduleActionStartSettings: NotRequired[FixedModeScheduleActionStartSettingsTypeDef]
|
|
3909
4001
|
FollowModeScheduleActionStartSettings: NotRequired[FollowModeScheduleActionStartSettingsTypeDef]
|
|
3910
|
-
ImmediateModeScheduleActionStartSettings: NotRequired[
|
|
4002
|
+
ImmediateModeScheduleActionStartSettings: NotRequired[dict[str, Any]]
|
|
3911
4003
|
|
|
3912
4004
|
|
|
3913
4005
|
class ScheduleActionStartSettingsTypeDef(TypedDict):
|
|
@@ -3961,7 +4053,7 @@ class InputDestinationTypeDef(TypedDict):
|
|
|
3961
4053
|
Url: NotRequired[str]
|
|
3962
4054
|
Vpc: NotRequired[InputDestinationVpcTypeDef]
|
|
3963
4055
|
Network: NotRequired[str]
|
|
3964
|
-
NetworkRoutes: NotRequired[
|
|
4056
|
+
NetworkRoutes: NotRequired[list[InputDestinationRouteTypeDef]]
|
|
3965
4057
|
|
|
3966
4058
|
|
|
3967
4059
|
class InputDeviceConfigurableSettingsTypeDef(TypedDict):
|
|
@@ -3986,13 +4078,13 @@ class InputDeviceUhdSettingsTypeDef(TypedDict):
|
|
|
3986
4078
|
LatencyMs: NotRequired[int]
|
|
3987
4079
|
Codec: NotRequired[InputDeviceCodecType]
|
|
3988
4080
|
MediaconnectSettings: NotRequired[InputDeviceMediaConnectSettingsTypeDef]
|
|
3989
|
-
AudioChannelPairs: NotRequired[
|
|
4081
|
+
AudioChannelPairs: NotRequired[list[InputDeviceUhdAudioChannelPairConfigTypeDef]]
|
|
3990
4082
|
InputResolution: NotRequired[str]
|
|
3991
4083
|
|
|
3992
4084
|
|
|
3993
4085
|
class Smpte2110ReceiverGroupSdpSettingsOutputTypeDef(TypedDict):
|
|
3994
|
-
AncillarySdps: NotRequired[
|
|
3995
|
-
AudioSdps: NotRequired[
|
|
4086
|
+
AncillarySdps: NotRequired[list[InputSdpLocationTypeDef]]
|
|
4087
|
+
AudioSdps: NotRequired[list[InputSdpLocationTypeDef]]
|
|
3996
4088
|
VideoSdp: NotRequired[InputSdpLocationTypeDef]
|
|
3997
4089
|
|
|
3998
4090
|
|
|
@@ -4003,25 +4095,31 @@ class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
|
|
|
4003
4095
|
|
|
4004
4096
|
|
|
4005
4097
|
class ListInputDeviceTransfersResponseTypeDef(TypedDict):
|
|
4006
|
-
InputDeviceTransfers:
|
|
4098
|
+
InputDeviceTransfers: list[TransferringInputDeviceSummaryTypeDef]
|
|
4099
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
4100
|
+
NextToken: NotRequired[str]
|
|
4101
|
+
|
|
4102
|
+
|
|
4103
|
+
class ListMultiplexAlertsResponseTypeDef(TypedDict):
|
|
4104
|
+
Alerts: list[MultiplexAlertTypeDef]
|
|
4007
4105
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4008
4106
|
NextToken: NotRequired[str]
|
|
4009
4107
|
|
|
4010
4108
|
|
|
4011
4109
|
class ListMultiplexProgramsResponseTypeDef(TypedDict):
|
|
4012
|
-
MultiplexPrograms:
|
|
4110
|
+
MultiplexPrograms: list[MultiplexProgramSummaryTypeDef]
|
|
4013
4111
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4014
4112
|
NextToken: NotRequired[str]
|
|
4015
4113
|
|
|
4016
4114
|
|
|
4017
4115
|
class ListSdiSourcesResponseTypeDef(TypedDict):
|
|
4018
|
-
SdiSources:
|
|
4116
|
+
SdiSources: list[SdiSourceSummaryTypeDef]
|
|
4019
4117
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4020
4118
|
NextToken: NotRequired[str]
|
|
4021
4119
|
|
|
4022
4120
|
|
|
4023
4121
|
class ListSignalMapsResponseTypeDef(TypedDict):
|
|
4024
|
-
SignalMaps:
|
|
4122
|
+
SignalMaps: list[SignalMapSummaryTypeDef]
|
|
4025
4123
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4026
4124
|
NextToken: NotRequired[str]
|
|
4027
4125
|
|
|
@@ -4036,9 +4134,9 @@ class MediaPackageOutputSettingsTypeDef(TypedDict):
|
|
|
4036
4134
|
|
|
4037
4135
|
|
|
4038
4136
|
class MediaResourceTypeDef(TypedDict):
|
|
4039
|
-
Destinations: NotRequired[
|
|
4137
|
+
Destinations: NotRequired[list[MediaResourceNeighborTypeDef]]
|
|
4040
4138
|
Name: NotRequired[str]
|
|
4041
|
-
Sources: NotRequired[
|
|
4139
|
+
Sources: NotRequired[list[MediaResourceNeighborTypeDef]]
|
|
4042
4140
|
|
|
4043
4141
|
|
|
4044
4142
|
class MotionGraphicsConfigurationOutputTypeDef(TypedDict):
|
|
@@ -4062,7 +4160,7 @@ class MulticastSettingsCreateRequestTypeDef(TypedDict):
|
|
|
4062
4160
|
|
|
4063
4161
|
|
|
4064
4162
|
class MulticastSettingsTypeDef(TypedDict):
|
|
4065
|
-
Sources: NotRequired[
|
|
4163
|
+
Sources: NotRequired[list[MulticastSourceTypeDef]]
|
|
4066
4164
|
|
|
4067
4165
|
|
|
4068
4166
|
class MulticastSettingsUpdateRequestTypeDef(TypedDict):
|
|
@@ -4084,14 +4182,14 @@ MultiplexProgramPacketIdentifiersMapUnionTypeDef = Union[
|
|
|
4084
4182
|
|
|
4085
4183
|
class MultiplexSummaryTypeDef(TypedDict):
|
|
4086
4184
|
Arn: NotRequired[str]
|
|
4087
|
-
AvailabilityZones: NotRequired[
|
|
4185
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
4088
4186
|
Id: NotRequired[str]
|
|
4089
4187
|
MultiplexSettings: NotRequired[MultiplexSettingsSummaryTypeDef]
|
|
4090
4188
|
Name: NotRequired[str]
|
|
4091
4189
|
PipelinesRunningCount: NotRequired[int]
|
|
4092
4190
|
ProgramCount: NotRequired[int]
|
|
4093
4191
|
State: NotRequired[MultiplexStateType]
|
|
4094
|
-
Tags: NotRequired[
|
|
4192
|
+
Tags: NotRequired[dict[str, str]]
|
|
4095
4193
|
|
|
4096
4194
|
|
|
4097
4195
|
class MultiplexVideoSettingsTypeDef(TypedDict):
|
|
@@ -4107,11 +4205,11 @@ class NielsenWatermarksSettingsTypeDef(TypedDict):
|
|
|
4107
4205
|
|
|
4108
4206
|
class OutputDestinationOutputTypeDef(TypedDict):
|
|
4109
4207
|
Id: NotRequired[str]
|
|
4110
|
-
MediaPackageSettings: NotRequired[
|
|
4208
|
+
MediaPackageSettings: NotRequired[list[MediaPackageOutputDestinationSettingsTypeDef]]
|
|
4111
4209
|
MultiplexSettings: NotRequired[MultiplexProgramChannelDestinationSettingsTypeDef]
|
|
4112
|
-
Settings: NotRequired[
|
|
4113
|
-
SrtSettings: NotRequired[
|
|
4114
|
-
LogicalInterfaceNames: NotRequired[
|
|
4210
|
+
Settings: NotRequired[list[OutputDestinationSettingsTypeDef]]
|
|
4211
|
+
SrtSettings: NotRequired[list[SrtOutputDestinationSettingsTypeDef]]
|
|
4212
|
+
LogicalInterfaceNames: NotRequired[list[str]]
|
|
4115
4213
|
|
|
4116
4214
|
|
|
4117
4215
|
class OutputDestinationTypeDef(TypedDict):
|
|
@@ -4124,7 +4222,7 @@ class OutputDestinationTypeDef(TypedDict):
|
|
|
4124
4222
|
|
|
4125
4223
|
|
|
4126
4224
|
class PauseStateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4127
|
-
Pipelines: NotRequired[
|
|
4225
|
+
Pipelines: NotRequired[list[PipelinePauseStateSettingsTypeDef]]
|
|
4128
4226
|
|
|
4129
4227
|
|
|
4130
4228
|
class PauseStateScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -4184,7 +4282,7 @@ StaticImageOutputDeactivateScheduleActionSettingsUnionTypeDef = Union[
|
|
|
4184
4282
|
|
|
4185
4283
|
class ThumbnailDetailTypeDef(TypedDict):
|
|
4186
4284
|
PipelineId: NotRequired[str]
|
|
4187
|
-
Thumbnails: NotRequired[
|
|
4285
|
+
Thumbnails: NotRequired[list[ThumbnailTypeDef]]
|
|
4188
4286
|
|
|
4189
4287
|
|
|
4190
4288
|
class VideoSelectorSettingsTypeDef(TypedDict):
|
|
@@ -4205,11 +4303,11 @@ class CmafIngestGroupSettingsOutputTypeDef(TypedDict):
|
|
|
4205
4303
|
Scte35NameModifier: NotRequired[str]
|
|
4206
4304
|
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
4207
4305
|
Id3NameModifier: NotRequired[str]
|
|
4208
|
-
CaptionLanguageMappings: NotRequired[
|
|
4306
|
+
CaptionLanguageMappings: NotRequired[list[CmafIngestCaptionLanguageMappingTypeDef]]
|
|
4209
4307
|
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
4210
4308
|
TimedMetadataId3Period: NotRequired[int]
|
|
4211
4309
|
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
4212
|
-
AdditionalDestinations: NotRequired[
|
|
4310
|
+
AdditionalDestinations: NotRequired[list[AdditionalDestinationsTypeDef]]
|
|
4213
4311
|
|
|
4214
4312
|
|
|
4215
4313
|
class CmafIngestGroupSettingsTypeDef(TypedDict):
|
|
@@ -4239,7 +4337,7 @@ class ArchiveGroupSettingsTypeDef(TypedDict):
|
|
|
4239
4337
|
|
|
4240
4338
|
|
|
4241
4339
|
class RemixSettingsOutputTypeDef(TypedDict):
|
|
4242
|
-
ChannelMappings:
|
|
4340
|
+
ChannelMappings: list[AudioChannelMappingOutputTypeDef]
|
|
4243
4341
|
ChannelsIn: NotRequired[int]
|
|
4244
4342
|
ChannelsOut: NotRequired[int]
|
|
4245
4343
|
|
|
@@ -4251,17 +4349,17 @@ class RemixSettingsTypeDef(TypedDict):
|
|
|
4251
4349
|
|
|
4252
4350
|
|
|
4253
4351
|
class CaptionDestinationSettingsOutputTypeDef(TypedDict):
|
|
4254
|
-
AribDestinationSettings: NotRequired[
|
|
4352
|
+
AribDestinationSettings: NotRequired[dict[str, Any]]
|
|
4255
4353
|
BurnInDestinationSettings: NotRequired[BurnInDestinationSettingsTypeDef]
|
|
4256
4354
|
DvbSubDestinationSettings: NotRequired[DvbSubDestinationSettingsTypeDef]
|
|
4257
4355
|
EbuTtDDestinationSettings: NotRequired[EbuTtDDestinationSettingsTypeDef]
|
|
4258
|
-
EmbeddedDestinationSettings: NotRequired[
|
|
4259
|
-
EmbeddedPlusScte20DestinationSettings: NotRequired[
|
|
4260
|
-
RtmpCaptionInfoDestinationSettings: NotRequired[
|
|
4261
|
-
Scte20PlusEmbeddedDestinationSettings: NotRequired[
|
|
4262
|
-
Scte27DestinationSettings: NotRequired[
|
|
4263
|
-
SmpteTtDestinationSettings: NotRequired[
|
|
4264
|
-
TeletextDestinationSettings: NotRequired[
|
|
4356
|
+
EmbeddedDestinationSettings: NotRequired[dict[str, Any]]
|
|
4357
|
+
EmbeddedPlusScte20DestinationSettings: NotRequired[dict[str, Any]]
|
|
4358
|
+
RtmpCaptionInfoDestinationSettings: NotRequired[dict[str, Any]]
|
|
4359
|
+
Scte20PlusEmbeddedDestinationSettings: NotRequired[dict[str, Any]]
|
|
4360
|
+
Scte27DestinationSettings: NotRequired[dict[str, Any]]
|
|
4361
|
+
SmpteTtDestinationSettings: NotRequired[dict[str, Any]]
|
|
4362
|
+
TeletextDestinationSettings: NotRequired[dict[str, Any]]
|
|
4265
4363
|
TtmlDestinationSettings: NotRequired[TtmlDestinationSettingsTypeDef]
|
|
4266
4364
|
WebvttDestinationSettings: NotRequired[WebvttDestinationSettingsTypeDef]
|
|
4267
4365
|
|
|
@@ -4367,7 +4465,7 @@ class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
|
4367
4465
|
|
|
4368
4466
|
class CaptionSelectorSettingsOutputTypeDef(TypedDict):
|
|
4369
4467
|
AncillarySourceSettings: NotRequired[AncillarySourceSettingsTypeDef]
|
|
4370
|
-
AribSourceSettings: NotRequired[
|
|
4468
|
+
AribSourceSettings: NotRequired[dict[str, Any]]
|
|
4371
4469
|
DvbSubSourceSettings: NotRequired[DvbSubSourceSettingsTypeDef]
|
|
4372
4470
|
EmbeddedSourceSettings: NotRequired[EmbeddedSourceSettingsTypeDef]
|
|
4373
4471
|
Scte20SourceSettings: NotRequired[Scte20SourceSettingsTypeDef]
|
|
@@ -4396,7 +4494,7 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
4396
4494
|
|
|
4397
4495
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
4398
4496
|
Arn: str
|
|
4399
|
-
ChannelIds:
|
|
4497
|
+
ChannelIds: list[str]
|
|
4400
4498
|
ClusterType: Literal["ON_PREMISES"]
|
|
4401
4499
|
Id: str
|
|
4402
4500
|
InstanceRoleArn: str
|
|
@@ -4408,7 +4506,7 @@ class CreateClusterResponseTypeDef(TypedDict):
|
|
|
4408
4506
|
|
|
4409
4507
|
class DeleteClusterResponseTypeDef(TypedDict):
|
|
4410
4508
|
Arn: str
|
|
4411
|
-
ChannelIds:
|
|
4509
|
+
ChannelIds: list[str]
|
|
4412
4510
|
ClusterType: Literal["ON_PREMISES"]
|
|
4413
4511
|
Id: str
|
|
4414
4512
|
InstanceRoleArn: str
|
|
@@ -4420,7 +4518,7 @@ class DeleteClusterResponseTypeDef(TypedDict):
|
|
|
4420
4518
|
|
|
4421
4519
|
class DescribeClusterResponseTypeDef(TypedDict):
|
|
4422
4520
|
Arn: str
|
|
4423
|
-
ChannelIds:
|
|
4521
|
+
ChannelIds: list[str]
|
|
4424
4522
|
ClusterType: Literal["ON_PREMISES"]
|
|
4425
4523
|
Id: str
|
|
4426
4524
|
InstanceRoleArn: str
|
|
@@ -4432,7 +4530,7 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
4432
4530
|
|
|
4433
4531
|
class DescribeClusterSummaryTypeDef(TypedDict):
|
|
4434
4532
|
Arn: NotRequired[str]
|
|
4435
|
-
ChannelIds: NotRequired[
|
|
4533
|
+
ChannelIds: NotRequired[list[str]]
|
|
4436
4534
|
ClusterType: NotRequired[Literal["ON_PREMISES"]]
|
|
4437
4535
|
Id: NotRequired[str]
|
|
4438
4536
|
InstanceRoleArn: NotRequired[str]
|
|
@@ -4443,7 +4541,7 @@ class DescribeClusterSummaryTypeDef(TypedDict):
|
|
|
4443
4541
|
|
|
4444
4542
|
class UpdateClusterResponseTypeDef(TypedDict):
|
|
4445
4543
|
Arn: str
|
|
4446
|
-
ChannelIds:
|
|
4544
|
+
ChannelIds: list[str]
|
|
4447
4545
|
ClusterType: Literal["ON_PREMISES"]
|
|
4448
4546
|
Id: str
|
|
4449
4547
|
Name: str
|
|
@@ -4459,25 +4557,25 @@ class UpdateClusterRequestTypeDef(TypedDict):
|
|
|
4459
4557
|
|
|
4460
4558
|
|
|
4461
4559
|
class ListNetworksResponseTypeDef(TypedDict):
|
|
4462
|
-
Networks:
|
|
4560
|
+
Networks: list[DescribeNetworkSummaryTypeDef]
|
|
4463
4561
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4464
4562
|
NextToken: NotRequired[str]
|
|
4465
4563
|
|
|
4466
4564
|
|
|
4467
4565
|
class ListNodesResponseTypeDef(TypedDict):
|
|
4468
|
-
Nodes:
|
|
4566
|
+
Nodes: list[DescribeNodeSummaryTypeDef]
|
|
4469
4567
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4470
4568
|
NextToken: NotRequired[str]
|
|
4471
4569
|
|
|
4472
4570
|
|
|
4473
4571
|
class ListOfferingsResponseTypeDef(TypedDict):
|
|
4474
|
-
Offerings:
|
|
4572
|
+
Offerings: list[OfferingTypeDef]
|
|
4475
4573
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4476
4574
|
NextToken: NotRequired[str]
|
|
4477
4575
|
|
|
4478
4576
|
|
|
4479
4577
|
class ListReservationsResponseTypeDef(TypedDict):
|
|
4480
|
-
Reservations:
|
|
4578
|
+
Reservations: list[ReservationTypeDef]
|
|
4481
4579
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4482
4580
|
NextToken: NotRequired[str]
|
|
4483
4581
|
|
|
@@ -4498,7 +4596,7 @@ class CreateInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
4498
4596
|
|
|
4499
4597
|
|
|
4500
4598
|
class ListInputSecurityGroupsResponseTypeDef(TypedDict):
|
|
4501
|
-
InputSecurityGroups:
|
|
4599
|
+
InputSecurityGroups: list[InputSecurityGroupTypeDef]
|
|
4502
4600
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4503
4601
|
NextToken: NotRequired[str]
|
|
4504
4602
|
|
|
@@ -4510,7 +4608,7 @@ class UpdateInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
4510
4608
|
|
|
4511
4609
|
class ArchiveContainerSettingsOutputTypeDef(TypedDict):
|
|
4512
4610
|
M2tsSettings: NotRequired[M2tsSettingsTypeDef]
|
|
4513
|
-
RawSettings: NotRequired[
|
|
4611
|
+
RawSettings: NotRequired[dict[str, Any]]
|
|
4514
4612
|
|
|
4515
4613
|
|
|
4516
4614
|
class ArchiveContainerSettingsTypeDef(TypedDict):
|
|
@@ -4763,7 +4861,7 @@ class Mpeg2SettingsTypeDef(TypedDict):
|
|
|
4763
4861
|
class InputPrepareScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4764
4862
|
InputAttachmentNameReference: NotRequired[str]
|
|
4765
4863
|
InputClippingSettings: NotRequired[InputClippingSettingsTypeDef]
|
|
4766
|
-
UrlPath: NotRequired[
|
|
4864
|
+
UrlPath: NotRequired[list[str]]
|
|
4767
4865
|
|
|
4768
4866
|
|
|
4769
4867
|
class InputPrepareScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -4775,7 +4873,7 @@ class InputPrepareScheduleActionSettingsTypeDef(TypedDict):
|
|
|
4775
4873
|
class InputSwitchScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4776
4874
|
InputAttachmentNameReference: str
|
|
4777
4875
|
InputClippingSettings: NotRequired[InputClippingSettingsTypeDef]
|
|
4778
|
-
UrlPath: NotRequired[
|
|
4876
|
+
UrlPath: NotRequired[list[str]]
|
|
4779
4877
|
|
|
4780
4878
|
|
|
4781
4879
|
class InputSwitchScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -4807,9 +4905,9 @@ DescribeInputDeviceResponseTypeDef = TypedDict(
|
|
|
4807
4905
|
"SerialNumber": str,
|
|
4808
4906
|
"Type": InputDeviceTypeType,
|
|
4809
4907
|
"UhdDeviceSettings": InputDeviceUhdSettingsTypeDef,
|
|
4810
|
-
"Tags":
|
|
4908
|
+
"Tags": dict[str, str],
|
|
4811
4909
|
"AvailabilityZone": str,
|
|
4812
|
-
"MedialiveInputArns":
|
|
4910
|
+
"MedialiveInputArns": list[str],
|
|
4813
4911
|
"OutputType": InputDeviceOutputTypeType,
|
|
4814
4912
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4815
4913
|
},
|
|
@@ -4829,9 +4927,9 @@ InputDeviceSummaryTypeDef = TypedDict(
|
|
|
4829
4927
|
"SerialNumber": NotRequired[str],
|
|
4830
4928
|
"Type": NotRequired[InputDeviceTypeType],
|
|
4831
4929
|
"UhdDeviceSettings": NotRequired[InputDeviceUhdSettingsTypeDef],
|
|
4832
|
-
"Tags": NotRequired[
|
|
4930
|
+
"Tags": NotRequired[dict[str, str]],
|
|
4833
4931
|
"AvailabilityZone": NotRequired[str],
|
|
4834
|
-
"MedialiveInputArns": NotRequired[
|
|
4932
|
+
"MedialiveInputArns": NotRequired[list[str]],
|
|
4835
4933
|
"OutputType": NotRequired[InputDeviceOutputTypeType],
|
|
4836
4934
|
},
|
|
4837
4935
|
)
|
|
@@ -4850,9 +4948,9 @@ UpdateInputDeviceResponseTypeDef = TypedDict(
|
|
|
4850
4948
|
"SerialNumber": str,
|
|
4851
4949
|
"Type": InputDeviceTypeType,
|
|
4852
4950
|
"UhdDeviceSettings": InputDeviceUhdSettingsTypeDef,
|
|
4853
|
-
"Tags":
|
|
4951
|
+
"Tags": dict[str, str],
|
|
4854
4952
|
"AvailabilityZone": str,
|
|
4855
|
-
"MedialiveInputArns":
|
|
4953
|
+
"MedialiveInputArns": list[str],
|
|
4856
4954
|
"OutputType": InputDeviceOutputTypeType,
|
|
4857
4955
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4858
4956
|
},
|
|
@@ -4870,7 +4968,7 @@ class Smpte2110ReceiverGroupTypeDef(TypedDict):
|
|
|
4870
4968
|
class HlsSettingsOutputTypeDef(TypedDict):
|
|
4871
4969
|
AudioOnlyHlsSettings: NotRequired[AudioOnlyHlsSettingsTypeDef]
|
|
4872
4970
|
Fmp4HlsSettings: NotRequired[Fmp4HlsSettingsTypeDef]
|
|
4873
|
-
FrameCaptureHlsSettings: NotRequired[
|
|
4971
|
+
FrameCaptureHlsSettings: NotRequired[dict[str, Any]]
|
|
4874
4972
|
StandardHlsSettings: NotRequired[StandardHlsSettingsTypeDef]
|
|
4875
4973
|
|
|
4876
4974
|
|
|
@@ -4883,111 +4981,111 @@ class HlsSettingsTypeDef(TypedDict):
|
|
|
4883
4981
|
|
|
4884
4982
|
class CreateSignalMapResponseTypeDef(TypedDict):
|
|
4885
4983
|
Arn: str
|
|
4886
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
4984
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4887
4985
|
CreatedAt: datetime
|
|
4888
4986
|
Description: str
|
|
4889
4987
|
DiscoveryEntryPointArn: str
|
|
4890
4988
|
ErrorMessage: str
|
|
4891
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4892
|
-
FailedMediaResourceMap:
|
|
4989
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
4990
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4893
4991
|
Id: str
|
|
4894
4992
|
LastDiscoveredAt: datetime
|
|
4895
4993
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4896
|
-
MediaResourceMap:
|
|
4994
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4897
4995
|
ModifiedAt: datetime
|
|
4898
4996
|
MonitorChangesPendingDeployment: bool
|
|
4899
4997
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4900
4998
|
Name: str
|
|
4901
4999
|
Status: SignalMapStatusType
|
|
4902
|
-
Tags:
|
|
5000
|
+
Tags: dict[str, str]
|
|
4903
5001
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4904
5002
|
|
|
4905
5003
|
|
|
4906
5004
|
class GetSignalMapResponseTypeDef(TypedDict):
|
|
4907
5005
|
Arn: str
|
|
4908
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5006
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4909
5007
|
CreatedAt: datetime
|
|
4910
5008
|
Description: str
|
|
4911
5009
|
DiscoveryEntryPointArn: str
|
|
4912
5010
|
ErrorMessage: str
|
|
4913
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4914
|
-
FailedMediaResourceMap:
|
|
5011
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5012
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4915
5013
|
Id: str
|
|
4916
5014
|
LastDiscoveredAt: datetime
|
|
4917
5015
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4918
|
-
MediaResourceMap:
|
|
5016
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4919
5017
|
ModifiedAt: datetime
|
|
4920
5018
|
MonitorChangesPendingDeployment: bool
|
|
4921
5019
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4922
5020
|
Name: str
|
|
4923
5021
|
Status: SignalMapStatusType
|
|
4924
|
-
Tags:
|
|
5022
|
+
Tags: dict[str, str]
|
|
4925
5023
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4926
5024
|
|
|
4927
5025
|
|
|
4928
5026
|
class StartDeleteMonitorDeploymentResponseTypeDef(TypedDict):
|
|
4929
5027
|
Arn: str
|
|
4930
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5028
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4931
5029
|
CreatedAt: datetime
|
|
4932
5030
|
Description: str
|
|
4933
5031
|
DiscoveryEntryPointArn: str
|
|
4934
5032
|
ErrorMessage: str
|
|
4935
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4936
|
-
FailedMediaResourceMap:
|
|
5033
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5034
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4937
5035
|
Id: str
|
|
4938
5036
|
LastDiscoveredAt: datetime
|
|
4939
5037
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4940
|
-
MediaResourceMap:
|
|
5038
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4941
5039
|
ModifiedAt: datetime
|
|
4942
5040
|
MonitorChangesPendingDeployment: bool
|
|
4943
5041
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4944
5042
|
Name: str
|
|
4945
5043
|
Status: SignalMapStatusType
|
|
4946
|
-
Tags:
|
|
5044
|
+
Tags: dict[str, str]
|
|
4947
5045
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4948
5046
|
|
|
4949
5047
|
|
|
4950
5048
|
class StartMonitorDeploymentResponseTypeDef(TypedDict):
|
|
4951
5049
|
Arn: str
|
|
4952
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5050
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4953
5051
|
CreatedAt: datetime
|
|
4954
5052
|
Description: str
|
|
4955
5053
|
DiscoveryEntryPointArn: str
|
|
4956
5054
|
ErrorMessage: str
|
|
4957
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4958
|
-
FailedMediaResourceMap:
|
|
5055
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5056
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4959
5057
|
Id: str
|
|
4960
5058
|
LastDiscoveredAt: datetime
|
|
4961
5059
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4962
|
-
MediaResourceMap:
|
|
5060
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4963
5061
|
ModifiedAt: datetime
|
|
4964
5062
|
MonitorChangesPendingDeployment: bool
|
|
4965
5063
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4966
5064
|
Name: str
|
|
4967
5065
|
Status: SignalMapStatusType
|
|
4968
|
-
Tags:
|
|
5066
|
+
Tags: dict[str, str]
|
|
4969
5067
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4970
5068
|
|
|
4971
5069
|
|
|
4972
5070
|
class StartUpdateSignalMapResponseTypeDef(TypedDict):
|
|
4973
5071
|
Arn: str
|
|
4974
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5072
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4975
5073
|
CreatedAt: datetime
|
|
4976
5074
|
Description: str
|
|
4977
5075
|
DiscoveryEntryPointArn: str
|
|
4978
5076
|
ErrorMessage: str
|
|
4979
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4980
|
-
FailedMediaResourceMap:
|
|
5077
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5078
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4981
5079
|
Id: str
|
|
4982
5080
|
LastDiscoveredAt: datetime
|
|
4983
5081
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4984
|
-
MediaResourceMap:
|
|
5082
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4985
5083
|
ModifiedAt: datetime
|
|
4986
5084
|
MonitorChangesPendingDeployment: bool
|
|
4987
5085
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
4988
5086
|
Name: str
|
|
4989
5087
|
Status: SignalMapStatusType
|
|
4990
|
-
Tags:
|
|
5088
|
+
Tags: dict[str, str]
|
|
4991
5089
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4992
5090
|
|
|
4993
5091
|
|
|
@@ -4998,70 +5096,70 @@ class MultiplexOutputSettingsTypeDef(TypedDict):
|
|
|
4998
5096
|
|
|
4999
5097
|
class DeleteMultiplexResponseTypeDef(TypedDict):
|
|
5000
5098
|
Arn: str
|
|
5001
|
-
AvailabilityZones:
|
|
5002
|
-
Destinations:
|
|
5099
|
+
AvailabilityZones: list[str]
|
|
5100
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5003
5101
|
Id: str
|
|
5004
5102
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5005
5103
|
Name: str
|
|
5006
5104
|
PipelinesRunningCount: int
|
|
5007
5105
|
ProgramCount: int
|
|
5008
5106
|
State: MultiplexStateType
|
|
5009
|
-
Tags:
|
|
5107
|
+
Tags: dict[str, str]
|
|
5010
5108
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5011
5109
|
|
|
5012
5110
|
|
|
5013
5111
|
class DescribeMultiplexResponseTypeDef(TypedDict):
|
|
5014
5112
|
Arn: str
|
|
5015
|
-
AvailabilityZones:
|
|
5016
|
-
Destinations:
|
|
5113
|
+
AvailabilityZones: list[str]
|
|
5114
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5017
5115
|
Id: str
|
|
5018
5116
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5019
5117
|
Name: str
|
|
5020
5118
|
PipelinesRunningCount: int
|
|
5021
5119
|
ProgramCount: int
|
|
5022
5120
|
State: MultiplexStateType
|
|
5023
|
-
Tags:
|
|
5121
|
+
Tags: dict[str, str]
|
|
5024
5122
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5025
5123
|
|
|
5026
5124
|
|
|
5027
5125
|
class MultiplexTypeDef(TypedDict):
|
|
5028
5126
|
Arn: NotRequired[str]
|
|
5029
|
-
AvailabilityZones: NotRequired[
|
|
5030
|
-
Destinations: NotRequired[
|
|
5127
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
5128
|
+
Destinations: NotRequired[list[MultiplexOutputDestinationTypeDef]]
|
|
5031
5129
|
Id: NotRequired[str]
|
|
5032
5130
|
MultiplexSettings: NotRequired[MultiplexSettingsTypeDef]
|
|
5033
5131
|
Name: NotRequired[str]
|
|
5034
5132
|
PipelinesRunningCount: NotRequired[int]
|
|
5035
5133
|
ProgramCount: NotRequired[int]
|
|
5036
5134
|
State: NotRequired[MultiplexStateType]
|
|
5037
|
-
Tags: NotRequired[
|
|
5135
|
+
Tags: NotRequired[dict[str, str]]
|
|
5038
5136
|
|
|
5039
5137
|
|
|
5040
5138
|
class StartMultiplexResponseTypeDef(TypedDict):
|
|
5041
5139
|
Arn: str
|
|
5042
|
-
AvailabilityZones:
|
|
5043
|
-
Destinations:
|
|
5140
|
+
AvailabilityZones: list[str]
|
|
5141
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5044
5142
|
Id: str
|
|
5045
5143
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5046
5144
|
Name: str
|
|
5047
5145
|
PipelinesRunningCount: int
|
|
5048
5146
|
ProgramCount: int
|
|
5049
5147
|
State: MultiplexStateType
|
|
5050
|
-
Tags:
|
|
5148
|
+
Tags: dict[str, str]
|
|
5051
5149
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5052
5150
|
|
|
5053
5151
|
|
|
5054
5152
|
class StopMultiplexResponseTypeDef(TypedDict):
|
|
5055
5153
|
Arn: str
|
|
5056
|
-
AvailabilityZones:
|
|
5057
|
-
Destinations:
|
|
5154
|
+
AvailabilityZones: list[str]
|
|
5155
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5058
5156
|
Id: str
|
|
5059
5157
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5060
5158
|
Name: str
|
|
5061
5159
|
PipelinesRunningCount: int
|
|
5062
5160
|
ProgramCount: int
|
|
5063
5161
|
State: MultiplexStateType
|
|
5064
|
-
Tags:
|
|
5162
|
+
Tags: dict[str, str]
|
|
5065
5163
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5066
5164
|
|
|
5067
5165
|
|
|
@@ -5075,7 +5173,7 @@ class UpdateMultiplexRequestTypeDef(TypedDict):
|
|
|
5075
5173
|
|
|
5076
5174
|
|
|
5077
5175
|
class ListMultiplexesResponseTypeDef(TypedDict):
|
|
5078
|
-
Multiplexes:
|
|
5176
|
+
Multiplexes: list[MultiplexSummaryTypeDef]
|
|
5079
5177
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5080
5178
|
NextToken: NotRequired[str]
|
|
5081
5179
|
|
|
@@ -5106,11 +5204,11 @@ class SrtSettingsRequestTypeDef(TypedDict):
|
|
|
5106
5204
|
|
|
5107
5205
|
|
|
5108
5206
|
class SrtSettingsTypeDef(TypedDict):
|
|
5109
|
-
SrtCallerSources: NotRequired[
|
|
5207
|
+
SrtCallerSources: NotRequired[list[SrtCallerSourceTypeDef]]
|
|
5110
5208
|
|
|
5111
5209
|
|
|
5112
5210
|
class DescribeThumbnailsResponseTypeDef(TypedDict):
|
|
5113
|
-
ThumbnailDetails:
|
|
5211
|
+
ThumbnailDetails: list[ThumbnailDetailTypeDef]
|
|
5114
5212
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5115
5213
|
|
|
5116
5214
|
|
|
@@ -5128,7 +5226,7 @@ class CaptionDescriptionOutputTypeDef(TypedDict):
|
|
|
5128
5226
|
DestinationSettings: NotRequired[CaptionDestinationSettingsOutputTypeDef]
|
|
5129
5227
|
LanguageCode: NotRequired[str]
|
|
5130
5228
|
LanguageDescription: NotRequired[str]
|
|
5131
|
-
CaptionDashRoles: NotRequired[
|
|
5229
|
+
CaptionDashRoles: NotRequired[list[DashRoleCaptionType]]
|
|
5132
5230
|
DvbDashAccessibility: NotRequired[DvbDashAccessibilityType]
|
|
5133
5231
|
|
|
5134
5232
|
|
|
@@ -5145,12 +5243,12 @@ class CaptionDescriptionTypeDef(TypedDict):
|
|
|
5145
5243
|
|
|
5146
5244
|
class HlsGroupSettingsOutputTypeDef(TypedDict):
|
|
5147
5245
|
Destination: OutputLocationRefTypeDef
|
|
5148
|
-
AdMarkers: NotRequired[
|
|
5246
|
+
AdMarkers: NotRequired[list[HlsAdMarkersType]]
|
|
5149
5247
|
BaseUrlContent: NotRequired[str]
|
|
5150
5248
|
BaseUrlContent1: NotRequired[str]
|
|
5151
5249
|
BaseUrlManifest: NotRequired[str]
|
|
5152
5250
|
BaseUrlManifest1: NotRequired[str]
|
|
5153
|
-
CaptionLanguageMappings: NotRequired[
|
|
5251
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
5154
5252
|
CaptionLanguageSetting: NotRequired[HlsCaptionLanguageSettingType]
|
|
5155
5253
|
ClientCache: NotRequired[HlsClientCacheType]
|
|
5156
5254
|
CodecSpecification: NotRequired[HlsCodecSpecificationType]
|
|
@@ -5259,7 +5357,7 @@ CaptionSelectorSettingsUnionTypeDef = Union[
|
|
|
5259
5357
|
|
|
5260
5358
|
|
|
5261
5359
|
class ListClustersResponseTypeDef(TypedDict):
|
|
5262
|
-
Clusters:
|
|
5360
|
+
Clusters: list[DescribeClusterSummaryTypeDef]
|
|
5263
5361
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5264
5362
|
NextToken: NotRequired[str]
|
|
5265
5363
|
|
|
@@ -5294,7 +5392,7 @@ class UdpOutputSettingsTypeDef(TypedDict):
|
|
|
5294
5392
|
class AutomaticInputFailoverSettingsOutputTypeDef(TypedDict):
|
|
5295
5393
|
SecondaryInputId: str
|
|
5296
5394
|
ErrorClearTimeMsec: NotRequired[int]
|
|
5297
|
-
FailoverConditions: NotRequired[
|
|
5395
|
+
FailoverConditions: NotRequired[list[FailoverConditionTypeDef]]
|
|
5298
5396
|
InputPreference: NotRequired[InputPreferenceType]
|
|
5299
5397
|
|
|
5300
5398
|
|
|
@@ -5330,13 +5428,13 @@ InputSwitchScheduleActionSettingsUnionTypeDef = Union[
|
|
|
5330
5428
|
|
|
5331
5429
|
|
|
5332
5430
|
class ListInputDevicesResponseTypeDef(TypedDict):
|
|
5333
|
-
InputDevices:
|
|
5431
|
+
InputDevices: list[InputDeviceSummaryTypeDef]
|
|
5334
5432
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5335
5433
|
NextToken: NotRequired[str]
|
|
5336
5434
|
|
|
5337
5435
|
|
|
5338
5436
|
class Smpte2110ReceiverGroupSettingsOutputTypeDef(TypedDict):
|
|
5339
|
-
Smpte2110ReceiverGroups: NotRequired[
|
|
5437
|
+
Smpte2110ReceiverGroups: NotRequired[list[Smpte2110ReceiverGroupOutputTypeDef]]
|
|
5340
5438
|
|
|
5341
5439
|
|
|
5342
5440
|
class Smpte2110ReceiverGroupSettingsTypeDef(TypedDict):
|
|
@@ -5378,7 +5476,7 @@ class DeleteMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
5378
5476
|
ChannelId: str
|
|
5379
5477
|
MultiplexProgramSettings: MultiplexProgramSettingsTypeDef
|
|
5380
5478
|
PacketIdentifiersMap: MultiplexProgramPacketIdentifiersMapOutputTypeDef
|
|
5381
|
-
PipelineDetails:
|
|
5479
|
+
PipelineDetails: list[MultiplexProgramPipelineDetailTypeDef]
|
|
5382
5480
|
ProgramName: str
|
|
5383
5481
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5384
5482
|
|
|
@@ -5387,7 +5485,7 @@ class DescribeMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
5387
5485
|
ChannelId: str
|
|
5388
5486
|
MultiplexProgramSettings: MultiplexProgramSettingsTypeDef
|
|
5389
5487
|
PacketIdentifiersMap: MultiplexProgramPacketIdentifiersMapOutputTypeDef
|
|
5390
|
-
PipelineDetails:
|
|
5488
|
+
PipelineDetails: list[MultiplexProgramPipelineDetailTypeDef]
|
|
5391
5489
|
ProgramName: str
|
|
5392
5490
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5393
5491
|
|
|
@@ -5396,7 +5494,7 @@ class MultiplexProgramTypeDef(TypedDict):
|
|
|
5396
5494
|
ChannelId: NotRequired[str]
|
|
5397
5495
|
MultiplexProgramSettings: NotRequired[MultiplexProgramSettingsTypeDef]
|
|
5398
5496
|
PacketIdentifiersMap: NotRequired[MultiplexProgramPacketIdentifiersMapOutputTypeDef]
|
|
5399
|
-
PipelineDetails: NotRequired[
|
|
5497
|
+
PipelineDetails: NotRequired[list[MultiplexProgramPipelineDetailTypeDef]]
|
|
5400
5498
|
ProgramName: NotRequired[str]
|
|
5401
5499
|
|
|
5402
5500
|
|
|
@@ -5418,7 +5516,7 @@ class AudioDescriptionOutputTypeDef(TypedDict):
|
|
|
5418
5516
|
LanguageCodeControl: NotRequired[AudioDescriptionLanguageCodeControlType]
|
|
5419
5517
|
RemixSettings: NotRequired[RemixSettingsOutputTypeDef]
|
|
5420
5518
|
StreamName: NotRequired[str]
|
|
5421
|
-
AudioDashRoles: NotRequired[
|
|
5519
|
+
AudioDashRoles: NotRequired[list[DashRoleAudioType]]
|
|
5422
5520
|
DvbDashAccessibility: NotRequired[DvbDashAccessibilityType]
|
|
5423
5521
|
|
|
5424
5522
|
|
|
@@ -5454,7 +5552,7 @@ class OutputGroupSettingsOutputTypeDef(TypedDict):
|
|
|
5454
5552
|
HlsGroupSettings: NotRequired[HlsGroupSettingsOutputTypeDef]
|
|
5455
5553
|
MediaPackageGroupSettings: NotRequired[MediaPackageGroupSettingsOutputTypeDef]
|
|
5456
5554
|
MsSmoothGroupSettings: NotRequired[MsSmoothGroupSettingsTypeDef]
|
|
5457
|
-
MultiplexGroupSettings: NotRequired[
|
|
5555
|
+
MultiplexGroupSettings: NotRequired[dict[str, Any]]
|
|
5458
5556
|
RtmpGroupSettings: NotRequired[RtmpGroupSettingsOutputTypeDef]
|
|
5459
5557
|
UdpGroupSettings: NotRequired[UdpGroupSettingsTypeDef]
|
|
5460
5558
|
CmafIngestGroupSettings: NotRequired[CmafIngestGroupSettingsOutputTypeDef]
|
|
@@ -5480,8 +5578,8 @@ AudioSelectorSettingsUnionTypeDef = Union[
|
|
|
5480
5578
|
|
|
5481
5579
|
|
|
5482
5580
|
class InputSettingsOutputTypeDef(TypedDict):
|
|
5483
|
-
AudioSelectors: NotRequired[
|
|
5484
|
-
CaptionSelectors: NotRequired[
|
|
5581
|
+
AudioSelectors: NotRequired[list[AudioSelectorOutputTypeDef]]
|
|
5582
|
+
CaptionSelectors: NotRequired[list[CaptionSelectorOutputTypeDef]]
|
|
5485
5583
|
DeblockFilter: NotRequired[InputDeblockFilterType]
|
|
5486
5584
|
DenoiseFilter: NotRequired[InputDenoiseFilterType]
|
|
5487
5585
|
FilterStrength: NotRequired[int]
|
|
@@ -5528,26 +5626,26 @@ DescribeInputResponseTypeDef = TypedDict(
|
|
|
5528
5626
|
"DescribeInputResponseTypeDef",
|
|
5529
5627
|
{
|
|
5530
5628
|
"Arn": str,
|
|
5531
|
-
"AttachedChannels":
|
|
5532
|
-
"Destinations":
|
|
5629
|
+
"AttachedChannels": list[str],
|
|
5630
|
+
"Destinations": list[InputDestinationTypeDef],
|
|
5533
5631
|
"Id": str,
|
|
5534
5632
|
"InputClass": InputClassType,
|
|
5535
|
-
"InputDevices":
|
|
5536
|
-
"InputPartnerIds":
|
|
5633
|
+
"InputDevices": list[InputDeviceSettingsTypeDef],
|
|
5634
|
+
"InputPartnerIds": list[str],
|
|
5537
5635
|
"InputSourceType": InputSourceTypeType,
|
|
5538
|
-
"MediaConnectFlows":
|
|
5636
|
+
"MediaConnectFlows": list[MediaConnectFlowTypeDef],
|
|
5539
5637
|
"Name": str,
|
|
5540
5638
|
"RoleArn": str,
|
|
5541
|
-
"SecurityGroups":
|
|
5542
|
-
"Sources":
|
|
5639
|
+
"SecurityGroups": list[str],
|
|
5640
|
+
"Sources": list[InputSourceTypeDef],
|
|
5543
5641
|
"State": InputStateType,
|
|
5544
|
-
"Tags":
|
|
5642
|
+
"Tags": dict[str, str],
|
|
5545
5643
|
"Type": InputTypeType,
|
|
5546
5644
|
"SrtSettings": SrtSettingsTypeDef,
|
|
5547
5645
|
"InputNetworkLocation": InputNetworkLocationType,
|
|
5548
5646
|
"MulticastSettings": MulticastSettingsTypeDef,
|
|
5549
5647
|
"Smpte2110ReceiverGroupSettings": Smpte2110ReceiverGroupSettingsOutputTypeDef,
|
|
5550
|
-
"SdiSources":
|
|
5648
|
+
"SdiSources": list[str],
|
|
5551
5649
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5552
5650
|
},
|
|
5553
5651
|
)
|
|
@@ -5555,26 +5653,26 @@ InputTypeDef = TypedDict(
|
|
|
5555
5653
|
"InputTypeDef",
|
|
5556
5654
|
{
|
|
5557
5655
|
"Arn": NotRequired[str],
|
|
5558
|
-
"AttachedChannels": NotRequired[
|
|
5559
|
-
"Destinations": NotRequired[
|
|
5656
|
+
"AttachedChannels": NotRequired[list[str]],
|
|
5657
|
+
"Destinations": NotRequired[list[InputDestinationTypeDef]],
|
|
5560
5658
|
"Id": NotRequired[str],
|
|
5561
5659
|
"InputClass": NotRequired[InputClassType],
|
|
5562
|
-
"InputDevices": NotRequired[
|
|
5563
|
-
"InputPartnerIds": NotRequired[
|
|
5660
|
+
"InputDevices": NotRequired[list[InputDeviceSettingsTypeDef]],
|
|
5661
|
+
"InputPartnerIds": NotRequired[list[str]],
|
|
5564
5662
|
"InputSourceType": NotRequired[InputSourceTypeType],
|
|
5565
|
-
"MediaConnectFlows": NotRequired[
|
|
5663
|
+
"MediaConnectFlows": NotRequired[list[MediaConnectFlowTypeDef]],
|
|
5566
5664
|
"Name": NotRequired[str],
|
|
5567
5665
|
"RoleArn": NotRequired[str],
|
|
5568
|
-
"SecurityGroups": NotRequired[
|
|
5569
|
-
"Sources": NotRequired[
|
|
5666
|
+
"SecurityGroups": NotRequired[list[str]],
|
|
5667
|
+
"Sources": NotRequired[list[InputSourceTypeDef]],
|
|
5570
5668
|
"State": NotRequired[InputStateType],
|
|
5571
|
-
"Tags": NotRequired[
|
|
5669
|
+
"Tags": NotRequired[dict[str, str]],
|
|
5572
5670
|
"Type": NotRequired[InputTypeType],
|
|
5573
5671
|
"SrtSettings": NotRequired[SrtSettingsTypeDef],
|
|
5574
5672
|
"InputNetworkLocation": NotRequired[InputNetworkLocationType],
|
|
5575
5673
|
"MulticastSettings": NotRequired[MulticastSettingsTypeDef],
|
|
5576
5674
|
"Smpte2110ReceiverGroupSettings": NotRequired[Smpte2110ReceiverGroupSettingsOutputTypeDef],
|
|
5577
|
-
"SdiSources": NotRequired[
|
|
5675
|
+
"SdiSources": NotRequired[list[str]],
|
|
5578
5676
|
},
|
|
5579
5677
|
)
|
|
5580
5678
|
Smpte2110ReceiverGroupSettingsUnionTypeDef = Union[
|
|
@@ -5619,7 +5717,7 @@ class UpdateMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
5619
5717
|
|
|
5620
5718
|
|
|
5621
5719
|
class Scte35TimeSignalScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
5622
|
-
Scte35Descriptors:
|
|
5720
|
+
Scte35Descriptors: list[Scte35DescriptorTypeDef]
|
|
5623
5721
|
|
|
5624
5722
|
|
|
5625
5723
|
class Scte35TimeSignalScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -5636,7 +5734,7 @@ class InputAttachmentOutputTypeDef(TypedDict):
|
|
|
5636
5734
|
InputAttachmentName: NotRequired[str]
|
|
5637
5735
|
InputId: NotRequired[str]
|
|
5638
5736
|
InputSettings: NotRequired[InputSettingsOutputTypeDef]
|
|
5639
|
-
LogicalInterfaceNames: NotRequired[
|
|
5737
|
+
LogicalInterfaceNames: NotRequired[list[str]]
|
|
5640
5738
|
|
|
5641
5739
|
|
|
5642
5740
|
CaptionSelectorUnionTypeDef = Union[CaptionSelectorTypeDef, CaptionSelectorOutputTypeDef]
|
|
@@ -5653,7 +5751,7 @@ class CreatePartnerInputResponseTypeDef(TypedDict):
|
|
|
5653
5751
|
|
|
5654
5752
|
|
|
5655
5753
|
class ListInputsResponseTypeDef(TypedDict):
|
|
5656
|
-
Inputs:
|
|
5754
|
+
Inputs: list[InputTypeDef]
|
|
5657
5755
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5658
5756
|
NextToken: NotRequired[str]
|
|
5659
5757
|
|
|
@@ -5703,8 +5801,8 @@ class UpdateInputRequestTypeDef(TypedDict):
|
|
|
5703
5801
|
|
|
5704
5802
|
class ExtraTypeDef(TypedDict):
|
|
5705
5803
|
OutputSettings: OutputSettingsOutputTypeDef
|
|
5706
|
-
AudioDescriptionNames: NotRequired[
|
|
5707
|
-
CaptionDescriptionNames: NotRequired[
|
|
5804
|
+
AudioDescriptionNames: NotRequired[list[str]]
|
|
5805
|
+
CaptionDescriptionNames: NotRequired[list[str]]
|
|
5708
5806
|
OutputName: NotRequired[str]
|
|
5709
5807
|
VideoDescriptionName: NotRequired[str]
|
|
5710
5808
|
|
|
@@ -5725,7 +5823,7 @@ class ScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
|
5725
5823
|
MotionGraphicsImageActivateSettings: NotRequired[
|
|
5726
5824
|
MotionGraphicsActivateScheduleActionSettingsTypeDef
|
|
5727
5825
|
]
|
|
5728
|
-
MotionGraphicsImageDeactivateSettings: NotRequired[
|
|
5826
|
+
MotionGraphicsImageDeactivateSettings: NotRequired[dict[str, Any]]
|
|
5729
5827
|
PauseStateSettings: NotRequired[PauseStateScheduleActionSettingsOutputTypeDef]
|
|
5730
5828
|
Scte35InputSettings: NotRequired[Scte35InputScheduleActionSettingsTypeDef]
|
|
5731
5829
|
Scte35ReturnToNetworkSettings: NotRequired[Scte35ReturnToNetworkScheduleActionSettingsTypeDef]
|
|
@@ -5754,10 +5852,10 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5754
5852
|
Arn: NotRequired[str]
|
|
5755
5853
|
CdiInputSpecification: NotRequired[CdiInputSpecificationTypeDef]
|
|
5756
5854
|
ChannelClass: NotRequired[ChannelClassType]
|
|
5757
|
-
Destinations: NotRequired[
|
|
5758
|
-
EgressEndpoints: NotRequired[
|
|
5855
|
+
Destinations: NotRequired[list[OutputDestinationOutputTypeDef]]
|
|
5856
|
+
EgressEndpoints: NotRequired[list[ChannelEgressEndpointTypeDef]]
|
|
5759
5857
|
Id: NotRequired[str]
|
|
5760
|
-
InputAttachments: NotRequired[
|
|
5858
|
+
InputAttachments: NotRequired[list[InputAttachmentOutputTypeDef]]
|
|
5761
5859
|
InputSpecification: NotRequired[InputSpecificationTypeDef]
|
|
5762
5860
|
LogLevel: NotRequired[LogLevelType]
|
|
5763
5861
|
Maintenance: NotRequired[MaintenanceStatusTypeDef]
|
|
@@ -5765,16 +5863,16 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5765
5863
|
PipelinesRunningCount: NotRequired[int]
|
|
5766
5864
|
RoleArn: NotRequired[str]
|
|
5767
5865
|
State: NotRequired[ChannelStateType]
|
|
5768
|
-
Tags: NotRequired[
|
|
5866
|
+
Tags: NotRequired[dict[str, str]]
|
|
5769
5867
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
5770
5868
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5771
5869
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5772
|
-
UsedChannelEngineVersions: NotRequired[
|
|
5870
|
+
UsedChannelEngineVersions: NotRequired[list[ChannelEngineVersionResponseTypeDef]]
|
|
5773
5871
|
|
|
5774
5872
|
|
|
5775
5873
|
class OutputGroupOutputTypeDef(TypedDict):
|
|
5776
5874
|
OutputGroupSettings: OutputGroupSettingsOutputTypeDef
|
|
5777
|
-
Outputs:
|
|
5875
|
+
Outputs: list[ExtraTypeDef]
|
|
5778
5876
|
Name: NotRequired[str]
|
|
5779
5877
|
|
|
5780
5878
|
|
|
@@ -5831,20 +5929,20 @@ class InputSettingsTypeDef(TypedDict):
|
|
|
5831
5929
|
|
|
5832
5930
|
|
|
5833
5931
|
class ListChannelsResponseTypeDef(TypedDict):
|
|
5834
|
-
Channels:
|
|
5932
|
+
Channels: list[ChannelSummaryTypeDef]
|
|
5835
5933
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5836
5934
|
NextToken: NotRequired[str]
|
|
5837
5935
|
|
|
5838
5936
|
|
|
5839
5937
|
class EncoderSettingsOutputTypeDef(TypedDict):
|
|
5840
|
-
AudioDescriptions:
|
|
5841
|
-
OutputGroups:
|
|
5938
|
+
AudioDescriptions: list[AudioDescriptionOutputTypeDef]
|
|
5939
|
+
OutputGroups: list[OutputGroupOutputTypeDef]
|
|
5842
5940
|
TimecodeConfig: TimecodeConfigTypeDef
|
|
5843
|
-
VideoDescriptions:
|
|
5941
|
+
VideoDescriptions: list[VideoDescriptionOutputTypeDef]
|
|
5844
5942
|
AvailBlanking: NotRequired[AvailBlankingTypeDef]
|
|
5845
5943
|
AvailConfiguration: NotRequired[AvailConfigurationTypeDef]
|
|
5846
5944
|
BlackoutSlate: NotRequired[BlackoutSlateTypeDef]
|
|
5847
|
-
CaptionDescriptions: NotRequired[
|
|
5945
|
+
CaptionDescriptions: NotRequired[list[CaptionDescriptionOutputTypeDef]]
|
|
5848
5946
|
FeatureActivations: NotRequired[FeatureActivationsTypeDef]
|
|
5849
5947
|
GlobalConfiguration: NotRequired[GlobalConfigurationOutputTypeDef]
|
|
5850
5948
|
MotionGraphicsConfiguration: NotRequired[MotionGraphicsConfigurationOutputTypeDef]
|
|
@@ -5871,15 +5969,15 @@ class EncoderSettingsTypeDef(TypedDict):
|
|
|
5871
5969
|
|
|
5872
5970
|
|
|
5873
5971
|
class BatchScheduleActionCreateResultTypeDef(TypedDict):
|
|
5874
|
-
ScheduleActions:
|
|
5972
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5875
5973
|
|
|
5876
5974
|
|
|
5877
5975
|
class BatchScheduleActionDeleteResultTypeDef(TypedDict):
|
|
5878
|
-
ScheduleActions:
|
|
5976
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5879
5977
|
|
|
5880
5978
|
|
|
5881
5979
|
class DescribeScheduleResponseTypeDef(TypedDict):
|
|
5882
|
-
ScheduleActions:
|
|
5980
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5883
5981
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5884
5982
|
NextToken: NotRequired[str]
|
|
5885
5983
|
|
|
@@ -5894,20 +5992,20 @@ class ChannelTypeDef(TypedDict):
|
|
|
5894
5992
|
Arn: NotRequired[str]
|
|
5895
5993
|
CdiInputSpecification: NotRequired[CdiInputSpecificationTypeDef]
|
|
5896
5994
|
ChannelClass: NotRequired[ChannelClassType]
|
|
5897
|
-
Destinations: NotRequired[
|
|
5898
|
-
EgressEndpoints: NotRequired[
|
|
5995
|
+
Destinations: NotRequired[list[OutputDestinationOutputTypeDef]]
|
|
5996
|
+
EgressEndpoints: NotRequired[list[ChannelEgressEndpointTypeDef]]
|
|
5899
5997
|
EncoderSettings: NotRequired[EncoderSettingsOutputTypeDef]
|
|
5900
5998
|
Id: NotRequired[str]
|
|
5901
|
-
InputAttachments: NotRequired[
|
|
5999
|
+
InputAttachments: NotRequired[list[InputAttachmentOutputTypeDef]]
|
|
5902
6000
|
InputSpecification: NotRequired[InputSpecificationTypeDef]
|
|
5903
6001
|
LogLevel: NotRequired[LogLevelType]
|
|
5904
6002
|
Maintenance: NotRequired[MaintenanceStatusTypeDef]
|
|
5905
6003
|
Name: NotRequired[str]
|
|
5906
|
-
PipelineDetails: NotRequired[
|
|
6004
|
+
PipelineDetails: NotRequired[list[PipelineDetailTypeDef]]
|
|
5907
6005
|
PipelinesRunningCount: NotRequired[int]
|
|
5908
6006
|
RoleArn: NotRequired[str]
|
|
5909
6007
|
State: NotRequired[ChannelStateType]
|
|
5910
|
-
Tags: NotRequired[
|
|
6008
|
+
Tags: NotRequired[dict[str, str]]
|
|
5911
6009
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
5912
6010
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5913
6011
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
@@ -5917,20 +6015,20 @@ class DeleteChannelResponseTypeDef(TypedDict):
|
|
|
5917
6015
|
Arn: str
|
|
5918
6016
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5919
6017
|
ChannelClass: ChannelClassType
|
|
5920
|
-
Destinations:
|
|
5921
|
-
EgressEndpoints:
|
|
6018
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6019
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5922
6020
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5923
6021
|
Id: str
|
|
5924
|
-
InputAttachments:
|
|
6022
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5925
6023
|
InputSpecification: InputSpecificationTypeDef
|
|
5926
6024
|
LogLevel: LogLevelType
|
|
5927
6025
|
Maintenance: MaintenanceStatusTypeDef
|
|
5928
6026
|
Name: str
|
|
5929
|
-
PipelineDetails:
|
|
6027
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5930
6028
|
PipelinesRunningCount: int
|
|
5931
6029
|
RoleArn: str
|
|
5932
6030
|
State: ChannelStateType
|
|
5933
|
-
Tags:
|
|
6031
|
+
Tags: dict[str, str]
|
|
5934
6032
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5935
6033
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5936
6034
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -5941,20 +6039,20 @@ class DescribeChannelResponseTypeDef(TypedDict):
|
|
|
5941
6039
|
Arn: str
|
|
5942
6040
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5943
6041
|
ChannelClass: ChannelClassType
|
|
5944
|
-
Destinations:
|
|
5945
|
-
EgressEndpoints:
|
|
6042
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6043
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5946
6044
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5947
6045
|
Id: str
|
|
5948
|
-
InputAttachments:
|
|
6046
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5949
6047
|
InputSpecification: InputSpecificationTypeDef
|
|
5950
6048
|
LogLevel: LogLevelType
|
|
5951
6049
|
Maintenance: MaintenanceStatusTypeDef
|
|
5952
6050
|
Name: str
|
|
5953
|
-
PipelineDetails:
|
|
6051
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5954
6052
|
PipelinesRunningCount: int
|
|
5955
6053
|
RoleArn: str
|
|
5956
6054
|
State: ChannelStateType
|
|
5957
|
-
Tags:
|
|
6055
|
+
Tags: dict[str, str]
|
|
5958
6056
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5959
6057
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5960
6058
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -5965,21 +6063,21 @@ class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
|
5965
6063
|
Arn: str
|
|
5966
6064
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5967
6065
|
ChannelClass: ChannelClassType
|
|
5968
|
-
Destinations:
|
|
5969
|
-
EgressEndpoints:
|
|
6066
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6067
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5970
6068
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5971
6069
|
Id: str
|
|
5972
|
-
InputAttachments:
|
|
6070
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5973
6071
|
InputSpecification: InputSpecificationTypeDef
|
|
5974
6072
|
LogLevel: LogLevelType
|
|
5975
6073
|
Maintenance: MaintenanceStatusTypeDef
|
|
5976
6074
|
MaintenanceStatus: str
|
|
5977
6075
|
Name: str
|
|
5978
|
-
PipelineDetails:
|
|
6076
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
5979
6077
|
PipelinesRunningCount: int
|
|
5980
6078
|
RoleArn: str
|
|
5981
6079
|
State: ChannelStateType
|
|
5982
|
-
Tags:
|
|
6080
|
+
Tags: dict[str, str]
|
|
5983
6081
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
5984
6082
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
5985
6083
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -5990,20 +6088,20 @@ class StartChannelResponseTypeDef(TypedDict):
|
|
|
5990
6088
|
Arn: str
|
|
5991
6089
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
5992
6090
|
ChannelClass: ChannelClassType
|
|
5993
|
-
Destinations:
|
|
5994
|
-
EgressEndpoints:
|
|
6091
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6092
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
5995
6093
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
5996
6094
|
Id: str
|
|
5997
|
-
InputAttachments:
|
|
6095
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
5998
6096
|
InputSpecification: InputSpecificationTypeDef
|
|
5999
6097
|
LogLevel: LogLevelType
|
|
6000
6098
|
Maintenance: MaintenanceStatusTypeDef
|
|
6001
6099
|
Name: str
|
|
6002
|
-
PipelineDetails:
|
|
6100
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
6003
6101
|
PipelinesRunningCount: int
|
|
6004
6102
|
RoleArn: str
|
|
6005
6103
|
State: ChannelStateType
|
|
6006
|
-
Tags:
|
|
6104
|
+
Tags: dict[str, str]
|
|
6007
6105
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6008
6106
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6009
6107
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -6014,20 +6112,20 @@ class StopChannelResponseTypeDef(TypedDict):
|
|
|
6014
6112
|
Arn: str
|
|
6015
6113
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
6016
6114
|
ChannelClass: ChannelClassType
|
|
6017
|
-
Destinations:
|
|
6018
|
-
EgressEndpoints:
|
|
6115
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6116
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
6019
6117
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
6020
6118
|
Id: str
|
|
6021
|
-
InputAttachments:
|
|
6119
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
6022
6120
|
InputSpecification: InputSpecificationTypeDef
|
|
6023
6121
|
LogLevel: LogLevelType
|
|
6024
6122
|
Maintenance: MaintenanceStatusTypeDef
|
|
6025
6123
|
Name: str
|
|
6026
|
-
PipelineDetails:
|
|
6124
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
6027
6125
|
PipelinesRunningCount: int
|
|
6028
6126
|
RoleArn: str
|
|
6029
6127
|
State: ChannelStateType
|
|
6030
|
-
Tags:
|
|
6128
|
+
Tags: dict[str, str]
|
|
6031
6129
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6032
6130
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6033
6131
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|