@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.
- package/.jsii +60888 -0
- package/.jsii.tabl.json.gz +0 -0
- package/.warnings.jsii.js +524 -0
- package/LICENSE +201 -0
- package/NOTICE +2 -0
- package/README.md +1297 -0
- package/grants.json +27 -0
- package/lib/audio-codec-settings.d.ts +901 -0
- package/lib/audio-codec-settings.js +1098 -0
- package/lib/audio-selector.d.ts +170 -0
- package/lib/audio-selector.js +306 -0
- package/lib/avail-settings.d.ts +231 -0
- package/lib/avail-settings.js +226 -0
- package/lib/caption-selector.d.ts +234 -0
- package/lib/caption-selector.js +413 -0
- package/lib/caption-settings.d.ts +349 -0
- package/lib/caption-settings.js +482 -0
- package/lib/channel-features.d.ts +106 -0
- package/lib/channel-features.js +85 -0
- package/lib/channel-placement-group.d.ts +73 -0
- package/lib/channel-placement-group.js +132 -0
- package/lib/channel.d.ts +687 -0
- package/lib/channel.js +1096 -0
- package/lib/cluster.d.ts +129 -0
- package/lib/cluster.js +158 -0
- package/lib/color-correction.d.ts +39 -0
- package/lib/color-correction.js +29 -0
- package/lib/destinations.d.ts +242 -0
- package/lib/destinations.js +455 -0
- package/lib/encode-configuration.d.ts +615 -0
- package/lib/encode-configuration.js +629 -0
- package/lib/enums.d.ts +698 -0
- package/lib/enums.js +1045 -0
- package/lib/file-location.d.ts +65 -0
- package/lib/file-location.js +150 -0
- package/lib/framerate.d.ts +31 -0
- package/lib/framerate.js +71 -0
- package/lib/index.d.ts +26 -0
- package/lib/index.js +43 -0
- package/lib/input-attachment.d.ts +319 -0
- package/lib/input-attachment.js +228 -0
- package/lib/input-security-group.d.ts +51 -0
- package/lib/input-security-group.js +123 -0
- package/lib/input-specification.d.ts +111 -0
- package/lib/input-specification.js +181 -0
- package/lib/input.d.ts +505 -0
- package/lib/input.js +803 -0
- package/lib/m2ts-settings.d.ts +421 -0
- package/lib/m2ts-settings.js +469 -0
- package/lib/m3u8-settings.d.ts +272 -0
- package/lib/m3u8-settings.js +304 -0
- package/lib/medialive-grants.generated.d.ts +30 -0
- package/lib/medialive-grants.generated.js +92 -0
- package/lib/network.d.ts +83 -0
- package/lib/network.js +132 -0
- package/lib/output-group.d.ts +924 -0
- package/lib/output-group.js +941 -0
- package/lib/outputs.d.ts +304 -0
- package/lib/outputs.js +598 -0
- package/lib/sdi-source.d.ts +124 -0
- package/lib/sdi-source.js +180 -0
- package/lib/shared.d.ts +44 -0
- package/lib/shared.js +146 -0
- package/lib/video-codec-settings.d.ts +1500 -0
- package/lib/video-codec-settings.js +1722 -0
- package/lib/video-selection.d.ts +92 -0
- package/lib/video-selection.js +95 -0
- package/package.json +135 -0
- package/rosetta/_generated.ts-fixture +6 -0
- package/rosetta/default.ts-fixture +21 -0
package/lib/enums.d.ts
ADDED
|
@@ -0,0 +1,698 @@
|
|
|
1
|
+
/** HLS output mode. */
|
|
2
|
+
export declare class HlsMode {
|
|
3
|
+
/** Live mode — older segments are removed */
|
|
4
|
+
static readonly LIVE: HlsMode;
|
|
5
|
+
/** VOD mode — all segments are kept */
|
|
6
|
+
static readonly VOD: HlsMode;
|
|
7
|
+
/** A value not yet modelled by AWS CDK. */
|
|
8
|
+
static of(value: string): HlsMode;
|
|
9
|
+
/** The underlying string value passed to CloudFormation. */
|
|
10
|
+
readonly value: string;
|
|
11
|
+
private constructor();
|
|
12
|
+
}
|
|
13
|
+
/** HLS input loss action. */
|
|
14
|
+
export declare class HlsInputLossAction {
|
|
15
|
+
/** Emit output with slate/black frames */
|
|
16
|
+
static readonly EMIT_OUTPUT: HlsInputLossAction;
|
|
17
|
+
/** Pause the output */
|
|
18
|
+
static readonly PAUSE_OUTPUT: HlsInputLossAction;
|
|
19
|
+
/** A value not yet modelled by AWS CDK. */
|
|
20
|
+
static of(value: string): HlsInputLossAction;
|
|
21
|
+
/** The underlying string value passed to CloudFormation. */
|
|
22
|
+
readonly value: string;
|
|
23
|
+
private constructor();
|
|
24
|
+
}
|
|
25
|
+
/** HLS client cache control. */
|
|
26
|
+
export declare class HlsClientCache {
|
|
27
|
+
/** Enable client caching */
|
|
28
|
+
static readonly ENABLED: HlsClientCache;
|
|
29
|
+
/** Disable client caching */
|
|
30
|
+
static readonly DISABLED: HlsClientCache;
|
|
31
|
+
/** A value not yet modelled by AWS CDK. */
|
|
32
|
+
static of(value: string): HlsClientCache;
|
|
33
|
+
/** The underlying string value passed to CloudFormation. */
|
|
34
|
+
readonly value: string;
|
|
35
|
+
private constructor();
|
|
36
|
+
}
|
|
37
|
+
/** HLS codec specification. */
|
|
38
|
+
export declare class HlsCodecSpecification {
|
|
39
|
+
/** RFC 4281 */
|
|
40
|
+
static readonly RFC_4281: HlsCodecSpecification;
|
|
41
|
+
/** RFC 6381 */
|
|
42
|
+
static readonly RFC_6381: HlsCodecSpecification;
|
|
43
|
+
/** A value not yet modelled by AWS CDK. */
|
|
44
|
+
static of(value: string): HlsCodecSpecification;
|
|
45
|
+
/** The underlying string value passed to CloudFormation. */
|
|
46
|
+
readonly value: string;
|
|
47
|
+
private constructor();
|
|
48
|
+
}
|
|
49
|
+
/** HLS directory structure. */
|
|
50
|
+
export declare class HlsDirectoryStructure {
|
|
51
|
+
/** Single directory */
|
|
52
|
+
static readonly SINGLE_DIRECTORY: HlsDirectoryStructure;
|
|
53
|
+
/** Subdirectory per stream */
|
|
54
|
+
static readonly SUBDIRECTORY_PER_STREAM: HlsDirectoryStructure;
|
|
55
|
+
/** A value not yet modelled by AWS CDK. */
|
|
56
|
+
static of(value: string): HlsDirectoryStructure;
|
|
57
|
+
/** The underlying string value passed to CloudFormation. */
|
|
58
|
+
readonly value: string;
|
|
59
|
+
private constructor();
|
|
60
|
+
}
|
|
61
|
+
/** HLS discontinuity tags. */
|
|
62
|
+
export declare class HlsDiscontinuityTags {
|
|
63
|
+
/** Insert discontinuity tags */
|
|
64
|
+
static readonly INSERT: HlsDiscontinuityTags;
|
|
65
|
+
/** Never insert discontinuity tags */
|
|
66
|
+
static readonly NEVER_INSERT: HlsDiscontinuityTags;
|
|
67
|
+
/** A value not yet modelled by AWS CDK. */
|
|
68
|
+
static of(value: string): HlsDiscontinuityTags;
|
|
69
|
+
/** The underlying string value passed to CloudFormation. */
|
|
70
|
+
readonly value: string;
|
|
71
|
+
private constructor();
|
|
72
|
+
}
|
|
73
|
+
/** HLS encryption type. */
|
|
74
|
+
export declare class HlsEncryptionType {
|
|
75
|
+
/** AES-128 encryption */
|
|
76
|
+
static readonly AES128: HlsEncryptionType;
|
|
77
|
+
/** Sample AES encryption */
|
|
78
|
+
static readonly SAMPLE_AES: HlsEncryptionType;
|
|
79
|
+
/** A value not yet modelled by AWS CDK. */
|
|
80
|
+
static of(value: string): HlsEncryptionType;
|
|
81
|
+
/** The underlying string value passed to CloudFormation. */
|
|
82
|
+
readonly value: string;
|
|
83
|
+
private constructor();
|
|
84
|
+
}
|
|
85
|
+
/** HLS ID3 segment tagging state. */
|
|
86
|
+
export declare class HlsId3SegmentTaggingState {
|
|
87
|
+
/** Disabled */
|
|
88
|
+
static readonly DISABLED: HlsId3SegmentTaggingState;
|
|
89
|
+
/** Enabled */
|
|
90
|
+
static readonly ENABLED: HlsId3SegmentTaggingState;
|
|
91
|
+
/** A value not yet modelled by AWS CDK. */
|
|
92
|
+
static of(value: string): HlsId3SegmentTaggingState;
|
|
93
|
+
/** The underlying string value passed to CloudFormation. */
|
|
94
|
+
readonly value: string;
|
|
95
|
+
private constructor();
|
|
96
|
+
}
|
|
97
|
+
/** HLS I-frame only playlists. */
|
|
98
|
+
export declare class HlsIFrameOnlyPlaylists {
|
|
99
|
+
/** Disabled */
|
|
100
|
+
static readonly DISABLED: HlsIFrameOnlyPlaylists;
|
|
101
|
+
/** Standard */
|
|
102
|
+
static readonly STANDARD: HlsIFrameOnlyPlaylists;
|
|
103
|
+
/** A value not yet modelled by AWS CDK. */
|
|
104
|
+
static of(value: string): HlsIFrameOnlyPlaylists;
|
|
105
|
+
/** The underlying string value passed to CloudFormation. */
|
|
106
|
+
readonly value: string;
|
|
107
|
+
private constructor();
|
|
108
|
+
}
|
|
109
|
+
/** HLS incomplete segment behavior. */
|
|
110
|
+
export declare class HlsIncompleteSegmentBehavior {
|
|
111
|
+
/** Auto */
|
|
112
|
+
static readonly AUTO: HlsIncompleteSegmentBehavior;
|
|
113
|
+
/** Suppress */
|
|
114
|
+
static readonly SUPPRESS: HlsIncompleteSegmentBehavior;
|
|
115
|
+
/** A value not yet modelled by AWS CDK. */
|
|
116
|
+
static of(value: string): HlsIncompleteSegmentBehavior;
|
|
117
|
+
/** The underlying string value passed to CloudFormation. */
|
|
118
|
+
readonly value: string;
|
|
119
|
+
private constructor();
|
|
120
|
+
}
|
|
121
|
+
/** HLS IV in manifest. */
|
|
122
|
+
export declare class HlsIvInManifest {
|
|
123
|
+
/** Include IV in manifest */
|
|
124
|
+
static readonly INCLUDE: HlsIvInManifest;
|
|
125
|
+
/** Exclude IV from manifest */
|
|
126
|
+
static readonly EXCLUDE: HlsIvInManifest;
|
|
127
|
+
/** A value not yet modelled by AWS CDK. */
|
|
128
|
+
static of(value: string): HlsIvInManifest;
|
|
129
|
+
/** The underlying string value passed to CloudFormation. */
|
|
130
|
+
readonly value: string;
|
|
131
|
+
private constructor();
|
|
132
|
+
}
|
|
133
|
+
/** HLS IV source. */
|
|
134
|
+
export declare class HlsIvSource {
|
|
135
|
+
/** IV follows segment number */
|
|
136
|
+
static readonly FOLLOWS_SEGMENT_NUMBER: HlsIvSource;
|
|
137
|
+
/** Explicit IV */
|
|
138
|
+
static readonly EXPLICIT: HlsIvSource;
|
|
139
|
+
/** A value not yet modelled by AWS CDK. */
|
|
140
|
+
static of(value: string): HlsIvSource;
|
|
141
|
+
/** The underlying string value passed to CloudFormation. */
|
|
142
|
+
readonly value: string;
|
|
143
|
+
private constructor();
|
|
144
|
+
}
|
|
145
|
+
/** HLS manifest compression. */
|
|
146
|
+
export declare class HlsManifestCompression {
|
|
147
|
+
/** No compression */
|
|
148
|
+
static readonly NONE: HlsManifestCompression;
|
|
149
|
+
/** Gzip compression */
|
|
150
|
+
static readonly GZIP: HlsManifestCompression;
|
|
151
|
+
/** A value not yet modelled by AWS CDK. */
|
|
152
|
+
static of(value: string): HlsManifestCompression;
|
|
153
|
+
/** The underlying string value passed to CloudFormation. */
|
|
154
|
+
readonly value: string;
|
|
155
|
+
private constructor();
|
|
156
|
+
}
|
|
157
|
+
/** HLS manifest duration format. */
|
|
158
|
+
export declare class HlsManifestDurationFormat {
|
|
159
|
+
/** Floating point */
|
|
160
|
+
static readonly FLOATING_POINT: HlsManifestDurationFormat;
|
|
161
|
+
/** Integer */
|
|
162
|
+
static readonly INTEGER: HlsManifestDurationFormat;
|
|
163
|
+
/** A value not yet modelled by AWS CDK. */
|
|
164
|
+
static of(value: string): HlsManifestDurationFormat;
|
|
165
|
+
/** The underlying string value passed to CloudFormation. */
|
|
166
|
+
readonly value: string;
|
|
167
|
+
private constructor();
|
|
168
|
+
}
|
|
169
|
+
/** HLS output selection. */
|
|
170
|
+
export declare class HlsOutputSelection {
|
|
171
|
+
/** Manifests and segments */
|
|
172
|
+
static readonly MANIFESTS_AND_SEGMENTS: HlsOutputSelection;
|
|
173
|
+
/** Segments only */
|
|
174
|
+
static readonly SEGMENTS_ONLY: HlsOutputSelection;
|
|
175
|
+
/** Variant manifests and segments */
|
|
176
|
+
static readonly VARIANT_MANIFESTS_AND_SEGMENTS: HlsOutputSelection;
|
|
177
|
+
/** A value not yet modelled by AWS CDK. */
|
|
178
|
+
static of(value: string): HlsOutputSelection;
|
|
179
|
+
/** The underlying string value passed to CloudFormation. */
|
|
180
|
+
readonly value: string;
|
|
181
|
+
private constructor();
|
|
182
|
+
}
|
|
183
|
+
/** HLS program date time. */
|
|
184
|
+
export declare class HlsProgramDateTime {
|
|
185
|
+
/** Include */
|
|
186
|
+
static readonly INCLUDE: HlsProgramDateTime;
|
|
187
|
+
/** Exclude */
|
|
188
|
+
static readonly EXCLUDE: HlsProgramDateTime;
|
|
189
|
+
/** A value not yet modelled by AWS CDK. */
|
|
190
|
+
static of(value: string): HlsProgramDateTime;
|
|
191
|
+
/** The underlying string value passed to CloudFormation. */
|
|
192
|
+
readonly value: string;
|
|
193
|
+
private constructor();
|
|
194
|
+
}
|
|
195
|
+
/** HLS program date time clock. */
|
|
196
|
+
export declare class HlsProgramDateTimeClock {
|
|
197
|
+
/** Initialize from output timecode */
|
|
198
|
+
static readonly INITIALIZE_FROM_OUTPUT_TIMECODE: HlsProgramDateTimeClock;
|
|
199
|
+
/** System clock */
|
|
200
|
+
static readonly SYSTEM_CLOCK: HlsProgramDateTimeClock;
|
|
201
|
+
/** A value not yet modelled by AWS CDK. */
|
|
202
|
+
static of(value: string): HlsProgramDateTimeClock;
|
|
203
|
+
/** The underlying string value passed to CloudFormation. */
|
|
204
|
+
readonly value: string;
|
|
205
|
+
private constructor();
|
|
206
|
+
}
|
|
207
|
+
/** HLS redundant manifest. */
|
|
208
|
+
export declare class HlsRedundantManifest {
|
|
209
|
+
/** Disabled */
|
|
210
|
+
static readonly DISABLED: HlsRedundantManifest;
|
|
211
|
+
/** Enabled */
|
|
212
|
+
static readonly ENABLED: HlsRedundantManifest;
|
|
213
|
+
/** A value not yet modelled by AWS CDK. */
|
|
214
|
+
static of(value: string): HlsRedundantManifest;
|
|
215
|
+
/** The underlying string value passed to CloudFormation. */
|
|
216
|
+
readonly value: string;
|
|
217
|
+
private constructor();
|
|
218
|
+
}
|
|
219
|
+
/** HLS segmentation mode. */
|
|
220
|
+
export declare class HlsSegmentationMode {
|
|
221
|
+
/** Use input segmentation */
|
|
222
|
+
static readonly USE_INPUT_SEGMENTATION: HlsSegmentationMode;
|
|
223
|
+
/** Use segment duration */
|
|
224
|
+
static readonly USE_SEGMENT_DURATION: HlsSegmentationMode;
|
|
225
|
+
/** A value not yet modelled by AWS CDK. */
|
|
226
|
+
static of(value: string): HlsSegmentationMode;
|
|
227
|
+
/** The underlying string value passed to CloudFormation. */
|
|
228
|
+
readonly value: string;
|
|
229
|
+
private constructor();
|
|
230
|
+
}
|
|
231
|
+
/** HLS stream inf resolution. */
|
|
232
|
+
export declare class HlsStreamInfResolution {
|
|
233
|
+
/** Include */
|
|
234
|
+
static readonly INCLUDE: HlsStreamInfResolution;
|
|
235
|
+
/** Exclude */
|
|
236
|
+
static readonly EXCLUDE: HlsStreamInfResolution;
|
|
237
|
+
/** A value not yet modelled by AWS CDK. */
|
|
238
|
+
static of(value: string): HlsStreamInfResolution;
|
|
239
|
+
/** The underlying string value passed to CloudFormation. */
|
|
240
|
+
readonly value: string;
|
|
241
|
+
private constructor();
|
|
242
|
+
}
|
|
243
|
+
/** HLS caption language setting. */
|
|
244
|
+
export declare class HlsCaptionLanguageSetting {
|
|
245
|
+
/** Insert */
|
|
246
|
+
static readonly INSERT: HlsCaptionLanguageSetting;
|
|
247
|
+
/** None */
|
|
248
|
+
static readonly NONE: HlsCaptionLanguageSetting;
|
|
249
|
+
/** Omit */
|
|
250
|
+
static readonly OMIT: HlsCaptionLanguageSetting;
|
|
251
|
+
/** A value not yet modelled by AWS CDK. */
|
|
252
|
+
static of(value: string): HlsCaptionLanguageSetting;
|
|
253
|
+
/** The underlying string value passed to CloudFormation. */
|
|
254
|
+
readonly value: string;
|
|
255
|
+
private constructor();
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
* Whether MediaPackage sets a MediaPackage V2 audio rendition as default / auto-select in the HLS
|
|
259
|
+
* manifest. Across all renditions: at most one may be `YES`; not all may be `NO`.
|
|
260
|
+
*/
|
|
261
|
+
export declare class MediaPackageV2HlsSetting {
|
|
262
|
+
/** Set this rendition as default / auto-select. */
|
|
263
|
+
static readonly YES: MediaPackageV2HlsSetting;
|
|
264
|
+
/** Do not set this rendition as default / auto-select. */
|
|
265
|
+
static readonly NO: MediaPackageV2HlsSetting;
|
|
266
|
+
/** Let MediaPackage decide for this rendition. */
|
|
267
|
+
static readonly OMIT: MediaPackageV2HlsSetting;
|
|
268
|
+
/** A value not yet modelled by AWS CDK. */
|
|
269
|
+
static of(value: string): MediaPackageV2HlsSetting;
|
|
270
|
+
/** The underlying string value passed to CloudFormation. */
|
|
271
|
+
readonly value: string;
|
|
272
|
+
private constructor();
|
|
273
|
+
}
|
|
274
|
+
/** Ad marker type for an HLS output group. */
|
|
275
|
+
export declare class HlsAdMarkers {
|
|
276
|
+
/** Adobe ad markers. */
|
|
277
|
+
static readonly ADOBE: HlsAdMarkers;
|
|
278
|
+
/** Elemental ad markers. */
|
|
279
|
+
static readonly ELEMENTAL: HlsAdMarkers;
|
|
280
|
+
/** Elemental SCTE-35 ad markers. */
|
|
281
|
+
static readonly ELEMENTAL_SCTE35: HlsAdMarkers;
|
|
282
|
+
/** A value not yet modelled by AWS CDK. */
|
|
283
|
+
static of(value: string): HlsAdMarkers;
|
|
284
|
+
/** The underlying string value passed to CloudFormation. */
|
|
285
|
+
readonly value: string;
|
|
286
|
+
private constructor();
|
|
287
|
+
}
|
|
288
|
+
/** Ad marker type for an RTMP output group. */
|
|
289
|
+
export declare class RtmpAdMarkers {
|
|
290
|
+
/** onCuePoint SCTE-35 ad markers. */
|
|
291
|
+
static readonly ON_CUE_POINT_SCTE35: RtmpAdMarkers;
|
|
292
|
+
/** A value not yet modelled by AWS CDK. */
|
|
293
|
+
static of(value: string): RtmpAdMarkers;
|
|
294
|
+
/** The underlying string value passed to CloudFormation. */
|
|
295
|
+
readonly value: string;
|
|
296
|
+
private constructor();
|
|
297
|
+
}
|
|
298
|
+
/** HLS timed metadata ID3 frame. */
|
|
299
|
+
export declare class HlsTimedMetadataId3Frame {
|
|
300
|
+
/** None */
|
|
301
|
+
static readonly NONE: HlsTimedMetadataId3Frame;
|
|
302
|
+
/** PRIV */
|
|
303
|
+
static readonly PRIV: HlsTimedMetadataId3Frame;
|
|
304
|
+
/** TDRL */
|
|
305
|
+
static readonly TDRL: HlsTimedMetadataId3Frame;
|
|
306
|
+
/** A value not yet modelled by AWS CDK. */
|
|
307
|
+
static of(value: string): HlsTimedMetadataId3Frame;
|
|
308
|
+
/** The underlying string value passed to CloudFormation. */
|
|
309
|
+
readonly value: string;
|
|
310
|
+
private constructor();
|
|
311
|
+
}
|
|
312
|
+
/** Whether to use chunked transfer encoding for an HLS CDN connection (Akamai, WebDAV). */
|
|
313
|
+
export declare class HttpTransferMode {
|
|
314
|
+
/** Use chunked transfer encoding. */
|
|
315
|
+
static readonly CHUNKED: HttpTransferMode;
|
|
316
|
+
/** Do not use chunked transfer encoding. */
|
|
317
|
+
static readonly NON_CHUNKED: HttpTransferMode;
|
|
318
|
+
/** A value not yet modelled by AWS CDK. */
|
|
319
|
+
static of(value: string): HttpTransferMode;
|
|
320
|
+
/** The underlying string value passed to CloudFormation. */
|
|
321
|
+
readonly value: string;
|
|
322
|
+
private constructor();
|
|
323
|
+
}
|
|
324
|
+
/** HLS TS file mode. */
|
|
325
|
+
export declare class HlsTsFileMode {
|
|
326
|
+
/** Segmented files */
|
|
327
|
+
static readonly SEGMENTED_FILES: HlsTsFileMode;
|
|
328
|
+
/** Single file */
|
|
329
|
+
static readonly SINGLE_FILE: HlsTsFileMode;
|
|
330
|
+
/** A value not yet modelled by AWS CDK. */
|
|
331
|
+
static of(value: string): HlsTsFileMode;
|
|
332
|
+
/** The underlying string value passed to CloudFormation. */
|
|
333
|
+
readonly value: string;
|
|
334
|
+
private constructor();
|
|
335
|
+
}
|
|
336
|
+
/** RTMP authentication scheme. */
|
|
337
|
+
export declare class RtmpAuthenticationScheme {
|
|
338
|
+
/** Common authentication */
|
|
339
|
+
static readonly COMMON: RtmpAuthenticationScheme;
|
|
340
|
+
/** Akamai authentication */
|
|
341
|
+
static readonly AKAMAI: RtmpAuthenticationScheme;
|
|
342
|
+
/** A value not yet modelled by AWS CDK. */
|
|
343
|
+
static of(value: string): RtmpAuthenticationScheme;
|
|
344
|
+
/** The underlying string value passed to CloudFormation. */
|
|
345
|
+
readonly value: string;
|
|
346
|
+
private constructor();
|
|
347
|
+
}
|
|
348
|
+
/** RTMP cache full behavior. */
|
|
349
|
+
export declare class RtmpCacheFullBehavior {
|
|
350
|
+
/** Disconnect immediately */
|
|
351
|
+
static readonly DISCONNECT_IMMEDIATELY: RtmpCacheFullBehavior;
|
|
352
|
+
/** Wait for server */
|
|
353
|
+
static readonly WAIT_FOR_SERVER: RtmpCacheFullBehavior;
|
|
354
|
+
/** A value not yet modelled by AWS CDK. */
|
|
355
|
+
static of(value: string): RtmpCacheFullBehavior;
|
|
356
|
+
/** The underlying string value passed to CloudFormation. */
|
|
357
|
+
readonly value: string;
|
|
358
|
+
private constructor();
|
|
359
|
+
}
|
|
360
|
+
/** RTMP caption data. */
|
|
361
|
+
export declare class RtmpCaptionData {
|
|
362
|
+
/** All */
|
|
363
|
+
static readonly ALL: RtmpCaptionData;
|
|
364
|
+
/** Field 1 and field 2 608 */
|
|
365
|
+
static readonly FIELD1_AND_FIELD2_608: RtmpCaptionData;
|
|
366
|
+
/** Field 1 608 */
|
|
367
|
+
static readonly FIELD1_608: RtmpCaptionData;
|
|
368
|
+
/** A value not yet modelled by AWS CDK. */
|
|
369
|
+
static of(value: string): RtmpCaptionData;
|
|
370
|
+
/** The underlying string value passed to CloudFormation. */
|
|
371
|
+
readonly value: string;
|
|
372
|
+
private constructor();
|
|
373
|
+
}
|
|
374
|
+
/** RTMP input loss action. */
|
|
375
|
+
export declare class RtmpInputLossAction {
|
|
376
|
+
/** Emit output */
|
|
377
|
+
static readonly EMIT_OUTPUT: RtmpInputLossAction;
|
|
378
|
+
/** Pause output */
|
|
379
|
+
static readonly PAUSE_OUTPUT: RtmpInputLossAction;
|
|
380
|
+
/** A value not yet modelled by AWS CDK. */
|
|
381
|
+
static of(value: string): RtmpInputLossAction;
|
|
382
|
+
/** The underlying string value passed to CloudFormation. */
|
|
383
|
+
readonly value: string;
|
|
384
|
+
private constructor();
|
|
385
|
+
}
|
|
386
|
+
/** RTMP include filler NAL units. */
|
|
387
|
+
export declare class RtmpIncludeFillerNalUnits {
|
|
388
|
+
/** Auto */
|
|
389
|
+
static readonly AUTO: RtmpIncludeFillerNalUnits;
|
|
390
|
+
/** Drop */
|
|
391
|
+
static readonly DROP: RtmpIncludeFillerNalUnits;
|
|
392
|
+
/** Include */
|
|
393
|
+
static readonly INCLUDE: RtmpIncludeFillerNalUnits;
|
|
394
|
+
/** A value not yet modelled by AWS CDK. */
|
|
395
|
+
static of(value: string): RtmpIncludeFillerNalUnits;
|
|
396
|
+
/** The underlying string value passed to CloudFormation. */
|
|
397
|
+
readonly value: string;
|
|
398
|
+
private constructor();
|
|
399
|
+
}
|
|
400
|
+
/** RTMP TLS certificate verification mode. */
|
|
401
|
+
export declare class RtmpCertificateMode {
|
|
402
|
+
/** Verify the TLS certificate chain */
|
|
403
|
+
static readonly VERIFY_AUTHENTICITY: RtmpCertificateMode;
|
|
404
|
+
/** Do not verify the TLS certificate */
|
|
405
|
+
static readonly SELF_SIGNED: RtmpCertificateMode;
|
|
406
|
+
/** A value not yet modelled by AWS CDK. */
|
|
407
|
+
static of(value: string): RtmpCertificateMode;
|
|
408
|
+
/** The underlying string value passed to CloudFormation. */
|
|
409
|
+
readonly value: string;
|
|
410
|
+
private constructor();
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
* Behavior of last resort when input video is lost and no more backup inputs are available,
|
|
414
|
+
* for an SRT output group.
|
|
415
|
+
*/
|
|
416
|
+
export declare class SrtInputLossAction {
|
|
417
|
+
/** Drop the entire transport stream. */
|
|
418
|
+
static readonly DROP_TS: SrtInputLossAction;
|
|
419
|
+
/** Drop the program from the transport stream (replaced with null packets to meet bitrate). */
|
|
420
|
+
static readonly DROP_PROGRAM: SrtInputLossAction;
|
|
421
|
+
/** Continue emitting with repeat, black, or slate frames substituted for the absent video. */
|
|
422
|
+
static readonly EMIT_PROGRAM: SrtInputLossAction;
|
|
423
|
+
/** A value not yet modelled by AWS CDK. */
|
|
424
|
+
static of(value: string): SrtInputLossAction;
|
|
425
|
+
/** The underlying string value passed to CloudFormation. */
|
|
426
|
+
readonly value: string;
|
|
427
|
+
private constructor();
|
|
428
|
+
}
|
|
429
|
+
/** SRT output encryption type. */
|
|
430
|
+
export declare class SrtEncryptionType {
|
|
431
|
+
/** AES-128 encryption */
|
|
432
|
+
static readonly AES128: SrtEncryptionType;
|
|
433
|
+
/** AES-192 encryption */
|
|
434
|
+
static readonly AES192: SrtEncryptionType;
|
|
435
|
+
/** AES-256 encryption */
|
|
436
|
+
static readonly AES256: SrtEncryptionType;
|
|
437
|
+
/** A value not yet modelled by AWS CDK. */
|
|
438
|
+
static of(value: string): SrtEncryptionType;
|
|
439
|
+
/** The underlying string value passed to CloudFormation. */
|
|
440
|
+
readonly value: string;
|
|
441
|
+
private constructor();
|
|
442
|
+
}
|
|
443
|
+
/** UDP input loss action. */
|
|
444
|
+
export declare class UdpInputLossAction {
|
|
445
|
+
/** Drop the entire transport stream */
|
|
446
|
+
static readonly DROP_TS: UdpInputLossAction;
|
|
447
|
+
/** Drop the program from the transport stream */
|
|
448
|
+
static readonly DROP_PROGRAM: UdpInputLossAction;
|
|
449
|
+
/** Continue emitting with substitute frames */
|
|
450
|
+
static readonly EMIT_PROGRAM: UdpInputLossAction;
|
|
451
|
+
/** A value not yet modelled by AWS CDK. */
|
|
452
|
+
static of(value: string): UdpInputLossAction;
|
|
453
|
+
/** The underlying string value passed to CloudFormation. */
|
|
454
|
+
readonly value: string;
|
|
455
|
+
private constructor();
|
|
456
|
+
}
|
|
457
|
+
/** Enables column-only or column-and-row FEC for a UDP output. */
|
|
458
|
+
export declare class FecMode {
|
|
459
|
+
/** Column-only FEC. */
|
|
460
|
+
static readonly COLUMN: FecMode;
|
|
461
|
+
/** Column-and-row FEC (more robust). */
|
|
462
|
+
static readonly COLUMN_AND_ROW: FecMode;
|
|
463
|
+
/** A value not yet modelled by AWS CDK. */
|
|
464
|
+
static of(value: string): FecMode;
|
|
465
|
+
/** The underlying string value passed to CloudFormation. */
|
|
466
|
+
readonly value: string;
|
|
467
|
+
private constructor();
|
|
468
|
+
}
|
|
469
|
+
/** UDP timed metadata ID3 frame. */
|
|
470
|
+
export declare class UdpTimedMetadataId3Frame {
|
|
471
|
+
/** None */
|
|
472
|
+
static readonly NONE: UdpTimedMetadataId3Frame;
|
|
473
|
+
/** PRIV */
|
|
474
|
+
static readonly PRIV: UdpTimedMetadataId3Frame;
|
|
475
|
+
/** TDRL */
|
|
476
|
+
static readonly TDRL: UdpTimedMetadataId3Frame;
|
|
477
|
+
/** A value not yet modelled by AWS CDK. */
|
|
478
|
+
static of(value: string): UdpTimedMetadataId3Frame;
|
|
479
|
+
/** The underlying string value passed to CloudFormation. */
|
|
480
|
+
readonly value: string;
|
|
481
|
+
private constructor();
|
|
482
|
+
}
|
|
483
|
+
/** MS Smooth audio-only timecode control. */
|
|
484
|
+
export declare class MsSmoothAudioOnlyTimecodeControl {
|
|
485
|
+
/** Passthrough */
|
|
486
|
+
static readonly PASSTHROUGH: MsSmoothAudioOnlyTimecodeControl;
|
|
487
|
+
/** Use configured clock */
|
|
488
|
+
static readonly USE_CONFIGURED_CLOCK: MsSmoothAudioOnlyTimecodeControl;
|
|
489
|
+
/** A value not yet modelled by AWS CDK. */
|
|
490
|
+
static of(value: string): MsSmoothAudioOnlyTimecodeControl;
|
|
491
|
+
/** The underlying string value passed to CloudFormation. */
|
|
492
|
+
readonly value: string;
|
|
493
|
+
private constructor();
|
|
494
|
+
}
|
|
495
|
+
/** MS Smooth certificate mode. */
|
|
496
|
+
export declare class MsSmoothCertificateMode {
|
|
497
|
+
/** Self-signed */
|
|
498
|
+
static readonly SELF_SIGNED: MsSmoothCertificateMode;
|
|
499
|
+
/** Verify authenticity */
|
|
500
|
+
static readonly VERIFY_AUTHENTICITY: MsSmoothCertificateMode;
|
|
501
|
+
/** A value not yet modelled by AWS CDK. */
|
|
502
|
+
static of(value: string): MsSmoothCertificateMode;
|
|
503
|
+
/** The underlying string value passed to CloudFormation. */
|
|
504
|
+
readonly value: string;
|
|
505
|
+
private constructor();
|
|
506
|
+
}
|
|
507
|
+
/** MS Smooth event ID mode. */
|
|
508
|
+
export declare class MsSmoothEventIdMode {
|
|
509
|
+
/** No event ID */
|
|
510
|
+
static readonly NO_EVENT_ID: MsSmoothEventIdMode;
|
|
511
|
+
/** Use configured */
|
|
512
|
+
static readonly USE_CONFIGURED: MsSmoothEventIdMode;
|
|
513
|
+
/** Use timestamp */
|
|
514
|
+
static readonly USE_TIMESTAMP: MsSmoothEventIdMode;
|
|
515
|
+
/** A value not yet modelled by AWS CDK. */
|
|
516
|
+
static of(value: string): MsSmoothEventIdMode;
|
|
517
|
+
/** The underlying string value passed to CloudFormation. */
|
|
518
|
+
readonly value: string;
|
|
519
|
+
private constructor();
|
|
520
|
+
}
|
|
521
|
+
/** MS Smooth event stop behavior. */
|
|
522
|
+
export declare class MsSmoothEventStopBehavior {
|
|
523
|
+
/** None */
|
|
524
|
+
static readonly NONE: MsSmoothEventStopBehavior;
|
|
525
|
+
/** Send EOS */
|
|
526
|
+
static readonly SEND_EOS: MsSmoothEventStopBehavior;
|
|
527
|
+
/** A value not yet modelled by AWS CDK. */
|
|
528
|
+
static of(value: string): MsSmoothEventStopBehavior;
|
|
529
|
+
/** The underlying string value passed to CloudFormation. */
|
|
530
|
+
readonly value: string;
|
|
531
|
+
private constructor();
|
|
532
|
+
}
|
|
533
|
+
/** MS Smooth input loss action. */
|
|
534
|
+
export declare class MsSmoothInputLossAction {
|
|
535
|
+
/** Emit output */
|
|
536
|
+
static readonly EMIT_OUTPUT: MsSmoothInputLossAction;
|
|
537
|
+
/** Pause output */
|
|
538
|
+
static readonly PAUSE_OUTPUT: MsSmoothInputLossAction;
|
|
539
|
+
/** A value not yet modelled by AWS CDK. */
|
|
540
|
+
static of(value: string): MsSmoothInputLossAction;
|
|
541
|
+
/** The underlying string value passed to CloudFormation. */
|
|
542
|
+
readonly value: string;
|
|
543
|
+
private constructor();
|
|
544
|
+
}
|
|
545
|
+
/** MS Smooth segmentation mode. */
|
|
546
|
+
export declare class MsSmoothSegmentationMode {
|
|
547
|
+
/** Use input segmentation */
|
|
548
|
+
static readonly USE_INPUT_SEGMENTATION: MsSmoothSegmentationMode;
|
|
549
|
+
/** Use segment duration */
|
|
550
|
+
static readonly USE_SEGMENT_DURATION: MsSmoothSegmentationMode;
|
|
551
|
+
/** A value not yet modelled by AWS CDK. */
|
|
552
|
+
static of(value: string): MsSmoothSegmentationMode;
|
|
553
|
+
/** The underlying string value passed to CloudFormation. */
|
|
554
|
+
readonly value: string;
|
|
555
|
+
private constructor();
|
|
556
|
+
}
|
|
557
|
+
/** MS Smooth sparse track type. */
|
|
558
|
+
export declare class MsSmoothSparseTrackType {
|
|
559
|
+
/** None */
|
|
560
|
+
static readonly NONE: MsSmoothSparseTrackType;
|
|
561
|
+
/** SCTE-35 */
|
|
562
|
+
static readonly SCTE_35: MsSmoothSparseTrackType;
|
|
563
|
+
/** SCTE-35 without segmentation */
|
|
564
|
+
static readonly SCTE_35_WITHOUT_SEGMENTATION: MsSmoothSparseTrackType;
|
|
565
|
+
/** A value not yet modelled by AWS CDK. */
|
|
566
|
+
static of(value: string): MsSmoothSparseTrackType;
|
|
567
|
+
/** The underlying string value passed to CloudFormation. */
|
|
568
|
+
readonly value: string;
|
|
569
|
+
private constructor();
|
|
570
|
+
}
|
|
571
|
+
/** MS Smooth stream manifest behavior. */
|
|
572
|
+
export declare class MsSmoothStreamManifestBehavior {
|
|
573
|
+
/** Do not send */
|
|
574
|
+
static readonly DO_NOT_SEND: MsSmoothStreamManifestBehavior;
|
|
575
|
+
/** Send */
|
|
576
|
+
static readonly SEND: MsSmoothStreamManifestBehavior;
|
|
577
|
+
/** A value not yet modelled by AWS CDK. */
|
|
578
|
+
static of(value: string): MsSmoothStreamManifestBehavior;
|
|
579
|
+
/** The underlying string value passed to CloudFormation. */
|
|
580
|
+
readonly value: string;
|
|
581
|
+
private constructor();
|
|
582
|
+
}
|
|
583
|
+
/** MS Smooth timestamp offset mode. */
|
|
584
|
+
export declare class MsSmoothTimestampOffsetMode {
|
|
585
|
+
/** Use configured offset */
|
|
586
|
+
static readonly USE_CONFIGURED_OFFSET: MsSmoothTimestampOffsetMode;
|
|
587
|
+
/** Use event start date */
|
|
588
|
+
static readonly USE_EVENT_START_DATE: MsSmoothTimestampOffsetMode;
|
|
589
|
+
/** A value not yet modelled by AWS CDK. */
|
|
590
|
+
static of(value: string): MsSmoothTimestampOffsetMode;
|
|
591
|
+
/** The underlying string value passed to CloudFormation. */
|
|
592
|
+
readonly value: string;
|
|
593
|
+
private constructor();
|
|
594
|
+
}
|
|
595
|
+
/** ID3 metadata insertion behavior (CMAF Ingest and MediaPackage V2 output groups). */
|
|
596
|
+
export declare class Id3Behavior {
|
|
597
|
+
/** Do not insert ID3 metadata. */
|
|
598
|
+
static readonly DISABLED: Id3Behavior;
|
|
599
|
+
/** Enable ID3 metadata insertion. */
|
|
600
|
+
static readonly ENABLED: Id3Behavior;
|
|
601
|
+
/** A value not yet modelled by AWS CDK. */
|
|
602
|
+
static of(value: string): Id3Behavior;
|
|
603
|
+
/** The underlying string value passed to CloudFormation. */
|
|
604
|
+
readonly value: string;
|
|
605
|
+
private constructor();
|
|
606
|
+
}
|
|
607
|
+
/** CMAF Ingest KLV behavior. */
|
|
608
|
+
export declare class KlvBehavior {
|
|
609
|
+
/** No passthrough */
|
|
610
|
+
static readonly NO_PASSTHROUGH: KlvBehavior;
|
|
611
|
+
/** Passthrough */
|
|
612
|
+
static readonly PASSTHROUGH: KlvBehavior;
|
|
613
|
+
/** A value not yet modelled by AWS CDK. */
|
|
614
|
+
static of(value: string): KlvBehavior;
|
|
615
|
+
/** The underlying string value passed to CloudFormation. */
|
|
616
|
+
readonly value: string;
|
|
617
|
+
private constructor();
|
|
618
|
+
}
|
|
619
|
+
/** CMAF Ingest Nielsen ID3 behavior. */
|
|
620
|
+
export declare class NielsenId3Behavior {
|
|
621
|
+
/** No passthrough */
|
|
622
|
+
static readonly NO_PASSTHROUGH: NielsenId3Behavior;
|
|
623
|
+
/** Passthrough */
|
|
624
|
+
static readonly PASSTHROUGH: NielsenId3Behavior;
|
|
625
|
+
/** A value not yet modelled by AWS CDK. */
|
|
626
|
+
static of(value: string): NielsenId3Behavior;
|
|
627
|
+
/** The underlying string value passed to CloudFormation. */
|
|
628
|
+
readonly value: string;
|
|
629
|
+
private constructor();
|
|
630
|
+
}
|
|
631
|
+
/** CMAF Ingest SCTE-35 type. */
|
|
632
|
+
export declare class Scte35Type {
|
|
633
|
+
/** None */
|
|
634
|
+
static readonly NONE: Scte35Type;
|
|
635
|
+
/** SCTE-35 without segmentation */
|
|
636
|
+
static readonly SCTE_35_WITHOUT_SEGMENTATION: Scte35Type;
|
|
637
|
+
/** A value not yet modelled by AWS CDK. */
|
|
638
|
+
static of(value: string): Scte35Type;
|
|
639
|
+
/** The underlying string value passed to CloudFormation. */
|
|
640
|
+
readonly value: string;
|
|
641
|
+
private constructor();
|
|
642
|
+
}
|
|
643
|
+
/** CMAF Ingest timed metadata ID3 frame. */
|
|
644
|
+
export declare class TimedMetadataId3Frame {
|
|
645
|
+
/** None */
|
|
646
|
+
static readonly NONE: TimedMetadataId3Frame;
|
|
647
|
+
/** PRIV */
|
|
648
|
+
static readonly PRIV: TimedMetadataId3Frame;
|
|
649
|
+
/** TDRL */
|
|
650
|
+
static readonly TDRL: TimedMetadataId3Frame;
|
|
651
|
+
/** A value not yet modelled by AWS CDK. */
|
|
652
|
+
static of(value: string): TimedMetadataId3Frame;
|
|
653
|
+
/** The underlying string value passed to CloudFormation. */
|
|
654
|
+
readonly value: string;
|
|
655
|
+
private constructor();
|
|
656
|
+
}
|
|
657
|
+
/** CMAF Ingest timed metadata passthrough. */
|
|
658
|
+
export declare class TimedMetadataPassthrough {
|
|
659
|
+
/** Disabled */
|
|
660
|
+
static readonly DISABLED: TimedMetadataPassthrough;
|
|
661
|
+
/** Enabled */
|
|
662
|
+
static readonly ENABLED: TimedMetadataPassthrough;
|
|
663
|
+
/** A value not yet modelled by AWS CDK. */
|
|
664
|
+
static of(value: string): TimedMetadataPassthrough;
|
|
665
|
+
/** The underlying string value passed to CloudFormation. */
|
|
666
|
+
readonly value: string;
|
|
667
|
+
private constructor();
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* S3 canned ACL for output destinations.
|
|
671
|
+
*/
|
|
672
|
+
export declare class S3CannedAcl {
|
|
673
|
+
/** Grants the owner full control and authenticated AWS users read access. */
|
|
674
|
+
static readonly AUTHENTICATED_READ: S3CannedAcl;
|
|
675
|
+
/** Grants the object owner and bucket owner full control. */
|
|
676
|
+
static readonly BUCKET_OWNER_FULL_CONTROL: S3CannedAcl;
|
|
677
|
+
/** Grants the owner full control and the bucket owner read access. */
|
|
678
|
+
static readonly BUCKET_OWNER_READ: S3CannedAcl;
|
|
679
|
+
/** Grants the owner full control and all users read access. */
|
|
680
|
+
static readonly PUBLIC_READ: S3CannedAcl;
|
|
681
|
+
/** A value not yet modelled by AWS CDK. */
|
|
682
|
+
static of(value: string): S3CannedAcl;
|
|
683
|
+
/** The underlying string value passed to CloudFormation. */
|
|
684
|
+
readonly value: string;
|
|
685
|
+
private constructor();
|
|
686
|
+
}
|
|
687
|
+
/** H.265 packaging type for HLS/MS Smooth outputs. */
|
|
688
|
+
export declare class H265PackagingType {
|
|
689
|
+
/** HEV1 packaging */
|
|
690
|
+
static readonly HEV1: H265PackagingType;
|
|
691
|
+
/** HVC1 packaging */
|
|
692
|
+
static readonly HVC1: H265PackagingType;
|
|
693
|
+
/** A value not yet modelled by AWS CDK. */
|
|
694
|
+
static of(value: string): H265PackagingType;
|
|
695
|
+
/** The underlying string value passed to CloudFormation. */
|
|
696
|
+
readonly value: string;
|
|
697
|
+
private constructor();
|
|
698
|
+
}
|