@aws-sdk/client-medialive 3.234.0 → 3.235.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/commands/StartMultiplexCommand.js +3 -3
- package/dist-cjs/commands/StopChannelCommand.js +3 -3
- package/dist-cjs/commands/StopMultiplexCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +4 -306
- package/dist-cjs/models/models_0.js +20 -15
- package/dist-cjs/models/models_1.js +40 -26
- package/dist-cjs/models/models_2.js +21 -1
- package/dist-cjs/protocols/Aws_restJson1.js +52 -0
- package/dist-es/commands/StartMultiplexCommand.js +1 -1
- package/dist-es/commands/StopChannelCommand.js +1 -1
- package/dist-es/commands/StopMultiplexCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +4 -306
- package/dist-es/models/models_0.js +15 -11
- package/dist-es/models/models_1.js +33 -15
- package/dist-es/models/models_2.js +15 -0
- package/dist-es/protocols/Aws_restJson1.js +52 -0
- package/dist-types/commands/StartMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/StopChannelCommand.d.ts +1 -1
- package/dist-types/commands/StopMultiplexCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +28 -9
- package/dist-types/models/models_1.d.ts +73 -181
- package/dist-types/models/models_2.d.ts +173 -2
- package/dist-types/ts3.4/commands/StartMultiplexCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopChannelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopMultiplexCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +18 -9
- package/dist-types/ts3.4/models/models_1.d.ts +38 -58
- package/dist-types/ts3.4/models/models_2.d.ts +61 -0
- package/package.json +4 -4
|
@@ -1,5 +1,156 @@
|
|
|
1
|
-
import { CdiInputSpecification, ChannelClass, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceRequest, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexState, OutputDestination } from "./models_0";
|
|
2
|
-
import { Channel, EncoderSettings, InputDeviceConfigurableSettings, MaintenanceUpdateSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, RenewalSettings, Reservation } from "./models_1";
|
|
1
|
+
import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceRequest, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexState, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
|
|
2
|
+
import { Channel, EncoderSettings, InputDeviceConfigurableSettings, MaintenanceUpdateSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* Placeholder documentation for StartMultiplexRequest
|
|
5
|
+
*/
|
|
6
|
+
export interface StartMultiplexRequest {
|
|
7
|
+
/**
|
|
8
|
+
* The ID of the multiplex.
|
|
9
|
+
*/
|
|
10
|
+
MultiplexId: string | undefined;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Placeholder documentation for StartMultiplexResponse
|
|
14
|
+
*/
|
|
15
|
+
export interface StartMultiplexResponse {
|
|
16
|
+
/**
|
|
17
|
+
* The unique arn of the multiplex.
|
|
18
|
+
*/
|
|
19
|
+
Arn?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A list of availability zones for the multiplex.
|
|
22
|
+
*/
|
|
23
|
+
AvailabilityZones?: string[];
|
|
24
|
+
/**
|
|
25
|
+
* A list of the multiplex output destinations.
|
|
26
|
+
*/
|
|
27
|
+
Destinations?: MultiplexOutputDestination[];
|
|
28
|
+
/**
|
|
29
|
+
* The unique id of the multiplex.
|
|
30
|
+
*/
|
|
31
|
+
Id?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Configuration for a multiplex event.
|
|
34
|
+
*/
|
|
35
|
+
MultiplexSettings?: MultiplexSettings;
|
|
36
|
+
/**
|
|
37
|
+
* The name of the multiplex.
|
|
38
|
+
*/
|
|
39
|
+
Name?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The number of currently healthy pipelines.
|
|
42
|
+
*/
|
|
43
|
+
PipelinesRunningCount?: number;
|
|
44
|
+
/**
|
|
45
|
+
* The number of programs in the multiplex.
|
|
46
|
+
*/
|
|
47
|
+
ProgramCount?: number;
|
|
48
|
+
/**
|
|
49
|
+
* The current state of the multiplex.
|
|
50
|
+
*/
|
|
51
|
+
State?: MultiplexState | string;
|
|
52
|
+
/**
|
|
53
|
+
* A collection of key-value pairs.
|
|
54
|
+
*/
|
|
55
|
+
Tags?: Record<string, string>;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Placeholder documentation for StopChannelRequest
|
|
59
|
+
*/
|
|
60
|
+
export interface StopChannelRequest {
|
|
61
|
+
/**
|
|
62
|
+
* A request to stop a running channel
|
|
63
|
+
*/
|
|
64
|
+
ChannelId: string | undefined;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Placeholder documentation for StopChannelResponse
|
|
68
|
+
*/
|
|
69
|
+
export interface StopChannelResponse {
|
|
70
|
+
/**
|
|
71
|
+
* The unique arn of the channel.
|
|
72
|
+
*/
|
|
73
|
+
Arn?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Specification of CDI inputs for this channel
|
|
76
|
+
*/
|
|
77
|
+
CdiInputSpecification?: CdiInputSpecification;
|
|
78
|
+
/**
|
|
79
|
+
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
|
|
80
|
+
*/
|
|
81
|
+
ChannelClass?: ChannelClass | string;
|
|
82
|
+
/**
|
|
83
|
+
* A list of destinations of the channel. For UDP outputs, there is one
|
|
84
|
+
* destination per output. For other types (HLS, for example), there is
|
|
85
|
+
* one destination per packager.
|
|
86
|
+
*/
|
|
87
|
+
Destinations?: OutputDestination[];
|
|
88
|
+
/**
|
|
89
|
+
* The endpoints where outgoing connections initiate from
|
|
90
|
+
*/
|
|
91
|
+
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
92
|
+
/**
|
|
93
|
+
* Encoder Settings
|
|
94
|
+
*/
|
|
95
|
+
EncoderSettings?: EncoderSettings;
|
|
96
|
+
/**
|
|
97
|
+
* The unique id of the channel.
|
|
98
|
+
*/
|
|
99
|
+
Id?: string;
|
|
100
|
+
/**
|
|
101
|
+
* List of input attachments for channel.
|
|
102
|
+
*/
|
|
103
|
+
InputAttachments?: InputAttachment[];
|
|
104
|
+
/**
|
|
105
|
+
* Specification of network and file inputs for this channel
|
|
106
|
+
*/
|
|
107
|
+
InputSpecification?: InputSpecification;
|
|
108
|
+
/**
|
|
109
|
+
* The log level being written to CloudWatch Logs.
|
|
110
|
+
*/
|
|
111
|
+
LogLevel?: LogLevel | string;
|
|
112
|
+
/**
|
|
113
|
+
* Maintenance settings for this channel.
|
|
114
|
+
*/
|
|
115
|
+
Maintenance?: MaintenanceStatus;
|
|
116
|
+
/**
|
|
117
|
+
* The name of the channel. (user-mutable)
|
|
118
|
+
*/
|
|
119
|
+
Name?: string;
|
|
120
|
+
/**
|
|
121
|
+
* Runtime details for the pipelines of a running channel.
|
|
122
|
+
*/
|
|
123
|
+
PipelineDetails?: PipelineDetail[];
|
|
124
|
+
/**
|
|
125
|
+
* The number of currently healthy pipelines.
|
|
126
|
+
*/
|
|
127
|
+
PipelinesRunningCount?: number;
|
|
128
|
+
/**
|
|
129
|
+
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
|
|
130
|
+
*/
|
|
131
|
+
RoleArn?: string;
|
|
132
|
+
/**
|
|
133
|
+
* Placeholder documentation for ChannelState
|
|
134
|
+
*/
|
|
135
|
+
State?: ChannelState | string;
|
|
136
|
+
/**
|
|
137
|
+
* A collection of key-value pairs.
|
|
138
|
+
*/
|
|
139
|
+
Tags?: Record<string, string>;
|
|
140
|
+
/**
|
|
141
|
+
* Settings for VPC output
|
|
142
|
+
*/
|
|
143
|
+
Vpc?: VpcOutputSettingsDescription;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* Placeholder documentation for StopMultiplexRequest
|
|
147
|
+
*/
|
|
148
|
+
export interface StopMultiplexRequest {
|
|
149
|
+
/**
|
|
150
|
+
* The ID of the multiplex.
|
|
151
|
+
*/
|
|
152
|
+
MultiplexId: string | undefined;
|
|
153
|
+
}
|
|
3
154
|
/**
|
|
4
155
|
* Placeholder documentation for StopMultiplexResponse
|
|
5
156
|
*/
|
|
@@ -379,6 +530,26 @@ export interface UpdateReservationResponse {
|
|
|
379
530
|
*/
|
|
380
531
|
Reservation?: Reservation;
|
|
381
532
|
}
|
|
533
|
+
/**
|
|
534
|
+
* @internal
|
|
535
|
+
*/
|
|
536
|
+
export declare const StartMultiplexRequestFilterSensitiveLog: (obj: StartMultiplexRequest) => any;
|
|
537
|
+
/**
|
|
538
|
+
* @internal
|
|
539
|
+
*/
|
|
540
|
+
export declare const StartMultiplexResponseFilterSensitiveLog: (obj: StartMultiplexResponse) => any;
|
|
541
|
+
/**
|
|
542
|
+
* @internal
|
|
543
|
+
*/
|
|
544
|
+
export declare const StopChannelRequestFilterSensitiveLog: (obj: StopChannelRequest) => any;
|
|
545
|
+
/**
|
|
546
|
+
* @internal
|
|
547
|
+
*/
|
|
548
|
+
export declare const StopChannelResponseFilterSensitiveLog: (obj: StopChannelResponse) => any;
|
|
549
|
+
/**
|
|
550
|
+
* @internal
|
|
551
|
+
*/
|
|
552
|
+
export declare const StopMultiplexRequestFilterSensitiveLog: (obj: StopMultiplexRequest) => any;
|
|
382
553
|
/**
|
|
383
554
|
* @internal
|
|
384
555
|
*/
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
StartMultiplexRequest,
|
|
16
16
|
StartMultiplexResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_2";
|
|
18
18
|
export interface StartMultiplexCommandInput extends StartMultiplexRequest {}
|
|
19
19
|
export interface StartMultiplexCommandOutput
|
|
20
20
|
extends StartMultiplexResponse,
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaLiveClient";
|
|
14
|
-
import { StopChannelRequest, StopChannelResponse } from "../models/
|
|
14
|
+
import { StopChannelRequest, StopChannelResponse } from "../models/models_2";
|
|
15
15
|
export interface StopChannelCommandInput extends StopChannelRequest {}
|
|
16
16
|
export interface StopChannelCommandOutput
|
|
17
17
|
extends StopChannelResponse,
|
|
@@ -11,8 +11,10 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaLiveClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
14
|
+
import {
|
|
15
|
+
StopMultiplexRequest,
|
|
16
|
+
StopMultiplexResponse,
|
|
17
|
+
} from "../models/models_2";
|
|
16
18
|
export interface StopMultiplexCommandInput extends StopMultiplexRequest {}
|
|
17
19
|
export interface StopMultiplexCommandOutput
|
|
18
20
|
extends StopMultiplexResponse,
|
|
@@ -326,11 +326,26 @@ export interface AudioLanguageSelection {
|
|
|
326
326
|
export interface AudioPidSelection {
|
|
327
327
|
Pid: number | undefined;
|
|
328
328
|
}
|
|
329
|
+
export declare enum DolbyEProgramSelection {
|
|
330
|
+
ALL_CHANNELS = "ALL_CHANNELS",
|
|
331
|
+
PROGRAM_1 = "PROGRAM_1",
|
|
332
|
+
PROGRAM_2 = "PROGRAM_2",
|
|
333
|
+
PROGRAM_3 = "PROGRAM_3",
|
|
334
|
+
PROGRAM_4 = "PROGRAM_4",
|
|
335
|
+
PROGRAM_5 = "PROGRAM_5",
|
|
336
|
+
PROGRAM_6 = "PROGRAM_6",
|
|
337
|
+
PROGRAM_7 = "PROGRAM_7",
|
|
338
|
+
PROGRAM_8 = "PROGRAM_8",
|
|
339
|
+
}
|
|
340
|
+
export interface AudioDolbyEDecode {
|
|
341
|
+
ProgramSelection: DolbyEProgramSelection | string | undefined;
|
|
342
|
+
}
|
|
329
343
|
export interface AudioTrack {
|
|
330
344
|
Track: number | undefined;
|
|
331
345
|
}
|
|
332
346
|
export interface AudioTrackSelection {
|
|
333
347
|
Tracks: AudioTrack[] | undefined;
|
|
348
|
+
DolbyEDecode?: AudioDolbyEDecode;
|
|
334
349
|
}
|
|
335
350
|
export interface AudioSelectorSettings {
|
|
336
351
|
AudioHlsRenditionSelection?: AudioHlsRenditionSelection;
|
|
@@ -1589,15 +1604,6 @@ export declare enum HlsMode {
|
|
|
1589
1604
|
LIVE = "LIVE",
|
|
1590
1605
|
VOD = "VOD",
|
|
1591
1606
|
}
|
|
1592
|
-
export declare enum HlsOutputSelection {
|
|
1593
|
-
MANIFESTS_AND_SEGMENTS = "MANIFESTS_AND_SEGMENTS",
|
|
1594
|
-
SEGMENTS_ONLY = "SEGMENTS_ONLY",
|
|
1595
|
-
VARIANT_MANIFESTS_AND_SEGMENTS = "VARIANT_MANIFESTS_AND_SEGMENTS",
|
|
1596
|
-
}
|
|
1597
|
-
export declare enum HlsProgramDateTime {
|
|
1598
|
-
EXCLUDE = "EXCLUDE",
|
|
1599
|
-
INCLUDE = "INCLUDE",
|
|
1600
|
-
}
|
|
1601
1607
|
export declare const InputChannelLevelFilterSensitiveLog: (
|
|
1602
1608
|
obj: InputChannelLevel
|
|
1603
1609
|
) => any;
|
|
@@ -1646,6 +1652,9 @@ export declare const AudioLanguageSelectionFilterSensitiveLog: (
|
|
|
1646
1652
|
export declare const AudioPidSelectionFilterSensitiveLog: (
|
|
1647
1653
|
obj: AudioPidSelection
|
|
1648
1654
|
) => any;
|
|
1655
|
+
export declare const AudioDolbyEDecodeFilterSensitiveLog: (
|
|
1656
|
+
obj: AudioDolbyEDecode
|
|
1657
|
+
) => any;
|
|
1649
1658
|
export declare const AudioTrackFilterSensitiveLog: (obj: AudioTrack) => any;
|
|
1650
1659
|
export declare const AudioTrackSelectionFilterSensitiveLog: (
|
|
1651
1660
|
obj: AudioTrackSelection
|
|
@@ -32,8 +32,6 @@ import {
|
|
|
32
32
|
HlsManifestCompression,
|
|
33
33
|
HlsManifestDurationFormat,
|
|
34
34
|
HlsMode,
|
|
35
|
-
HlsOutputSelection,
|
|
36
|
-
HlsProgramDateTime,
|
|
37
35
|
IFrameOnlyPlaylistType,
|
|
38
36
|
Input,
|
|
39
37
|
InputAttachment,
|
|
@@ -80,6 +78,15 @@ import {
|
|
|
80
78
|
ReservationResourceSpecification,
|
|
81
79
|
VpcOutputSettingsDescription,
|
|
82
80
|
} from "./models_0";
|
|
81
|
+
export declare enum HlsOutputSelection {
|
|
82
|
+
MANIFESTS_AND_SEGMENTS = "MANIFESTS_AND_SEGMENTS",
|
|
83
|
+
SEGMENTS_ONLY = "SEGMENTS_ONLY",
|
|
84
|
+
VARIANT_MANIFESTS_AND_SEGMENTS = "VARIANT_MANIFESTS_AND_SEGMENTS",
|
|
85
|
+
}
|
|
86
|
+
export declare enum HlsProgramDateTime {
|
|
87
|
+
EXCLUDE = "EXCLUDE",
|
|
88
|
+
INCLUDE = "INCLUDE",
|
|
89
|
+
}
|
|
83
90
|
export declare enum HlsProgramDateTimeClock {
|
|
84
91
|
INITIALIZE_FROM_OUTPUT_TIMECODE = "INITIALIZE_FROM_OUTPUT_TIMECODE",
|
|
85
92
|
SYSTEM_CLOCK = "SYSTEM_CLOCK",
|
|
@@ -509,9 +516,32 @@ export declare enum FrameCaptureIntervalUnit {
|
|
|
509
516
|
MILLISECONDS = "MILLISECONDS",
|
|
510
517
|
SECONDS = "SECONDS",
|
|
511
518
|
}
|
|
519
|
+
export declare enum TimecodeBurninFontSize {
|
|
520
|
+
EXTRA_SMALL_10 = "EXTRA_SMALL_10",
|
|
521
|
+
LARGE_48 = "LARGE_48",
|
|
522
|
+
MEDIUM_32 = "MEDIUM_32",
|
|
523
|
+
SMALL_16 = "SMALL_16",
|
|
524
|
+
}
|
|
525
|
+
export declare enum TimecodeBurninPosition {
|
|
526
|
+
BOTTOM_CENTER = "BOTTOM_CENTER",
|
|
527
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
528
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT",
|
|
529
|
+
MIDDLE_CENTER = "MIDDLE_CENTER",
|
|
530
|
+
MIDDLE_LEFT = "MIDDLE_LEFT",
|
|
531
|
+
MIDDLE_RIGHT = "MIDDLE_RIGHT",
|
|
532
|
+
TOP_CENTER = "TOP_CENTER",
|
|
533
|
+
TOP_LEFT = "TOP_LEFT",
|
|
534
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
535
|
+
}
|
|
536
|
+
export interface TimecodeBurninSettings {
|
|
537
|
+
FontSize: TimecodeBurninFontSize | string | undefined;
|
|
538
|
+
Position: TimecodeBurninPosition | string | undefined;
|
|
539
|
+
Prefix?: string;
|
|
540
|
+
}
|
|
512
541
|
export interface FrameCaptureSettings {
|
|
513
542
|
CaptureInterval?: number;
|
|
514
543
|
CaptureIntervalUnits?: FrameCaptureIntervalUnit | string;
|
|
544
|
+
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
515
545
|
}
|
|
516
546
|
export declare enum H264AdaptiveQuantization {
|
|
517
547
|
AUTO = "AUTO",
|
|
@@ -723,6 +753,7 @@ export interface H264Settings {
|
|
|
723
753
|
Syntax?: H264Syntax | string;
|
|
724
754
|
TemporalAq?: H264TemporalAq | string;
|
|
725
755
|
TimecodeInsertion?: H264TimecodeInsertionBehavior | string;
|
|
756
|
+
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
726
757
|
}
|
|
727
758
|
export declare enum H265AdaptiveQuantization {
|
|
728
759
|
AUTO = "AUTO",
|
|
@@ -836,6 +867,7 @@ export interface H265Settings {
|
|
|
836
867
|
Slices?: number;
|
|
837
868
|
Tier?: H265Tier | string;
|
|
838
869
|
TimecodeInsertion?: H265TimecodeInsertionBehavior | string;
|
|
870
|
+
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
839
871
|
}
|
|
840
872
|
export declare enum Mpeg2AdaptiveQuantization {
|
|
841
873
|
AUTO = "AUTO",
|
|
@@ -892,6 +924,7 @@ export interface Mpeg2Settings {
|
|
|
892
924
|
ScanType?: Mpeg2ScanType | string;
|
|
893
925
|
SubgopLength?: Mpeg2SubGopLength | string;
|
|
894
926
|
TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior | string;
|
|
927
|
+
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
895
928
|
}
|
|
896
929
|
export interface VideoCodecSettings {
|
|
897
930
|
FrameCaptureSettings?: FrameCaptureSettings;
|
|
@@ -1782,47 +1815,6 @@ export interface StartInputDeviceMaintenanceWindowRequest {
|
|
|
1782
1815
|
InputDeviceId: string | undefined;
|
|
1783
1816
|
}
|
|
1784
1817
|
export interface StartInputDeviceMaintenanceWindowResponse {}
|
|
1785
|
-
export interface StartMultiplexRequest {
|
|
1786
|
-
MultiplexId: string | undefined;
|
|
1787
|
-
}
|
|
1788
|
-
export interface StartMultiplexResponse {
|
|
1789
|
-
Arn?: string;
|
|
1790
|
-
AvailabilityZones?: string[];
|
|
1791
|
-
Destinations?: MultiplexOutputDestination[];
|
|
1792
|
-
Id?: string;
|
|
1793
|
-
MultiplexSettings?: MultiplexSettings;
|
|
1794
|
-
Name?: string;
|
|
1795
|
-
PipelinesRunningCount?: number;
|
|
1796
|
-
ProgramCount?: number;
|
|
1797
|
-
State?: MultiplexState | string;
|
|
1798
|
-
Tags?: Record<string, string>;
|
|
1799
|
-
}
|
|
1800
|
-
export interface StopChannelRequest {
|
|
1801
|
-
ChannelId: string | undefined;
|
|
1802
|
-
}
|
|
1803
|
-
export interface StopChannelResponse {
|
|
1804
|
-
Arn?: string;
|
|
1805
|
-
CdiInputSpecification?: CdiInputSpecification;
|
|
1806
|
-
ChannelClass?: ChannelClass | string;
|
|
1807
|
-
Destinations?: OutputDestination[];
|
|
1808
|
-
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
1809
|
-
EncoderSettings?: EncoderSettings;
|
|
1810
|
-
Id?: string;
|
|
1811
|
-
InputAttachments?: InputAttachment[];
|
|
1812
|
-
InputSpecification?: InputSpecification;
|
|
1813
|
-
LogLevel?: LogLevel | string;
|
|
1814
|
-
Maintenance?: MaintenanceStatus;
|
|
1815
|
-
Name?: string;
|
|
1816
|
-
PipelineDetails?: PipelineDetail[];
|
|
1817
|
-
PipelinesRunningCount?: number;
|
|
1818
|
-
RoleArn?: string;
|
|
1819
|
-
State?: ChannelState | string;
|
|
1820
|
-
Tags?: Record<string, string>;
|
|
1821
|
-
Vpc?: VpcOutputSettingsDescription;
|
|
1822
|
-
}
|
|
1823
|
-
export interface StopMultiplexRequest {
|
|
1824
|
-
MultiplexId: string | undefined;
|
|
1825
|
-
}
|
|
1826
1818
|
export declare const HlsGroupSettingsFilterSensitiveLog: (
|
|
1827
1819
|
obj: HlsGroupSettings
|
|
1828
1820
|
) => any;
|
|
@@ -1937,6 +1929,9 @@ export declare const TransferringInputDeviceSummaryFilterSensitiveLog: (
|
|
|
1937
1929
|
export declare const ValidationErrorFilterSensitiveLog: (
|
|
1938
1930
|
obj: ValidationError
|
|
1939
1931
|
) => any;
|
|
1932
|
+
export declare const TimecodeBurninSettingsFilterSensitiveLog: (
|
|
1933
|
+
obj: TimecodeBurninSettings
|
|
1934
|
+
) => any;
|
|
1940
1935
|
export declare const FrameCaptureSettingsFilterSensitiveLog: (
|
|
1941
1936
|
obj: FrameCaptureSettings
|
|
1942
1937
|
) => any;
|
|
@@ -2353,18 +2348,3 @@ export declare const StartInputDeviceMaintenanceWindowRequestFilterSensitiveLog:
|
|
|
2353
2348
|
export declare const StartInputDeviceMaintenanceWindowResponseFilterSensitiveLog: (
|
|
2354
2349
|
obj: StartInputDeviceMaintenanceWindowResponse
|
|
2355
2350
|
) => any;
|
|
2356
|
-
export declare const StartMultiplexRequestFilterSensitiveLog: (
|
|
2357
|
-
obj: StartMultiplexRequest
|
|
2358
|
-
) => any;
|
|
2359
|
-
export declare const StartMultiplexResponseFilterSensitiveLog: (
|
|
2360
|
-
obj: StartMultiplexResponse
|
|
2361
|
-
) => any;
|
|
2362
|
-
export declare const StopChannelRequestFilterSensitiveLog: (
|
|
2363
|
-
obj: StopChannelRequest
|
|
2364
|
-
) => any;
|
|
2365
|
-
export declare const StopChannelResponseFilterSensitiveLog: (
|
|
2366
|
-
obj: StopChannelResponse
|
|
2367
|
-
) => any;
|
|
2368
|
-
export declare const StopMultiplexRequestFilterSensitiveLog: (
|
|
2369
|
-
obj: StopMultiplexRequest
|
|
2370
|
-
) => any;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
CdiInputSpecification,
|
|
3
3
|
ChannelClass,
|
|
4
|
+
ChannelEgressEndpoint,
|
|
5
|
+
ChannelState,
|
|
4
6
|
DeviceSettingsSyncState,
|
|
5
7
|
DeviceUpdateStatus,
|
|
6
8
|
Input,
|
|
@@ -17,10 +19,12 @@ import {
|
|
|
17
19
|
InputSpecification,
|
|
18
20
|
InputWhitelistRuleCidr,
|
|
19
21
|
LogLevel,
|
|
22
|
+
MaintenanceStatus,
|
|
20
23
|
MediaConnectFlowRequest,
|
|
21
24
|
MultiplexOutputDestination,
|
|
22
25
|
MultiplexState,
|
|
23
26
|
OutputDestination,
|
|
27
|
+
VpcOutputSettingsDescription,
|
|
24
28
|
} from "./models_0";
|
|
25
29
|
import {
|
|
26
30
|
Channel,
|
|
@@ -31,9 +35,51 @@ import {
|
|
|
31
35
|
MultiplexProgram,
|
|
32
36
|
MultiplexProgramSettings,
|
|
33
37
|
MultiplexSettings,
|
|
38
|
+
PipelineDetail,
|
|
34
39
|
RenewalSettings,
|
|
35
40
|
Reservation,
|
|
36
41
|
} from "./models_1";
|
|
42
|
+
export interface StartMultiplexRequest {
|
|
43
|
+
MultiplexId: string | undefined;
|
|
44
|
+
}
|
|
45
|
+
export interface StartMultiplexResponse {
|
|
46
|
+
Arn?: string;
|
|
47
|
+
AvailabilityZones?: string[];
|
|
48
|
+
Destinations?: MultiplexOutputDestination[];
|
|
49
|
+
Id?: string;
|
|
50
|
+
MultiplexSettings?: MultiplexSettings;
|
|
51
|
+
Name?: string;
|
|
52
|
+
PipelinesRunningCount?: number;
|
|
53
|
+
ProgramCount?: number;
|
|
54
|
+
State?: MultiplexState | string;
|
|
55
|
+
Tags?: Record<string, string>;
|
|
56
|
+
}
|
|
57
|
+
export interface StopChannelRequest {
|
|
58
|
+
ChannelId: string | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface StopChannelResponse {
|
|
61
|
+
Arn?: string;
|
|
62
|
+
CdiInputSpecification?: CdiInputSpecification;
|
|
63
|
+
ChannelClass?: ChannelClass | string;
|
|
64
|
+
Destinations?: OutputDestination[];
|
|
65
|
+
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
66
|
+
EncoderSettings?: EncoderSettings;
|
|
67
|
+
Id?: string;
|
|
68
|
+
InputAttachments?: InputAttachment[];
|
|
69
|
+
InputSpecification?: InputSpecification;
|
|
70
|
+
LogLevel?: LogLevel | string;
|
|
71
|
+
Maintenance?: MaintenanceStatus;
|
|
72
|
+
Name?: string;
|
|
73
|
+
PipelineDetails?: PipelineDetail[];
|
|
74
|
+
PipelinesRunningCount?: number;
|
|
75
|
+
RoleArn?: string;
|
|
76
|
+
State?: ChannelState | string;
|
|
77
|
+
Tags?: Record<string, string>;
|
|
78
|
+
Vpc?: VpcOutputSettingsDescription;
|
|
79
|
+
}
|
|
80
|
+
export interface StopMultiplexRequest {
|
|
81
|
+
MultiplexId: string | undefined;
|
|
82
|
+
}
|
|
37
83
|
export interface StopMultiplexResponse {
|
|
38
84
|
Arn?: string;
|
|
39
85
|
AvailabilityZones?: string[];
|
|
@@ -141,6 +187,21 @@ export interface UpdateReservationRequest {
|
|
|
141
187
|
export interface UpdateReservationResponse {
|
|
142
188
|
Reservation?: Reservation;
|
|
143
189
|
}
|
|
190
|
+
export declare const StartMultiplexRequestFilterSensitiveLog: (
|
|
191
|
+
obj: StartMultiplexRequest
|
|
192
|
+
) => any;
|
|
193
|
+
export declare const StartMultiplexResponseFilterSensitiveLog: (
|
|
194
|
+
obj: StartMultiplexResponse
|
|
195
|
+
) => any;
|
|
196
|
+
export declare const StopChannelRequestFilterSensitiveLog: (
|
|
197
|
+
obj: StopChannelRequest
|
|
198
|
+
) => any;
|
|
199
|
+
export declare const StopChannelResponseFilterSensitiveLog: (
|
|
200
|
+
obj: StopChannelResponse
|
|
201
|
+
) => any;
|
|
202
|
+
export declare const StopMultiplexRequestFilterSensitiveLog: (
|
|
203
|
+
obj: StopMultiplexRequest
|
|
204
|
+
) => any;
|
|
144
205
|
export declare const StopMultiplexResponseFilterSensitiveLog: (
|
|
145
206
|
obj: StopMultiplexResponse
|
|
146
207
|
) => any;
|
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.235.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.235.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.234.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.235.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.226.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.226.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.226.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@aws-sdk/middleware-host-header": "3.226.0",
|
|
31
31
|
"@aws-sdk/middleware-logger": "3.226.0",
|
|
32
32
|
"@aws-sdk/middleware-recursion-detection": "3.226.0",
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.235.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.226.0",
|
|
35
35
|
"@aws-sdk/middleware-signing": "3.226.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.226.0",
|