@aws-sdk/client-medialive 3.777.0 → 3.781.0
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.
- package/dist-cjs/index.js +97 -8
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_1.js +0 -8
- package/dist-es/models/models_2.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +96 -0
- package/dist-types/commands/CreateInputCommand.d.ts +50 -2
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +25 -1
- package/dist-types/commands/DescribeInputCommand.d.ts +25 -1
- package/dist-types/commands/ListInputsCommand.d.ts +25 -1
- package/dist-types/commands/UpdateInputCommand.d.ts +49 -1
- package/dist-types/models/models_0.d.ts +66 -293
- package/dist-types/models/models_1.d.ts +294 -74
- package/dist-types/models/models_2.d.ts +90 -2
- package/dist-types/ts3.4/models/models_0.d.ts +17 -60
- package/dist-types/ts3.4/models/models_1.d.ts +71 -29
- package/dist-types/ts3.4/models/models_2.d.ts +34 -3
- package/package.json +1 -1
|
@@ -2,31 +2,100 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
|
|
3
3
|
import {
|
|
4
4
|
Algorithm,
|
|
5
|
-
ArchiveOutputSettings,
|
|
6
5
|
BatchFailedResultModel,
|
|
7
6
|
BatchSuccessfulResultModel,
|
|
8
7
|
CaptionLanguageMapping,
|
|
9
8
|
ChannelEngineVersionResponse,
|
|
10
9
|
ColorCorrection,
|
|
10
|
+
DvbNitSettings,
|
|
11
|
+
DvbSdtSettings,
|
|
12
|
+
DvbTdtSettings,
|
|
11
13
|
Hdr10Settings,
|
|
12
14
|
HlsAdMarkers,
|
|
13
15
|
InputLocation,
|
|
14
16
|
M2tsAbsentInputAudioBehavior,
|
|
15
17
|
M2tsArib,
|
|
18
|
+
M2tsAribCaptionsPidControl,
|
|
16
19
|
M2tsAudioBufferModel,
|
|
20
|
+
M2tsAudioInterval,
|
|
17
21
|
M2tsAudioStreamType,
|
|
22
|
+
M2tsBufferModel,
|
|
18
23
|
M2tsCcDescriptor,
|
|
19
24
|
M2tsEbifControl,
|
|
25
|
+
M2tsEbpPlacement,
|
|
20
26
|
M2tsEsRateInPes,
|
|
21
27
|
M2tsKlv,
|
|
22
28
|
M2tsNielsenId3Behavior,
|
|
23
29
|
M2tsPcrControl,
|
|
30
|
+
M2tsRateMode,
|
|
24
31
|
M2tsScte35Control,
|
|
25
|
-
|
|
32
|
+
M2tsSegmentationMarkers,
|
|
33
|
+
M2tsSegmentationStyle,
|
|
34
|
+
M2tsTimedMetadataBehavior,
|
|
26
35
|
OfferingDurationUnits,
|
|
27
36
|
OfferingType,
|
|
28
37
|
ReservationResourceSpecification,
|
|
29
38
|
} from "./models_0";
|
|
39
|
+
export interface M2tsSettings {
|
|
40
|
+
AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior | undefined;
|
|
41
|
+
Arib?: M2tsArib | undefined;
|
|
42
|
+
AribCaptionsPid?: string | undefined;
|
|
43
|
+
AribCaptionsPidControl?: M2tsAribCaptionsPidControl | undefined;
|
|
44
|
+
AudioBufferModel?: M2tsAudioBufferModel | undefined;
|
|
45
|
+
AudioFramesPerPes?: number | undefined;
|
|
46
|
+
AudioPids?: string | undefined;
|
|
47
|
+
AudioStreamType?: M2tsAudioStreamType | undefined;
|
|
48
|
+
Bitrate?: number | undefined;
|
|
49
|
+
BufferModel?: M2tsBufferModel | undefined;
|
|
50
|
+
CcDescriptor?: M2tsCcDescriptor | undefined;
|
|
51
|
+
DvbNitSettings?: DvbNitSettings | undefined;
|
|
52
|
+
DvbSdtSettings?: DvbSdtSettings | undefined;
|
|
53
|
+
DvbSubPids?: string | undefined;
|
|
54
|
+
DvbTdtSettings?: DvbTdtSettings | undefined;
|
|
55
|
+
DvbTeletextPid?: string | undefined;
|
|
56
|
+
Ebif?: M2tsEbifControl | undefined;
|
|
57
|
+
EbpAudioInterval?: M2tsAudioInterval | undefined;
|
|
58
|
+
EbpLookaheadMs?: number | undefined;
|
|
59
|
+
EbpPlacement?: M2tsEbpPlacement | undefined;
|
|
60
|
+
EcmPid?: string | undefined;
|
|
61
|
+
EsRateInPes?: M2tsEsRateInPes | undefined;
|
|
62
|
+
EtvPlatformPid?: string | undefined;
|
|
63
|
+
EtvSignalPid?: string | undefined;
|
|
64
|
+
FragmentTime?: number | undefined;
|
|
65
|
+
Klv?: M2tsKlv | undefined;
|
|
66
|
+
KlvDataPids?: string | undefined;
|
|
67
|
+
NielsenId3Behavior?: M2tsNielsenId3Behavior | undefined;
|
|
68
|
+
NullPacketBitrate?: number | undefined;
|
|
69
|
+
PatInterval?: number | undefined;
|
|
70
|
+
PcrControl?: M2tsPcrControl | undefined;
|
|
71
|
+
PcrPeriod?: number | undefined;
|
|
72
|
+
PcrPid?: string | undefined;
|
|
73
|
+
PmtInterval?: number | undefined;
|
|
74
|
+
PmtPid?: string | undefined;
|
|
75
|
+
ProgramNum?: number | undefined;
|
|
76
|
+
RateMode?: M2tsRateMode | undefined;
|
|
77
|
+
Scte27Pids?: string | undefined;
|
|
78
|
+
Scte35Control?: M2tsScte35Control | undefined;
|
|
79
|
+
Scte35Pid?: string | undefined;
|
|
80
|
+
SegmentationMarkers?: M2tsSegmentationMarkers | undefined;
|
|
81
|
+
SegmentationStyle?: M2tsSegmentationStyle | undefined;
|
|
82
|
+
SegmentationTime?: number | undefined;
|
|
83
|
+
TimedMetadataBehavior?: M2tsTimedMetadataBehavior | undefined;
|
|
84
|
+
TimedMetadataPid?: string | undefined;
|
|
85
|
+
TransportStreamId?: number | undefined;
|
|
86
|
+
VideoPid?: string | undefined;
|
|
87
|
+
Scte35PrerollPullupMilliseconds?: number | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface RawSettings {}
|
|
90
|
+
export interface ArchiveContainerSettings {
|
|
91
|
+
M2tsSettings?: M2tsSettings | undefined;
|
|
92
|
+
RawSettings?: RawSettings | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface ArchiveOutputSettings {
|
|
95
|
+
ContainerSettings: ArchiveContainerSettings | undefined;
|
|
96
|
+
Extension?: string | undefined;
|
|
97
|
+
NameModifier?: string | undefined;
|
|
98
|
+
}
|
|
30
99
|
export interface CmafIngestOutputSettings {
|
|
31
100
|
NameModifier?: string | undefined;
|
|
32
101
|
}
|
|
@@ -2005,30 +2074,3 @@ export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions:
|
|
|
2005
2074
|
};
|
|
2006
2075
|
export type FeatureActivationsOutputStaticImageOverlayScheduleActions =
|
|
2007
2076
|
(typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
|
|
2008
|
-
export interface FeatureActivations {
|
|
2009
|
-
InputPrepareScheduleActions?:
|
|
2010
|
-
| FeatureActivationsInputPrepareScheduleActions
|
|
2011
|
-
| undefined;
|
|
2012
|
-
OutputStaticImageOverlayScheduleActions?:
|
|
2013
|
-
| FeatureActivationsOutputStaticImageOverlayScheduleActions
|
|
2014
|
-
| undefined;
|
|
2015
|
-
}
|
|
2016
|
-
export declare const GlobalConfigurationInputEndAction: {
|
|
2017
|
-
readonly NONE: "NONE";
|
|
2018
|
-
readonly SWITCH_AND_LOOP_INPUTS: "SWITCH_AND_LOOP_INPUTS";
|
|
2019
|
-
};
|
|
2020
|
-
export type GlobalConfigurationInputEndAction =
|
|
2021
|
-
(typeof GlobalConfigurationInputEndAction)[keyof typeof GlobalConfigurationInputEndAction];
|
|
2022
|
-
export declare const InputLossImageType: {
|
|
2023
|
-
readonly COLOR: "COLOR";
|
|
2024
|
-
readonly SLATE: "SLATE";
|
|
2025
|
-
};
|
|
2026
|
-
export type InputLossImageType =
|
|
2027
|
-
(typeof InputLossImageType)[keyof typeof InputLossImageType];
|
|
2028
|
-
export interface InputLossBehavior {
|
|
2029
|
-
BlackFrameMsec?: number | undefined;
|
|
2030
|
-
InputLossImageColor?: string | undefined;
|
|
2031
|
-
InputLossImageSlate?: InputLocation | undefined;
|
|
2032
|
-
InputLossImageType?: InputLossImageType | undefined;
|
|
2033
|
-
RepeatFrameMsec?: number | undefined;
|
|
2034
|
-
}
|
|
@@ -47,6 +47,7 @@ import {
|
|
|
47
47
|
InputDeviceSummary,
|
|
48
48
|
InputDeviceType,
|
|
49
49
|
InputDeviceUhdSettings,
|
|
50
|
+
InputLocation,
|
|
50
51
|
InputNetworkLocation,
|
|
51
52
|
InputSecurityGroup,
|
|
52
53
|
InputSecurityGroupState,
|
|
@@ -89,6 +90,7 @@ import {
|
|
|
89
90
|
OutputDestination,
|
|
90
91
|
ReservationResourceSpecification,
|
|
91
92
|
Route,
|
|
93
|
+
Smpte2110ReceiverGroupSettings,
|
|
92
94
|
SrtSettings,
|
|
93
95
|
VpcOutputSettingsDescription,
|
|
94
96
|
} from "./models_0";
|
|
@@ -100,9 +102,8 @@ import {
|
|
|
100
102
|
AvailConfiguration,
|
|
101
103
|
BlackoutSlate,
|
|
102
104
|
ColorCorrectionSettings,
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
InputLossBehavior,
|
|
105
|
+
FeatureActivationsInputPrepareScheduleActions,
|
|
106
|
+
FeatureActivationsOutputStaticImageOverlayScheduleActions,
|
|
106
107
|
OutputGroup,
|
|
107
108
|
PipelineDetail,
|
|
108
109
|
RenewalSettings,
|
|
@@ -119,6 +120,33 @@ import {
|
|
|
119
120
|
TransferringInputDeviceSummary,
|
|
120
121
|
VideoDescription,
|
|
121
122
|
} from "./models_1";
|
|
123
|
+
export interface FeatureActivations {
|
|
124
|
+
InputPrepareScheduleActions?:
|
|
125
|
+
| FeatureActivationsInputPrepareScheduleActions
|
|
126
|
+
| undefined;
|
|
127
|
+
OutputStaticImageOverlayScheduleActions?:
|
|
128
|
+
| FeatureActivationsOutputStaticImageOverlayScheduleActions
|
|
129
|
+
| undefined;
|
|
130
|
+
}
|
|
131
|
+
export declare const GlobalConfigurationInputEndAction: {
|
|
132
|
+
readonly NONE: "NONE";
|
|
133
|
+
readonly SWITCH_AND_LOOP_INPUTS: "SWITCH_AND_LOOP_INPUTS";
|
|
134
|
+
};
|
|
135
|
+
export type GlobalConfigurationInputEndAction =
|
|
136
|
+
(typeof GlobalConfigurationInputEndAction)[keyof typeof GlobalConfigurationInputEndAction];
|
|
137
|
+
export declare const InputLossImageType: {
|
|
138
|
+
readonly COLOR: "COLOR";
|
|
139
|
+
readonly SLATE: "SLATE";
|
|
140
|
+
};
|
|
141
|
+
export type InputLossImageType =
|
|
142
|
+
(typeof InputLossImageType)[keyof typeof InputLossImageType];
|
|
143
|
+
export interface InputLossBehavior {
|
|
144
|
+
BlackFrameMsec?: number | undefined;
|
|
145
|
+
InputLossImageColor?: string | undefined;
|
|
146
|
+
InputLossImageSlate?: InputLocation | undefined;
|
|
147
|
+
InputLossImageType?: InputLossImageType | undefined;
|
|
148
|
+
RepeatFrameMsec?: number | undefined;
|
|
149
|
+
}
|
|
122
150
|
export declare const GlobalConfigurationOutputLockingMode: {
|
|
123
151
|
readonly DISABLED: "DISABLED";
|
|
124
152
|
readonly EPOCH_LOCKING: "EPOCH_LOCKING";
|
|
@@ -433,6 +461,7 @@ export interface CreateInputRequest {
|
|
|
433
461
|
SrtSettings?: SrtSettingsRequest | undefined;
|
|
434
462
|
InputNetworkLocation?: InputNetworkLocation | undefined;
|
|
435
463
|
MulticastSettings?: MulticastSettingsCreateRequest | undefined;
|
|
464
|
+
Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
|
|
436
465
|
}
|
|
437
466
|
export interface CreateInputResponse {
|
|
438
467
|
Input?: Input | undefined;
|
|
@@ -873,6 +902,7 @@ export interface DescribeInputResponse {
|
|
|
873
902
|
SrtSettings?: SrtSettings | undefined;
|
|
874
903
|
InputNetworkLocation?: InputNetworkLocation | undefined;
|
|
875
904
|
MulticastSettings?: MulticastSettings | undefined;
|
|
905
|
+
Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
|
|
876
906
|
}
|
|
877
907
|
export interface DescribeInputDeviceRequest {
|
|
878
908
|
InputDeviceId: string | undefined;
|
|
@@ -1708,6 +1738,7 @@ export interface UpdateInputRequest {
|
|
|
1708
1738
|
Sources?: InputSourceRequest[] | undefined;
|
|
1709
1739
|
SrtSettings?: SrtSettingsRequest | undefined;
|
|
1710
1740
|
MulticastSettings?: MulticastSettingsUpdateRequest | undefined;
|
|
1741
|
+
Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
|
|
1711
1742
|
}
|
|
1712
1743
|
export interface UpdateInputResponse {
|
|
1713
1744
|
Input?: Input | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medialive",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.781.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-medialive",
|