@aws-cdk/aws-medialive-alpha 2.268.0-alpha.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.
Files changed (70) hide show
  1. package/.jsii +60888 -0
  2. package/.jsii.tabl.json.gz +0 -0
  3. package/.warnings.jsii.js +524 -0
  4. package/LICENSE +201 -0
  5. package/NOTICE +2 -0
  6. package/README.md +1297 -0
  7. package/grants.json +27 -0
  8. package/lib/audio-codec-settings.d.ts +901 -0
  9. package/lib/audio-codec-settings.js +1098 -0
  10. package/lib/audio-selector.d.ts +170 -0
  11. package/lib/audio-selector.js +306 -0
  12. package/lib/avail-settings.d.ts +231 -0
  13. package/lib/avail-settings.js +226 -0
  14. package/lib/caption-selector.d.ts +234 -0
  15. package/lib/caption-selector.js +413 -0
  16. package/lib/caption-settings.d.ts +349 -0
  17. package/lib/caption-settings.js +482 -0
  18. package/lib/channel-features.d.ts +106 -0
  19. package/lib/channel-features.js +85 -0
  20. package/lib/channel-placement-group.d.ts +73 -0
  21. package/lib/channel-placement-group.js +132 -0
  22. package/lib/channel.d.ts +687 -0
  23. package/lib/channel.js +1096 -0
  24. package/lib/cluster.d.ts +129 -0
  25. package/lib/cluster.js +158 -0
  26. package/lib/color-correction.d.ts +39 -0
  27. package/lib/color-correction.js +29 -0
  28. package/lib/destinations.d.ts +242 -0
  29. package/lib/destinations.js +455 -0
  30. package/lib/encode-configuration.d.ts +615 -0
  31. package/lib/encode-configuration.js +629 -0
  32. package/lib/enums.d.ts +698 -0
  33. package/lib/enums.js +1045 -0
  34. package/lib/file-location.d.ts +65 -0
  35. package/lib/file-location.js +150 -0
  36. package/lib/framerate.d.ts +31 -0
  37. package/lib/framerate.js +71 -0
  38. package/lib/index.d.ts +26 -0
  39. package/lib/index.js +43 -0
  40. package/lib/input-attachment.d.ts +319 -0
  41. package/lib/input-attachment.js +228 -0
  42. package/lib/input-security-group.d.ts +51 -0
  43. package/lib/input-security-group.js +123 -0
  44. package/lib/input-specification.d.ts +111 -0
  45. package/lib/input-specification.js +181 -0
  46. package/lib/input.d.ts +505 -0
  47. package/lib/input.js +803 -0
  48. package/lib/m2ts-settings.d.ts +421 -0
  49. package/lib/m2ts-settings.js +469 -0
  50. package/lib/m3u8-settings.d.ts +272 -0
  51. package/lib/m3u8-settings.js +304 -0
  52. package/lib/medialive-grants.generated.d.ts +30 -0
  53. package/lib/medialive-grants.generated.js +92 -0
  54. package/lib/network.d.ts +83 -0
  55. package/lib/network.js +132 -0
  56. package/lib/output-group.d.ts +924 -0
  57. package/lib/output-group.js +941 -0
  58. package/lib/outputs.d.ts +304 -0
  59. package/lib/outputs.js +598 -0
  60. package/lib/sdi-source.d.ts +124 -0
  61. package/lib/sdi-source.js +180 -0
  62. package/lib/shared.d.ts +44 -0
  63. package/lib/shared.js +146 -0
  64. package/lib/video-codec-settings.d.ts +1500 -0
  65. package/lib/video-codec-settings.js +1722 -0
  66. package/lib/video-selection.d.ts +92 -0
  67. package/lib/video-selection.js +95 -0
  68. package/package.json +135 -0
  69. package/rosetta/_generated.ts-fixture +6 -0
  70. package/rosetta/default.ts-fixture +21 -0
