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