types-boto3-medialive 1.40.57__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/__main__.py +4 -4
- types_boto3_medialive/client.py +23 -28
- types_boto3_medialive/client.pyi +23 -28
- types_boto3_medialive/literals.py +0 -7
- types_boto3_medialive/literals.pyi +0 -7
- types_boto3_medialive/type_defs.py +300 -305
- types_boto3_medialive/type_defs.pyi +300 -305
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.40.57.dist-info → types_boto3_medialive-1.40.74.dist-info}/METADATA +11 -25
- types_boto3_medialive-1.40.74.dist-info/RECORD +20 -0
- types_boto3_medialive-1.40.57.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.40.57.dist-info → types_boto3_medialive-1.40.74.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.40.57.dist-info → types_boto3_medialive-1.40.74.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.40.57.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
|
|
|
@@ -348,12 +349,6 @@ from .literals import (
|
|
|
348
349
|
WebvttDestinationStyleControlType,
|
|
349
350
|
)
|
|
350
351
|
|
|
351
|
-
if sys.version_info >= (3, 9):
|
|
352
|
-
from builtins import dict as Dict
|
|
353
|
-
from builtins import list as List
|
|
354
|
-
from collections.abc import Mapping, Sequence
|
|
355
|
-
else:
|
|
356
|
-
from typing import Dict, List, Mapping, Sequence
|
|
357
352
|
if sys.version_info >= (3, 12):
|
|
358
353
|
from typing import Literal, NotRequired, TypedDict
|
|
359
354
|
else:
|
|
@@ -1213,7 +1208,7 @@ class BatchSuccessfulResultModelTypeDef(TypedDict):
|
|
|
1213
1208
|
class ResponseMetadataTypeDef(TypedDict):
|
|
1214
1209
|
RequestId: str
|
|
1215
1210
|
HTTPStatusCode: int
|
|
1216
|
-
HTTPHeaders:
|
|
1211
|
+
HTTPHeaders: dict[str, str]
|
|
1217
1212
|
RetryAttempts: int
|
|
1218
1213
|
HostId: NotRequired[str]
|
|
1219
1214
|
|
|
@@ -1334,10 +1329,10 @@ class MaintenanceStatusTypeDef(TypedDict):
|
|
|
1334
1329
|
|
|
1335
1330
|
|
|
1336
1331
|
class VpcOutputSettingsDescriptionTypeDef(TypedDict):
|
|
1337
|
-
AvailabilityZones: NotRequired[
|
|
1338
|
-
NetworkInterfaceIds: NotRequired[
|
|
1339
|
-
SecurityGroupIds: NotRequired[
|
|
1340
|
-
SubnetIds: NotRequired[
|
|
1332
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
1333
|
+
NetworkInterfaceIds: NotRequired[list[str]]
|
|
1334
|
+
SecurityGroupIds: NotRequired[list[str]]
|
|
1335
|
+
SubnetIds: NotRequired[list[str]]
|
|
1341
1336
|
|
|
1342
1337
|
|
|
1343
1338
|
class ClaimDeviceRequestTypeDef(TypedDict):
|
|
@@ -1352,7 +1347,7 @@ class CloudWatchAlarmTemplateGroupSummaryTypeDef(TypedDict):
|
|
|
1352
1347
|
TemplateCount: int
|
|
1353
1348
|
Description: NotRequired[str]
|
|
1354
1349
|
ModifiedAt: NotRequired[datetime]
|
|
1355
|
-
Tags: NotRequired[
|
|
1350
|
+
Tags: NotRequired[dict[str, str]]
|
|
1356
1351
|
|
|
1357
1352
|
|
|
1358
1353
|
class CloudWatchAlarmTemplateSummaryTypeDef(TypedDict):
|
|
@@ -1372,7 +1367,7 @@ class CloudWatchAlarmTemplateSummaryTypeDef(TypedDict):
|
|
|
1372
1367
|
DatapointsToAlarm: NotRequired[int]
|
|
1373
1368
|
Description: NotRequired[str]
|
|
1374
1369
|
ModifiedAt: NotRequired[datetime]
|
|
1375
|
-
Tags: NotRequired[
|
|
1370
|
+
Tags: NotRequired[dict[str, str]]
|
|
1376
1371
|
|
|
1377
1372
|
|
|
1378
1373
|
class ClusterAlertTypeDef(TypedDict):
|
|
@@ -1557,7 +1552,7 @@ SdiSourceTypeDef = TypedDict(
|
|
|
1557
1552
|
{
|
|
1558
1553
|
"Arn": NotRequired[str],
|
|
1559
1554
|
"Id": NotRequired[str],
|
|
1560
|
-
"Inputs": NotRequired[
|
|
1555
|
+
"Inputs": NotRequired[list[str]],
|
|
1561
1556
|
"Mode": NotRequired[SdiSourceModeType],
|
|
1562
1557
|
"Name": NotRequired[str],
|
|
1563
1558
|
"State": NotRequired[SdiSourceStateType],
|
|
@@ -1635,21 +1630,21 @@ class DeleteMultiplexProgramRequestTypeDef(TypedDict):
|
|
|
1635
1630
|
|
|
1636
1631
|
|
|
1637
1632
|
class MultiplexProgramPacketIdentifiersMapOutputTypeDef(TypedDict):
|
|
1638
|
-
AudioPids: NotRequired[
|
|
1639
|
-
DvbSubPids: NotRequired[
|
|
1633
|
+
AudioPids: NotRequired[list[int]]
|
|
1634
|
+
DvbSubPids: NotRequired[list[int]]
|
|
1640
1635
|
DvbTeletextPid: NotRequired[int]
|
|
1641
1636
|
EtvPlatformPid: NotRequired[int]
|
|
1642
1637
|
EtvSignalPid: NotRequired[int]
|
|
1643
|
-
KlvDataPids: NotRequired[
|
|
1638
|
+
KlvDataPids: NotRequired[list[int]]
|
|
1644
1639
|
PcrPid: NotRequired[int]
|
|
1645
1640
|
PmtPid: NotRequired[int]
|
|
1646
1641
|
PrivateMetadataPid: NotRequired[int]
|
|
1647
|
-
Scte27Pids: NotRequired[
|
|
1642
|
+
Scte27Pids: NotRequired[list[int]]
|
|
1648
1643
|
Scte35Pid: NotRequired[int]
|
|
1649
1644
|
TimedMetadataPid: NotRequired[int]
|
|
1650
1645
|
VideoPid: NotRequired[int]
|
|
1651
1646
|
AribCaptionsPid: NotRequired[int]
|
|
1652
|
-
DvbTeletextPids: NotRequired[
|
|
1647
|
+
DvbTeletextPids: NotRequired[list[int]]
|
|
1653
1648
|
EcmPid: NotRequired[int]
|
|
1654
1649
|
Smpte2038Pid: NotRequired[int]
|
|
1655
1650
|
|
|
@@ -1721,11 +1716,11 @@ class WaiterConfigTypeDef(TypedDict):
|
|
|
1721
1716
|
|
|
1722
1717
|
class DescribeChannelPlacementGroupSummaryTypeDef(TypedDict):
|
|
1723
1718
|
Arn: NotRequired[str]
|
|
1724
|
-
Channels: NotRequired[
|
|
1719
|
+
Channels: NotRequired[list[str]]
|
|
1725
1720
|
ClusterId: NotRequired[str]
|
|
1726
1721
|
Id: NotRequired[str]
|
|
1727
1722
|
Name: NotRequired[str]
|
|
1728
|
-
Nodes: NotRequired[
|
|
1723
|
+
Nodes: NotRequired[list[str]]
|
|
1729
1724
|
State: NotRequired[ChannelPlacementGroupStateType]
|
|
1730
1725
|
|
|
1731
1726
|
|
|
@@ -1754,7 +1749,7 @@ class InputDeviceHdSettingsTypeDef(TypedDict):
|
|
|
1754
1749
|
|
|
1755
1750
|
|
|
1756
1751
|
class InputDeviceNetworkSettingsTypeDef(TypedDict):
|
|
1757
|
-
DnsAddresses: NotRequired[
|
|
1752
|
+
DnsAddresses: NotRequired[list[str]]
|
|
1758
1753
|
Gateway: NotRequired[str]
|
|
1759
1754
|
IpAddress: NotRequired[str]
|
|
1760
1755
|
IpScheme: NotRequired[InputDeviceIpSchemeType]
|
|
@@ -1891,7 +1886,7 @@ class EventBridgeRuleTemplateGroupSummaryTypeDef(TypedDict):
|
|
|
1891
1886
|
TemplateCount: int
|
|
1892
1887
|
Description: NotRequired[str]
|
|
1893
1888
|
ModifiedAt: NotRequired[datetime]
|
|
1894
|
-
Tags: NotRequired[
|
|
1889
|
+
Tags: NotRequired[dict[str, str]]
|
|
1895
1890
|
|
|
1896
1891
|
|
|
1897
1892
|
class EventBridgeRuleTemplateSummaryTypeDef(TypedDict):
|
|
@@ -1904,7 +1899,7 @@ class EventBridgeRuleTemplateSummaryTypeDef(TypedDict):
|
|
|
1904
1899
|
Name: str
|
|
1905
1900
|
Description: NotRequired[str]
|
|
1906
1901
|
ModifiedAt: NotRequired[datetime]
|
|
1907
|
-
Tags: NotRequired[
|
|
1902
|
+
Tags: NotRequired[dict[str, str]]
|
|
1908
1903
|
|
|
1909
1904
|
|
|
1910
1905
|
class InputLossFailoverSettingsTypeDef(TypedDict):
|
|
@@ -1966,9 +1961,9 @@ class GetSignalMapRequestTypeDef(TypedDict):
|
|
|
1966
1961
|
|
|
1967
1962
|
|
|
1968
1963
|
class H264ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
1969
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
1970
|
-
Rec601Settings: NotRequired[
|
|
1971
|
-
Rec709Settings: NotRequired[
|
|
1964
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
1965
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
1966
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
1972
1967
|
|
|
1973
1968
|
|
|
1974
1969
|
class H264ColorSpaceSettingsTypeDef(TypedDict):
|
|
@@ -2270,7 +2265,7 @@ SdiSourceSummaryTypeDef = TypedDict(
|
|
|
2270
2265
|
{
|
|
2271
2266
|
"Arn": NotRequired[str],
|
|
2272
2267
|
"Id": NotRequired[str],
|
|
2273
|
-
"Inputs": NotRequired[
|
|
2268
|
+
"Inputs": NotRequired[list[str]],
|
|
2274
2269
|
"Mode": NotRequired[SdiSourceModeType],
|
|
2275
2270
|
"Name": NotRequired[str],
|
|
2276
2271
|
"State": NotRequired[SdiSourceStateType],
|
|
@@ -2295,7 +2290,7 @@ class SignalMapSummaryTypeDef(TypedDict):
|
|
|
2295
2290
|
Status: SignalMapStatusType
|
|
2296
2291
|
Description: NotRequired[str]
|
|
2297
2292
|
ModifiedAt: NotRequired[datetime]
|
|
2298
|
-
Tags: NotRequired[
|
|
2293
|
+
Tags: NotRequired[dict[str, str]]
|
|
2299
2294
|
|
|
2300
2295
|
|
|
2301
2296
|
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
@@ -2356,7 +2351,7 @@ class MotionGraphicsActivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2356
2351
|
|
|
2357
2352
|
|
|
2358
2353
|
class MotionGraphicsSettingsOutputTypeDef(TypedDict):
|
|
2359
|
-
HtmlMotionGraphicsSettings: NotRequired[
|
|
2354
|
+
HtmlMotionGraphicsSettings: NotRequired[dict[str, Any]]
|
|
2360
2355
|
|
|
2361
2356
|
|
|
2362
2357
|
class MotionGraphicsSettingsTypeDef(TypedDict):
|
|
@@ -2478,7 +2473,7 @@ class SrtOutputDestinationSettingsTypeDef(TypedDict):
|
|
|
2478
2473
|
|
|
2479
2474
|
|
|
2480
2475
|
class RtmpGroupSettingsOutputTypeDef(TypedDict):
|
|
2481
|
-
AdMarkers: NotRequired[
|
|
2476
|
+
AdMarkers: NotRequired[list[Literal["ON_CUE_POINT_SCTE35"]]]
|
|
2482
2477
|
AuthenticationScheme: NotRequired[AuthenticationSchemeType]
|
|
2483
2478
|
CacheFullBehavior: NotRequired[RtmpCacheFullBehaviorType]
|
|
2484
2479
|
CacheLength: NotRequired[int]
|
|
@@ -2552,7 +2547,7 @@ class StaticImageDeactivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2552
2547
|
|
|
2553
2548
|
|
|
2554
2549
|
class StaticImageOutputDeactivateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
2555
|
-
OutputNames:
|
|
2550
|
+
OutputNames: list[str]
|
|
2556
2551
|
FadeOut: NotRequired[int]
|
|
2557
2552
|
Layer: NotRequired[int]
|
|
2558
2553
|
|
|
@@ -2751,7 +2746,7 @@ class ArchiveCdnSettingsTypeDef(TypedDict):
|
|
|
2751
2746
|
|
|
2752
2747
|
|
|
2753
2748
|
class AudioChannelMappingOutputTypeDef(TypedDict):
|
|
2754
|
-
InputChannelLevels:
|
|
2749
|
+
InputChannelLevels: list[InputChannelLevelTypeDef]
|
|
2755
2750
|
OutputChannel: int
|
|
2756
2751
|
|
|
2757
2752
|
|
|
@@ -2766,7 +2761,7 @@ class AudioCodecSettingsOutputTypeDef(TypedDict):
|
|
|
2766
2761
|
Eac3AtmosSettings: NotRequired[Eac3AtmosSettingsTypeDef]
|
|
2767
2762
|
Eac3Settings: NotRequired[Eac3SettingsTypeDef]
|
|
2768
2763
|
Mp2Settings: NotRequired[Mp2SettingsTypeDef]
|
|
2769
|
-
PassThroughSettings: NotRequired[
|
|
2764
|
+
PassThroughSettings: NotRequired[dict[str, Any]]
|
|
2770
2765
|
WavSettings: NotRequired[WavSettingsTypeDef]
|
|
2771
2766
|
|
|
2772
2767
|
|
|
@@ -2865,7 +2860,7 @@ class StaticImageActivateScheduleActionSettingsTypeDef(TypedDict):
|
|
|
2865
2860
|
|
|
2866
2861
|
class StaticImageOutputActivateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
2867
2862
|
Image: InputLocationTypeDef
|
|
2868
|
-
OutputNames:
|
|
2863
|
+
OutputNames: list[str]
|
|
2869
2864
|
Duration: NotRequired[int]
|
|
2870
2865
|
FadeIn: NotRequired[int]
|
|
2871
2866
|
FadeOut: NotRequired[int]
|
|
@@ -2897,7 +2892,7 @@ class StaticKeySettingsTypeDef(TypedDict):
|
|
|
2897
2892
|
|
|
2898
2893
|
|
|
2899
2894
|
class AudioTrackSelectionOutputTypeDef(TypedDict):
|
|
2900
|
-
Tracks:
|
|
2895
|
+
Tracks: list[AudioTrackTypeDef]
|
|
2901
2896
|
DolbyEDecode: NotRequired[AudioDolbyEDecodeTypeDef]
|
|
2902
2897
|
|
|
2903
2898
|
|
|
@@ -2907,10 +2902,10 @@ class AudioTrackSelectionTypeDef(TypedDict):
|
|
|
2907
2902
|
|
|
2908
2903
|
|
|
2909
2904
|
class Av1ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
2910
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
2905
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
2911
2906
|
Hdr10Settings: NotRequired[Hdr10SettingsTypeDef]
|
|
2912
|
-
Rec601Settings: NotRequired[
|
|
2913
|
-
Rec709Settings: NotRequired[
|
|
2907
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
2908
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
2914
2909
|
|
|
2915
2910
|
|
|
2916
2911
|
class Av1ColorSpaceSettingsTypeDef(TypedDict):
|
|
@@ -2921,11 +2916,11 @@ class Av1ColorSpaceSettingsTypeDef(TypedDict):
|
|
|
2921
2916
|
|
|
2922
2917
|
|
|
2923
2918
|
class H265ColorSpaceSettingsOutputTypeDef(TypedDict):
|
|
2924
|
-
ColorSpacePassthroughSettings: NotRequired[
|
|
2925
|
-
DolbyVision81Settings: NotRequired[
|
|
2919
|
+
ColorSpacePassthroughSettings: NotRequired[dict[str, Any]]
|
|
2920
|
+
DolbyVision81Settings: NotRequired[dict[str, Any]]
|
|
2926
2921
|
Hdr10Settings: NotRequired[Hdr10SettingsTypeDef]
|
|
2927
|
-
Rec601Settings: NotRequired[
|
|
2928
|
-
Rec709Settings: NotRequired[
|
|
2922
|
+
Rec601Settings: NotRequired[dict[str, Any]]
|
|
2923
|
+
Rec709Settings: NotRequired[dict[str, Any]]
|
|
2929
2924
|
|
|
2930
2925
|
|
|
2931
2926
|
class H265ColorSpaceSettingsTypeDef(TypedDict):
|
|
@@ -2953,30 +2948,30 @@ class AvailSettingsTypeDef(TypedDict):
|
|
|
2953
2948
|
|
|
2954
2949
|
|
|
2955
2950
|
class BatchDeleteResponseTypeDef(TypedDict):
|
|
2956
|
-
Failed:
|
|
2957
|
-
Successful:
|
|
2951
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2952
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2958
2953
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2959
2954
|
|
|
2960
2955
|
|
|
2961
2956
|
class BatchStartResponseTypeDef(TypedDict):
|
|
2962
|
-
Failed:
|
|
2963
|
-
Successful:
|
|
2957
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2958
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2964
2959
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2965
2960
|
|
|
2966
2961
|
|
|
2967
2962
|
class BatchStopResponseTypeDef(TypedDict):
|
|
2968
|
-
Failed:
|
|
2969
|
-
Successful:
|
|
2963
|
+
Failed: list[BatchFailedResultModelTypeDef]
|
|
2964
|
+
Successful: list[BatchSuccessfulResultModelTypeDef]
|
|
2970
2965
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2971
2966
|
|
|
2972
2967
|
|
|
2973
2968
|
class CreateChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
2974
2969
|
Arn: str
|
|
2975
|
-
Channels:
|
|
2970
|
+
Channels: list[str]
|
|
2976
2971
|
ClusterId: str
|
|
2977
2972
|
Id: str
|
|
2978
2973
|
Name: str
|
|
2979
|
-
Nodes:
|
|
2974
|
+
Nodes: list[str]
|
|
2980
2975
|
State: ChannelPlacementGroupStateType
|
|
2981
2976
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2982
2977
|
|
|
@@ -2988,7 +2983,7 @@ class CreateCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
2988
2983
|
Id: str
|
|
2989
2984
|
ModifiedAt: datetime
|
|
2990
2985
|
Name: str
|
|
2991
|
-
Tags:
|
|
2986
|
+
Tags: dict[str, str]
|
|
2992
2987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2993
2988
|
|
|
2994
2989
|
|
|
@@ -3006,7 +3001,7 @@ class CreateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
3006
3001
|
Name: str
|
|
3007
3002
|
Period: int
|
|
3008
3003
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
3009
|
-
Tags:
|
|
3004
|
+
Tags: dict[str, str]
|
|
3010
3005
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
3011
3006
|
Threshold: float
|
|
3012
3007
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -3020,7 +3015,7 @@ class CreateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3020
3015
|
Id: str
|
|
3021
3016
|
ModifiedAt: datetime
|
|
3022
3017
|
Name: str
|
|
3023
|
-
Tags:
|
|
3018
|
+
Tags: dict[str, str]
|
|
3024
3019
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3025
3020
|
|
|
3026
3021
|
|
|
@@ -3031,11 +3026,11 @@ class CreateNodeRegistrationScriptResponseTypeDef(TypedDict):
|
|
|
3031
3026
|
|
|
3032
3027
|
class DeleteChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
3033
3028
|
Arn: str
|
|
3034
|
-
Channels:
|
|
3029
|
+
Channels: list[str]
|
|
3035
3030
|
ClusterId: str
|
|
3036
3031
|
Id: str
|
|
3037
3032
|
Name: str
|
|
3038
|
-
Nodes:
|
|
3033
|
+
Nodes: list[str]
|
|
3039
3034
|
State: ChannelPlacementGroupStateType
|
|
3040
3035
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3041
3036
|
|
|
@@ -3047,11 +3042,11 @@ class DescribeAccountConfigurationResponseTypeDef(TypedDict):
|
|
|
3047
3042
|
|
|
3048
3043
|
class DescribeChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
3049
3044
|
Arn: str
|
|
3050
|
-
Channels:
|
|
3045
|
+
Channels: list[str]
|
|
3051
3046
|
ClusterId: str
|
|
3052
3047
|
Id: str
|
|
3053
3048
|
Name: str
|
|
3054
|
-
Nodes:
|
|
3049
|
+
Nodes: list[str]
|
|
3055
3050
|
State: ChannelPlacementGroupStateType
|
|
3056
3051
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3057
3052
|
|
|
@@ -3076,7 +3071,7 @@ class GetCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3076
3071
|
Id: str
|
|
3077
3072
|
ModifiedAt: datetime
|
|
3078
3073
|
Name: str
|
|
3079
|
-
Tags:
|
|
3074
|
+
Tags: dict[str, str]
|
|
3080
3075
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3081
3076
|
|
|
3082
3077
|
|
|
@@ -3094,7 +3089,7 @@ class GetCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
3094
3089
|
Name: str
|
|
3095
3090
|
Period: int
|
|
3096
3091
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
3097
|
-
Tags:
|
|
3092
|
+
Tags: dict[str, str]
|
|
3098
3093
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
3099
3094
|
Threshold: float
|
|
3100
3095
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -3108,12 +3103,12 @@ class GetEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3108
3103
|
Id: str
|
|
3109
3104
|
ModifiedAt: datetime
|
|
3110
3105
|
Name: str
|
|
3111
|
-
Tags:
|
|
3106
|
+
Tags: dict[str, str]
|
|
3112
3107
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3113
3108
|
|
|
3114
3109
|
|
|
3115
3110
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
3116
|
-
Tags:
|
|
3111
|
+
Tags: dict[str, str]
|
|
3117
3112
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3118
3113
|
|
|
3119
3114
|
|
|
@@ -3124,11 +3119,11 @@ class UpdateAccountConfigurationResponseTypeDef(TypedDict):
|
|
|
3124
3119
|
|
|
3125
3120
|
class UpdateChannelPlacementGroupResponseTypeDef(TypedDict):
|
|
3126
3121
|
Arn: str
|
|
3127
|
-
Channels:
|
|
3122
|
+
Channels: list[str]
|
|
3128
3123
|
ClusterId: str
|
|
3129
3124
|
Id: str
|
|
3130
3125
|
Name: str
|
|
3131
|
-
Nodes:
|
|
3126
|
+
Nodes: list[str]
|
|
3132
3127
|
State: ChannelPlacementGroupStateType
|
|
3133
3128
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3134
3129
|
|
|
@@ -3140,7 +3135,7 @@ class UpdateCloudWatchAlarmTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3140
3135
|
Id: str
|
|
3141
3136
|
ModifiedAt: datetime
|
|
3142
3137
|
Name: str
|
|
3143
|
-
Tags:
|
|
3138
|
+
Tags: dict[str, str]
|
|
3144
3139
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3145
3140
|
|
|
3146
3141
|
|
|
@@ -3158,7 +3153,7 @@ class UpdateCloudWatchAlarmTemplateResponseTypeDef(TypedDict):
|
|
|
3158
3153
|
Name: str
|
|
3159
3154
|
Period: int
|
|
3160
3155
|
Statistic: CloudWatchAlarmTemplateStatisticType
|
|
3161
|
-
Tags:
|
|
3156
|
+
Tags: dict[str, str]
|
|
3162
3157
|
TargetResourceType: CloudWatchAlarmTemplateTargetResourceTypeType
|
|
3163
3158
|
Threshold: float
|
|
3164
3159
|
TreatMissingData: CloudWatchAlarmTemplateTreatMissingDataType
|
|
@@ -3172,12 +3167,12 @@ class UpdateEventBridgeRuleTemplateGroupResponseTypeDef(TypedDict):
|
|
|
3172
3167
|
Id: str
|
|
3173
3168
|
ModifiedAt: datetime
|
|
3174
3169
|
Name: str
|
|
3175
|
-
Tags:
|
|
3170
|
+
Tags: dict[str, str]
|
|
3176
3171
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3177
3172
|
|
|
3178
3173
|
|
|
3179
3174
|
class MediaPackageV2GroupSettingsOutputTypeDef(TypedDict):
|
|
3180
|
-
CaptionLanguageMappings: NotRequired[
|
|
3175
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
3181
3176
|
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
3182
3177
|
KlvBehavior: NotRequired[CmafKLVBehaviorType]
|
|
3183
3178
|
NielsenId3Behavior: NotRequired[CmafNielsenId3BehaviorType]
|
|
@@ -3208,13 +3203,13 @@ class TeletextSourceSettingsTypeDef(TypedDict):
|
|
|
3208
3203
|
|
|
3209
3204
|
|
|
3210
3205
|
class ListAlertsResponseTypeDef(TypedDict):
|
|
3211
|
-
Alerts:
|
|
3206
|
+
Alerts: list[ChannelAlertTypeDef]
|
|
3212
3207
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3213
3208
|
NextToken: NotRequired[str]
|
|
3214
3209
|
|
|
3215
3210
|
|
|
3216
3211
|
class ListVersionsResponseTypeDef(TypedDict):
|
|
3217
|
-
Versions:
|
|
3212
|
+
Versions: list[ChannelEngineVersionResponseTypeDef]
|
|
3218
3213
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3219
3214
|
|
|
3220
3215
|
|
|
@@ -3228,19 +3223,19 @@ class PipelineDetailTypeDef(TypedDict):
|
|
|
3228
3223
|
|
|
3229
3224
|
|
|
3230
3225
|
class ListCloudWatchAlarmTemplateGroupsResponseTypeDef(TypedDict):
|
|
3231
|
-
CloudWatchAlarmTemplateGroups:
|
|
3226
|
+
CloudWatchAlarmTemplateGroups: list[CloudWatchAlarmTemplateGroupSummaryTypeDef]
|
|
3232
3227
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3233
3228
|
NextToken: NotRequired[str]
|
|
3234
3229
|
|
|
3235
3230
|
|
|
3236
3231
|
class ListCloudWatchAlarmTemplatesResponseTypeDef(TypedDict):
|
|
3237
|
-
CloudWatchAlarmTemplates:
|
|
3232
|
+
CloudWatchAlarmTemplates: list[CloudWatchAlarmTemplateSummaryTypeDef]
|
|
3238
3233
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3239
3234
|
NextToken: NotRequired[str]
|
|
3240
3235
|
|
|
3241
3236
|
|
|
3242
3237
|
class ListClusterAlertsResponseTypeDef(TypedDict):
|
|
3243
|
-
Alerts:
|
|
3238
|
+
Alerts: list[ClusterAlertTypeDef]
|
|
3244
3239
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3245
3240
|
NextToken: NotRequired[str]
|
|
3246
3241
|
|
|
@@ -3252,7 +3247,7 @@ class ClusterNetworkSettingsCreateRequestTypeDef(TypedDict):
|
|
|
3252
3247
|
|
|
3253
3248
|
class ClusterNetworkSettingsTypeDef(TypedDict):
|
|
3254
3249
|
DefaultRoute: NotRequired[str]
|
|
3255
|
-
InterfaceMappings: NotRequired[
|
|
3250
|
+
InterfaceMappings: NotRequired[list[InterfaceMappingTypeDef]]
|
|
3256
3251
|
|
|
3257
3252
|
|
|
3258
3253
|
class ClusterNetworkSettingsUpdateRequestTypeDef(TypedDict):
|
|
@@ -3261,7 +3256,7 @@ class ClusterNetworkSettingsUpdateRequestTypeDef(TypedDict):
|
|
|
3261
3256
|
|
|
3262
3257
|
|
|
3263
3258
|
class ColorCorrectionSettingsOutputTypeDef(TypedDict):
|
|
3264
|
-
GlobalColorCorrections:
|
|
3259
|
+
GlobalColorCorrections: list[ColorCorrectionTypeDef]
|
|
3265
3260
|
|
|
3266
3261
|
|
|
3267
3262
|
class ColorCorrectionSettingsTypeDef(TypedDict):
|
|
@@ -3282,13 +3277,13 @@ class CreateEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
3282
3277
|
Arn: str
|
|
3283
3278
|
CreatedAt: datetime
|
|
3284
3279
|
Description: str
|
|
3285
|
-
EventTargets:
|
|
3280
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
3286
3281
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
3287
3282
|
GroupId: str
|
|
3288
3283
|
Id: str
|
|
3289
3284
|
ModifiedAt: datetime
|
|
3290
3285
|
Name: str
|
|
3291
|
-
Tags:
|
|
3286
|
+
Tags: dict[str, str]
|
|
3292
3287
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3293
3288
|
|
|
3294
3289
|
|
|
@@ -3296,13 +3291,13 @@ class GetEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
3296
3291
|
Arn: str
|
|
3297
3292
|
CreatedAt: datetime
|
|
3298
3293
|
Description: str
|
|
3299
|
-
EventTargets:
|
|
3294
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
3300
3295
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
3301
3296
|
GroupId: str
|
|
3302
3297
|
Id: str
|
|
3303
3298
|
ModifiedAt: datetime
|
|
3304
3299
|
Name: str
|
|
3305
|
-
Tags:
|
|
3300
|
+
Tags: dict[str, str]
|
|
3306
3301
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3307
3302
|
|
|
3308
3303
|
|
|
@@ -3319,13 +3314,13 @@ class UpdateEventBridgeRuleTemplateResponseTypeDef(TypedDict):
|
|
|
3319
3314
|
Arn: str
|
|
3320
3315
|
CreatedAt: datetime
|
|
3321
3316
|
Description: str
|
|
3322
|
-
EventTargets:
|
|
3317
|
+
EventTargets: list[EventBridgeRuleTemplateTargetTypeDef]
|
|
3323
3318
|
EventType: EventBridgeRuleTemplateEventTypeType
|
|
3324
3319
|
GroupId: str
|
|
3325
3320
|
Id: str
|
|
3326
3321
|
ModifiedAt: datetime
|
|
3327
3322
|
Name: str
|
|
3328
|
-
Tags:
|
|
3323
|
+
Tags: dict[str, str]
|
|
3329
3324
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3330
3325
|
|
|
3331
3326
|
|
|
@@ -3358,54 +3353,54 @@ class CreateNetworkRequestTypeDef(TypedDict):
|
|
|
3358
3353
|
|
|
3359
3354
|
class CreateNetworkResponseTypeDef(TypedDict):
|
|
3360
3355
|
Arn: str
|
|
3361
|
-
AssociatedClusterIds:
|
|
3356
|
+
AssociatedClusterIds: list[str]
|
|
3362
3357
|
Id: str
|
|
3363
|
-
IpPools:
|
|
3358
|
+
IpPools: list[IpPoolTypeDef]
|
|
3364
3359
|
Name: str
|
|
3365
|
-
Routes:
|
|
3360
|
+
Routes: list[RouteTypeDef]
|
|
3366
3361
|
State: NetworkStateType
|
|
3367
3362
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3368
3363
|
|
|
3369
3364
|
|
|
3370
3365
|
class DeleteNetworkResponseTypeDef(TypedDict):
|
|
3371
3366
|
Arn: str
|
|
3372
|
-
AssociatedClusterIds:
|
|
3367
|
+
AssociatedClusterIds: list[str]
|
|
3373
3368
|
Id: str
|
|
3374
|
-
IpPools:
|
|
3369
|
+
IpPools: list[IpPoolTypeDef]
|
|
3375
3370
|
Name: str
|
|
3376
|
-
Routes:
|
|
3371
|
+
Routes: list[RouteTypeDef]
|
|
3377
3372
|
State: NetworkStateType
|
|
3378
3373
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3379
3374
|
|
|
3380
3375
|
|
|
3381
3376
|
class DescribeNetworkResponseTypeDef(TypedDict):
|
|
3382
3377
|
Arn: str
|
|
3383
|
-
AssociatedClusterIds:
|
|
3378
|
+
AssociatedClusterIds: list[str]
|
|
3384
3379
|
Id: str
|
|
3385
|
-
IpPools:
|
|
3380
|
+
IpPools: list[IpPoolTypeDef]
|
|
3386
3381
|
Name: str
|
|
3387
|
-
Routes:
|
|
3382
|
+
Routes: list[RouteTypeDef]
|
|
3388
3383
|
State: NetworkStateType
|
|
3389
3384
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3390
3385
|
|
|
3391
3386
|
|
|
3392
3387
|
class DescribeNetworkSummaryTypeDef(TypedDict):
|
|
3393
3388
|
Arn: NotRequired[str]
|
|
3394
|
-
AssociatedClusterIds: NotRequired[
|
|
3389
|
+
AssociatedClusterIds: NotRequired[list[str]]
|
|
3395
3390
|
Id: NotRequired[str]
|
|
3396
|
-
IpPools: NotRequired[
|
|
3391
|
+
IpPools: NotRequired[list[IpPoolTypeDef]]
|
|
3397
3392
|
Name: NotRequired[str]
|
|
3398
|
-
Routes: NotRequired[
|
|
3393
|
+
Routes: NotRequired[list[RouteTypeDef]]
|
|
3399
3394
|
State: NotRequired[NetworkStateType]
|
|
3400
3395
|
|
|
3401
3396
|
|
|
3402
3397
|
class UpdateNetworkResponseTypeDef(TypedDict):
|
|
3403
3398
|
Arn: str
|
|
3404
|
-
AssociatedClusterIds:
|
|
3399
|
+
AssociatedClusterIds: list[str]
|
|
3405
3400
|
Id: str
|
|
3406
|
-
IpPools:
|
|
3401
|
+
IpPools: list[IpPoolTypeDef]
|
|
3407
3402
|
Name: str
|
|
3408
|
-
Routes:
|
|
3403
|
+
Routes: list[RouteTypeDef]
|
|
3409
3404
|
State: NetworkStateType
|
|
3410
3405
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3411
3406
|
|
|
@@ -3430,91 +3425,91 @@ class CreateNodeRequestTypeDef(TypedDict):
|
|
|
3430
3425
|
|
|
3431
3426
|
class CreateNodeResponseTypeDef(TypedDict):
|
|
3432
3427
|
Arn: str
|
|
3433
|
-
ChannelPlacementGroups:
|
|
3428
|
+
ChannelPlacementGroups: list[str]
|
|
3434
3429
|
ClusterId: str
|
|
3435
3430
|
ConnectionState: NodeConnectionStateType
|
|
3436
3431
|
Id: str
|
|
3437
3432
|
InstanceArn: str
|
|
3438
3433
|
Name: str
|
|
3439
|
-
NodeInterfaceMappings:
|
|
3434
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3440
3435
|
Role: NodeRoleType
|
|
3441
3436
|
State: NodeStateType
|
|
3442
|
-
SdiSourceMappings:
|
|
3437
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3443
3438
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3444
3439
|
|
|
3445
3440
|
|
|
3446
3441
|
class DeleteNodeResponseTypeDef(TypedDict):
|
|
3447
3442
|
Arn: str
|
|
3448
|
-
ChannelPlacementGroups:
|
|
3443
|
+
ChannelPlacementGroups: list[str]
|
|
3449
3444
|
ClusterId: str
|
|
3450
3445
|
ConnectionState: NodeConnectionStateType
|
|
3451
3446
|
Id: str
|
|
3452
3447
|
InstanceArn: str
|
|
3453
3448
|
Name: str
|
|
3454
|
-
NodeInterfaceMappings:
|
|
3449
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3455
3450
|
Role: NodeRoleType
|
|
3456
3451
|
State: NodeStateType
|
|
3457
|
-
SdiSourceMappings:
|
|
3452
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3458
3453
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3459
3454
|
|
|
3460
3455
|
|
|
3461
3456
|
class DescribeNodeResponseTypeDef(TypedDict):
|
|
3462
3457
|
Arn: str
|
|
3463
|
-
ChannelPlacementGroups:
|
|
3458
|
+
ChannelPlacementGroups: list[str]
|
|
3464
3459
|
ClusterId: str
|
|
3465
3460
|
ConnectionState: NodeConnectionStateType
|
|
3466
3461
|
Id: str
|
|
3467
3462
|
InstanceArn: str
|
|
3468
3463
|
Name: str
|
|
3469
|
-
NodeInterfaceMappings:
|
|
3464
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3470
3465
|
Role: NodeRoleType
|
|
3471
3466
|
State: NodeStateType
|
|
3472
|
-
SdiSourceMappings:
|
|
3467
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3473
3468
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3474
3469
|
|
|
3475
3470
|
|
|
3476
3471
|
class DescribeNodeSummaryTypeDef(TypedDict):
|
|
3477
3472
|
Arn: NotRequired[str]
|
|
3478
|
-
ChannelPlacementGroups: NotRequired[
|
|
3473
|
+
ChannelPlacementGroups: NotRequired[list[str]]
|
|
3479
3474
|
ClusterId: NotRequired[str]
|
|
3480
3475
|
ConnectionState: NotRequired[NodeConnectionStateType]
|
|
3481
3476
|
Id: NotRequired[str]
|
|
3482
3477
|
InstanceArn: NotRequired[str]
|
|
3483
3478
|
ManagedInstanceId: NotRequired[str]
|
|
3484
3479
|
Name: NotRequired[str]
|
|
3485
|
-
NodeInterfaceMappings: NotRequired[
|
|
3480
|
+
NodeInterfaceMappings: NotRequired[list[NodeInterfaceMappingTypeDef]]
|
|
3486
3481
|
Role: NotRequired[NodeRoleType]
|
|
3487
3482
|
State: NotRequired[NodeStateType]
|
|
3488
|
-
SdiSourceMappings: NotRequired[
|
|
3483
|
+
SdiSourceMappings: NotRequired[list[SdiSourceMappingTypeDef]]
|
|
3489
3484
|
|
|
3490
3485
|
|
|
3491
3486
|
class UpdateNodeResponseTypeDef(TypedDict):
|
|
3492
3487
|
Arn: str
|
|
3493
|
-
ChannelPlacementGroups:
|
|
3488
|
+
ChannelPlacementGroups: list[str]
|
|
3494
3489
|
ClusterId: str
|
|
3495
3490
|
ConnectionState: NodeConnectionStateType
|
|
3496
3491
|
Id: str
|
|
3497
3492
|
InstanceArn: str
|
|
3498
3493
|
Name: str
|
|
3499
|
-
NodeInterfaceMappings:
|
|
3494
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3500
3495
|
Role: NodeRoleType
|
|
3501
3496
|
State: NodeStateType
|
|
3502
|
-
SdiSourceMappings:
|
|
3497
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3503
3498
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3504
3499
|
|
|
3505
3500
|
|
|
3506
3501
|
class UpdateNodeStateResponseTypeDef(TypedDict):
|
|
3507
3502
|
Arn: str
|
|
3508
|
-
ChannelPlacementGroups:
|
|
3503
|
+
ChannelPlacementGroups: list[str]
|
|
3509
3504
|
ClusterId: str
|
|
3510
3505
|
ConnectionState: NodeConnectionStateType
|
|
3511
3506
|
Id: str
|
|
3512
3507
|
InstanceArn: str
|
|
3513
3508
|
Name: str
|
|
3514
|
-
NodeInterfaceMappings:
|
|
3509
|
+
NodeInterfaceMappings: list[NodeInterfaceMappingTypeDef]
|
|
3515
3510
|
Role: NodeRoleType
|
|
3516
3511
|
State: NodeStateType
|
|
3517
|
-
SdiSourceMappings:
|
|
3512
|
+
SdiSourceMappings: list[SdiSourceMappingTypeDef]
|
|
3518
3513
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3519
3514
|
|
|
3520
3515
|
|
|
@@ -3572,7 +3567,7 @@ class DeleteReservationResponseTypeDef(TypedDict):
|
|
|
3572
3567
|
ResourceSpecification: ReservationResourceSpecificationTypeDef
|
|
3573
3568
|
Start: str
|
|
3574
3569
|
State: ReservationStateType
|
|
3575
|
-
Tags:
|
|
3570
|
+
Tags: dict[str, str]
|
|
3576
3571
|
UsagePrice: float
|
|
3577
3572
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3578
3573
|
|
|
@@ -3610,7 +3605,7 @@ class DescribeReservationResponseTypeDef(TypedDict):
|
|
|
3610
3605
|
ResourceSpecification: ReservationResourceSpecificationTypeDef
|
|
3611
3606
|
Start: str
|
|
3612
3607
|
State: ReservationStateType
|
|
3613
|
-
Tags:
|
|
3608
|
+
Tags: dict[str, str]
|
|
3614
3609
|
UsagePrice: float
|
|
3615
3610
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3616
3611
|
|
|
@@ -3647,7 +3642,7 @@ class ReservationTypeDef(TypedDict):
|
|
|
3647
3642
|
ResourceSpecification: NotRequired[ReservationResourceSpecificationTypeDef]
|
|
3648
3643
|
Start: NotRequired[str]
|
|
3649
3644
|
State: NotRequired[ReservationStateType]
|
|
3650
|
-
Tags: NotRequired[
|
|
3645
|
+
Tags: NotRequired[dict[str, str]]
|
|
3651
3646
|
UsagePrice: NotRequired[float]
|
|
3652
3647
|
|
|
3653
3648
|
|
|
@@ -3767,7 +3762,7 @@ class GetSignalMapRequestWaitTypeDef(TypedDict):
|
|
|
3767
3762
|
|
|
3768
3763
|
|
|
3769
3764
|
class ListChannelPlacementGroupsResponseTypeDef(TypedDict):
|
|
3770
|
-
ChannelPlacementGroups:
|
|
3765
|
+
ChannelPlacementGroups: list[DescribeChannelPlacementGroupSummaryTypeDef]
|
|
3771
3766
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3772
3767
|
NextToken: NotRequired[str]
|
|
3773
3768
|
|
|
@@ -3775,20 +3770,20 @@ class ListChannelPlacementGroupsResponseTypeDef(TypedDict):
|
|
|
3775
3770
|
class DescribeInputSecurityGroupResponseTypeDef(TypedDict):
|
|
3776
3771
|
Arn: str
|
|
3777
3772
|
Id: str
|
|
3778
|
-
Inputs:
|
|
3773
|
+
Inputs: list[str]
|
|
3779
3774
|
State: InputSecurityGroupStateType
|
|
3780
|
-
Tags:
|
|
3781
|
-
WhitelistRules:
|
|
3775
|
+
Tags: dict[str, str]
|
|
3776
|
+
WhitelistRules: list[InputWhitelistRuleTypeDef]
|
|
3782
3777
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3783
3778
|
|
|
3784
3779
|
|
|
3785
3780
|
class InputSecurityGroupTypeDef(TypedDict):
|
|
3786
3781
|
Arn: NotRequired[str]
|
|
3787
3782
|
Id: NotRequired[str]
|
|
3788
|
-
Inputs: NotRequired[
|
|
3783
|
+
Inputs: NotRequired[list[str]]
|
|
3789
3784
|
State: NotRequired[InputSecurityGroupStateType]
|
|
3790
|
-
Tags: NotRequired[
|
|
3791
|
-
WhitelistRules: NotRequired[
|
|
3785
|
+
Tags: NotRequired[dict[str, str]]
|
|
3786
|
+
WhitelistRules: NotRequired[list[InputWhitelistRuleTypeDef]]
|
|
3792
3787
|
|
|
3793
3788
|
|
|
3794
3789
|
class DescribeScheduleRequestPaginateTypeDef(TypedDict):
|
|
@@ -3975,7 +3970,7 @@ class M2tsSettingsTypeDef(TypedDict):
|
|
|
3975
3970
|
|
|
3976
3971
|
class OutputLockingSettingsOutputTypeDef(TypedDict):
|
|
3977
3972
|
EpochLockingSettings: NotRequired[EpochLockingSettingsTypeDef]
|
|
3978
|
-
PipelineLockingSettings: NotRequired[
|
|
3973
|
+
PipelineLockingSettings: NotRequired[dict[str, Any]]
|
|
3979
3974
|
|
|
3980
3975
|
|
|
3981
3976
|
class OutputLockingSettingsTypeDef(TypedDict):
|
|
@@ -3984,13 +3979,13 @@ class OutputLockingSettingsTypeDef(TypedDict):
|
|
|
3984
3979
|
|
|
3985
3980
|
|
|
3986
3981
|
class ListEventBridgeRuleTemplateGroupsResponseTypeDef(TypedDict):
|
|
3987
|
-
EventBridgeRuleTemplateGroups:
|
|
3982
|
+
EventBridgeRuleTemplateGroups: list[EventBridgeRuleTemplateGroupSummaryTypeDef]
|
|
3988
3983
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3989
3984
|
NextToken: NotRequired[str]
|
|
3990
3985
|
|
|
3991
3986
|
|
|
3992
3987
|
class ListEventBridgeRuleTemplatesResponseTypeDef(TypedDict):
|
|
3993
|
-
EventBridgeRuleTemplates:
|
|
3988
|
+
EventBridgeRuleTemplates: list[EventBridgeRuleTemplateSummaryTypeDef]
|
|
3994
3989
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3995
3990
|
NextToken: NotRequired[str]
|
|
3996
3991
|
|
|
@@ -4004,7 +3999,7 @@ class FailoverConditionSettingsTypeDef(TypedDict):
|
|
|
4004
3999
|
class ScheduleActionStartSettingsOutputTypeDef(TypedDict):
|
|
4005
4000
|
FixedModeScheduleActionStartSettings: NotRequired[FixedModeScheduleActionStartSettingsTypeDef]
|
|
4006
4001
|
FollowModeScheduleActionStartSettings: NotRequired[FollowModeScheduleActionStartSettingsTypeDef]
|
|
4007
|
-
ImmediateModeScheduleActionStartSettings: NotRequired[
|
|
4002
|
+
ImmediateModeScheduleActionStartSettings: NotRequired[dict[str, Any]]
|
|
4008
4003
|
|
|
4009
4004
|
|
|
4010
4005
|
class ScheduleActionStartSettingsTypeDef(TypedDict):
|
|
@@ -4058,7 +4053,7 @@ class InputDestinationTypeDef(TypedDict):
|
|
|
4058
4053
|
Url: NotRequired[str]
|
|
4059
4054
|
Vpc: NotRequired[InputDestinationVpcTypeDef]
|
|
4060
4055
|
Network: NotRequired[str]
|
|
4061
|
-
NetworkRoutes: NotRequired[
|
|
4056
|
+
NetworkRoutes: NotRequired[list[InputDestinationRouteTypeDef]]
|
|
4062
4057
|
|
|
4063
4058
|
|
|
4064
4059
|
class InputDeviceConfigurableSettingsTypeDef(TypedDict):
|
|
@@ -4083,13 +4078,13 @@ class InputDeviceUhdSettingsTypeDef(TypedDict):
|
|
|
4083
4078
|
LatencyMs: NotRequired[int]
|
|
4084
4079
|
Codec: NotRequired[InputDeviceCodecType]
|
|
4085
4080
|
MediaconnectSettings: NotRequired[InputDeviceMediaConnectSettingsTypeDef]
|
|
4086
|
-
AudioChannelPairs: NotRequired[
|
|
4081
|
+
AudioChannelPairs: NotRequired[list[InputDeviceUhdAudioChannelPairConfigTypeDef]]
|
|
4087
4082
|
InputResolution: NotRequired[str]
|
|
4088
4083
|
|
|
4089
4084
|
|
|
4090
4085
|
class Smpte2110ReceiverGroupSdpSettingsOutputTypeDef(TypedDict):
|
|
4091
|
-
AncillarySdps: NotRequired[
|
|
4092
|
-
AudioSdps: NotRequired[
|
|
4086
|
+
AncillarySdps: NotRequired[list[InputSdpLocationTypeDef]]
|
|
4087
|
+
AudioSdps: NotRequired[list[InputSdpLocationTypeDef]]
|
|
4093
4088
|
VideoSdp: NotRequired[InputSdpLocationTypeDef]
|
|
4094
4089
|
|
|
4095
4090
|
|
|
@@ -4100,31 +4095,31 @@ class Smpte2110ReceiverGroupSdpSettingsTypeDef(TypedDict):
|
|
|
4100
4095
|
|
|
4101
4096
|
|
|
4102
4097
|
class ListInputDeviceTransfersResponseTypeDef(TypedDict):
|
|
4103
|
-
InputDeviceTransfers:
|
|
4098
|
+
InputDeviceTransfers: list[TransferringInputDeviceSummaryTypeDef]
|
|
4104
4099
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4105
4100
|
NextToken: NotRequired[str]
|
|
4106
4101
|
|
|
4107
4102
|
|
|
4108
4103
|
class ListMultiplexAlertsResponseTypeDef(TypedDict):
|
|
4109
|
-
Alerts:
|
|
4104
|
+
Alerts: list[MultiplexAlertTypeDef]
|
|
4110
4105
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4111
4106
|
NextToken: NotRequired[str]
|
|
4112
4107
|
|
|
4113
4108
|
|
|
4114
4109
|
class ListMultiplexProgramsResponseTypeDef(TypedDict):
|
|
4115
|
-
MultiplexPrograms:
|
|
4110
|
+
MultiplexPrograms: list[MultiplexProgramSummaryTypeDef]
|
|
4116
4111
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4117
4112
|
NextToken: NotRequired[str]
|
|
4118
4113
|
|
|
4119
4114
|
|
|
4120
4115
|
class ListSdiSourcesResponseTypeDef(TypedDict):
|
|
4121
|
-
SdiSources:
|
|
4116
|
+
SdiSources: list[SdiSourceSummaryTypeDef]
|
|
4122
4117
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4123
4118
|
NextToken: NotRequired[str]
|
|
4124
4119
|
|
|
4125
4120
|
|
|
4126
4121
|
class ListSignalMapsResponseTypeDef(TypedDict):
|
|
4127
|
-
SignalMaps:
|
|
4122
|
+
SignalMaps: list[SignalMapSummaryTypeDef]
|
|
4128
4123
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4129
4124
|
NextToken: NotRequired[str]
|
|
4130
4125
|
|
|
@@ -4139,9 +4134,9 @@ class MediaPackageOutputSettingsTypeDef(TypedDict):
|
|
|
4139
4134
|
|
|
4140
4135
|
|
|
4141
4136
|
class MediaResourceTypeDef(TypedDict):
|
|
4142
|
-
Destinations: NotRequired[
|
|
4137
|
+
Destinations: NotRequired[list[MediaResourceNeighborTypeDef]]
|
|
4143
4138
|
Name: NotRequired[str]
|
|
4144
|
-
Sources: NotRequired[
|
|
4139
|
+
Sources: NotRequired[list[MediaResourceNeighborTypeDef]]
|
|
4145
4140
|
|
|
4146
4141
|
|
|
4147
4142
|
class MotionGraphicsConfigurationOutputTypeDef(TypedDict):
|
|
@@ -4165,7 +4160,7 @@ class MulticastSettingsCreateRequestTypeDef(TypedDict):
|
|
|
4165
4160
|
|
|
4166
4161
|
|
|
4167
4162
|
class MulticastSettingsTypeDef(TypedDict):
|
|
4168
|
-
Sources: NotRequired[
|
|
4163
|
+
Sources: NotRequired[list[MulticastSourceTypeDef]]
|
|
4169
4164
|
|
|
4170
4165
|
|
|
4171
4166
|
class MulticastSettingsUpdateRequestTypeDef(TypedDict):
|
|
@@ -4187,14 +4182,14 @@ MultiplexProgramPacketIdentifiersMapUnionTypeDef = Union[
|
|
|
4187
4182
|
|
|
4188
4183
|
class MultiplexSummaryTypeDef(TypedDict):
|
|
4189
4184
|
Arn: NotRequired[str]
|
|
4190
|
-
AvailabilityZones: NotRequired[
|
|
4185
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
4191
4186
|
Id: NotRequired[str]
|
|
4192
4187
|
MultiplexSettings: NotRequired[MultiplexSettingsSummaryTypeDef]
|
|
4193
4188
|
Name: NotRequired[str]
|
|
4194
4189
|
PipelinesRunningCount: NotRequired[int]
|
|
4195
4190
|
ProgramCount: NotRequired[int]
|
|
4196
4191
|
State: NotRequired[MultiplexStateType]
|
|
4197
|
-
Tags: NotRequired[
|
|
4192
|
+
Tags: NotRequired[dict[str, str]]
|
|
4198
4193
|
|
|
4199
4194
|
|
|
4200
4195
|
class MultiplexVideoSettingsTypeDef(TypedDict):
|
|
@@ -4210,11 +4205,11 @@ class NielsenWatermarksSettingsTypeDef(TypedDict):
|
|
|
4210
4205
|
|
|
4211
4206
|
class OutputDestinationOutputTypeDef(TypedDict):
|
|
4212
4207
|
Id: NotRequired[str]
|
|
4213
|
-
MediaPackageSettings: NotRequired[
|
|
4208
|
+
MediaPackageSettings: NotRequired[list[MediaPackageOutputDestinationSettingsTypeDef]]
|
|
4214
4209
|
MultiplexSettings: NotRequired[MultiplexProgramChannelDestinationSettingsTypeDef]
|
|
4215
|
-
Settings: NotRequired[
|
|
4216
|
-
SrtSettings: NotRequired[
|
|
4217
|
-
LogicalInterfaceNames: NotRequired[
|
|
4210
|
+
Settings: NotRequired[list[OutputDestinationSettingsTypeDef]]
|
|
4211
|
+
SrtSettings: NotRequired[list[SrtOutputDestinationSettingsTypeDef]]
|
|
4212
|
+
LogicalInterfaceNames: NotRequired[list[str]]
|
|
4218
4213
|
|
|
4219
4214
|
|
|
4220
4215
|
class OutputDestinationTypeDef(TypedDict):
|
|
@@ -4227,7 +4222,7 @@ class OutputDestinationTypeDef(TypedDict):
|
|
|
4227
4222
|
|
|
4228
4223
|
|
|
4229
4224
|
class PauseStateScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4230
|
-
Pipelines: NotRequired[
|
|
4225
|
+
Pipelines: NotRequired[list[PipelinePauseStateSettingsTypeDef]]
|
|
4231
4226
|
|
|
4232
4227
|
|
|
4233
4228
|
class PauseStateScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -4287,7 +4282,7 @@ StaticImageOutputDeactivateScheduleActionSettingsUnionTypeDef = Union[
|
|
|
4287
4282
|
|
|
4288
4283
|
class ThumbnailDetailTypeDef(TypedDict):
|
|
4289
4284
|
PipelineId: NotRequired[str]
|
|
4290
|
-
Thumbnails: NotRequired[
|
|
4285
|
+
Thumbnails: NotRequired[list[ThumbnailTypeDef]]
|
|
4291
4286
|
|
|
4292
4287
|
|
|
4293
4288
|
class VideoSelectorSettingsTypeDef(TypedDict):
|
|
@@ -4308,11 +4303,11 @@ class CmafIngestGroupSettingsOutputTypeDef(TypedDict):
|
|
|
4308
4303
|
Scte35NameModifier: NotRequired[str]
|
|
4309
4304
|
Id3Behavior: NotRequired[CmafId3BehaviorType]
|
|
4310
4305
|
Id3NameModifier: NotRequired[str]
|
|
4311
|
-
CaptionLanguageMappings: NotRequired[
|
|
4306
|
+
CaptionLanguageMappings: NotRequired[list[CmafIngestCaptionLanguageMappingTypeDef]]
|
|
4312
4307
|
TimedMetadataId3Frame: NotRequired[CmafTimedMetadataId3FrameType]
|
|
4313
4308
|
TimedMetadataId3Period: NotRequired[int]
|
|
4314
4309
|
TimedMetadataPassthrough: NotRequired[CmafTimedMetadataPassthroughType]
|
|
4315
|
-
AdditionalDestinations: NotRequired[
|
|
4310
|
+
AdditionalDestinations: NotRequired[list[AdditionalDestinationsTypeDef]]
|
|
4316
4311
|
|
|
4317
4312
|
|
|
4318
4313
|
class CmafIngestGroupSettingsTypeDef(TypedDict):
|
|
@@ -4342,7 +4337,7 @@ class ArchiveGroupSettingsTypeDef(TypedDict):
|
|
|
4342
4337
|
|
|
4343
4338
|
|
|
4344
4339
|
class RemixSettingsOutputTypeDef(TypedDict):
|
|
4345
|
-
ChannelMappings:
|
|
4340
|
+
ChannelMappings: list[AudioChannelMappingOutputTypeDef]
|
|
4346
4341
|
ChannelsIn: NotRequired[int]
|
|
4347
4342
|
ChannelsOut: NotRequired[int]
|
|
4348
4343
|
|
|
@@ -4354,17 +4349,17 @@ class RemixSettingsTypeDef(TypedDict):
|
|
|
4354
4349
|
|
|
4355
4350
|
|
|
4356
4351
|
class CaptionDestinationSettingsOutputTypeDef(TypedDict):
|
|
4357
|
-
AribDestinationSettings: NotRequired[
|
|
4352
|
+
AribDestinationSettings: NotRequired[dict[str, Any]]
|
|
4358
4353
|
BurnInDestinationSettings: NotRequired[BurnInDestinationSettingsTypeDef]
|
|
4359
4354
|
DvbSubDestinationSettings: NotRequired[DvbSubDestinationSettingsTypeDef]
|
|
4360
4355
|
EbuTtDDestinationSettings: NotRequired[EbuTtDDestinationSettingsTypeDef]
|
|
4361
|
-
EmbeddedDestinationSettings: NotRequired[
|
|
4362
|
-
EmbeddedPlusScte20DestinationSettings: NotRequired[
|
|
4363
|
-
RtmpCaptionInfoDestinationSettings: NotRequired[
|
|
4364
|
-
Scte20PlusEmbeddedDestinationSettings: NotRequired[
|
|
4365
|
-
Scte27DestinationSettings: NotRequired[
|
|
4366
|
-
SmpteTtDestinationSettings: NotRequired[
|
|
4367
|
-
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]]
|
|
4368
4363
|
TtmlDestinationSettings: NotRequired[TtmlDestinationSettingsTypeDef]
|
|
4369
4364
|
WebvttDestinationSettings: NotRequired[WebvttDestinationSettingsTypeDef]
|
|
4370
4365
|
|
|
@@ -4470,7 +4465,7 @@ class MediaPackageGroupSettingsTypeDef(TypedDict):
|
|
|
4470
4465
|
|
|
4471
4466
|
class CaptionSelectorSettingsOutputTypeDef(TypedDict):
|
|
4472
4467
|
AncillarySourceSettings: NotRequired[AncillarySourceSettingsTypeDef]
|
|
4473
|
-
AribSourceSettings: NotRequired[
|
|
4468
|
+
AribSourceSettings: NotRequired[dict[str, Any]]
|
|
4474
4469
|
DvbSubSourceSettings: NotRequired[DvbSubSourceSettingsTypeDef]
|
|
4475
4470
|
EmbeddedSourceSettings: NotRequired[EmbeddedSourceSettingsTypeDef]
|
|
4476
4471
|
Scte20SourceSettings: NotRequired[Scte20SourceSettingsTypeDef]
|
|
@@ -4499,7 +4494,7 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
4499
4494
|
|
|
4500
4495
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
4501
4496
|
Arn: str
|
|
4502
|
-
ChannelIds:
|
|
4497
|
+
ChannelIds: list[str]
|
|
4503
4498
|
ClusterType: Literal["ON_PREMISES"]
|
|
4504
4499
|
Id: str
|
|
4505
4500
|
InstanceRoleArn: str
|
|
@@ -4511,7 +4506,7 @@ class CreateClusterResponseTypeDef(TypedDict):
|
|
|
4511
4506
|
|
|
4512
4507
|
class DeleteClusterResponseTypeDef(TypedDict):
|
|
4513
4508
|
Arn: str
|
|
4514
|
-
ChannelIds:
|
|
4509
|
+
ChannelIds: list[str]
|
|
4515
4510
|
ClusterType: Literal["ON_PREMISES"]
|
|
4516
4511
|
Id: str
|
|
4517
4512
|
InstanceRoleArn: str
|
|
@@ -4523,7 +4518,7 @@ class DeleteClusterResponseTypeDef(TypedDict):
|
|
|
4523
4518
|
|
|
4524
4519
|
class DescribeClusterResponseTypeDef(TypedDict):
|
|
4525
4520
|
Arn: str
|
|
4526
|
-
ChannelIds:
|
|
4521
|
+
ChannelIds: list[str]
|
|
4527
4522
|
ClusterType: Literal["ON_PREMISES"]
|
|
4528
4523
|
Id: str
|
|
4529
4524
|
InstanceRoleArn: str
|
|
@@ -4535,7 +4530,7 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
4535
4530
|
|
|
4536
4531
|
class DescribeClusterSummaryTypeDef(TypedDict):
|
|
4537
4532
|
Arn: NotRequired[str]
|
|
4538
|
-
ChannelIds: NotRequired[
|
|
4533
|
+
ChannelIds: NotRequired[list[str]]
|
|
4539
4534
|
ClusterType: NotRequired[Literal["ON_PREMISES"]]
|
|
4540
4535
|
Id: NotRequired[str]
|
|
4541
4536
|
InstanceRoleArn: NotRequired[str]
|
|
@@ -4546,7 +4541,7 @@ class DescribeClusterSummaryTypeDef(TypedDict):
|
|
|
4546
4541
|
|
|
4547
4542
|
class UpdateClusterResponseTypeDef(TypedDict):
|
|
4548
4543
|
Arn: str
|
|
4549
|
-
ChannelIds:
|
|
4544
|
+
ChannelIds: list[str]
|
|
4550
4545
|
ClusterType: Literal["ON_PREMISES"]
|
|
4551
4546
|
Id: str
|
|
4552
4547
|
Name: str
|
|
@@ -4562,25 +4557,25 @@ class UpdateClusterRequestTypeDef(TypedDict):
|
|
|
4562
4557
|
|
|
4563
4558
|
|
|
4564
4559
|
class ListNetworksResponseTypeDef(TypedDict):
|
|
4565
|
-
Networks:
|
|
4560
|
+
Networks: list[DescribeNetworkSummaryTypeDef]
|
|
4566
4561
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4567
4562
|
NextToken: NotRequired[str]
|
|
4568
4563
|
|
|
4569
4564
|
|
|
4570
4565
|
class ListNodesResponseTypeDef(TypedDict):
|
|
4571
|
-
Nodes:
|
|
4566
|
+
Nodes: list[DescribeNodeSummaryTypeDef]
|
|
4572
4567
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4573
4568
|
NextToken: NotRequired[str]
|
|
4574
4569
|
|
|
4575
4570
|
|
|
4576
4571
|
class ListOfferingsResponseTypeDef(TypedDict):
|
|
4577
|
-
Offerings:
|
|
4572
|
+
Offerings: list[OfferingTypeDef]
|
|
4578
4573
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4579
4574
|
NextToken: NotRequired[str]
|
|
4580
4575
|
|
|
4581
4576
|
|
|
4582
4577
|
class ListReservationsResponseTypeDef(TypedDict):
|
|
4583
|
-
Reservations:
|
|
4578
|
+
Reservations: list[ReservationTypeDef]
|
|
4584
4579
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4585
4580
|
NextToken: NotRequired[str]
|
|
4586
4581
|
|
|
@@ -4601,7 +4596,7 @@ class CreateInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
4601
4596
|
|
|
4602
4597
|
|
|
4603
4598
|
class ListInputSecurityGroupsResponseTypeDef(TypedDict):
|
|
4604
|
-
InputSecurityGroups:
|
|
4599
|
+
InputSecurityGroups: list[InputSecurityGroupTypeDef]
|
|
4605
4600
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4606
4601
|
NextToken: NotRequired[str]
|
|
4607
4602
|
|
|
@@ -4613,7 +4608,7 @@ class UpdateInputSecurityGroupResponseTypeDef(TypedDict):
|
|
|
4613
4608
|
|
|
4614
4609
|
class ArchiveContainerSettingsOutputTypeDef(TypedDict):
|
|
4615
4610
|
M2tsSettings: NotRequired[M2tsSettingsTypeDef]
|
|
4616
|
-
RawSettings: NotRequired[
|
|
4611
|
+
RawSettings: NotRequired[dict[str, Any]]
|
|
4617
4612
|
|
|
4618
4613
|
|
|
4619
4614
|
class ArchiveContainerSettingsTypeDef(TypedDict):
|
|
@@ -4866,7 +4861,7 @@ class Mpeg2SettingsTypeDef(TypedDict):
|
|
|
4866
4861
|
class InputPrepareScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4867
4862
|
InputAttachmentNameReference: NotRequired[str]
|
|
4868
4863
|
InputClippingSettings: NotRequired[InputClippingSettingsTypeDef]
|
|
4869
|
-
UrlPath: NotRequired[
|
|
4864
|
+
UrlPath: NotRequired[list[str]]
|
|
4870
4865
|
|
|
4871
4866
|
|
|
4872
4867
|
class InputPrepareScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -4878,7 +4873,7 @@ class InputPrepareScheduleActionSettingsTypeDef(TypedDict):
|
|
|
4878
4873
|
class InputSwitchScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
4879
4874
|
InputAttachmentNameReference: str
|
|
4880
4875
|
InputClippingSettings: NotRequired[InputClippingSettingsTypeDef]
|
|
4881
|
-
UrlPath: NotRequired[
|
|
4876
|
+
UrlPath: NotRequired[list[str]]
|
|
4882
4877
|
|
|
4883
4878
|
|
|
4884
4879
|
class InputSwitchScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -4910,9 +4905,9 @@ DescribeInputDeviceResponseTypeDef = TypedDict(
|
|
|
4910
4905
|
"SerialNumber": str,
|
|
4911
4906
|
"Type": InputDeviceTypeType,
|
|
4912
4907
|
"UhdDeviceSettings": InputDeviceUhdSettingsTypeDef,
|
|
4913
|
-
"Tags":
|
|
4908
|
+
"Tags": dict[str, str],
|
|
4914
4909
|
"AvailabilityZone": str,
|
|
4915
|
-
"MedialiveInputArns":
|
|
4910
|
+
"MedialiveInputArns": list[str],
|
|
4916
4911
|
"OutputType": InputDeviceOutputTypeType,
|
|
4917
4912
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4918
4913
|
},
|
|
@@ -4932,9 +4927,9 @@ InputDeviceSummaryTypeDef = TypedDict(
|
|
|
4932
4927
|
"SerialNumber": NotRequired[str],
|
|
4933
4928
|
"Type": NotRequired[InputDeviceTypeType],
|
|
4934
4929
|
"UhdDeviceSettings": NotRequired[InputDeviceUhdSettingsTypeDef],
|
|
4935
|
-
"Tags": NotRequired[
|
|
4930
|
+
"Tags": NotRequired[dict[str, str]],
|
|
4936
4931
|
"AvailabilityZone": NotRequired[str],
|
|
4937
|
-
"MedialiveInputArns": NotRequired[
|
|
4932
|
+
"MedialiveInputArns": NotRequired[list[str]],
|
|
4938
4933
|
"OutputType": NotRequired[InputDeviceOutputTypeType],
|
|
4939
4934
|
},
|
|
4940
4935
|
)
|
|
@@ -4953,9 +4948,9 @@ UpdateInputDeviceResponseTypeDef = TypedDict(
|
|
|
4953
4948
|
"SerialNumber": str,
|
|
4954
4949
|
"Type": InputDeviceTypeType,
|
|
4955
4950
|
"UhdDeviceSettings": InputDeviceUhdSettingsTypeDef,
|
|
4956
|
-
"Tags":
|
|
4951
|
+
"Tags": dict[str, str],
|
|
4957
4952
|
"AvailabilityZone": str,
|
|
4958
|
-
"MedialiveInputArns":
|
|
4953
|
+
"MedialiveInputArns": list[str],
|
|
4959
4954
|
"OutputType": InputDeviceOutputTypeType,
|
|
4960
4955
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4961
4956
|
},
|
|
@@ -4973,7 +4968,7 @@ class Smpte2110ReceiverGroupTypeDef(TypedDict):
|
|
|
4973
4968
|
class HlsSettingsOutputTypeDef(TypedDict):
|
|
4974
4969
|
AudioOnlyHlsSettings: NotRequired[AudioOnlyHlsSettingsTypeDef]
|
|
4975
4970
|
Fmp4HlsSettings: NotRequired[Fmp4HlsSettingsTypeDef]
|
|
4976
|
-
FrameCaptureHlsSettings: NotRequired[
|
|
4971
|
+
FrameCaptureHlsSettings: NotRequired[dict[str, Any]]
|
|
4977
4972
|
StandardHlsSettings: NotRequired[StandardHlsSettingsTypeDef]
|
|
4978
4973
|
|
|
4979
4974
|
|
|
@@ -4986,111 +4981,111 @@ class HlsSettingsTypeDef(TypedDict):
|
|
|
4986
4981
|
|
|
4987
4982
|
class CreateSignalMapResponseTypeDef(TypedDict):
|
|
4988
4983
|
Arn: str
|
|
4989
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
4984
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
4990
4985
|
CreatedAt: datetime
|
|
4991
4986
|
Description: str
|
|
4992
4987
|
DiscoveryEntryPointArn: str
|
|
4993
4988
|
ErrorMessage: str
|
|
4994
|
-
EventBridgeRuleTemplateGroupIds:
|
|
4995
|
-
FailedMediaResourceMap:
|
|
4989
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
4990
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
4996
4991
|
Id: str
|
|
4997
4992
|
LastDiscoveredAt: datetime
|
|
4998
4993
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
4999
|
-
MediaResourceMap:
|
|
4994
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5000
4995
|
ModifiedAt: datetime
|
|
5001
4996
|
MonitorChangesPendingDeployment: bool
|
|
5002
4997
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
5003
4998
|
Name: str
|
|
5004
4999
|
Status: SignalMapStatusType
|
|
5005
|
-
Tags:
|
|
5000
|
+
Tags: dict[str, str]
|
|
5006
5001
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5007
5002
|
|
|
5008
5003
|
|
|
5009
5004
|
class GetSignalMapResponseTypeDef(TypedDict):
|
|
5010
5005
|
Arn: str
|
|
5011
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5006
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
5012
5007
|
CreatedAt: datetime
|
|
5013
5008
|
Description: str
|
|
5014
5009
|
DiscoveryEntryPointArn: str
|
|
5015
5010
|
ErrorMessage: str
|
|
5016
|
-
EventBridgeRuleTemplateGroupIds:
|
|
5017
|
-
FailedMediaResourceMap:
|
|
5011
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5012
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5018
5013
|
Id: str
|
|
5019
5014
|
LastDiscoveredAt: datetime
|
|
5020
5015
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
5021
|
-
MediaResourceMap:
|
|
5016
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5022
5017
|
ModifiedAt: datetime
|
|
5023
5018
|
MonitorChangesPendingDeployment: bool
|
|
5024
5019
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
5025
5020
|
Name: str
|
|
5026
5021
|
Status: SignalMapStatusType
|
|
5027
|
-
Tags:
|
|
5022
|
+
Tags: dict[str, str]
|
|
5028
5023
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5029
5024
|
|
|
5030
5025
|
|
|
5031
5026
|
class StartDeleteMonitorDeploymentResponseTypeDef(TypedDict):
|
|
5032
5027
|
Arn: str
|
|
5033
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5028
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
5034
5029
|
CreatedAt: datetime
|
|
5035
5030
|
Description: str
|
|
5036
5031
|
DiscoveryEntryPointArn: str
|
|
5037
5032
|
ErrorMessage: str
|
|
5038
|
-
EventBridgeRuleTemplateGroupIds:
|
|
5039
|
-
FailedMediaResourceMap:
|
|
5033
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5034
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5040
5035
|
Id: str
|
|
5041
5036
|
LastDiscoveredAt: datetime
|
|
5042
5037
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
5043
|
-
MediaResourceMap:
|
|
5038
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5044
5039
|
ModifiedAt: datetime
|
|
5045
5040
|
MonitorChangesPendingDeployment: bool
|
|
5046
5041
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
5047
5042
|
Name: str
|
|
5048
5043
|
Status: SignalMapStatusType
|
|
5049
|
-
Tags:
|
|
5044
|
+
Tags: dict[str, str]
|
|
5050
5045
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5051
5046
|
|
|
5052
5047
|
|
|
5053
5048
|
class StartMonitorDeploymentResponseTypeDef(TypedDict):
|
|
5054
5049
|
Arn: str
|
|
5055
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5050
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
5056
5051
|
CreatedAt: datetime
|
|
5057
5052
|
Description: str
|
|
5058
5053
|
DiscoveryEntryPointArn: str
|
|
5059
5054
|
ErrorMessage: str
|
|
5060
|
-
EventBridgeRuleTemplateGroupIds:
|
|
5061
|
-
FailedMediaResourceMap:
|
|
5055
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5056
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5062
5057
|
Id: str
|
|
5063
5058
|
LastDiscoveredAt: datetime
|
|
5064
5059
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
5065
|
-
MediaResourceMap:
|
|
5060
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5066
5061
|
ModifiedAt: datetime
|
|
5067
5062
|
MonitorChangesPendingDeployment: bool
|
|
5068
5063
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
5069
5064
|
Name: str
|
|
5070
5065
|
Status: SignalMapStatusType
|
|
5071
|
-
Tags:
|
|
5066
|
+
Tags: dict[str, str]
|
|
5072
5067
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5073
5068
|
|
|
5074
5069
|
|
|
5075
5070
|
class StartUpdateSignalMapResponseTypeDef(TypedDict):
|
|
5076
5071
|
Arn: str
|
|
5077
|
-
CloudWatchAlarmTemplateGroupIds:
|
|
5072
|
+
CloudWatchAlarmTemplateGroupIds: list[str]
|
|
5078
5073
|
CreatedAt: datetime
|
|
5079
5074
|
Description: str
|
|
5080
5075
|
DiscoveryEntryPointArn: str
|
|
5081
5076
|
ErrorMessage: str
|
|
5082
|
-
EventBridgeRuleTemplateGroupIds:
|
|
5083
|
-
FailedMediaResourceMap:
|
|
5077
|
+
EventBridgeRuleTemplateGroupIds: list[str]
|
|
5078
|
+
FailedMediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5084
5079
|
Id: str
|
|
5085
5080
|
LastDiscoveredAt: datetime
|
|
5086
5081
|
LastSuccessfulMonitorDeployment: SuccessfulMonitorDeploymentTypeDef
|
|
5087
|
-
MediaResourceMap:
|
|
5082
|
+
MediaResourceMap: dict[str, MediaResourceTypeDef]
|
|
5088
5083
|
ModifiedAt: datetime
|
|
5089
5084
|
MonitorChangesPendingDeployment: bool
|
|
5090
5085
|
MonitorDeployment: MonitorDeploymentTypeDef
|
|
5091
5086
|
Name: str
|
|
5092
5087
|
Status: SignalMapStatusType
|
|
5093
|
-
Tags:
|
|
5088
|
+
Tags: dict[str, str]
|
|
5094
5089
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5095
5090
|
|
|
5096
5091
|
|
|
@@ -5101,70 +5096,70 @@ class MultiplexOutputSettingsTypeDef(TypedDict):
|
|
|
5101
5096
|
|
|
5102
5097
|
class DeleteMultiplexResponseTypeDef(TypedDict):
|
|
5103
5098
|
Arn: str
|
|
5104
|
-
AvailabilityZones:
|
|
5105
|
-
Destinations:
|
|
5099
|
+
AvailabilityZones: list[str]
|
|
5100
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5106
5101
|
Id: str
|
|
5107
5102
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5108
5103
|
Name: str
|
|
5109
5104
|
PipelinesRunningCount: int
|
|
5110
5105
|
ProgramCount: int
|
|
5111
5106
|
State: MultiplexStateType
|
|
5112
|
-
Tags:
|
|
5107
|
+
Tags: dict[str, str]
|
|
5113
5108
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5114
5109
|
|
|
5115
5110
|
|
|
5116
5111
|
class DescribeMultiplexResponseTypeDef(TypedDict):
|
|
5117
5112
|
Arn: str
|
|
5118
|
-
AvailabilityZones:
|
|
5119
|
-
Destinations:
|
|
5113
|
+
AvailabilityZones: list[str]
|
|
5114
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5120
5115
|
Id: str
|
|
5121
5116
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5122
5117
|
Name: str
|
|
5123
5118
|
PipelinesRunningCount: int
|
|
5124
5119
|
ProgramCount: int
|
|
5125
5120
|
State: MultiplexStateType
|
|
5126
|
-
Tags:
|
|
5121
|
+
Tags: dict[str, str]
|
|
5127
5122
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5128
5123
|
|
|
5129
5124
|
|
|
5130
5125
|
class MultiplexTypeDef(TypedDict):
|
|
5131
5126
|
Arn: NotRequired[str]
|
|
5132
|
-
AvailabilityZones: NotRequired[
|
|
5133
|
-
Destinations: NotRequired[
|
|
5127
|
+
AvailabilityZones: NotRequired[list[str]]
|
|
5128
|
+
Destinations: NotRequired[list[MultiplexOutputDestinationTypeDef]]
|
|
5134
5129
|
Id: NotRequired[str]
|
|
5135
5130
|
MultiplexSettings: NotRequired[MultiplexSettingsTypeDef]
|
|
5136
5131
|
Name: NotRequired[str]
|
|
5137
5132
|
PipelinesRunningCount: NotRequired[int]
|
|
5138
5133
|
ProgramCount: NotRequired[int]
|
|
5139
5134
|
State: NotRequired[MultiplexStateType]
|
|
5140
|
-
Tags: NotRequired[
|
|
5135
|
+
Tags: NotRequired[dict[str, str]]
|
|
5141
5136
|
|
|
5142
5137
|
|
|
5143
5138
|
class StartMultiplexResponseTypeDef(TypedDict):
|
|
5144
5139
|
Arn: str
|
|
5145
|
-
AvailabilityZones:
|
|
5146
|
-
Destinations:
|
|
5140
|
+
AvailabilityZones: list[str]
|
|
5141
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5147
5142
|
Id: str
|
|
5148
5143
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5149
5144
|
Name: str
|
|
5150
5145
|
PipelinesRunningCount: int
|
|
5151
5146
|
ProgramCount: int
|
|
5152
5147
|
State: MultiplexStateType
|
|
5153
|
-
Tags:
|
|
5148
|
+
Tags: dict[str, str]
|
|
5154
5149
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5155
5150
|
|
|
5156
5151
|
|
|
5157
5152
|
class StopMultiplexResponseTypeDef(TypedDict):
|
|
5158
5153
|
Arn: str
|
|
5159
|
-
AvailabilityZones:
|
|
5160
|
-
Destinations:
|
|
5154
|
+
AvailabilityZones: list[str]
|
|
5155
|
+
Destinations: list[MultiplexOutputDestinationTypeDef]
|
|
5161
5156
|
Id: str
|
|
5162
5157
|
MultiplexSettings: MultiplexSettingsTypeDef
|
|
5163
5158
|
Name: str
|
|
5164
5159
|
PipelinesRunningCount: int
|
|
5165
5160
|
ProgramCount: int
|
|
5166
5161
|
State: MultiplexStateType
|
|
5167
|
-
Tags:
|
|
5162
|
+
Tags: dict[str, str]
|
|
5168
5163
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5169
5164
|
|
|
5170
5165
|
|
|
@@ -5178,7 +5173,7 @@ class UpdateMultiplexRequestTypeDef(TypedDict):
|
|
|
5178
5173
|
|
|
5179
5174
|
|
|
5180
5175
|
class ListMultiplexesResponseTypeDef(TypedDict):
|
|
5181
|
-
Multiplexes:
|
|
5176
|
+
Multiplexes: list[MultiplexSummaryTypeDef]
|
|
5182
5177
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5183
5178
|
NextToken: NotRequired[str]
|
|
5184
5179
|
|
|
@@ -5209,11 +5204,11 @@ class SrtSettingsRequestTypeDef(TypedDict):
|
|
|
5209
5204
|
|
|
5210
5205
|
|
|
5211
5206
|
class SrtSettingsTypeDef(TypedDict):
|
|
5212
|
-
SrtCallerSources: NotRequired[
|
|
5207
|
+
SrtCallerSources: NotRequired[list[SrtCallerSourceTypeDef]]
|
|
5213
5208
|
|
|
5214
5209
|
|
|
5215
5210
|
class DescribeThumbnailsResponseTypeDef(TypedDict):
|
|
5216
|
-
ThumbnailDetails:
|
|
5211
|
+
ThumbnailDetails: list[ThumbnailDetailTypeDef]
|
|
5217
5212
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5218
5213
|
|
|
5219
5214
|
|
|
@@ -5231,7 +5226,7 @@ class CaptionDescriptionOutputTypeDef(TypedDict):
|
|
|
5231
5226
|
DestinationSettings: NotRequired[CaptionDestinationSettingsOutputTypeDef]
|
|
5232
5227
|
LanguageCode: NotRequired[str]
|
|
5233
5228
|
LanguageDescription: NotRequired[str]
|
|
5234
|
-
CaptionDashRoles: NotRequired[
|
|
5229
|
+
CaptionDashRoles: NotRequired[list[DashRoleCaptionType]]
|
|
5235
5230
|
DvbDashAccessibility: NotRequired[DvbDashAccessibilityType]
|
|
5236
5231
|
|
|
5237
5232
|
|
|
@@ -5248,12 +5243,12 @@ class CaptionDescriptionTypeDef(TypedDict):
|
|
|
5248
5243
|
|
|
5249
5244
|
class HlsGroupSettingsOutputTypeDef(TypedDict):
|
|
5250
5245
|
Destination: OutputLocationRefTypeDef
|
|
5251
|
-
AdMarkers: NotRequired[
|
|
5246
|
+
AdMarkers: NotRequired[list[HlsAdMarkersType]]
|
|
5252
5247
|
BaseUrlContent: NotRequired[str]
|
|
5253
5248
|
BaseUrlContent1: NotRequired[str]
|
|
5254
5249
|
BaseUrlManifest: NotRequired[str]
|
|
5255
5250
|
BaseUrlManifest1: NotRequired[str]
|
|
5256
|
-
CaptionLanguageMappings: NotRequired[
|
|
5251
|
+
CaptionLanguageMappings: NotRequired[list[CaptionLanguageMappingTypeDef]]
|
|
5257
5252
|
CaptionLanguageSetting: NotRequired[HlsCaptionLanguageSettingType]
|
|
5258
5253
|
ClientCache: NotRequired[HlsClientCacheType]
|
|
5259
5254
|
CodecSpecification: NotRequired[HlsCodecSpecificationType]
|
|
@@ -5362,7 +5357,7 @@ CaptionSelectorSettingsUnionTypeDef = Union[
|
|
|
5362
5357
|
|
|
5363
5358
|
|
|
5364
5359
|
class ListClustersResponseTypeDef(TypedDict):
|
|
5365
|
-
Clusters:
|
|
5360
|
+
Clusters: list[DescribeClusterSummaryTypeDef]
|
|
5366
5361
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5367
5362
|
NextToken: NotRequired[str]
|
|
5368
5363
|
|
|
@@ -5397,7 +5392,7 @@ class UdpOutputSettingsTypeDef(TypedDict):
|
|
|
5397
5392
|
class AutomaticInputFailoverSettingsOutputTypeDef(TypedDict):
|
|
5398
5393
|
SecondaryInputId: str
|
|
5399
5394
|
ErrorClearTimeMsec: NotRequired[int]
|
|
5400
|
-
FailoverConditions: NotRequired[
|
|
5395
|
+
FailoverConditions: NotRequired[list[FailoverConditionTypeDef]]
|
|
5401
5396
|
InputPreference: NotRequired[InputPreferenceType]
|
|
5402
5397
|
|
|
5403
5398
|
|
|
@@ -5433,13 +5428,13 @@ InputSwitchScheduleActionSettingsUnionTypeDef = Union[
|
|
|
5433
5428
|
|
|
5434
5429
|
|
|
5435
5430
|
class ListInputDevicesResponseTypeDef(TypedDict):
|
|
5436
|
-
InputDevices:
|
|
5431
|
+
InputDevices: list[InputDeviceSummaryTypeDef]
|
|
5437
5432
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5438
5433
|
NextToken: NotRequired[str]
|
|
5439
5434
|
|
|
5440
5435
|
|
|
5441
5436
|
class Smpte2110ReceiverGroupSettingsOutputTypeDef(TypedDict):
|
|
5442
|
-
Smpte2110ReceiverGroups: NotRequired[
|
|
5437
|
+
Smpte2110ReceiverGroups: NotRequired[list[Smpte2110ReceiverGroupOutputTypeDef]]
|
|
5443
5438
|
|
|
5444
5439
|
|
|
5445
5440
|
class Smpte2110ReceiverGroupSettingsTypeDef(TypedDict):
|
|
@@ -5481,7 +5476,7 @@ class DeleteMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
5481
5476
|
ChannelId: str
|
|
5482
5477
|
MultiplexProgramSettings: MultiplexProgramSettingsTypeDef
|
|
5483
5478
|
PacketIdentifiersMap: MultiplexProgramPacketIdentifiersMapOutputTypeDef
|
|
5484
|
-
PipelineDetails:
|
|
5479
|
+
PipelineDetails: list[MultiplexProgramPipelineDetailTypeDef]
|
|
5485
5480
|
ProgramName: str
|
|
5486
5481
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5487
5482
|
|
|
@@ -5490,7 +5485,7 @@ class DescribeMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
5490
5485
|
ChannelId: str
|
|
5491
5486
|
MultiplexProgramSettings: MultiplexProgramSettingsTypeDef
|
|
5492
5487
|
PacketIdentifiersMap: MultiplexProgramPacketIdentifiersMapOutputTypeDef
|
|
5493
|
-
PipelineDetails:
|
|
5488
|
+
PipelineDetails: list[MultiplexProgramPipelineDetailTypeDef]
|
|
5494
5489
|
ProgramName: str
|
|
5495
5490
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5496
5491
|
|
|
@@ -5499,7 +5494,7 @@ class MultiplexProgramTypeDef(TypedDict):
|
|
|
5499
5494
|
ChannelId: NotRequired[str]
|
|
5500
5495
|
MultiplexProgramSettings: NotRequired[MultiplexProgramSettingsTypeDef]
|
|
5501
5496
|
PacketIdentifiersMap: NotRequired[MultiplexProgramPacketIdentifiersMapOutputTypeDef]
|
|
5502
|
-
PipelineDetails: NotRequired[
|
|
5497
|
+
PipelineDetails: NotRequired[list[MultiplexProgramPipelineDetailTypeDef]]
|
|
5503
5498
|
ProgramName: NotRequired[str]
|
|
5504
5499
|
|
|
5505
5500
|
|
|
@@ -5521,7 +5516,7 @@ class AudioDescriptionOutputTypeDef(TypedDict):
|
|
|
5521
5516
|
LanguageCodeControl: NotRequired[AudioDescriptionLanguageCodeControlType]
|
|
5522
5517
|
RemixSettings: NotRequired[RemixSettingsOutputTypeDef]
|
|
5523
5518
|
StreamName: NotRequired[str]
|
|
5524
|
-
AudioDashRoles: NotRequired[
|
|
5519
|
+
AudioDashRoles: NotRequired[list[DashRoleAudioType]]
|
|
5525
5520
|
DvbDashAccessibility: NotRequired[DvbDashAccessibilityType]
|
|
5526
5521
|
|
|
5527
5522
|
|
|
@@ -5557,7 +5552,7 @@ class OutputGroupSettingsOutputTypeDef(TypedDict):
|
|
|
5557
5552
|
HlsGroupSettings: NotRequired[HlsGroupSettingsOutputTypeDef]
|
|
5558
5553
|
MediaPackageGroupSettings: NotRequired[MediaPackageGroupSettingsOutputTypeDef]
|
|
5559
5554
|
MsSmoothGroupSettings: NotRequired[MsSmoothGroupSettingsTypeDef]
|
|
5560
|
-
MultiplexGroupSettings: NotRequired[
|
|
5555
|
+
MultiplexGroupSettings: NotRequired[dict[str, Any]]
|
|
5561
5556
|
RtmpGroupSettings: NotRequired[RtmpGroupSettingsOutputTypeDef]
|
|
5562
5557
|
UdpGroupSettings: NotRequired[UdpGroupSettingsTypeDef]
|
|
5563
5558
|
CmafIngestGroupSettings: NotRequired[CmafIngestGroupSettingsOutputTypeDef]
|
|
@@ -5583,8 +5578,8 @@ AudioSelectorSettingsUnionTypeDef = Union[
|
|
|
5583
5578
|
|
|
5584
5579
|
|
|
5585
5580
|
class InputSettingsOutputTypeDef(TypedDict):
|
|
5586
|
-
AudioSelectors: NotRequired[
|
|
5587
|
-
CaptionSelectors: NotRequired[
|
|
5581
|
+
AudioSelectors: NotRequired[list[AudioSelectorOutputTypeDef]]
|
|
5582
|
+
CaptionSelectors: NotRequired[list[CaptionSelectorOutputTypeDef]]
|
|
5588
5583
|
DeblockFilter: NotRequired[InputDeblockFilterType]
|
|
5589
5584
|
DenoiseFilter: NotRequired[InputDenoiseFilterType]
|
|
5590
5585
|
FilterStrength: NotRequired[int]
|
|
@@ -5631,26 +5626,26 @@ DescribeInputResponseTypeDef = TypedDict(
|
|
|
5631
5626
|
"DescribeInputResponseTypeDef",
|
|
5632
5627
|
{
|
|
5633
5628
|
"Arn": str,
|
|
5634
|
-
"AttachedChannels":
|
|
5635
|
-
"Destinations":
|
|
5629
|
+
"AttachedChannels": list[str],
|
|
5630
|
+
"Destinations": list[InputDestinationTypeDef],
|
|
5636
5631
|
"Id": str,
|
|
5637
5632
|
"InputClass": InputClassType,
|
|
5638
|
-
"InputDevices":
|
|
5639
|
-
"InputPartnerIds":
|
|
5633
|
+
"InputDevices": list[InputDeviceSettingsTypeDef],
|
|
5634
|
+
"InputPartnerIds": list[str],
|
|
5640
5635
|
"InputSourceType": InputSourceTypeType,
|
|
5641
|
-
"MediaConnectFlows":
|
|
5636
|
+
"MediaConnectFlows": list[MediaConnectFlowTypeDef],
|
|
5642
5637
|
"Name": str,
|
|
5643
5638
|
"RoleArn": str,
|
|
5644
|
-
"SecurityGroups":
|
|
5645
|
-
"Sources":
|
|
5639
|
+
"SecurityGroups": list[str],
|
|
5640
|
+
"Sources": list[InputSourceTypeDef],
|
|
5646
5641
|
"State": InputStateType,
|
|
5647
|
-
"Tags":
|
|
5642
|
+
"Tags": dict[str, str],
|
|
5648
5643
|
"Type": InputTypeType,
|
|
5649
5644
|
"SrtSettings": SrtSettingsTypeDef,
|
|
5650
5645
|
"InputNetworkLocation": InputNetworkLocationType,
|
|
5651
5646
|
"MulticastSettings": MulticastSettingsTypeDef,
|
|
5652
5647
|
"Smpte2110ReceiverGroupSettings": Smpte2110ReceiverGroupSettingsOutputTypeDef,
|
|
5653
|
-
"SdiSources":
|
|
5648
|
+
"SdiSources": list[str],
|
|
5654
5649
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5655
5650
|
},
|
|
5656
5651
|
)
|
|
@@ -5658,26 +5653,26 @@ InputTypeDef = TypedDict(
|
|
|
5658
5653
|
"InputTypeDef",
|
|
5659
5654
|
{
|
|
5660
5655
|
"Arn": NotRequired[str],
|
|
5661
|
-
"AttachedChannels": NotRequired[
|
|
5662
|
-
"Destinations": NotRequired[
|
|
5656
|
+
"AttachedChannels": NotRequired[list[str]],
|
|
5657
|
+
"Destinations": NotRequired[list[InputDestinationTypeDef]],
|
|
5663
5658
|
"Id": NotRequired[str],
|
|
5664
5659
|
"InputClass": NotRequired[InputClassType],
|
|
5665
|
-
"InputDevices": NotRequired[
|
|
5666
|
-
"InputPartnerIds": NotRequired[
|
|
5660
|
+
"InputDevices": NotRequired[list[InputDeviceSettingsTypeDef]],
|
|
5661
|
+
"InputPartnerIds": NotRequired[list[str]],
|
|
5667
5662
|
"InputSourceType": NotRequired[InputSourceTypeType],
|
|
5668
|
-
"MediaConnectFlows": NotRequired[
|
|
5663
|
+
"MediaConnectFlows": NotRequired[list[MediaConnectFlowTypeDef]],
|
|
5669
5664
|
"Name": NotRequired[str],
|
|
5670
5665
|
"RoleArn": NotRequired[str],
|
|
5671
|
-
"SecurityGroups": NotRequired[
|
|
5672
|
-
"Sources": NotRequired[
|
|
5666
|
+
"SecurityGroups": NotRequired[list[str]],
|
|
5667
|
+
"Sources": NotRequired[list[InputSourceTypeDef]],
|
|
5673
5668
|
"State": NotRequired[InputStateType],
|
|
5674
|
-
"Tags": NotRequired[
|
|
5669
|
+
"Tags": NotRequired[dict[str, str]],
|
|
5675
5670
|
"Type": NotRequired[InputTypeType],
|
|
5676
5671
|
"SrtSettings": NotRequired[SrtSettingsTypeDef],
|
|
5677
5672
|
"InputNetworkLocation": NotRequired[InputNetworkLocationType],
|
|
5678
5673
|
"MulticastSettings": NotRequired[MulticastSettingsTypeDef],
|
|
5679
5674
|
"Smpte2110ReceiverGroupSettings": NotRequired[Smpte2110ReceiverGroupSettingsOutputTypeDef],
|
|
5680
|
-
"SdiSources": NotRequired[
|
|
5675
|
+
"SdiSources": NotRequired[list[str]],
|
|
5681
5676
|
},
|
|
5682
5677
|
)
|
|
5683
5678
|
Smpte2110ReceiverGroupSettingsUnionTypeDef = Union[
|
|
@@ -5722,7 +5717,7 @@ class UpdateMultiplexProgramResponseTypeDef(TypedDict):
|
|
|
5722
5717
|
|
|
5723
5718
|
|
|
5724
5719
|
class Scte35TimeSignalScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
5725
|
-
Scte35Descriptors:
|
|
5720
|
+
Scte35Descriptors: list[Scte35DescriptorTypeDef]
|
|
5726
5721
|
|
|
5727
5722
|
|
|
5728
5723
|
class Scte35TimeSignalScheduleActionSettingsTypeDef(TypedDict):
|
|
@@ -5739,7 +5734,7 @@ class InputAttachmentOutputTypeDef(TypedDict):
|
|
|
5739
5734
|
InputAttachmentName: NotRequired[str]
|
|
5740
5735
|
InputId: NotRequired[str]
|
|
5741
5736
|
InputSettings: NotRequired[InputSettingsOutputTypeDef]
|
|
5742
|
-
LogicalInterfaceNames: NotRequired[
|
|
5737
|
+
LogicalInterfaceNames: NotRequired[list[str]]
|
|
5743
5738
|
|
|
5744
5739
|
|
|
5745
5740
|
CaptionSelectorUnionTypeDef = Union[CaptionSelectorTypeDef, CaptionSelectorOutputTypeDef]
|
|
@@ -5756,7 +5751,7 @@ class CreatePartnerInputResponseTypeDef(TypedDict):
|
|
|
5756
5751
|
|
|
5757
5752
|
|
|
5758
5753
|
class ListInputsResponseTypeDef(TypedDict):
|
|
5759
|
-
Inputs:
|
|
5754
|
+
Inputs: list[InputTypeDef]
|
|
5760
5755
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5761
5756
|
NextToken: NotRequired[str]
|
|
5762
5757
|
|
|
@@ -5806,8 +5801,8 @@ class UpdateInputRequestTypeDef(TypedDict):
|
|
|
5806
5801
|
|
|
5807
5802
|
class ExtraTypeDef(TypedDict):
|
|
5808
5803
|
OutputSettings: OutputSettingsOutputTypeDef
|
|
5809
|
-
AudioDescriptionNames: NotRequired[
|
|
5810
|
-
CaptionDescriptionNames: NotRequired[
|
|
5804
|
+
AudioDescriptionNames: NotRequired[list[str]]
|
|
5805
|
+
CaptionDescriptionNames: NotRequired[list[str]]
|
|
5811
5806
|
OutputName: NotRequired[str]
|
|
5812
5807
|
VideoDescriptionName: NotRequired[str]
|
|
5813
5808
|
|
|
@@ -5828,7 +5823,7 @@ class ScheduleActionSettingsOutputTypeDef(TypedDict):
|
|
|
5828
5823
|
MotionGraphicsImageActivateSettings: NotRequired[
|
|
5829
5824
|
MotionGraphicsActivateScheduleActionSettingsTypeDef
|
|
5830
5825
|
]
|
|
5831
|
-
MotionGraphicsImageDeactivateSettings: NotRequired[
|
|
5826
|
+
MotionGraphicsImageDeactivateSettings: NotRequired[dict[str, Any]]
|
|
5832
5827
|
PauseStateSettings: NotRequired[PauseStateScheduleActionSettingsOutputTypeDef]
|
|
5833
5828
|
Scte35InputSettings: NotRequired[Scte35InputScheduleActionSettingsTypeDef]
|
|
5834
5829
|
Scte35ReturnToNetworkSettings: NotRequired[Scte35ReturnToNetworkScheduleActionSettingsTypeDef]
|
|
@@ -5857,10 +5852,10 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5857
5852
|
Arn: NotRequired[str]
|
|
5858
5853
|
CdiInputSpecification: NotRequired[CdiInputSpecificationTypeDef]
|
|
5859
5854
|
ChannelClass: NotRequired[ChannelClassType]
|
|
5860
|
-
Destinations: NotRequired[
|
|
5861
|
-
EgressEndpoints: NotRequired[
|
|
5855
|
+
Destinations: NotRequired[list[OutputDestinationOutputTypeDef]]
|
|
5856
|
+
EgressEndpoints: NotRequired[list[ChannelEgressEndpointTypeDef]]
|
|
5862
5857
|
Id: NotRequired[str]
|
|
5863
|
-
InputAttachments: NotRequired[
|
|
5858
|
+
InputAttachments: NotRequired[list[InputAttachmentOutputTypeDef]]
|
|
5864
5859
|
InputSpecification: NotRequired[InputSpecificationTypeDef]
|
|
5865
5860
|
LogLevel: NotRequired[LogLevelType]
|
|
5866
5861
|
Maintenance: NotRequired[MaintenanceStatusTypeDef]
|
|
@@ -5868,16 +5863,16 @@ class ChannelSummaryTypeDef(TypedDict):
|
|
|
5868
5863
|
PipelinesRunningCount: NotRequired[int]
|
|
5869
5864
|
RoleArn: NotRequired[str]
|
|
5870
5865
|
State: NotRequired[ChannelStateType]
|
|
5871
|
-
Tags: NotRequired[
|
|
5866
|
+
Tags: NotRequired[dict[str, str]]
|
|
5872
5867
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
5873
5868
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
5874
5869
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
5875
|
-
UsedChannelEngineVersions: NotRequired[
|
|
5870
|
+
UsedChannelEngineVersions: NotRequired[list[ChannelEngineVersionResponseTypeDef]]
|
|
5876
5871
|
|
|
5877
5872
|
|
|
5878
5873
|
class OutputGroupOutputTypeDef(TypedDict):
|
|
5879
5874
|
OutputGroupSettings: OutputGroupSettingsOutputTypeDef
|
|
5880
|
-
Outputs:
|
|
5875
|
+
Outputs: list[ExtraTypeDef]
|
|
5881
5876
|
Name: NotRequired[str]
|
|
5882
5877
|
|
|
5883
5878
|
|
|
@@ -5934,20 +5929,20 @@ class InputSettingsTypeDef(TypedDict):
|
|
|
5934
5929
|
|
|
5935
5930
|
|
|
5936
5931
|
class ListChannelsResponseTypeDef(TypedDict):
|
|
5937
|
-
Channels:
|
|
5932
|
+
Channels: list[ChannelSummaryTypeDef]
|
|
5938
5933
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5939
5934
|
NextToken: NotRequired[str]
|
|
5940
5935
|
|
|
5941
5936
|
|
|
5942
5937
|
class EncoderSettingsOutputTypeDef(TypedDict):
|
|
5943
|
-
AudioDescriptions:
|
|
5944
|
-
OutputGroups:
|
|
5938
|
+
AudioDescriptions: list[AudioDescriptionOutputTypeDef]
|
|
5939
|
+
OutputGroups: list[OutputGroupOutputTypeDef]
|
|
5945
5940
|
TimecodeConfig: TimecodeConfigTypeDef
|
|
5946
|
-
VideoDescriptions:
|
|
5941
|
+
VideoDescriptions: list[VideoDescriptionOutputTypeDef]
|
|
5947
5942
|
AvailBlanking: NotRequired[AvailBlankingTypeDef]
|
|
5948
5943
|
AvailConfiguration: NotRequired[AvailConfigurationTypeDef]
|
|
5949
5944
|
BlackoutSlate: NotRequired[BlackoutSlateTypeDef]
|
|
5950
|
-
CaptionDescriptions: NotRequired[
|
|
5945
|
+
CaptionDescriptions: NotRequired[list[CaptionDescriptionOutputTypeDef]]
|
|
5951
5946
|
FeatureActivations: NotRequired[FeatureActivationsTypeDef]
|
|
5952
5947
|
GlobalConfiguration: NotRequired[GlobalConfigurationOutputTypeDef]
|
|
5953
5948
|
MotionGraphicsConfiguration: NotRequired[MotionGraphicsConfigurationOutputTypeDef]
|
|
@@ -5974,15 +5969,15 @@ class EncoderSettingsTypeDef(TypedDict):
|
|
|
5974
5969
|
|
|
5975
5970
|
|
|
5976
5971
|
class BatchScheduleActionCreateResultTypeDef(TypedDict):
|
|
5977
|
-
ScheduleActions:
|
|
5972
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5978
5973
|
|
|
5979
5974
|
|
|
5980
5975
|
class BatchScheduleActionDeleteResultTypeDef(TypedDict):
|
|
5981
|
-
ScheduleActions:
|
|
5976
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5982
5977
|
|
|
5983
5978
|
|
|
5984
5979
|
class DescribeScheduleResponseTypeDef(TypedDict):
|
|
5985
|
-
ScheduleActions:
|
|
5980
|
+
ScheduleActions: list[ScheduleActionOutputTypeDef]
|
|
5986
5981
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5987
5982
|
NextToken: NotRequired[str]
|
|
5988
5983
|
|
|
@@ -5997,20 +5992,20 @@ class ChannelTypeDef(TypedDict):
|
|
|
5997
5992
|
Arn: NotRequired[str]
|
|
5998
5993
|
CdiInputSpecification: NotRequired[CdiInputSpecificationTypeDef]
|
|
5999
5994
|
ChannelClass: NotRequired[ChannelClassType]
|
|
6000
|
-
Destinations: NotRequired[
|
|
6001
|
-
EgressEndpoints: NotRequired[
|
|
5995
|
+
Destinations: NotRequired[list[OutputDestinationOutputTypeDef]]
|
|
5996
|
+
EgressEndpoints: NotRequired[list[ChannelEgressEndpointTypeDef]]
|
|
6002
5997
|
EncoderSettings: NotRequired[EncoderSettingsOutputTypeDef]
|
|
6003
5998
|
Id: NotRequired[str]
|
|
6004
|
-
InputAttachments: NotRequired[
|
|
5999
|
+
InputAttachments: NotRequired[list[InputAttachmentOutputTypeDef]]
|
|
6005
6000
|
InputSpecification: NotRequired[InputSpecificationTypeDef]
|
|
6006
6001
|
LogLevel: NotRequired[LogLevelType]
|
|
6007
6002
|
Maintenance: NotRequired[MaintenanceStatusTypeDef]
|
|
6008
6003
|
Name: NotRequired[str]
|
|
6009
|
-
PipelineDetails: NotRequired[
|
|
6004
|
+
PipelineDetails: NotRequired[list[PipelineDetailTypeDef]]
|
|
6010
6005
|
PipelinesRunningCount: NotRequired[int]
|
|
6011
6006
|
RoleArn: NotRequired[str]
|
|
6012
6007
|
State: NotRequired[ChannelStateType]
|
|
6013
|
-
Tags: NotRequired[
|
|
6008
|
+
Tags: NotRequired[dict[str, str]]
|
|
6014
6009
|
Vpc: NotRequired[VpcOutputSettingsDescriptionTypeDef]
|
|
6015
6010
|
AnywhereSettings: NotRequired[DescribeAnywhereSettingsTypeDef]
|
|
6016
6011
|
ChannelEngineVersion: NotRequired[ChannelEngineVersionResponseTypeDef]
|
|
@@ -6020,20 +6015,20 @@ class DeleteChannelResponseTypeDef(TypedDict):
|
|
|
6020
6015
|
Arn: str
|
|
6021
6016
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
6022
6017
|
ChannelClass: ChannelClassType
|
|
6023
|
-
Destinations:
|
|
6024
|
-
EgressEndpoints:
|
|
6018
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6019
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
6025
6020
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
6026
6021
|
Id: str
|
|
6027
|
-
InputAttachments:
|
|
6022
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
6028
6023
|
InputSpecification: InputSpecificationTypeDef
|
|
6029
6024
|
LogLevel: LogLevelType
|
|
6030
6025
|
Maintenance: MaintenanceStatusTypeDef
|
|
6031
6026
|
Name: str
|
|
6032
|
-
PipelineDetails:
|
|
6027
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
6033
6028
|
PipelinesRunningCount: int
|
|
6034
6029
|
RoleArn: str
|
|
6035
6030
|
State: ChannelStateType
|
|
6036
|
-
Tags:
|
|
6031
|
+
Tags: dict[str, str]
|
|
6037
6032
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6038
6033
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6039
6034
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -6044,20 +6039,20 @@ class DescribeChannelResponseTypeDef(TypedDict):
|
|
|
6044
6039
|
Arn: str
|
|
6045
6040
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
6046
6041
|
ChannelClass: ChannelClassType
|
|
6047
|
-
Destinations:
|
|
6048
|
-
EgressEndpoints:
|
|
6042
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6043
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
6049
6044
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
6050
6045
|
Id: str
|
|
6051
|
-
InputAttachments:
|
|
6046
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
6052
6047
|
InputSpecification: InputSpecificationTypeDef
|
|
6053
6048
|
LogLevel: LogLevelType
|
|
6054
6049
|
Maintenance: MaintenanceStatusTypeDef
|
|
6055
6050
|
Name: str
|
|
6056
|
-
PipelineDetails:
|
|
6051
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
6057
6052
|
PipelinesRunningCount: int
|
|
6058
6053
|
RoleArn: str
|
|
6059
6054
|
State: ChannelStateType
|
|
6060
|
-
Tags:
|
|
6055
|
+
Tags: dict[str, str]
|
|
6061
6056
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6062
6057
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6063
6058
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -6068,21 +6063,21 @@ class RestartChannelPipelinesResponseTypeDef(TypedDict):
|
|
|
6068
6063
|
Arn: str
|
|
6069
6064
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
6070
6065
|
ChannelClass: ChannelClassType
|
|
6071
|
-
Destinations:
|
|
6072
|
-
EgressEndpoints:
|
|
6066
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6067
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
6073
6068
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
6074
6069
|
Id: str
|
|
6075
|
-
InputAttachments:
|
|
6070
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
6076
6071
|
InputSpecification: InputSpecificationTypeDef
|
|
6077
6072
|
LogLevel: LogLevelType
|
|
6078
6073
|
Maintenance: MaintenanceStatusTypeDef
|
|
6079
6074
|
MaintenanceStatus: str
|
|
6080
6075
|
Name: str
|
|
6081
|
-
PipelineDetails:
|
|
6076
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
6082
6077
|
PipelinesRunningCount: int
|
|
6083
6078
|
RoleArn: str
|
|
6084
6079
|
State: ChannelStateType
|
|
6085
|
-
Tags:
|
|
6080
|
+
Tags: dict[str, str]
|
|
6086
6081
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6087
6082
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6088
6083
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -6093,20 +6088,20 @@ class StartChannelResponseTypeDef(TypedDict):
|
|
|
6093
6088
|
Arn: str
|
|
6094
6089
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
6095
6090
|
ChannelClass: ChannelClassType
|
|
6096
|
-
Destinations:
|
|
6097
|
-
EgressEndpoints:
|
|
6091
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6092
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
6098
6093
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
6099
6094
|
Id: str
|
|
6100
|
-
InputAttachments:
|
|
6095
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
6101
6096
|
InputSpecification: InputSpecificationTypeDef
|
|
6102
6097
|
LogLevel: LogLevelType
|
|
6103
6098
|
Maintenance: MaintenanceStatusTypeDef
|
|
6104
6099
|
Name: str
|
|
6105
|
-
PipelineDetails:
|
|
6100
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
6106
6101
|
PipelinesRunningCount: int
|
|
6107
6102
|
RoleArn: str
|
|
6108
6103
|
State: ChannelStateType
|
|
6109
|
-
Tags:
|
|
6104
|
+
Tags: dict[str, str]
|
|
6110
6105
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6111
6106
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6112
6107
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|
|
@@ -6117,20 +6112,20 @@ class StopChannelResponseTypeDef(TypedDict):
|
|
|
6117
6112
|
Arn: str
|
|
6118
6113
|
CdiInputSpecification: CdiInputSpecificationTypeDef
|
|
6119
6114
|
ChannelClass: ChannelClassType
|
|
6120
|
-
Destinations:
|
|
6121
|
-
EgressEndpoints:
|
|
6115
|
+
Destinations: list[OutputDestinationOutputTypeDef]
|
|
6116
|
+
EgressEndpoints: list[ChannelEgressEndpointTypeDef]
|
|
6122
6117
|
EncoderSettings: EncoderSettingsOutputTypeDef
|
|
6123
6118
|
Id: str
|
|
6124
|
-
InputAttachments:
|
|
6119
|
+
InputAttachments: list[InputAttachmentOutputTypeDef]
|
|
6125
6120
|
InputSpecification: InputSpecificationTypeDef
|
|
6126
6121
|
LogLevel: LogLevelType
|
|
6127
6122
|
Maintenance: MaintenanceStatusTypeDef
|
|
6128
6123
|
Name: str
|
|
6129
|
-
PipelineDetails:
|
|
6124
|
+
PipelineDetails: list[PipelineDetailTypeDef]
|
|
6130
6125
|
PipelinesRunningCount: int
|
|
6131
6126
|
RoleArn: str
|
|
6132
6127
|
State: ChannelStateType
|
|
6133
|
-
Tags:
|
|
6128
|
+
Tags: dict[str, str]
|
|
6134
6129
|
Vpc: VpcOutputSettingsDescriptionTypeDef
|
|
6135
6130
|
AnywhereSettings: DescribeAnywhereSettingsTypeDef
|
|
6136
6131
|
ChannelEngineVersion: ChannelEngineVersionResponseTypeDef
|