@@ -0,0 +1,421 @@
1
+ import type { Bitrate, Duration } from 'aws-cdk-lib';
2
+ /** The output bitrate mode of the transport stream. */
3
+ export declare class M2tsRateMode {
4
+ /** Constant bitrate — inserts null packets to fill the configured bitrate. */
5
+ static readonly CBR: M2tsRateMode;
6
+ /** Variable bitrate — the configured bitrate acts as the maximum. */
7
+ static readonly VBR: M2tsRateMode;
8
+ /** A value not yet modelled by AWS CDK. */
9
+ static of(value: string): M2tsRateMode;
10
+ /** The underlying string value passed to CloudFormation. */
11
+ readonly value: string;
12
+ private constructor();
13
+ }
14
+ /** The buffer model used for the transport stream. */
15
+ export declare class M2tsBufferModel {
16
+ /** Uses the multiplex buffer model for accurate interleaving. */
17
+ static readonly MULTIPLEX: M2tsBufferModel;
18
+ /** Can lead to lower latency, but low-memory devices might not be able to play back the stream without interruptions. */
19
+ static readonly NONE: M2tsBufferModel;
20
+ /** A value not yet modelled by AWS CDK. */
21
+ static of(value: string): M2tsBufferModel;
22
+ /** The underlying string value passed to CloudFormation. */
23
+ readonly value: string;
24
+ private constructor();
25
+ }
26
+ /** The buffer model used for Dolby Digital audio. */
27
+ export declare class M2tsAudioBufferModel {
28
+ /** ATSC buffer model. */
29
+ static readonly ATSC: M2tsAudioBufferModel;
30
+ /** DVB buffer model. */
31
+ static readonly DVB: M2tsAudioBufferModel;
32
+ /** A value not yet modelled by AWS CDK. */
33
+ static of(value: string): M2tsAudioBufferModel;
34
+ /** The underlying string value passed to CloudFormation. */
35
+ readonly value: string;
36
+ private constructor();
37
+ }
38
+ /** The stream type used for audio elementary streams. */
39
+ export declare class M2tsAudioStreamType {
40
+ /** ATSC — stream type 0x81 for AC3, 0x87 for EAC3. */
41
+ static readonly ATSC: M2tsAudioStreamType;
42
+ /** DVB — stream type 0x06. */
43
+ static readonly DVB: M2tsAudioStreamType;
44
+ /** A value not yet modelled by AWS CDK. */
45
+ static of(value: string): M2tsAudioStreamType;
46
+ /** The underlying string value passed to CloudFormation. */
47
+ readonly value: string;
48
+ private constructor();
49
+ }
50
+ /** Controls insertion of the Program Clock Reference (PCR). */
51
+ export declare class M2tsPcrControl {
52
+ /** Insert PCR at the configured `pcrPeriod`. */
53
+ static readonly CONFIGURED_PCR_PERIOD: M2tsPcrControl;
54
+ /** Insert a PCR for every Packetized Elementary Stream (PES) header. */
55
+ static readonly PCR_EVERY_PES_PACKET: M2tsPcrControl;
56
+ /** A value not yet modelled by AWS CDK. */
57
+ static of(value: string): M2tsPcrControl;
58
+ /** The underlying string value passed to CloudFormation. */
59
+ readonly value: string;
60
+ private constructor();
61
+ }
62
+ /** Whether to include the ES Rate field in the PES header. */
63
+ export declare class M2tsEsRateInPes {
64
+ /** Exclude the ES Rate field. */
65
+ static readonly EXCLUDE: M2tsEsRateInPes;
66
+ /** Include the ES Rate field. */
67
+ static readonly INCLUDE: M2tsEsRateInPes;
68
+ /** A value not yet modelled by AWS CDK. */
69
+ static of(value: string): M2tsEsRateInPes;
70
+ /** The underlying string value passed to CloudFormation. */
71
+ readonly value: string;
72
+ private constructor();
73
+ }
74
+ /** ARIB-compliant field muxing. */
75
+ export declare class M2tsArib {
76
+ /** Disabled. */
77
+ static readonly DISABLED: M2tsArib;
78
+ /** Enabled — uses ARIB-compliant field muxing and removes the video descriptor. */
79
+ static readonly ENABLED: M2tsArib;
80
+ /** A value not yet modelled by AWS CDK. */
81
+ static of(value: string): M2tsArib;
82
+ /** The underlying string value passed to CloudFormation. */
83
+ readonly value: string;
84
+ private constructor();
85
+ }
86
+ /** How the ARIB Captions PID is selected. */
87
+ export declare class M2tsAribCaptionsPidControl {
88
+ /** Auto-select the PID from unused PIDs. */
89
+ static readonly AUTO: M2tsAribCaptionsPidControl;
90
+ /** Use the configured `aribCaptionsPid`. */
91
+ static readonly USE_CONFIGURED: M2tsAribCaptionsPidControl;
92
+ /** A value not yet modelled by AWS CDK. */
93
+ static of(value: string): M2tsAribCaptionsPidControl;
94
+ /** The underlying string value passed to CloudFormation. */
95
+ readonly value: string;
96
+ private constructor();
97
+ }
98
+ /** KLV data passthrough behavior. */
99
+ export declare class M2tsKlv {
100
+ /** Do not pass KLV data through. */
101
+ static readonly NONE: M2tsKlv;
102
+ /** Pass KLV data from the input through to the output. */
103
+ static readonly PASSTHROUGH: M2tsKlv;
104
+ /** A value not yet modelled by AWS CDK. */
105
+ static of(value: string): M2tsKlv;
106
+ /** The underlying string value passed to CloudFormation. */
107
+ readonly value: string;
108
+ private constructor();
109
+ }
110
+ /** EBIF data passthrough behavior. */
111
+ export declare class M2tsEbif {
112
+ /** Do not pass EBIF data through. */
113
+ static readonly NONE: M2tsEbif;
114
+ /** Pass EBIF data from the input through to the output. */
115
+ static readonly PASSTHROUGH: M2tsEbif;
116
+ /** A value not yet modelled by AWS CDK. */
117
+ static of(value: string): M2tsEbif;
118
+ /** The underlying string value passed to CloudFormation. */
119
+ readonly value: string;
120
+ private constructor();
121
+ }
122
+ /** Nielsen ID3 passthrough behavior. */
123
+ export declare class M2tsNielsenId3Behavior {
124
+ /** Do not insert Nielsen ID3 tags. */
125
+ static readonly NO_PASSTHROUGH: M2tsNielsenId3Behavior;
126
+ /** Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output. */
127
+ static readonly PASSTHROUGH: M2tsNielsenId3Behavior;
128
+ /** A value not yet modelled by AWS CDK. */
129
+ static of(value: string): M2tsNielsenId3Behavior;
130
+ /** The underlying string value passed to CloudFormation. */
131
+ readonly value: string;
132
+ private constructor();
133
+ }
134
+ /** Whether to generate the captionServiceDescriptor in the PMT. */
135
+ export declare class M2tsCcDescriptor {
136
+ /** Disabled. */
137
+ static readonly DISABLED: M2tsCcDescriptor;
138
+ /** Enabled. */
139
+ static readonly ENABLED: M2tsCcDescriptor;
140
+ /** A value not yet modelled by AWS CDK. */
141
+ static of(value: string): M2tsCcDescriptor;
142
+ /** The underlying string value passed to CloudFormation. */
143
+ readonly value: string;
144
+ private constructor();
145
+ }
146
+ /** Behavior when the selected input audio stream is removed from the input. */
147
+ export declare class M2tsAbsentInputAudioBehavior {
148
+ /** Remove the output audio streams from the program. */
149
+ static readonly DROP: M2tsAbsentInputAudioBehavior;
150
+ /** Output encoded silence when not connected to an active input stream. */
151
+ static readonly ENCODE_SILENCE: M2tsAbsentInputAudioBehavior;
152
+ /** A value not yet modelled by AWS CDK. */
153
+ static of(value: string): M2tsAbsentInputAudioBehavior;
154
+ /** The underlying string value passed to CloudFormation. */
155
+ readonly value: string;
156
+ private constructor();
157
+ }
158
+ /** Controls placement of audio Encoder Boundary Point (EBP) markers. */
159
+ export declare class M2tsEbpAudioInterval {
160
+ /** Add audio EBP markers to partitions 3 and 4 at a fixed interval. */
161
+ static readonly VIDEO_AND_FIXED_INTERVALS: M2tsEbpAudioInterval;
162
+ /** Follow the video EBP interval. */
163
+ static readonly VIDEO_INTERVAL: M2tsEbpAudioInterval;
164
+ /** A value not yet modelled by AWS CDK. */
165
+ static of(value: string): M2tsEbpAudioInterval;
166
+ /** The underlying string value passed to CloudFormation. */
167
+ readonly value: string;
168
+ private constructor();
169
+ }
170
+ /** Controls placement of EBP markers on audio PIDs. */
171
+ export declare class M2tsEbpPlacement {
172
+ /** Place EBP markers on the video PID and all audio PIDs. */
173
+ static readonly VIDEO_AND_AUDIO_PIDS: M2tsEbpPlacement;
174
+ /** Place EBP markers only on the video PID. */
175
+ static readonly VIDEO_PID: M2tsEbpPlacement;
176
+ /** A value not yet modelled by AWS CDK. */
177
+ static of(value: string): M2tsEbpPlacement;
178
+ /** The underlying string value passed to CloudFormation. */
179
+ readonly value: string;
180
+ private constructor();
181
+ }
182
+ /** SCTE-35 passthrough behavior. */
183
+ export declare class M2tsScte35Control {
184
+ /** Do not pass SCTE-35 signals through. */
185
+ static readonly NONE: M2tsScte35Control;
186
+ /** Pass SCTE-35 signals from the input through to the output. */
187
+ static readonly PASSTHROUGH: M2tsScte35Control;
188
+ /** A value not yet modelled by AWS CDK. */
189
+ static of(value: string): M2tsScte35Control;
190
+ /** The underlying string value passed to CloudFormation. */
191
+ readonly value: string;
192
+ private constructor();
193
+ }
194
+ /** The type of segmentation markers to insert. */
195
+ export declare class M2tsSegmentationMarkers {
196
+ /** No segmentation markers. */
197
+ static readonly NONE: M2tsSegmentationMarkers;
198
+ /** Set the Random Access Indicator (RAI) bit in the adaptation field. */
199
+ static readonly RAI_SEGSTART: M2tsSegmentationMarkers;
200
+ /** Set the RAI bit and add the current timecode in the private data bytes. */
201
+ static readonly RAI_ADAPT: M2tsSegmentationMarkers;
202
+ /** Insert PAT and PMT tables at the start of segments. */
203
+ static readonly PSI_SEGSTART: M2tsSegmentationMarkers;
204
+ /** Add Encoder Boundary Point information (OC-SP-EBP-I01-130118). */
205
+ static readonly EBP: M2tsSegmentationMarkers;
206
+ /** Add Encoder Boundary Point information using the legacy proprietary format. */
207
+ static readonly EBP_LEGACY: M2tsSegmentationMarkers;
208
+ /** A value not yet modelled by AWS CDK. */
209
+ static of(value: string): M2tsSegmentationMarkers;
210
+ /** The underlying string value passed to CloudFormation. */
211
+ readonly value: string;
212
+ private constructor();
213
+ }
214
+ /** How segmentation markers respond to avails truncating a segment. */
215
+ export declare class M2tsSegmentationStyle {
216
+ /** Do not reset the segmentation cadence after a truncated segment. */
217
+ static readonly MAINTAIN_CADENCE: M2tsSegmentationStyle;
218
+ /** Reset the segmentation cadence after a truncated segment. */
219
+ static readonly RESET_CADENCE: M2tsSegmentationStyle;
220
+ /** A value not yet modelled by AWS CDK. */
221
+ static of(value: string): M2tsSegmentationStyle;
222
+ /** The underlying string value passed to CloudFormation. */
223
+ readonly value: string;
224
+ private constructor();
225
+ }
226
+ /** Timed metadata passthrough behavior. */
227
+ export declare class M2tsTimedMetadataBehavior {
228
+ /** Do not pass timed metadata through. */
229
+ static readonly NO_PASSTHROUGH: M2tsTimedMetadataBehavior;
230
+ /** Pass timed metadata from the input through to the output. */
231
+ static readonly PASSTHROUGH: M2tsTimedMetadataBehavior;
232
+ /** A value not yet modelled by AWS CDK. */
233
+ static of(value: string): M2tsTimedMetadataBehavior;
234
+ /** The underlying string value passed to CloudFormation. */
235
+ readonly value: string;
236
+ private constructor();
237
+ }
238
+ /** How DVB Service Description Table (SDT) information is inserted. */
239
+ export declare class DvbSdtOutputMode {
240
+ /** Copy SDT information from the input stream to the output stream. */
241
+ static readonly SDT_FOLLOW: DvbSdtOutputMode;
242
+ /** Copy SDT from the input if present, otherwise use the configured values. */
243
+ static readonly SDT_FOLLOW_IF_PRESENT: DvbSdtOutputMode;
244
+ /** Use the user-defined SDT information. */
245
+ static readonly SDT_MANUAL: DvbSdtOutputMode;
246
+ /** Do not include SDT information in the output. */
247
+ static readonly SDT_NONE: DvbSdtOutputMode;
248
+ /** A value not yet modelled by AWS CDK. */
249
+ static of(value: string): DvbSdtOutputMode;
250
+ /** The underlying string value passed to CloudFormation. */
251
+ readonly value: string;
252
+ private constructor();
253
+ }
254
+ /** Settings for inserting a DVB Network Information Table (NIT). */
255
+ export interface DvbNitSettings {
256
+ /**
257
+ * The numeric value placed in the Network Information Table (NIT).
258
+ * @default - no network ID
259
+ */
260
+ readonly networkId?: number;
261
+ /**
262
+ * The network name placed in the networkNameDescriptor inside the NIT (max 256 characters).
263
+ * @default - no network name
264
+ */
265
+ readonly networkName?: string;
266
+ /**
267
+ * The interval between instances of this table in the output transport stream.
268
+ * @default - service default
269
+ */
270
+ readonly repInterval?: Duration;
271
+ }
272
+ /** Settings for inserting a DVB Service Description Table (SDT). */
273
+ export interface DvbSdtSettings {
274
+ /**
275
+ * The method of inserting SDT information into the output stream.
276
+ * @default - service default
277
+ */
278
+ readonly outputSdt?: DvbSdtOutputMode;
279
+ /**
280
+ * The interval between instances of this table in the output transport stream.
281
+ * @default - service default
282
+ */
283
+ readonly repInterval?: Duration;
284
+ /**
285
+ * The service name placed in the serviceDescriptor in the SDT (max 256 characters).
286
+ * @default - no service name
287
+ */
288
+ readonly serviceName?: string;
289
+ /**
290
+ * The service provider name placed in the serviceDescriptor in the SDT (max 256 characters).
291
+ * @default - no service provider name
292
+ */
293
+ readonly serviceProviderName?: string;
294
+ }
295
+ /** Settings for inserting a DVB Time and Date Table (TDT). */
296
+ export interface DvbTdtSettings {
297
+ /**
298
+ * The interval between instances of this table in the output transport stream.
299
+ * @default - service default
300
+ */
301
+ readonly repInterval?: Duration;
302
+ }
303
+ /**
304
+ * Properties for MPEG-2 transport stream (M2TS) container settings.
305
+ *
306
+ * Used by the UDP, Archive, SRT, and MediaConnect Router output groups. All properties are
307
+ * optional; omit them to use MediaLive's service defaults.
308
+ *
309
+ * PID properties accept a decimal or hexadecimal value (and, where noted, ranges or comma-separated
310
+ * lists). Each PID must be in the range 32 (0x20)..8182 (0x1ff6).
311
+ *
312
+ * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-m2tssettings.html
313
+ */
314
+ export interface M2tsSettingsProps {
315
+ /** Behavior when the selected input audio stream is removed. @default - service default */
316
+ readonly absentInputAudioBehavior?: M2tsAbsentInputAudioBehavior;
317
+ /** ARIB-compliant field muxing. @default - service default */
318
+ readonly arib?: M2tsArib;
319
+ /** The PID for ARIB Captions. @default - service default */
320
+ readonly aribCaptionsPid?: string;
321
+ /** How the ARIB Captions PID is selected. @default - service default */
322
+ readonly aribCaptionsPidControl?: M2tsAribCaptionsPidControl;
323
+ /** The buffer model for Dolby Digital audio. @default - service default */
324
+ readonly audioBufferModel?: M2tsAudioBufferModel;
325
+ /** The number of audio frames to insert per PES packet. @default - service default */
326
+ readonly audioFramesPerPes?: number;
327
+ /** The PID(s) of the elementary audio streams (ranges/comma-separated allowed). @default - service default */
328
+ readonly audioPids?: string;
329
+ /** The stream type used for audio elementary streams. @default - service default */
330
+ readonly audioStreamType?: M2tsAudioStreamType;
331
+ /** The output bitrate of the transport stream. Set to 0 bps to let the muxer choose. @default - muxer chooses */
332
+ readonly bitrate?: Bitrate;
333
+ /** The transport stream buffer model. @default - service default */
334
+ readonly bufferModel?: M2tsBufferModel;
335
+ /** Whether to generate the captionServiceDescriptor in the PMT. @default - service default */
336
+ readonly ccDescriptor?: M2tsCcDescriptor;
337
+ /** DVB Network Information Table (NIT) settings. @default - no NIT */
338
+ readonly dvbNitSettings?: DvbNitSettings;
339
+ /** DVB Service Description Table (SDT) settings. @default - no SDT */
340
+ readonly dvbSdtSettings?: DvbSdtSettings;
341
+ /** The PID(s) for input source DVB Subtitle data (ranges/comma-separated allowed). @default - service default */
342
+ readonly dvbSubPids?: string;
343
+ /** DVB Time and Date Table (TDT) settings. @default - no TDT */
344
+ readonly dvbTdtSettings?: DvbTdtSettings;
345
+ /** The PID for input source DVB Teletext data. @default - service default */
346
+ readonly dvbTeletextPid?: string;
347
+ /** EBIF data passthrough behavior. @default - service default */
348
+ readonly ebif?: M2tsEbif;
349
+ /** Placement of audio EBP markers. @default - service default */
350
+ readonly ebpAudioInterval?: M2tsEbpAudioInterval;
351
+ /** The EBP lookahead interval. @default - service default */
352
+ readonly ebpLookahead?: Duration;
353
+ /** Placement of EBP markers on audio PIDs. @default - service default */
354
+ readonly ebpPlacement?: M2tsEbpPlacement;
355
+ /** Whether to include the ES Rate field in the PES header. @default - service default */
356
+ readonly esRateInPes?: M2tsEsRateInPes;
357
+ /** The PID for input source ETV Platform data. @default - service default */
358
+ readonly etvPlatformPid?: string;
359
+ /** The PID for input source ETV Signal data. @default - service default */
360
+ readonly etvSignalPid?: string;
361
+ /** The length of each fragment (used only with EBP markers). @default - service default */
362
+ readonly fragmentTime?: Duration;
363
+ /** KLV data passthrough behavior. @default - service default */
364
+ readonly klv?: M2tsKlv;
365
+ /** The PID(s) for input source KLV data (ranges/comma-separated allowed). @default - service default */
366
+ readonly klvDataPids?: string;
367
+ /** Nielsen ID3 passthrough behavior. @default - service default */
368
+ readonly nielsenId3Behavior?: M2tsNielsenId3Behavior;
369
+ /** The bitrate of extra null packets to insert into the transport stream. @default - no null packets */
370
+ readonly nullPacketBitrate?: Bitrate;
371
+ /** The interval between PAT instances (0, or 10ms..1000ms). @default - service default */
372
+ readonly patInterval?: Duration;
373
+ /** Controls insertion of the Program Clock Reference (PCR). @default - service default */
374
+ readonly pcrControl?: M2tsPcrControl;
375
+ /** The maximum interval between Program Clock References (PCRs). @default - service default */
376
+ readonly pcrPeriod?: Duration;
377
+ /** The PID of the Program Clock Reference. @default - same as the video PID */
378
+ readonly pcrPid?: string;
379
+ /** The interval between PMT instances (0, or 10ms..1000ms). @default - service default */
380
+ readonly pmtInterval?: Duration;
381
+ /** The PID for the Program Map Table (PMT). @default - service default */
382
+ readonly pmtPid?: string;
383
+ /** The value of the program number field in the PMT. @default - service default */
384
+ readonly programNum?: number;
385
+ /** The transport stream bitrate mode (CBR/VBR). @default - service default */
386
+ readonly rateMode?: M2tsRateMode;
387
+ /** The PID(s) for input source SCTE-27 data (ranges/comma-separated allowed). @default - service default */
388
+ readonly scte27Pids?: string;
389
+ /** SCTE-35 passthrough behavior. @default - service default */
390
+ readonly scte35Control?: M2tsScte35Control;
391
+ /** The PID of the SCTE-35 stream. @default - service default */
392
+ readonly scte35Pid?: string;
393
+ /** The SCTE-35 preroll pullup interval. @default - service default */
394
+ readonly scte35PrerollPullup?: Duration;
395
+ /** The type of segmentation markers to insert. @default - service default */
396
+ readonly segmentationMarkers?: M2tsSegmentationMarkers;
397
+ /** How segmentation markers respond to avails. @default - service default */
398
+ readonly segmentationStyle?: M2tsSegmentationStyle;
399
+ /** The length of each segment (required unless `segmentationMarkers` is NONE). @default - service default */
400
+ readonly segmentationTime?: Duration;
401
+ /** Timed metadata passthrough behavior. @default - service default */
402
+ readonly timedMetadataBehavior?: M2tsTimedMetadataBehavior;
403
+ /** The PID of the timed metadata stream. @default - service default */
404
+ readonly timedMetadataPid?: string;
405
+ /** The value of the transport stream ID field in the PMT. @default - service default */
406
+ readonly transportStreamId?: number;
407
+ /** The PID of the elementary video stream. @default - service default */
408
+ readonly videoPid?: string;
409
+ }
410
+ /**
411
+ * MPEG-2 transport stream (M2TS) container settings for an MPEG-TS output.
412
+ *
413
+ * Use `M2tsSettings.of()` to configure the transport stream produced by a UDP, Archive, SRT, or
414
+ * MediaConnect Router output. Omitting it entirely uses MediaLive's service defaults.
415
+ */
416
+ export declare class M2tsSettings {
417
+ private readonly props;
418
+ /** Create M2TS container settings. */
419
+ static of(props: M2tsSettingsProps): M2tsSettings;
420
+ private constructor();
421
+ }