@aws-sdk/client-mediapackage 3.529.1 → 3.535.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-types/MediaPackage.d.ts +4 -1
- package/dist-types/MediaPackageClient.d.ts +1 -1
- package/dist-types/commands/ConfigureLogsCommand.d.ts +2 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +2 -1
- package/dist-types/commands/CreateHarvestJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateOriginEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteChannelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DescribeChannelCommand.d.ts +2 -1
- package/dist-types/commands/DescribeHarvestJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeOriginEndpointCommand.d.ts +2 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +2 -1
- package/dist-types/commands/ListHarvestJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListOriginEndpointsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/RotateChannelCredentialsCommand.d.ts +3 -3
- package/dist-types/commands/RotateIngestEndpointCredentialsCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +345 -345
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/MediaPackage.d.ts +3 -0
- package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -30,128 +30,128 @@ export declare const __PeriodTriggersElement: {
|
|
|
30
30
|
*/
|
|
31
31
|
export type __PeriodTriggersElement = (typeof __PeriodTriggersElement)[keyof typeof __PeriodTriggersElement];
|
|
32
32
|
/**
|
|
33
|
-
* @public
|
|
34
33
|
* Configure egress access logging.
|
|
34
|
+
* @public
|
|
35
35
|
*/
|
|
36
36
|
export interface EgressAccessLogs {
|
|
37
37
|
/**
|
|
38
|
-
* @public
|
|
39
38
|
* Customize the log group name.
|
|
39
|
+
* @public
|
|
40
40
|
*/
|
|
41
41
|
LogGroupName?: string;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
* @public
|
|
45
44
|
* An endpoint for ingesting source content for a Channel.
|
|
45
|
+
* @public
|
|
46
46
|
*/
|
|
47
47
|
export interface IngestEndpoint {
|
|
48
48
|
/**
|
|
49
|
-
* @public
|
|
50
49
|
* The system generated unique identifier for the IngestEndpoint
|
|
50
|
+
* @public
|
|
51
51
|
*/
|
|
52
52
|
Id?: string;
|
|
53
53
|
/**
|
|
54
|
-
* @public
|
|
55
54
|
* The system generated password for ingest authentication.
|
|
55
|
+
* @public
|
|
56
56
|
*/
|
|
57
57
|
Password?: string;
|
|
58
58
|
/**
|
|
59
|
-
* @public
|
|
60
59
|
* The ingest URL to which the source stream should be sent.
|
|
60
|
+
* @public
|
|
61
61
|
*/
|
|
62
62
|
Url?: string;
|
|
63
63
|
/**
|
|
64
|
-
* @public
|
|
65
64
|
* The system generated username for ingest authentication.
|
|
65
|
+
* @public
|
|
66
66
|
*/
|
|
67
67
|
Username?: string;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
|
-
* @public
|
|
71
70
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
71
|
+
* @public
|
|
72
72
|
*/
|
|
73
73
|
export interface HlsIngest {
|
|
74
74
|
/**
|
|
75
|
-
* @public
|
|
76
75
|
* A list of endpoints to which the source stream should be sent.
|
|
76
|
+
* @public
|
|
77
77
|
*/
|
|
78
78
|
IngestEndpoints?: IngestEndpoint[];
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
|
-
* @public
|
|
82
81
|
* Configure ingress access logging.
|
|
82
|
+
* @public
|
|
83
83
|
*/
|
|
84
84
|
export interface IngressAccessLogs {
|
|
85
85
|
/**
|
|
86
|
-
* @public
|
|
87
86
|
* Customize the log group name.
|
|
87
|
+
* @public
|
|
88
88
|
*/
|
|
89
89
|
LogGroupName?: string;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
|
-
* @public
|
|
93
92
|
* A Channel resource configuration.
|
|
93
|
+
* @public
|
|
94
94
|
*/
|
|
95
95
|
export interface Channel {
|
|
96
96
|
/**
|
|
97
|
-
* @public
|
|
98
97
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
98
|
+
* @public
|
|
99
99
|
*/
|
|
100
100
|
Arn?: string;
|
|
101
101
|
/**
|
|
102
|
-
* @public
|
|
103
102
|
* The date and time the Channel was created.
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
CreatedAt?: string;
|
|
106
106
|
/**
|
|
107
|
-
* @public
|
|
108
107
|
* A short text description of the Channel.
|
|
108
|
+
* @public
|
|
109
109
|
*/
|
|
110
110
|
Description?: string;
|
|
111
111
|
/**
|
|
112
|
-
* @public
|
|
113
112
|
* Configure egress access logging.
|
|
113
|
+
* @public
|
|
114
114
|
*/
|
|
115
115
|
EgressAccessLogs?: EgressAccessLogs;
|
|
116
116
|
/**
|
|
117
|
-
* @public
|
|
118
117
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
118
|
+
* @public
|
|
119
119
|
*/
|
|
120
120
|
HlsIngest?: HlsIngest;
|
|
121
121
|
/**
|
|
122
|
-
* @public
|
|
123
122
|
* The ID of the Channel.
|
|
123
|
+
* @public
|
|
124
124
|
*/
|
|
125
125
|
Id?: string;
|
|
126
126
|
/**
|
|
127
|
-
* @public
|
|
128
127
|
* Configure ingress access logging.
|
|
128
|
+
* @public
|
|
129
129
|
*/
|
|
130
130
|
IngressAccessLogs?: IngressAccessLogs;
|
|
131
131
|
/**
|
|
132
|
-
* @public
|
|
133
132
|
* A collection of tags associated with a resource
|
|
133
|
+
* @public
|
|
134
134
|
*/
|
|
135
135
|
Tags?: Record<string, string>;
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
|
-
* @public
|
|
139
138
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
139
|
+
* @public
|
|
140
140
|
*/
|
|
141
141
|
export interface S3Destination {
|
|
142
142
|
/**
|
|
143
|
-
* @public
|
|
144
143
|
* The name of an S3 bucket within which harvested content will be exported
|
|
144
|
+
* @public
|
|
145
145
|
*/
|
|
146
146
|
BucketName: string | undefined;
|
|
147
147
|
/**
|
|
148
|
-
* @public
|
|
149
148
|
* The key in the specified S3 bucket where the harvested top-level manifest will be placed.
|
|
149
|
+
* @public
|
|
150
150
|
*/
|
|
151
151
|
ManifestKey: string | undefined;
|
|
152
152
|
/**
|
|
153
|
-
* @public
|
|
154
153
|
* The IAM role used to write to the specified S3 bucket
|
|
154
|
+
* @public
|
|
155
155
|
*/
|
|
156
156
|
RoleArn: string | undefined;
|
|
157
157
|
}
|
|
@@ -169,57 +169,57 @@ export declare const Status: {
|
|
|
169
169
|
*/
|
|
170
170
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
171
171
|
/**
|
|
172
|
-
* @public
|
|
173
172
|
* A HarvestJob resource configuration
|
|
173
|
+
* @public
|
|
174
174
|
*/
|
|
175
175
|
export interface HarvestJob {
|
|
176
176
|
/**
|
|
177
|
-
* @public
|
|
178
177
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
178
|
+
* @public
|
|
179
179
|
*/
|
|
180
180
|
Arn?: string;
|
|
181
181
|
/**
|
|
182
|
-
* @public
|
|
183
182
|
* The ID of the Channel that the HarvestJob will harvest from.
|
|
183
|
+
* @public
|
|
184
184
|
*/
|
|
185
185
|
ChannelId?: string;
|
|
186
186
|
/**
|
|
187
|
-
* @public
|
|
188
187
|
* The date and time the HarvestJob was submitted.
|
|
188
|
+
* @public
|
|
189
189
|
*/
|
|
190
190
|
CreatedAt?: string;
|
|
191
191
|
/**
|
|
192
|
-
* @public
|
|
193
192
|
* The end of the time-window which will be harvested.
|
|
193
|
+
* @public
|
|
194
194
|
*/
|
|
195
195
|
EndTime?: string;
|
|
196
196
|
/**
|
|
197
|
-
* @public
|
|
198
197
|
* The ID of the HarvestJob. The ID must be unique within the region
|
|
199
198
|
* and it cannot be changed after the HarvestJob is submitted.
|
|
199
|
+
* @public
|
|
200
200
|
*/
|
|
201
201
|
Id?: string;
|
|
202
202
|
/**
|
|
203
|
-
* @public
|
|
204
203
|
* The ID of the OriginEndpoint that the HarvestJob will harvest from.
|
|
205
204
|
* This cannot be changed after the HarvestJob is submitted.
|
|
205
|
+
* @public
|
|
206
206
|
*/
|
|
207
207
|
OriginEndpointId?: string;
|
|
208
208
|
/**
|
|
209
|
-
* @public
|
|
210
209
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
210
|
+
* @public
|
|
211
211
|
*/
|
|
212
212
|
S3Destination?: S3Destination;
|
|
213
213
|
/**
|
|
214
|
-
* @public
|
|
215
214
|
* The start of the time-window which will be harvested.
|
|
215
|
+
* @public
|
|
216
216
|
*/
|
|
217
217
|
StartTime?: string;
|
|
218
218
|
/**
|
|
219
|
-
* @public
|
|
220
219
|
* The current status of the HarvestJob. Consider setting up a CloudWatch Event to listen for
|
|
221
220
|
* HarvestJobs as they succeed or fail. In the event of failure, the CloudWatch Event will
|
|
222
221
|
* include an explanation of why the HarvestJob failed.
|
|
222
|
+
* @public
|
|
223
223
|
*/
|
|
224
224
|
Status?: Status;
|
|
225
225
|
}
|
|
@@ -265,12 +265,11 @@ export declare const PlaylistType: {
|
|
|
265
265
|
*/
|
|
266
266
|
export type PlaylistType = (typeof PlaylistType)[keyof typeof PlaylistType];
|
|
267
267
|
/**
|
|
268
|
-
* @public
|
|
269
268
|
* A HTTP Live Streaming (HLS) manifest configuration.
|
|
269
|
+
* @public
|
|
270
270
|
*/
|
|
271
271
|
export interface HlsManifest {
|
|
272
272
|
/**
|
|
273
|
-
* @public
|
|
274
273
|
* This setting controls how ad markers are included in the packaged OriginEndpoint.
|
|
275
274
|
* "NONE" will omit all SCTE-35 ad markers from the output.
|
|
276
275
|
* "PASSTHROUGH" causes the manifest to contain a copy of the SCTE-35 ad
|
|
@@ -280,37 +279,37 @@ export interface HlsManifest {
|
|
|
280
279
|
* "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and program transition events
|
|
281
280
|
* in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value
|
|
282
281
|
* that is greater than 0.
|
|
282
|
+
* @public
|
|
283
283
|
*/
|
|
284
284
|
AdMarkers?: AdMarkers;
|
|
285
285
|
/**
|
|
286
|
-
* @public
|
|
287
286
|
* The ID of the manifest. The ID must be unique within the OriginEndpoint and it cannot be changed after it is created.
|
|
287
|
+
* @public
|
|
288
288
|
*/
|
|
289
289
|
Id: string | undefined;
|
|
290
290
|
/**
|
|
291
|
-
* @public
|
|
292
291
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
292
|
+
* @public
|
|
293
293
|
*/
|
|
294
294
|
IncludeIframeOnlyStream?: boolean;
|
|
295
295
|
/**
|
|
296
|
-
* @public
|
|
297
296
|
* An optional short string appended to the end of the OriginEndpoint URL. If not specified, defaults to the manifestName for the OriginEndpoint.
|
|
297
|
+
* @public
|
|
298
298
|
*/
|
|
299
299
|
ManifestName?: string;
|
|
300
300
|
/**
|
|
301
|
-
* @public
|
|
302
301
|
* The HTTP Live Streaming (HLS) playlist type.
|
|
303
302
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
304
303
|
* entry will be included in the media playlist.
|
|
304
|
+
* @public
|
|
305
305
|
*/
|
|
306
306
|
PlaylistType?: PlaylistType;
|
|
307
307
|
/**
|
|
308
|
-
* @public
|
|
309
308
|
* Time window (in seconds) contained in each parent manifest.
|
|
309
|
+
* @public
|
|
310
310
|
*/
|
|
311
311
|
PlaylistWindowSeconds?: number;
|
|
312
312
|
/**
|
|
313
|
-
* @public
|
|
314
313
|
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
|
|
315
314
|
* inserted into manifests. Additionally, when an interval is specified
|
|
316
315
|
* ID3Timed Metadata messages will be generated every 5 seconds using the
|
|
@@ -320,22 +319,22 @@ export interface HlsManifest {
|
|
|
320
319
|
* ID3Timed Metadata messages will be generated. Note that irrespective
|
|
321
320
|
* of this parameter, if any ID3 Timed Metadata is found in HTTP Live Streaming (HLS) input,
|
|
322
321
|
* it will be passed through to HLS output.
|
|
322
|
+
* @public
|
|
323
323
|
*/
|
|
324
324
|
ProgramDateTimeIntervalSeconds?: number;
|
|
325
325
|
/**
|
|
326
|
-
* @public
|
|
327
326
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
327
|
+
* @public
|
|
328
328
|
*/
|
|
329
329
|
Url?: string;
|
|
330
330
|
/**
|
|
331
|
-
* @public
|
|
332
331
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
333
332
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
334
333
|
* message types.
|
|
334
|
+
* @public
|
|
335
335
|
*/
|
|
336
336
|
AdTriggers?: __AdTriggersElement[];
|
|
337
337
|
/**
|
|
338
|
-
* @public
|
|
339
338
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
340
339
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
341
340
|
* ads. Choosing "RESTRICTED" means SCTE-35 messages of the types specified in AdTriggers that
|
|
@@ -344,16 +343,16 @@ export interface HlsManifest {
|
|
|
344
343
|
* be treated as ads. Choosing "BOTH" means all SCTE-35 messages of the types specified in
|
|
345
344
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
346
345
|
* and are always treated as ads if specified in AdTriggers.
|
|
346
|
+
* @public
|
|
347
347
|
*/
|
|
348
348
|
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
|
-
* @public
|
|
352
351
|
* A HTTP Live Streaming (HLS) manifest configuration.
|
|
352
|
+
* @public
|
|
353
353
|
*/
|
|
354
354
|
export interface HlsManifestCreateOrUpdateParameters {
|
|
355
355
|
/**
|
|
356
|
-
* @public
|
|
357
356
|
* This setting controls how ad markers are included in the packaged OriginEndpoint.
|
|
358
357
|
* "NONE" will omit all SCTE-35 ad markers from the output.
|
|
359
358
|
* "PASSTHROUGH" causes the manifest to contain a copy of the SCTE-35 ad
|
|
@@ -363,17 +362,17 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
363
362
|
* "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and program transition events
|
|
364
363
|
* in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value
|
|
365
364
|
* that is greater than 0.
|
|
365
|
+
* @public
|
|
366
366
|
*/
|
|
367
367
|
AdMarkers?: AdMarkers;
|
|
368
368
|
/**
|
|
369
|
-
* @public
|
|
370
369
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
371
370
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
372
371
|
* message types.
|
|
372
|
+
* @public
|
|
373
373
|
*/
|
|
374
374
|
AdTriggers?: __AdTriggersElement[];
|
|
375
375
|
/**
|
|
376
|
-
* @public
|
|
377
376
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
378
377
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
379
378
|
* ads. Choosing "RESTRICTED" means SCTE-35 messages of the types specified in AdTriggers that
|
|
@@ -382,37 +381,37 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
382
381
|
* be treated as ads. Choosing "BOTH" means all SCTE-35 messages of the types specified in
|
|
383
382
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
384
383
|
* and are always treated as ads if specified in AdTriggers.
|
|
384
|
+
* @public
|
|
385
385
|
*/
|
|
386
386
|
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
387
387
|
/**
|
|
388
|
-
* @public
|
|
389
388
|
* The ID of the manifest. The ID must be unique within the OriginEndpoint and it cannot be changed after it is created.
|
|
389
|
+
* @public
|
|
390
390
|
*/
|
|
391
391
|
Id: string | undefined;
|
|
392
392
|
/**
|
|
393
|
-
* @public
|
|
394
393
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
394
|
+
* @public
|
|
395
395
|
*/
|
|
396
396
|
IncludeIframeOnlyStream?: boolean;
|
|
397
397
|
/**
|
|
398
|
-
* @public
|
|
399
398
|
* An optional short string appended to the end of the OriginEndpoint URL. If not specified, defaults to the manifestName for the OriginEndpoint.
|
|
399
|
+
* @public
|
|
400
400
|
*/
|
|
401
401
|
ManifestName?: string;
|
|
402
402
|
/**
|
|
403
|
-
* @public
|
|
404
403
|
* The HTTP Live Streaming (HLS) playlist type.
|
|
405
404
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
406
405
|
* entry will be included in the media playlist.
|
|
406
|
+
* @public
|
|
407
407
|
*/
|
|
408
408
|
PlaylistType?: PlaylistType;
|
|
409
409
|
/**
|
|
410
|
-
* @public
|
|
411
410
|
* Time window (in seconds) contained in each parent manifest.
|
|
411
|
+
* @public
|
|
412
412
|
*/
|
|
413
413
|
PlaylistWindowSeconds?: number;
|
|
414
414
|
/**
|
|
415
|
-
* @public
|
|
416
415
|
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
|
|
417
416
|
* inserted into manifests. Additionally, when an interval is specified
|
|
418
417
|
* ID3Timed Metadata messages will be generated every 5 seconds using the
|
|
@@ -422,22 +421,23 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
422
421
|
* ID3Timed Metadata messages will be generated. Note that irrespective
|
|
423
422
|
* of this parameter, if any ID3 Timed Metadata is found in HTTP Live Streaming (HLS) input,
|
|
424
423
|
* it will be passed through to HLS output.
|
|
424
|
+
* @public
|
|
425
425
|
*/
|
|
426
426
|
ProgramDateTimeIntervalSeconds?: number;
|
|
427
427
|
}
|
|
428
428
|
/**
|
|
429
|
-
* @public
|
|
430
429
|
* CDN Authorization credentials
|
|
430
|
+
* @public
|
|
431
431
|
*/
|
|
432
432
|
export interface Authorization {
|
|
433
433
|
/**
|
|
434
|
-
* @public
|
|
435
434
|
* The Amazon Resource Name (ARN) for the secret in Secrets Manager that your Content Distribution Network (CDN) uses for authorization to access your endpoint.
|
|
435
|
+
* @public
|
|
436
436
|
*/
|
|
437
437
|
CdnIdentifierSecret: string | undefined;
|
|
438
438
|
/**
|
|
439
|
-
* @public
|
|
440
439
|
* The Amazon Resource Name (ARN) for the IAM role that allows MediaPackage to communicate with AWS Secrets Manager.
|
|
440
|
+
* @public
|
|
441
441
|
*/
|
|
442
442
|
SecretsRoleArn: string | undefined;
|
|
443
443
|
}
|
|
@@ -489,93 +489,93 @@ export declare const PresetSpeke20Video: {
|
|
|
489
489
|
*/
|
|
490
490
|
export type PresetSpeke20Video = (typeof PresetSpeke20Video)[keyof typeof PresetSpeke20Video];
|
|
491
491
|
/**
|
|
492
|
-
* @public
|
|
493
492
|
* Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE 2.0.
|
|
494
493
|
* The encryption contract defines which content keys are used to encrypt the audio and video tracks in your stream.
|
|
495
494
|
* To configure the encryption contract, specify which audio and video encryption presets to use.
|
|
496
495
|
* Note the following considerations when using encryptionContractConfiguration:
|
|
497
496
|
* encryptionContractConfiguration can be used for DASH or CMAF endpoints that use SPEKE 2.0. SPEKE 2.0 relies on the CPIX 2.3 specification.
|
|
498
497
|
* You must disable key rotation for this endpoint by setting keyRotationIntervalSeconds to 0.
|
|
498
|
+
* @public
|
|
499
499
|
*/
|
|
500
500
|
export interface EncryptionContractConfiguration {
|
|
501
501
|
/**
|
|
502
|
-
* @public
|
|
503
502
|
* A collection of audio encryption presets.
|
|
503
|
+
* @public
|
|
504
504
|
*/
|
|
505
505
|
PresetSpeke20Audio: PresetSpeke20Audio | undefined;
|
|
506
506
|
/**
|
|
507
|
-
* @public
|
|
508
507
|
* A collection of video encryption presets.
|
|
508
|
+
* @public
|
|
509
509
|
*/
|
|
510
510
|
PresetSpeke20Video: PresetSpeke20Video | undefined;
|
|
511
511
|
}
|
|
512
512
|
/**
|
|
513
|
-
* @public
|
|
514
513
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
514
|
+
* @public
|
|
515
515
|
*/
|
|
516
516
|
export interface SpekeKeyProvider {
|
|
517
517
|
/**
|
|
518
|
-
* @public
|
|
519
518
|
* An Amazon Resource Name (ARN) of a Certificate Manager certificate
|
|
520
519
|
* that MediaPackage will use for enforcing secure end-to-end data
|
|
521
520
|
* transfer with the key provider service.
|
|
521
|
+
* @public
|
|
522
522
|
*/
|
|
523
523
|
CertificateArn?: string;
|
|
524
524
|
/**
|
|
525
|
-
* @public
|
|
526
525
|
* Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE 2.0.
|
|
527
526
|
* The encryption contract defines which content keys are used to encrypt the audio and video tracks in your stream.
|
|
528
527
|
* To configure the encryption contract, specify which audio and video encryption presets to use.
|
|
529
528
|
* Note the following considerations when using encryptionContractConfiguration:
|
|
530
529
|
* encryptionContractConfiguration can be used for DASH or CMAF endpoints that use SPEKE 2.0. SPEKE 2.0 relies on the CPIX 2.3 specification.
|
|
531
530
|
* You must disable key rotation for this endpoint by setting keyRotationIntervalSeconds to 0.
|
|
531
|
+
* @public
|
|
532
532
|
*/
|
|
533
533
|
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
534
534
|
/**
|
|
535
|
-
* @public
|
|
536
535
|
* The resource ID to include in key requests.
|
|
536
|
+
* @public
|
|
537
537
|
*/
|
|
538
538
|
ResourceId: string | undefined;
|
|
539
539
|
/**
|
|
540
|
-
* @public
|
|
541
540
|
* An Amazon Resource Name (ARN) of an IAM role that AWS Elemental
|
|
542
541
|
* MediaPackage will assume when accessing the key provider service.
|
|
542
|
+
* @public
|
|
543
543
|
*/
|
|
544
544
|
RoleArn: string | undefined;
|
|
545
545
|
/**
|
|
546
|
-
* @public
|
|
547
546
|
* The system IDs to include in key requests.
|
|
547
|
+
* @public
|
|
548
548
|
*/
|
|
549
549
|
SystemIds: string[] | undefined;
|
|
550
550
|
/**
|
|
551
|
-
* @public
|
|
552
551
|
* The URL of the external key provider service.
|
|
552
|
+
* @public
|
|
553
553
|
*/
|
|
554
554
|
Url: string | undefined;
|
|
555
555
|
}
|
|
556
556
|
/**
|
|
557
|
-
* @public
|
|
558
557
|
* A Common Media Application Format (CMAF) encryption configuration.
|
|
558
|
+
* @public
|
|
559
559
|
*/
|
|
560
560
|
export interface CmafEncryption {
|
|
561
561
|
/**
|
|
562
|
-
* @public
|
|
563
562
|
* An optional 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting blocks. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).
|
|
563
|
+
* @public
|
|
564
564
|
*/
|
|
565
565
|
ConstantInitializationVector?: string;
|
|
566
566
|
/**
|
|
567
|
-
* @public
|
|
568
567
|
* The encryption method to use.
|
|
568
|
+
* @public
|
|
569
569
|
*/
|
|
570
570
|
EncryptionMethod?: CmafEncryptionMethod;
|
|
571
571
|
/**
|
|
572
|
-
* @public
|
|
573
572
|
* Time (in seconds) between each encryption key rotation.
|
|
573
|
+
* @public
|
|
574
574
|
*/
|
|
575
575
|
KeyRotationIntervalSeconds?: number;
|
|
576
576
|
/**
|
|
577
|
-
* @public
|
|
578
577
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
578
|
+
* @public
|
|
579
579
|
*/
|
|
580
580
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
581
581
|
}
|
|
@@ -593,71 +593,71 @@ export declare const StreamOrder: {
|
|
|
593
593
|
*/
|
|
594
594
|
export type StreamOrder = (typeof StreamOrder)[keyof typeof StreamOrder];
|
|
595
595
|
/**
|
|
596
|
-
* @public
|
|
597
596
|
* A StreamSelection configuration.
|
|
597
|
+
* @public
|
|
598
598
|
*/
|
|
599
599
|
export interface StreamSelection {
|
|
600
600
|
/**
|
|
601
|
-
* @public
|
|
602
601
|
* The maximum video bitrate (bps) to include in output.
|
|
602
|
+
* @public
|
|
603
603
|
*/
|
|
604
604
|
MaxVideoBitsPerSecond?: number;
|
|
605
605
|
/**
|
|
606
|
-
* @public
|
|
607
606
|
* The minimum video bitrate (bps) to include in output.
|
|
607
|
+
* @public
|
|
608
608
|
*/
|
|
609
609
|
MinVideoBitsPerSecond?: number;
|
|
610
610
|
/**
|
|
611
|
-
* @public
|
|
612
611
|
* A directive that determines the order of streams in the output.
|
|
612
|
+
* @public
|
|
613
613
|
*/
|
|
614
614
|
StreamOrder?: StreamOrder;
|
|
615
615
|
}
|
|
616
616
|
/**
|
|
617
|
-
* @public
|
|
618
617
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
618
|
+
* @public
|
|
619
619
|
*/
|
|
620
620
|
export interface CmafPackage {
|
|
621
621
|
/**
|
|
622
|
-
* @public
|
|
623
622
|
* A Common Media Application Format (CMAF) encryption configuration.
|
|
623
|
+
* @public
|
|
624
624
|
*/
|
|
625
625
|
Encryption?: CmafEncryption;
|
|
626
626
|
/**
|
|
627
|
-
* @public
|
|
628
627
|
* A list of HLS manifest configurations
|
|
628
|
+
* @public
|
|
629
629
|
*/
|
|
630
630
|
HlsManifests?: HlsManifest[];
|
|
631
631
|
/**
|
|
632
|
-
* @public
|
|
633
632
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
634
633
|
* rounded to the nearest multiple of the source segment duration.
|
|
634
|
+
* @public
|
|
635
635
|
*/
|
|
636
636
|
SegmentDurationSeconds?: number;
|
|
637
637
|
/**
|
|
638
|
-
* @public
|
|
639
638
|
* An optional custom string that is prepended to the name of each segment. If not specified, it defaults to the ChannelId.
|
|
639
|
+
* @public
|
|
640
640
|
*/
|
|
641
641
|
SegmentPrefix?: string;
|
|
642
642
|
/**
|
|
643
|
-
* @public
|
|
644
643
|
* A StreamSelection configuration.
|
|
644
|
+
* @public
|
|
645
645
|
*/
|
|
646
646
|
StreamSelection?: StreamSelection;
|
|
647
647
|
}
|
|
648
648
|
/**
|
|
649
|
-
* @public
|
|
650
649
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
650
|
+
* @public
|
|
651
651
|
*/
|
|
652
652
|
export interface DashEncryption {
|
|
653
653
|
/**
|
|
654
|
-
* @public
|
|
655
654
|
* Time (in seconds) between each encryption key rotation.
|
|
655
|
+
* @public
|
|
656
656
|
*/
|
|
657
657
|
KeyRotationIntervalSeconds?: number;
|
|
658
658
|
/**
|
|
659
|
-
* @public
|
|
660
659
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
660
|
+
* @public
|
|
661
661
|
*/
|
|
662
662
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
663
663
|
}
|
|
@@ -716,19 +716,18 @@ export declare const UtcTiming: {
|
|
|
716
716
|
*/
|
|
717
717
|
export type UtcTiming = (typeof UtcTiming)[keyof typeof UtcTiming];
|
|
718
718
|
/**
|
|
719
|
-
* @public
|
|
720
719
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
720
|
+
* @public
|
|
721
721
|
*/
|
|
722
722
|
export interface DashPackage {
|
|
723
723
|
/**
|
|
724
|
-
* @public
|
|
725
724
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
726
725
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
727
726
|
* message types.
|
|
727
|
+
* @public
|
|
728
728
|
*/
|
|
729
729
|
AdTriggers?: __AdTriggersElement[];
|
|
730
730
|
/**
|
|
731
|
-
* @public
|
|
732
731
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
733
732
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
734
733
|
* ads. Choosing "RESTRICTED" means SCTE-35 messages of the types specified in AdTriggers that
|
|
@@ -737,80 +736,81 @@ export interface DashPackage {
|
|
|
737
736
|
* be treated as ads. Choosing "BOTH" means all SCTE-35 messages of the types specified in
|
|
738
737
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
739
738
|
* and are always treated as ads if specified in AdTriggers.
|
|
739
|
+
* @public
|
|
740
740
|
*/
|
|
741
741
|
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
742
742
|
/**
|
|
743
|
-
* @public
|
|
744
743
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
744
|
+
* @public
|
|
745
745
|
*/
|
|
746
746
|
Encryption?: DashEncryption;
|
|
747
747
|
/**
|
|
748
|
-
* @public
|
|
749
748
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
749
|
+
* @public
|
|
750
750
|
*/
|
|
751
751
|
IncludeIframeOnlyStream?: boolean;
|
|
752
752
|
/**
|
|
753
|
-
* @public
|
|
754
753
|
* Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level. When set to DRM_TOP_LEVEL_COMPACT, content protection elements are placed the MPD level and referenced at the AdaptationSet level.
|
|
754
|
+
* @public
|
|
755
755
|
*/
|
|
756
756
|
ManifestLayout?: ManifestLayout;
|
|
757
757
|
/**
|
|
758
|
-
* @public
|
|
759
758
|
* Time window (in seconds) contained in each manifest.
|
|
759
|
+
* @public
|
|
760
760
|
*/
|
|
761
761
|
ManifestWindowSeconds?: number;
|
|
762
762
|
/**
|
|
763
|
-
* @public
|
|
764
763
|
* Minimum duration (in seconds) that a player will buffer media before starting the presentation.
|
|
764
|
+
* @public
|
|
765
765
|
*/
|
|
766
766
|
MinBufferTimeSeconds?: number;
|
|
767
767
|
/**
|
|
768
|
-
* @public
|
|
769
768
|
* Minimum duration (in seconds) between potential changes to the Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD).
|
|
769
|
+
* @public
|
|
770
770
|
*/
|
|
771
771
|
MinUpdatePeriodSeconds?: number;
|
|
772
772
|
/**
|
|
773
|
-
* @public
|
|
774
773
|
* A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH)
|
|
775
774
|
* Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not
|
|
776
775
|
* be partitioned into more than one period. If the list contains "ADS", new periods will be created where
|
|
777
776
|
* the Channel source contains SCTE-35 ad markers.
|
|
777
|
+
* @public
|
|
778
778
|
*/
|
|
779
779
|
PeriodTriggers?: __PeriodTriggersElement[];
|
|
780
780
|
/**
|
|
781
|
-
* @public
|
|
782
781
|
* The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled. When set to "DVB-DASH_2014", DVB-DASH 2014 compliant output is enabled.
|
|
782
|
+
* @public
|
|
783
783
|
*/
|
|
784
784
|
Profile?: Profile;
|
|
785
785
|
/**
|
|
786
|
-
* @public
|
|
787
786
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
788
787
|
* rounded to the nearest multiple of the source segment duration.
|
|
788
|
+
* @public
|
|
789
789
|
*/
|
|
790
790
|
SegmentDurationSeconds?: number;
|
|
791
791
|
/**
|
|
792
|
-
* @public
|
|
793
792
|
* Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.
|
|
793
|
+
* @public
|
|
794
794
|
*/
|
|
795
795
|
SegmentTemplateFormat?: SegmentTemplateFormat;
|
|
796
796
|
/**
|
|
797
|
-
* @public
|
|
798
797
|
* A StreamSelection configuration.
|
|
798
|
+
* @public
|
|
799
799
|
*/
|
|
800
800
|
StreamSelection?: StreamSelection;
|
|
801
801
|
/**
|
|
802
|
-
* @public
|
|
803
802
|
* Duration (in seconds) to delay live content before presentation.
|
|
803
|
+
* @public
|
|
804
804
|
*/
|
|
805
805
|
SuggestedPresentationDelaySeconds?: number;
|
|
806
806
|
/**
|
|
807
|
-
* @public
|
|
808
807
|
* Determines the type of UTCTiming included in the Media Presentation Description (MPD)
|
|
808
|
+
* @public
|
|
809
809
|
*/
|
|
810
810
|
UtcTiming?: UtcTiming;
|
|
811
811
|
/**
|
|
812
|
-
* @public
|
|
813
812
|
* Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
|
|
813
|
+
* @public
|
|
814
814
|
*/
|
|
815
815
|
UtcTimingUri?: string;
|
|
816
816
|
}
|
|
@@ -827,44 +827,43 @@ export declare const EncryptionMethod: {
|
|
|
827
827
|
*/
|
|
828
828
|
export type EncryptionMethod = (typeof EncryptionMethod)[keyof typeof EncryptionMethod];
|
|
829
829
|
/**
|
|
830
|
-
* @public
|
|
831
830
|
* An HTTP Live Streaming (HLS) encryption configuration.
|
|
831
|
+
* @public
|
|
832
832
|
*/
|
|
833
833
|
export interface HlsEncryption {
|
|
834
834
|
/**
|
|
835
|
-
* @public
|
|
836
835
|
* A constant initialization vector for encryption (optional).
|
|
837
836
|
* When not specified the initialization vector will be periodically rotated.
|
|
837
|
+
* @public
|
|
838
838
|
*/
|
|
839
839
|
ConstantInitializationVector?: string;
|
|
840
840
|
/**
|
|
841
|
-
* @public
|
|
842
841
|
* The encryption method to use.
|
|
842
|
+
* @public
|
|
843
843
|
*/
|
|
844
844
|
EncryptionMethod?: EncryptionMethod;
|
|
845
845
|
/**
|
|
846
|
-
* @public
|
|
847
846
|
* Interval (in seconds) between each encryption key rotation.
|
|
847
|
+
* @public
|
|
848
848
|
*/
|
|
849
849
|
KeyRotationIntervalSeconds?: number;
|
|
850
850
|
/**
|
|
851
|
-
* @public
|
|
852
851
|
* When enabled, the EXT-X-KEY tag will be repeated in output manifests.
|
|
852
|
+
* @public
|
|
853
853
|
*/
|
|
854
854
|
RepeatExtXKey?: boolean;
|
|
855
855
|
/**
|
|
856
|
-
* @public
|
|
857
856
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
857
|
+
* @public
|
|
858
858
|
*/
|
|
859
859
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
860
860
|
}
|
|
861
861
|
/**
|
|
862
|
-
* @public
|
|
863
862
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
863
|
+
* @public
|
|
864
864
|
*/
|
|
865
865
|
export interface HlsPackage {
|
|
866
866
|
/**
|
|
867
|
-
* @public
|
|
868
867
|
* This setting controls how ad markers are included in the packaged OriginEndpoint.
|
|
869
868
|
* "NONE" will omit all SCTE-35 ad markers from the output.
|
|
870
869
|
* "PASSTHROUGH" causes the manifest to contain a copy of the SCTE-35 ad
|
|
@@ -874,17 +873,17 @@ export interface HlsPackage {
|
|
|
874
873
|
* "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and program transition events
|
|
875
874
|
* in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value
|
|
876
875
|
* that is greater than 0.
|
|
876
|
+
* @public
|
|
877
877
|
*/
|
|
878
878
|
AdMarkers?: AdMarkers;
|
|
879
879
|
/**
|
|
880
|
-
* @public
|
|
881
880
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
882
881
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
883
882
|
* message types.
|
|
883
|
+
* @public
|
|
884
884
|
*/
|
|
885
885
|
AdTriggers?: __AdTriggersElement[];
|
|
886
886
|
/**
|
|
887
|
-
* @public
|
|
888
887
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
889
888
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
890
889
|
* ads. Choosing "RESTRICTED" means SCTE-35 messages of the types specified in AdTriggers that
|
|
@@ -893,37 +892,37 @@ export interface HlsPackage {
|
|
|
893
892
|
* be treated as ads. Choosing "BOTH" means all SCTE-35 messages of the types specified in
|
|
894
893
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
895
894
|
* and are always treated as ads if specified in AdTriggers.
|
|
895
|
+
* @public
|
|
896
896
|
*/
|
|
897
897
|
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
898
898
|
/**
|
|
899
|
-
* @public
|
|
900
899
|
* An HTTP Live Streaming (HLS) encryption configuration.
|
|
900
|
+
* @public
|
|
901
901
|
*/
|
|
902
902
|
Encryption?: HlsEncryption;
|
|
903
903
|
/**
|
|
904
|
-
* @public
|
|
905
904
|
* When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
|
|
905
|
+
* @public
|
|
906
906
|
*/
|
|
907
907
|
IncludeDvbSubtitles?: boolean;
|
|
908
908
|
/**
|
|
909
|
-
* @public
|
|
910
909
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
910
|
+
* @public
|
|
911
911
|
*/
|
|
912
912
|
IncludeIframeOnlyStream?: boolean;
|
|
913
913
|
/**
|
|
914
|
-
* @public
|
|
915
914
|
* The HTTP Live Streaming (HLS) playlist type.
|
|
916
915
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
917
916
|
* entry will be included in the media playlist.
|
|
917
|
+
* @public
|
|
918
918
|
*/
|
|
919
919
|
PlaylistType?: PlaylistType;
|
|
920
920
|
/**
|
|
921
|
-
* @public
|
|
922
921
|
* Time window (in seconds) contained in each parent manifest.
|
|
922
|
+
* @public
|
|
923
923
|
*/
|
|
924
924
|
PlaylistWindowSeconds?: number;
|
|
925
925
|
/**
|
|
926
|
-
* @public
|
|
927
926
|
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
|
|
928
927
|
* inserted into manifests. Additionally, when an interval is specified
|
|
929
928
|
* ID3Timed Metadata messages will be generated every 5 seconds using the
|
|
@@ -933,59 +932,60 @@ export interface HlsPackage {
|
|
|
933
932
|
* ID3Timed Metadata messages will be generated. Note that irrespective
|
|
934
933
|
* of this parameter, if any ID3 Timed Metadata is found in HTTP Live Streaming (HLS) input,
|
|
935
934
|
* it will be passed through to HLS output.
|
|
935
|
+
* @public
|
|
936
936
|
*/
|
|
937
937
|
ProgramDateTimeIntervalSeconds?: number;
|
|
938
938
|
/**
|
|
939
|
-
* @public
|
|
940
939
|
* Duration (in seconds) of each fragment. Actual fragments will be
|
|
941
940
|
* rounded to the nearest multiple of the source fragment duration.
|
|
941
|
+
* @public
|
|
942
942
|
*/
|
|
943
943
|
SegmentDurationSeconds?: number;
|
|
944
944
|
/**
|
|
945
|
-
* @public
|
|
946
945
|
* A StreamSelection configuration.
|
|
946
|
+
* @public
|
|
947
947
|
*/
|
|
948
948
|
StreamSelection?: StreamSelection;
|
|
949
949
|
/**
|
|
950
|
-
* @public
|
|
951
950
|
* When enabled, audio streams will be placed in rendition groups in the output.
|
|
951
|
+
* @public
|
|
952
952
|
*/
|
|
953
953
|
UseAudioRenditionGroup?: boolean;
|
|
954
954
|
}
|
|
955
955
|
/**
|
|
956
|
-
* @public
|
|
957
956
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
957
|
+
* @public
|
|
958
958
|
*/
|
|
959
959
|
export interface MssEncryption {
|
|
960
960
|
/**
|
|
961
|
-
* @public
|
|
962
961
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
962
|
+
* @public
|
|
963
963
|
*/
|
|
964
964
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
965
965
|
}
|
|
966
966
|
/**
|
|
967
|
-
* @public
|
|
968
967
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
968
|
+
* @public
|
|
969
969
|
*/
|
|
970
970
|
export interface MssPackage {
|
|
971
971
|
/**
|
|
972
|
-
* @public
|
|
973
972
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
973
|
+
* @public
|
|
974
974
|
*/
|
|
975
975
|
Encryption?: MssEncryption;
|
|
976
976
|
/**
|
|
977
|
-
* @public
|
|
978
977
|
* The time window (in seconds) contained in each manifest.
|
|
978
|
+
* @public
|
|
979
979
|
*/
|
|
980
980
|
ManifestWindowSeconds?: number;
|
|
981
981
|
/**
|
|
982
|
-
* @public
|
|
983
982
|
* The duration (in seconds) of each segment.
|
|
983
|
+
* @public
|
|
984
984
|
*/
|
|
985
985
|
SegmentDurationSeconds?: number;
|
|
986
986
|
/**
|
|
987
|
-
* @public
|
|
988
987
|
* A StreamSelection configuration.
|
|
988
|
+
* @public
|
|
989
989
|
*/
|
|
990
990
|
StreamSelection?: StreamSelection;
|
|
991
991
|
}
|
|
@@ -1002,150 +1002,150 @@ export declare const Origination: {
|
|
|
1002
1002
|
*/
|
|
1003
1003
|
export type Origination = (typeof Origination)[keyof typeof Origination];
|
|
1004
1004
|
/**
|
|
1005
|
-
* @public
|
|
1006
1005
|
* An OriginEndpoint resource configuration.
|
|
1006
|
+
* @public
|
|
1007
1007
|
*/
|
|
1008
1008
|
export interface OriginEndpoint {
|
|
1009
1009
|
/**
|
|
1010
|
-
* @public
|
|
1011
1010
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
1011
|
+
* @public
|
|
1012
1012
|
*/
|
|
1013
1013
|
Arn?: string;
|
|
1014
1014
|
/**
|
|
1015
|
-
* @public
|
|
1016
1015
|
* CDN Authorization credentials
|
|
1016
|
+
* @public
|
|
1017
1017
|
*/
|
|
1018
1018
|
Authorization?: Authorization;
|
|
1019
1019
|
/**
|
|
1020
|
-
* @public
|
|
1021
1020
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
1021
|
+
* @public
|
|
1022
1022
|
*/
|
|
1023
1023
|
ChannelId?: string;
|
|
1024
1024
|
/**
|
|
1025
|
-
* @public
|
|
1026
1025
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1026
|
+
* @public
|
|
1027
1027
|
*/
|
|
1028
1028
|
CmafPackage?: CmafPackage;
|
|
1029
1029
|
/**
|
|
1030
|
-
* @public
|
|
1031
1030
|
* The date and time the OriginEndpoint was created.
|
|
1031
|
+
* @public
|
|
1032
1032
|
*/
|
|
1033
1033
|
CreatedAt?: string;
|
|
1034
1034
|
/**
|
|
1035
|
-
* @public
|
|
1036
1035
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1036
|
+
* @public
|
|
1037
1037
|
*/
|
|
1038
1038
|
DashPackage?: DashPackage;
|
|
1039
1039
|
/**
|
|
1040
|
-
* @public
|
|
1041
1040
|
* A short text description of the OriginEndpoint.
|
|
1041
|
+
* @public
|
|
1042
1042
|
*/
|
|
1043
1043
|
Description?: string;
|
|
1044
1044
|
/**
|
|
1045
|
-
* @public
|
|
1046
1045
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1046
|
+
* @public
|
|
1047
1047
|
*/
|
|
1048
1048
|
HlsPackage?: HlsPackage;
|
|
1049
1049
|
/**
|
|
1050
|
-
* @public
|
|
1051
1050
|
* The ID of the OriginEndpoint.
|
|
1051
|
+
* @public
|
|
1052
1052
|
*/
|
|
1053
1053
|
Id?: string;
|
|
1054
1054
|
/**
|
|
1055
|
-
* @public
|
|
1056
1055
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
1056
|
+
* @public
|
|
1057
1057
|
*/
|
|
1058
1058
|
ManifestName?: string;
|
|
1059
1059
|
/**
|
|
1060
|
-
* @public
|
|
1061
1060
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1061
|
+
* @public
|
|
1062
1062
|
*/
|
|
1063
1063
|
MssPackage?: MssPackage;
|
|
1064
1064
|
/**
|
|
1065
|
-
* @public
|
|
1066
1065
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1067
1066
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1068
1067
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1068
|
+
* @public
|
|
1069
1069
|
*/
|
|
1070
1070
|
Origination?: Origination;
|
|
1071
1071
|
/**
|
|
1072
|
-
* @public
|
|
1073
1072
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1074
1073
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1074
|
+
* @public
|
|
1075
1075
|
*/
|
|
1076
1076
|
StartoverWindowSeconds?: number;
|
|
1077
1077
|
/**
|
|
1078
|
-
* @public
|
|
1079
1078
|
* A collection of tags associated with a resource
|
|
1079
|
+
* @public
|
|
1080
1080
|
*/
|
|
1081
1081
|
Tags?: Record<string, string>;
|
|
1082
1082
|
/**
|
|
1083
|
-
* @public
|
|
1084
1083
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1085
1084
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1085
|
+
* @public
|
|
1086
1086
|
*/
|
|
1087
1087
|
TimeDelaySeconds?: number;
|
|
1088
1088
|
/**
|
|
1089
|
-
* @public
|
|
1090
1089
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
1090
|
+
* @public
|
|
1091
1091
|
*/
|
|
1092
1092
|
Url?: string;
|
|
1093
1093
|
/**
|
|
1094
|
-
* @public
|
|
1095
1094
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1095
|
+
* @public
|
|
1096
1096
|
*/
|
|
1097
1097
|
Whitelist?: string[];
|
|
1098
1098
|
}
|
|
1099
1099
|
/**
|
|
1100
|
-
* @public
|
|
1101
1100
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1101
|
+
* @public
|
|
1102
1102
|
*/
|
|
1103
1103
|
export interface CmafPackageCreateOrUpdateParameters {
|
|
1104
1104
|
/**
|
|
1105
|
-
* @public
|
|
1106
1105
|
* A Common Media Application Format (CMAF) encryption configuration.
|
|
1106
|
+
* @public
|
|
1107
1107
|
*/
|
|
1108
1108
|
Encryption?: CmafEncryption;
|
|
1109
1109
|
/**
|
|
1110
|
-
* @public
|
|
1111
1110
|
* A list of HLS manifest configurations
|
|
1111
|
+
* @public
|
|
1112
1112
|
*/
|
|
1113
1113
|
HlsManifests?: HlsManifestCreateOrUpdateParameters[];
|
|
1114
1114
|
/**
|
|
1115
|
-
* @public
|
|
1116
1115
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
1117
1116
|
* rounded to the nearest multiple of the source segment duration.
|
|
1117
|
+
* @public
|
|
1118
1118
|
*/
|
|
1119
1119
|
SegmentDurationSeconds?: number;
|
|
1120
1120
|
/**
|
|
1121
|
-
* @public
|
|
1122
1121
|
* An optional custom string that is prepended to the name of each segment. If not specified, it defaults to the ChannelId.
|
|
1122
|
+
* @public
|
|
1123
1123
|
*/
|
|
1124
1124
|
SegmentPrefix?: string;
|
|
1125
1125
|
/**
|
|
1126
|
-
* @public
|
|
1127
1126
|
* A StreamSelection configuration.
|
|
1127
|
+
* @public
|
|
1128
1128
|
*/
|
|
1129
1129
|
StreamSelection?: StreamSelection;
|
|
1130
1130
|
}
|
|
1131
1131
|
/**
|
|
1132
|
-
* @public
|
|
1133
1132
|
* the option to configure log subscription.
|
|
1133
|
+
* @public
|
|
1134
1134
|
*/
|
|
1135
1135
|
export interface ConfigureLogsRequest {
|
|
1136
1136
|
/**
|
|
1137
|
-
* @public
|
|
1138
1137
|
* Configure egress access logging.
|
|
1138
|
+
* @public
|
|
1139
1139
|
*/
|
|
1140
1140
|
EgressAccessLogs?: EgressAccessLogs;
|
|
1141
1141
|
/**
|
|
1142
|
-
* @public
|
|
1143
1142
|
* The ID of the channel to log subscription.
|
|
1143
|
+
* @public
|
|
1144
1144
|
*/
|
|
1145
1145
|
Id: string | undefined;
|
|
1146
1146
|
/**
|
|
1147
|
-
* @public
|
|
1148
1147
|
* Configure ingress access logging.
|
|
1148
|
+
* @public
|
|
1149
1149
|
*/
|
|
1150
1150
|
IngressAccessLogs?: IngressAccessLogs;
|
|
1151
1151
|
}
|
|
@@ -1154,49 +1154,49 @@ export interface ConfigureLogsRequest {
|
|
|
1154
1154
|
*/
|
|
1155
1155
|
export interface ConfigureLogsResponse {
|
|
1156
1156
|
/**
|
|
1157
|
-
* @public
|
|
1158
1157
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1158
|
+
* @public
|
|
1159
1159
|
*/
|
|
1160
1160
|
Arn?: string;
|
|
1161
1161
|
/**
|
|
1162
|
-
* @public
|
|
1163
1162
|
* The date and time the Channel was created.
|
|
1163
|
+
* @public
|
|
1164
1164
|
*/
|
|
1165
1165
|
CreatedAt?: string;
|
|
1166
1166
|
/**
|
|
1167
|
-
* @public
|
|
1168
1167
|
* A short text description of the Channel.
|
|
1168
|
+
* @public
|
|
1169
1169
|
*/
|
|
1170
1170
|
Description?: string;
|
|
1171
1171
|
/**
|
|
1172
|
-
* @public
|
|
1173
1172
|
* Configure egress access logging.
|
|
1173
|
+
* @public
|
|
1174
1174
|
*/
|
|
1175
1175
|
EgressAccessLogs?: EgressAccessLogs;
|
|
1176
1176
|
/**
|
|
1177
|
-
* @public
|
|
1178
1177
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
1178
|
+
* @public
|
|
1179
1179
|
*/
|
|
1180
1180
|
HlsIngest?: HlsIngest;
|
|
1181
1181
|
/**
|
|
1182
|
-
* @public
|
|
1183
1182
|
* The ID of the Channel.
|
|
1183
|
+
* @public
|
|
1184
1184
|
*/
|
|
1185
1185
|
Id?: string;
|
|
1186
1186
|
/**
|
|
1187
|
-
* @public
|
|
1188
1187
|
* Configure ingress access logging.
|
|
1188
|
+
* @public
|
|
1189
1189
|
*/
|
|
1190
1190
|
IngressAccessLogs?: IngressAccessLogs;
|
|
1191
1191
|
/**
|
|
1192
|
-
* @public
|
|
1193
1192
|
* A collection of tags associated with a resource
|
|
1193
|
+
* @public
|
|
1194
1194
|
*/
|
|
1195
1195
|
Tags?: Record<string, string>;
|
|
1196
1196
|
}
|
|
1197
1197
|
/**
|
|
1198
|
-
* @public
|
|
1199
1198
|
* The client is not authorized to access the requested resource.
|
|
1199
|
+
* @public
|
|
1200
1200
|
*/
|
|
1201
1201
|
export declare class ForbiddenException extends __BaseException {
|
|
1202
1202
|
readonly name: "ForbiddenException";
|
|
@@ -1208,8 +1208,8 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
1208
1208
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
1209
1209
|
}
|
|
1210
1210
|
/**
|
|
1211
|
-
* @public
|
|
1212
1211
|
* An unexpected error occurred.
|
|
1212
|
+
* @public
|
|
1213
1213
|
*/
|
|
1214
1214
|
export declare class InternalServerErrorException extends __BaseException {
|
|
1215
1215
|
readonly name: "InternalServerErrorException";
|
|
@@ -1221,8 +1221,8 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
1221
1221
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
1222
1222
|
}
|
|
1223
1223
|
/**
|
|
1224
|
-
* @public
|
|
1225
1224
|
* The requested resource does not exist.
|
|
1225
|
+
* @public
|
|
1226
1226
|
*/
|
|
1227
1227
|
export declare class NotFoundException extends __BaseException {
|
|
1228
1228
|
readonly name: "NotFoundException";
|
|
@@ -1234,8 +1234,8 @@ export declare class NotFoundException extends __BaseException {
|
|
|
1234
1234
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
1235
1235
|
}
|
|
1236
1236
|
/**
|
|
1237
|
-
* @public
|
|
1238
1237
|
* An unexpected error occurred.
|
|
1238
|
+
* @public
|
|
1239
1239
|
*/
|
|
1240
1240
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
1241
1241
|
readonly name: "ServiceUnavailableException";
|
|
@@ -1247,8 +1247,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
1247
1247
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
1248
1248
|
}
|
|
1249
1249
|
/**
|
|
1250
|
-
* @public
|
|
1251
1250
|
* The client has exceeded their resource or throttling limits.
|
|
1251
|
+
* @public
|
|
1252
1252
|
*/
|
|
1253
1253
|
export declare class TooManyRequestsException extends __BaseException {
|
|
1254
1254
|
readonly name: "TooManyRequestsException";
|
|
@@ -1260,8 +1260,8 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
1260
1260
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
1261
1261
|
}
|
|
1262
1262
|
/**
|
|
1263
|
-
* @public
|
|
1264
1263
|
* The parameters sent in the request are not valid.
|
|
1264
|
+
* @public
|
|
1265
1265
|
*/
|
|
1266
1266
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
1267
1267
|
readonly name: "UnprocessableEntityException";
|
|
@@ -1273,24 +1273,24 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
1273
1273
|
constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
|
|
1274
1274
|
}
|
|
1275
1275
|
/**
|
|
1276
|
-
* @public
|
|
1277
1276
|
* A new Channel configuration.
|
|
1277
|
+
* @public
|
|
1278
1278
|
*/
|
|
1279
1279
|
export interface CreateChannelRequest {
|
|
1280
1280
|
/**
|
|
1281
|
-
* @public
|
|
1282
1281
|
* A short text description of the Channel.
|
|
1282
|
+
* @public
|
|
1283
1283
|
*/
|
|
1284
1284
|
Description?: string;
|
|
1285
1285
|
/**
|
|
1286
|
-
* @public
|
|
1287
1286
|
* The ID of the Channel. The ID must be unique within the region and it
|
|
1288
1287
|
* cannot be changed after a Channel is created.
|
|
1288
|
+
* @public
|
|
1289
1289
|
*/
|
|
1290
1290
|
Id: string | undefined;
|
|
1291
1291
|
/**
|
|
1292
|
-
* @public
|
|
1293
1292
|
* A collection of tags associated with a resource
|
|
1293
|
+
* @public
|
|
1294
1294
|
*/
|
|
1295
1295
|
Tags?: Record<string, string>;
|
|
1296
1296
|
}
|
|
@@ -1299,76 +1299,76 @@ export interface CreateChannelRequest {
|
|
|
1299
1299
|
*/
|
|
1300
1300
|
export interface CreateChannelResponse {
|
|
1301
1301
|
/**
|
|
1302
|
-
* @public
|
|
1303
1302
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1303
|
+
* @public
|
|
1304
1304
|
*/
|
|
1305
1305
|
Arn?: string;
|
|
1306
1306
|
/**
|
|
1307
|
-
* @public
|
|
1308
1307
|
* The date and time the Channel was created.
|
|
1308
|
+
* @public
|
|
1309
1309
|
*/
|
|
1310
1310
|
CreatedAt?: string;
|
|
1311
1311
|
/**
|
|
1312
|
-
* @public
|
|
1313
1312
|
* A short text description of the Channel.
|
|
1313
|
+
* @public
|
|
1314
1314
|
*/
|
|
1315
1315
|
Description?: string;
|
|
1316
1316
|
/**
|
|
1317
|
-
* @public
|
|
1318
1317
|
* Configure egress access logging.
|
|
1318
|
+
* @public
|
|
1319
1319
|
*/
|
|
1320
1320
|
EgressAccessLogs?: EgressAccessLogs;
|
|
1321
1321
|
/**
|
|
1322
|
-
* @public
|
|
1323
1322
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
1323
|
+
* @public
|
|
1324
1324
|
*/
|
|
1325
1325
|
HlsIngest?: HlsIngest;
|
|
1326
1326
|
/**
|
|
1327
|
-
* @public
|
|
1328
1327
|
* The ID of the Channel.
|
|
1328
|
+
* @public
|
|
1329
1329
|
*/
|
|
1330
1330
|
Id?: string;
|
|
1331
1331
|
/**
|
|
1332
|
-
* @public
|
|
1333
1332
|
* Configure ingress access logging.
|
|
1333
|
+
* @public
|
|
1334
1334
|
*/
|
|
1335
1335
|
IngressAccessLogs?: IngressAccessLogs;
|
|
1336
1336
|
/**
|
|
1337
|
-
* @public
|
|
1338
1337
|
* A collection of tags associated with a resource
|
|
1338
|
+
* @public
|
|
1339
1339
|
*/
|
|
1340
1340
|
Tags?: Record<string, string>;
|
|
1341
1341
|
}
|
|
1342
1342
|
/**
|
|
1343
|
-
* @public
|
|
1344
1343
|
* Configuration parameters used to create a new HarvestJob.
|
|
1344
|
+
* @public
|
|
1345
1345
|
*/
|
|
1346
1346
|
export interface CreateHarvestJobRequest {
|
|
1347
1347
|
/**
|
|
1348
|
-
* @public
|
|
1349
1348
|
* The end of the time-window which will be harvested
|
|
1349
|
+
* @public
|
|
1350
1350
|
*/
|
|
1351
1351
|
EndTime: string | undefined;
|
|
1352
1352
|
/**
|
|
1353
|
-
* @public
|
|
1354
1353
|
* The ID of the HarvestJob. The ID must be unique within the region
|
|
1355
1354
|
* and it cannot be changed after the HarvestJob is submitted
|
|
1355
|
+
* @public
|
|
1356
1356
|
*/
|
|
1357
1357
|
Id: string | undefined;
|
|
1358
1358
|
/**
|
|
1359
|
-
* @public
|
|
1360
1359
|
* The ID of the OriginEndpoint that the HarvestJob will harvest from.
|
|
1361
1360
|
* This cannot be changed after the HarvestJob is submitted.
|
|
1361
|
+
* @public
|
|
1362
1362
|
*/
|
|
1363
1363
|
OriginEndpointId: string | undefined;
|
|
1364
1364
|
/**
|
|
1365
|
-
* @public
|
|
1366
1365
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
1366
|
+
* @public
|
|
1367
1367
|
*/
|
|
1368
1368
|
S3Destination: S3Destination | undefined;
|
|
1369
1369
|
/**
|
|
1370
|
-
* @public
|
|
1371
1370
|
* The start of the time-window which will be harvested
|
|
1371
|
+
* @public
|
|
1372
1372
|
*/
|
|
1373
1373
|
StartTime: string | undefined;
|
|
1374
1374
|
}
|
|
@@ -1377,134 +1377,134 @@ export interface CreateHarvestJobRequest {
|
|
|
1377
1377
|
*/
|
|
1378
1378
|
export interface CreateHarvestJobResponse {
|
|
1379
1379
|
/**
|
|
1380
|
-
* @public
|
|
1381
1380
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
1381
|
+
* @public
|
|
1382
1382
|
*/
|
|
1383
1383
|
Arn?: string;
|
|
1384
1384
|
/**
|
|
1385
|
-
* @public
|
|
1386
1385
|
* The ID of the Channel that the HarvestJob will harvest from.
|
|
1386
|
+
* @public
|
|
1387
1387
|
*/
|
|
1388
1388
|
ChannelId?: string;
|
|
1389
1389
|
/**
|
|
1390
|
-
* @public
|
|
1391
1390
|
* The date and time the HarvestJob was submitted.
|
|
1391
|
+
* @public
|
|
1392
1392
|
*/
|
|
1393
1393
|
CreatedAt?: string;
|
|
1394
1394
|
/**
|
|
1395
|
-
* @public
|
|
1396
1395
|
* The end of the time-window which will be harvested.
|
|
1396
|
+
* @public
|
|
1397
1397
|
*/
|
|
1398
1398
|
EndTime?: string;
|
|
1399
1399
|
/**
|
|
1400
|
-
* @public
|
|
1401
1400
|
* The ID of the HarvestJob. The ID must be unique within the region
|
|
1402
1401
|
* and it cannot be changed after the HarvestJob is submitted.
|
|
1402
|
+
* @public
|
|
1403
1403
|
*/
|
|
1404
1404
|
Id?: string;
|
|
1405
1405
|
/**
|
|
1406
|
-
* @public
|
|
1407
1406
|
* The ID of the OriginEndpoint that the HarvestJob will harvest from.
|
|
1408
1407
|
* This cannot be changed after the HarvestJob is submitted.
|
|
1408
|
+
* @public
|
|
1409
1409
|
*/
|
|
1410
1410
|
OriginEndpointId?: string;
|
|
1411
1411
|
/**
|
|
1412
|
-
* @public
|
|
1413
1412
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
1413
|
+
* @public
|
|
1414
1414
|
*/
|
|
1415
1415
|
S3Destination?: S3Destination;
|
|
1416
1416
|
/**
|
|
1417
|
-
* @public
|
|
1418
1417
|
* The start of the time-window which will be harvested.
|
|
1418
|
+
* @public
|
|
1419
1419
|
*/
|
|
1420
1420
|
StartTime?: string;
|
|
1421
1421
|
/**
|
|
1422
|
-
* @public
|
|
1423
1422
|
* The current status of the HarvestJob. Consider setting up a CloudWatch Event to listen for
|
|
1424
1423
|
* HarvestJobs as they succeed or fail. In the event of failure, the CloudWatch Event will
|
|
1425
1424
|
* include an explanation of why the HarvestJob failed.
|
|
1425
|
+
* @public
|
|
1426
1426
|
*/
|
|
1427
1427
|
Status?: Status;
|
|
1428
1428
|
}
|
|
1429
1429
|
/**
|
|
1430
|
-
* @public
|
|
1431
1430
|
* Configuration parameters used to create a new OriginEndpoint.
|
|
1431
|
+
* @public
|
|
1432
1432
|
*/
|
|
1433
1433
|
export interface CreateOriginEndpointRequest {
|
|
1434
1434
|
/**
|
|
1435
|
-
* @public
|
|
1436
1435
|
* CDN Authorization credentials
|
|
1436
|
+
* @public
|
|
1437
1437
|
*/
|
|
1438
1438
|
Authorization?: Authorization;
|
|
1439
1439
|
/**
|
|
1440
|
-
* @public
|
|
1441
1440
|
* The ID of the Channel that the OriginEndpoint will be associated with.
|
|
1442
1441
|
* This cannot be changed after the OriginEndpoint is created.
|
|
1442
|
+
* @public
|
|
1443
1443
|
*/
|
|
1444
1444
|
ChannelId: string | undefined;
|
|
1445
1445
|
/**
|
|
1446
|
-
* @public
|
|
1447
1446
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1447
|
+
* @public
|
|
1448
1448
|
*/
|
|
1449
1449
|
CmafPackage?: CmafPackageCreateOrUpdateParameters;
|
|
1450
1450
|
/**
|
|
1451
|
-
* @public
|
|
1452
1451
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1452
|
+
* @public
|
|
1453
1453
|
*/
|
|
1454
1454
|
DashPackage?: DashPackage;
|
|
1455
1455
|
/**
|
|
1456
|
-
* @public
|
|
1457
1456
|
* A short text description of the OriginEndpoint.
|
|
1457
|
+
* @public
|
|
1458
1458
|
*/
|
|
1459
1459
|
Description?: string;
|
|
1460
1460
|
/**
|
|
1461
|
-
* @public
|
|
1462
1461
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1462
|
+
* @public
|
|
1463
1463
|
*/
|
|
1464
1464
|
HlsPackage?: HlsPackage;
|
|
1465
1465
|
/**
|
|
1466
|
-
* @public
|
|
1467
1466
|
* The ID of the OriginEndpoint. The ID must be unique within the region
|
|
1468
1467
|
* and it cannot be changed after the OriginEndpoint is created.
|
|
1468
|
+
* @public
|
|
1469
1469
|
*/
|
|
1470
1470
|
Id: string | undefined;
|
|
1471
1471
|
/**
|
|
1472
|
-
* @public
|
|
1473
1472
|
* A short string that will be used as the filename of the OriginEndpoint URL (defaults to "index").
|
|
1473
|
+
* @public
|
|
1474
1474
|
*/
|
|
1475
1475
|
ManifestName?: string;
|
|
1476
1476
|
/**
|
|
1477
|
-
* @public
|
|
1478
1477
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1478
|
+
* @public
|
|
1479
1479
|
*/
|
|
1480
1480
|
MssPackage?: MssPackage;
|
|
1481
1481
|
/**
|
|
1482
|
-
* @public
|
|
1483
1482
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1484
1483
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1485
1484
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1485
|
+
* @public
|
|
1486
1486
|
*/
|
|
1487
1487
|
Origination?: Origination;
|
|
1488
1488
|
/**
|
|
1489
|
-
* @public
|
|
1490
1489
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1491
1490
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1491
|
+
* @public
|
|
1492
1492
|
*/
|
|
1493
1493
|
StartoverWindowSeconds?: number;
|
|
1494
1494
|
/**
|
|
1495
|
-
* @public
|
|
1496
1495
|
* A collection of tags associated with a resource
|
|
1496
|
+
* @public
|
|
1497
1497
|
*/
|
|
1498
1498
|
Tags?: Record<string, string>;
|
|
1499
1499
|
/**
|
|
1500
|
-
* @public
|
|
1501
1500
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1502
1501
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1502
|
+
* @public
|
|
1503
1503
|
*/
|
|
1504
1504
|
TimeDelaySeconds?: number;
|
|
1505
1505
|
/**
|
|
1506
|
-
* @public
|
|
1507
1506
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1507
|
+
* @public
|
|
1508
1508
|
*/
|
|
1509
1509
|
Whitelist?: string[];
|
|
1510
1510
|
}
|
|
@@ -1513,92 +1513,92 @@ export interface CreateOriginEndpointRequest {
|
|
|
1513
1513
|
*/
|
|
1514
1514
|
export interface CreateOriginEndpointResponse {
|
|
1515
1515
|
/**
|
|
1516
|
-
* @public
|
|
1517
1516
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
1517
|
+
* @public
|
|
1518
1518
|
*/
|
|
1519
1519
|
Arn?: string;
|
|
1520
1520
|
/**
|
|
1521
|
-
* @public
|
|
1522
1521
|
* CDN Authorization credentials
|
|
1522
|
+
* @public
|
|
1523
1523
|
*/
|
|
1524
1524
|
Authorization?: Authorization;
|
|
1525
1525
|
/**
|
|
1526
|
-
* @public
|
|
1527
1526
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
1527
|
+
* @public
|
|
1528
1528
|
*/
|
|
1529
1529
|
ChannelId?: string;
|
|
1530
1530
|
/**
|
|
1531
|
-
* @public
|
|
1532
1531
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1532
|
+
* @public
|
|
1533
1533
|
*/
|
|
1534
1534
|
CmafPackage?: CmafPackage;
|
|
1535
1535
|
/**
|
|
1536
|
-
* @public
|
|
1537
1536
|
* The date and time the OriginEndpoint was created.
|
|
1537
|
+
* @public
|
|
1538
1538
|
*/
|
|
1539
1539
|
CreatedAt?: string;
|
|
1540
1540
|
/**
|
|
1541
|
-
* @public
|
|
1542
1541
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1542
|
+
* @public
|
|
1543
1543
|
*/
|
|
1544
1544
|
DashPackage?: DashPackage;
|
|
1545
1545
|
/**
|
|
1546
|
-
* @public
|
|
1547
1546
|
* A short text description of the OriginEndpoint.
|
|
1547
|
+
* @public
|
|
1548
1548
|
*/
|
|
1549
1549
|
Description?: string;
|
|
1550
1550
|
/**
|
|
1551
|
-
* @public
|
|
1552
1551
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1552
|
+
* @public
|
|
1553
1553
|
*/
|
|
1554
1554
|
HlsPackage?: HlsPackage;
|
|
1555
1555
|
/**
|
|
1556
|
-
* @public
|
|
1557
1556
|
* The ID of the OriginEndpoint.
|
|
1557
|
+
* @public
|
|
1558
1558
|
*/
|
|
1559
1559
|
Id?: string;
|
|
1560
1560
|
/**
|
|
1561
|
-
* @public
|
|
1562
1561
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
1562
|
+
* @public
|
|
1563
1563
|
*/
|
|
1564
1564
|
ManifestName?: string;
|
|
1565
1565
|
/**
|
|
1566
|
-
* @public
|
|
1567
1566
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1567
|
+
* @public
|
|
1568
1568
|
*/
|
|
1569
1569
|
MssPackage?: MssPackage;
|
|
1570
1570
|
/**
|
|
1571
|
-
* @public
|
|
1572
1571
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1573
1572
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1574
1573
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1574
|
+
* @public
|
|
1575
1575
|
*/
|
|
1576
1576
|
Origination?: Origination;
|
|
1577
1577
|
/**
|
|
1578
|
-
* @public
|
|
1579
1578
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1580
1579
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1580
|
+
* @public
|
|
1581
1581
|
*/
|
|
1582
1582
|
StartoverWindowSeconds?: number;
|
|
1583
1583
|
/**
|
|
1584
|
-
* @public
|
|
1585
1584
|
* A collection of tags associated with a resource
|
|
1585
|
+
* @public
|
|
1586
1586
|
*/
|
|
1587
1587
|
Tags?: Record<string, string>;
|
|
1588
1588
|
/**
|
|
1589
|
-
* @public
|
|
1590
1589
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1591
1590
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1591
|
+
* @public
|
|
1592
1592
|
*/
|
|
1593
1593
|
TimeDelaySeconds?: number;
|
|
1594
1594
|
/**
|
|
1595
|
-
* @public
|
|
1596
1595
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
1596
|
+
* @public
|
|
1597
1597
|
*/
|
|
1598
1598
|
Url?: string;
|
|
1599
1599
|
/**
|
|
1600
|
-
* @public
|
|
1601
1600
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1601
|
+
* @public
|
|
1602
1602
|
*/
|
|
1603
1603
|
Whitelist?: string[];
|
|
1604
1604
|
}
|
|
@@ -1607,8 +1607,8 @@ export interface CreateOriginEndpointResponse {
|
|
|
1607
1607
|
*/
|
|
1608
1608
|
export interface DeleteChannelRequest {
|
|
1609
1609
|
/**
|
|
1610
|
-
* @public
|
|
1611
1610
|
* The ID of the Channel to delete.
|
|
1611
|
+
* @public
|
|
1612
1612
|
*/
|
|
1613
1613
|
Id: string | undefined;
|
|
1614
1614
|
}
|
|
@@ -1622,8 +1622,8 @@ export interface DeleteChannelResponse {
|
|
|
1622
1622
|
*/
|
|
1623
1623
|
export interface DeleteOriginEndpointRequest {
|
|
1624
1624
|
/**
|
|
1625
|
-
* @public
|
|
1626
1625
|
* The ID of the OriginEndpoint to delete.
|
|
1626
|
+
* @public
|
|
1627
1627
|
*/
|
|
1628
1628
|
Id: string | undefined;
|
|
1629
1629
|
}
|
|
@@ -1637,8 +1637,8 @@ export interface DeleteOriginEndpointResponse {
|
|
|
1637
1637
|
*/
|
|
1638
1638
|
export interface DescribeChannelRequest {
|
|
1639
1639
|
/**
|
|
1640
|
-
* @public
|
|
1641
1640
|
* The ID of a Channel.
|
|
1641
|
+
* @public
|
|
1642
1642
|
*/
|
|
1643
1643
|
Id: string | undefined;
|
|
1644
1644
|
}
|
|
@@ -1647,43 +1647,43 @@ export interface DescribeChannelRequest {
|
|
|
1647
1647
|
*/
|
|
1648
1648
|
export interface DescribeChannelResponse {
|
|
1649
1649
|
/**
|
|
1650
|
-
* @public
|
|
1651
1650
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1651
|
+
* @public
|
|
1652
1652
|
*/
|
|
1653
1653
|
Arn?: string;
|
|
1654
1654
|
/**
|
|
1655
|
-
* @public
|
|
1656
1655
|
* The date and time the Channel was created.
|
|
1656
|
+
* @public
|
|
1657
1657
|
*/
|
|
1658
1658
|
CreatedAt?: string;
|
|
1659
1659
|
/**
|
|
1660
|
-
* @public
|
|
1661
1660
|
* A short text description of the Channel.
|
|
1661
|
+
* @public
|
|
1662
1662
|
*/
|
|
1663
1663
|
Description?: string;
|
|
1664
1664
|
/**
|
|
1665
|
-
* @public
|
|
1666
1665
|
* Configure egress access logging.
|
|
1666
|
+
* @public
|
|
1667
1667
|
*/
|
|
1668
1668
|
EgressAccessLogs?: EgressAccessLogs;
|
|
1669
1669
|
/**
|
|
1670
|
-
* @public
|
|
1671
1670
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
1671
|
+
* @public
|
|
1672
1672
|
*/
|
|
1673
1673
|
HlsIngest?: HlsIngest;
|
|
1674
1674
|
/**
|
|
1675
|
-
* @public
|
|
1676
1675
|
* The ID of the Channel.
|
|
1676
|
+
* @public
|
|
1677
1677
|
*/
|
|
1678
1678
|
Id?: string;
|
|
1679
1679
|
/**
|
|
1680
|
-
* @public
|
|
1681
1680
|
* Configure ingress access logging.
|
|
1681
|
+
* @public
|
|
1682
1682
|
*/
|
|
1683
1683
|
IngressAccessLogs?: IngressAccessLogs;
|
|
1684
1684
|
/**
|
|
1685
|
-
* @public
|
|
1686
1685
|
* A collection of tags associated with a resource
|
|
1686
|
+
* @public
|
|
1687
1687
|
*/
|
|
1688
1688
|
Tags?: Record<string, string>;
|
|
1689
1689
|
}
|
|
@@ -1692,8 +1692,8 @@ export interface DescribeChannelResponse {
|
|
|
1692
1692
|
*/
|
|
1693
1693
|
export interface DescribeHarvestJobRequest {
|
|
1694
1694
|
/**
|
|
1695
|
-
* @public
|
|
1696
1695
|
* The ID of the HarvestJob.
|
|
1696
|
+
* @public
|
|
1697
1697
|
*/
|
|
1698
1698
|
Id: string | undefined;
|
|
1699
1699
|
}
|
|
@@ -1702,52 +1702,52 @@ export interface DescribeHarvestJobRequest {
|
|
|
1702
1702
|
*/
|
|
1703
1703
|
export interface DescribeHarvestJobResponse {
|
|
1704
1704
|
/**
|
|
1705
|
-
* @public
|
|
1706
1705
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
1706
|
+
* @public
|
|
1707
1707
|
*/
|
|
1708
1708
|
Arn?: string;
|
|
1709
1709
|
/**
|
|
1710
|
-
* @public
|
|
1711
1710
|
* The ID of the Channel that the HarvestJob will harvest from.
|
|
1711
|
+
* @public
|
|
1712
1712
|
*/
|
|
1713
1713
|
ChannelId?: string;
|
|
1714
1714
|
/**
|
|
1715
|
-
* @public
|
|
1716
1715
|
* The date and time the HarvestJob was submitted.
|
|
1716
|
+
* @public
|
|
1717
1717
|
*/
|
|
1718
1718
|
CreatedAt?: string;
|
|
1719
1719
|
/**
|
|
1720
|
-
* @public
|
|
1721
1720
|
* The end of the time-window which will be harvested.
|
|
1721
|
+
* @public
|
|
1722
1722
|
*/
|
|
1723
1723
|
EndTime?: string;
|
|
1724
1724
|
/**
|
|
1725
|
-
* @public
|
|
1726
1725
|
* The ID of the HarvestJob. The ID must be unique within the region
|
|
1727
1726
|
* and it cannot be changed after the HarvestJob is submitted.
|
|
1727
|
+
* @public
|
|
1728
1728
|
*/
|
|
1729
1729
|
Id?: string;
|
|
1730
1730
|
/**
|
|
1731
|
-
* @public
|
|
1732
1731
|
* The ID of the OriginEndpoint that the HarvestJob will harvest from.
|
|
1733
1732
|
* This cannot be changed after the HarvestJob is submitted.
|
|
1733
|
+
* @public
|
|
1734
1734
|
*/
|
|
1735
1735
|
OriginEndpointId?: string;
|
|
1736
1736
|
/**
|
|
1737
|
-
* @public
|
|
1738
1737
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
1738
|
+
* @public
|
|
1739
1739
|
*/
|
|
1740
1740
|
S3Destination?: S3Destination;
|
|
1741
1741
|
/**
|
|
1742
|
-
* @public
|
|
1743
1742
|
* The start of the time-window which will be harvested.
|
|
1743
|
+
* @public
|
|
1744
1744
|
*/
|
|
1745
1745
|
StartTime?: string;
|
|
1746
1746
|
/**
|
|
1747
|
-
* @public
|
|
1748
1747
|
* The current status of the HarvestJob. Consider setting up a CloudWatch Event to listen for
|
|
1749
1748
|
* HarvestJobs as they succeed or fail. In the event of failure, the CloudWatch Event will
|
|
1750
1749
|
* include an explanation of why the HarvestJob failed.
|
|
1750
|
+
* @public
|
|
1751
1751
|
*/
|
|
1752
1752
|
Status?: Status;
|
|
1753
1753
|
}
|
|
@@ -1756,8 +1756,8 @@ export interface DescribeHarvestJobResponse {
|
|
|
1756
1756
|
*/
|
|
1757
1757
|
export interface DescribeOriginEndpointRequest {
|
|
1758
1758
|
/**
|
|
1759
|
-
* @public
|
|
1760
1759
|
* The ID of the OriginEndpoint.
|
|
1760
|
+
* @public
|
|
1761
1761
|
*/
|
|
1762
1762
|
Id: string | undefined;
|
|
1763
1763
|
}
|
|
@@ -1766,92 +1766,92 @@ export interface DescribeOriginEndpointRequest {
|
|
|
1766
1766
|
*/
|
|
1767
1767
|
export interface DescribeOriginEndpointResponse {
|
|
1768
1768
|
/**
|
|
1769
|
-
* @public
|
|
1770
1769
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
1770
|
+
* @public
|
|
1771
1771
|
*/
|
|
1772
1772
|
Arn?: string;
|
|
1773
1773
|
/**
|
|
1774
|
-
* @public
|
|
1775
1774
|
* CDN Authorization credentials
|
|
1775
|
+
* @public
|
|
1776
1776
|
*/
|
|
1777
1777
|
Authorization?: Authorization;
|
|
1778
1778
|
/**
|
|
1779
|
-
* @public
|
|
1780
1779
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
1780
|
+
* @public
|
|
1781
1781
|
*/
|
|
1782
1782
|
ChannelId?: string;
|
|
1783
1783
|
/**
|
|
1784
|
-
* @public
|
|
1785
1784
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1785
|
+
* @public
|
|
1786
1786
|
*/
|
|
1787
1787
|
CmafPackage?: CmafPackage;
|
|
1788
1788
|
/**
|
|
1789
|
-
* @public
|
|
1790
1789
|
* The date and time the OriginEndpoint was created.
|
|
1790
|
+
* @public
|
|
1791
1791
|
*/
|
|
1792
1792
|
CreatedAt?: string;
|
|
1793
1793
|
/**
|
|
1794
|
-
* @public
|
|
1795
1794
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1795
|
+
* @public
|
|
1796
1796
|
*/
|
|
1797
1797
|
DashPackage?: DashPackage;
|
|
1798
1798
|
/**
|
|
1799
|
-
* @public
|
|
1800
1799
|
* A short text description of the OriginEndpoint.
|
|
1800
|
+
* @public
|
|
1801
1801
|
*/
|
|
1802
1802
|
Description?: string;
|
|
1803
1803
|
/**
|
|
1804
|
-
* @public
|
|
1805
1804
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1805
|
+
* @public
|
|
1806
1806
|
*/
|
|
1807
1807
|
HlsPackage?: HlsPackage;
|
|
1808
1808
|
/**
|
|
1809
|
-
* @public
|
|
1810
1809
|
* The ID of the OriginEndpoint.
|
|
1810
|
+
* @public
|
|
1811
1811
|
*/
|
|
1812
1812
|
Id?: string;
|
|
1813
1813
|
/**
|
|
1814
|
-
* @public
|
|
1815
1814
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
1815
|
+
* @public
|
|
1816
1816
|
*/
|
|
1817
1817
|
ManifestName?: string;
|
|
1818
1818
|
/**
|
|
1819
|
-
* @public
|
|
1820
1819
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1820
|
+
* @public
|
|
1821
1821
|
*/
|
|
1822
1822
|
MssPackage?: MssPackage;
|
|
1823
1823
|
/**
|
|
1824
|
-
* @public
|
|
1825
1824
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1826
1825
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1827
1826
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1827
|
+
* @public
|
|
1828
1828
|
*/
|
|
1829
1829
|
Origination?: Origination;
|
|
1830
1830
|
/**
|
|
1831
|
-
* @public
|
|
1832
1831
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1833
1832
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1833
|
+
* @public
|
|
1834
1834
|
*/
|
|
1835
1835
|
StartoverWindowSeconds?: number;
|
|
1836
1836
|
/**
|
|
1837
|
-
* @public
|
|
1838
1837
|
* A collection of tags associated with a resource
|
|
1838
|
+
* @public
|
|
1839
1839
|
*/
|
|
1840
1840
|
Tags?: Record<string, string>;
|
|
1841
1841
|
/**
|
|
1842
|
-
* @public
|
|
1843
1842
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1844
1843
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1844
|
+
* @public
|
|
1845
1845
|
*/
|
|
1846
1846
|
TimeDelaySeconds?: number;
|
|
1847
1847
|
/**
|
|
1848
|
-
* @public
|
|
1849
1848
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
1849
|
+
* @public
|
|
1850
1850
|
*/
|
|
1851
1851
|
Url?: string;
|
|
1852
1852
|
/**
|
|
1853
|
-
* @public
|
|
1854
1853
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1854
|
+
* @public
|
|
1855
1855
|
*/
|
|
1856
1856
|
Whitelist?: string[];
|
|
1857
1857
|
}
|
|
@@ -1860,13 +1860,13 @@ export interface DescribeOriginEndpointResponse {
|
|
|
1860
1860
|
*/
|
|
1861
1861
|
export interface ListChannelsRequest {
|
|
1862
1862
|
/**
|
|
1863
|
-
* @public
|
|
1864
1863
|
* Upper bound on number of records to return.
|
|
1864
|
+
* @public
|
|
1865
1865
|
*/
|
|
1866
1866
|
MaxResults?: number;
|
|
1867
1867
|
/**
|
|
1868
|
-
* @public
|
|
1869
1868
|
* A token used to resume pagination from the end of a previous request.
|
|
1869
|
+
* @public
|
|
1870
1870
|
*/
|
|
1871
1871
|
NextToken?: string;
|
|
1872
1872
|
}
|
|
@@ -1875,13 +1875,13 @@ export interface ListChannelsRequest {
|
|
|
1875
1875
|
*/
|
|
1876
1876
|
export interface ListChannelsResponse {
|
|
1877
1877
|
/**
|
|
1878
|
-
* @public
|
|
1879
1878
|
* A list of Channel records.
|
|
1879
|
+
* @public
|
|
1880
1880
|
*/
|
|
1881
1881
|
Channels?: Channel[];
|
|
1882
1882
|
/**
|
|
1883
|
-
* @public
|
|
1884
1883
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1884
|
+
* @public
|
|
1885
1885
|
*/
|
|
1886
1886
|
NextToken?: string;
|
|
1887
1887
|
}
|
|
@@ -1890,23 +1890,23 @@ export interface ListChannelsResponse {
|
|
|
1890
1890
|
*/
|
|
1891
1891
|
export interface ListHarvestJobsRequest {
|
|
1892
1892
|
/**
|
|
1893
|
-
* @public
|
|
1894
1893
|
* When specified, the request will return only HarvestJobs associated with the given Channel ID.
|
|
1894
|
+
* @public
|
|
1895
1895
|
*/
|
|
1896
1896
|
IncludeChannelId?: string;
|
|
1897
1897
|
/**
|
|
1898
|
-
* @public
|
|
1899
1898
|
* When specified, the request will return only HarvestJobs in the given status.
|
|
1899
|
+
* @public
|
|
1900
1900
|
*/
|
|
1901
1901
|
IncludeStatus?: string;
|
|
1902
1902
|
/**
|
|
1903
|
-
* @public
|
|
1904
1903
|
* The upper bound on the number of records to return.
|
|
1904
|
+
* @public
|
|
1905
1905
|
*/
|
|
1906
1906
|
MaxResults?: number;
|
|
1907
1907
|
/**
|
|
1908
|
-
* @public
|
|
1909
1908
|
* A token used to resume pagination from the end of a previous request.
|
|
1909
|
+
* @public
|
|
1910
1910
|
*/
|
|
1911
1911
|
NextToken?: string;
|
|
1912
1912
|
}
|
|
@@ -1915,13 +1915,13 @@ export interface ListHarvestJobsRequest {
|
|
|
1915
1915
|
*/
|
|
1916
1916
|
export interface ListHarvestJobsResponse {
|
|
1917
1917
|
/**
|
|
1918
|
-
* @public
|
|
1919
1918
|
* A list of HarvestJob records.
|
|
1919
|
+
* @public
|
|
1920
1920
|
*/
|
|
1921
1921
|
HarvestJobs?: HarvestJob[];
|
|
1922
1922
|
/**
|
|
1923
|
-
* @public
|
|
1924
1923
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1924
|
+
* @public
|
|
1925
1925
|
*/
|
|
1926
1926
|
NextToken?: string;
|
|
1927
1927
|
}
|
|
@@ -1930,18 +1930,18 @@ export interface ListHarvestJobsResponse {
|
|
|
1930
1930
|
*/
|
|
1931
1931
|
export interface ListOriginEndpointsRequest {
|
|
1932
1932
|
/**
|
|
1933
|
-
* @public
|
|
1934
1933
|
* When specified, the request will return only OriginEndpoints associated with the given Channel ID.
|
|
1934
|
+
* @public
|
|
1935
1935
|
*/
|
|
1936
1936
|
ChannelId?: string;
|
|
1937
1937
|
/**
|
|
1938
|
-
* @public
|
|
1939
1938
|
* The upper bound on the number of records to return.
|
|
1939
|
+
* @public
|
|
1940
1940
|
*/
|
|
1941
1941
|
MaxResults?: number;
|
|
1942
1942
|
/**
|
|
1943
|
-
* @public
|
|
1944
1943
|
* A token used to resume pagination from the end of a previous request.
|
|
1944
|
+
* @public
|
|
1945
1945
|
*/
|
|
1946
1946
|
NextToken?: string;
|
|
1947
1947
|
}
|
|
@@ -1950,13 +1950,13 @@ export interface ListOriginEndpointsRequest {
|
|
|
1950
1950
|
*/
|
|
1951
1951
|
export interface ListOriginEndpointsResponse {
|
|
1952
1952
|
/**
|
|
1953
|
-
* @public
|
|
1954
1953
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1954
|
+
* @public
|
|
1955
1955
|
*/
|
|
1956
1956
|
NextToken?: string;
|
|
1957
1957
|
/**
|
|
1958
|
-
* @public
|
|
1959
1958
|
* A list of OriginEndpoint records.
|
|
1959
|
+
* @public
|
|
1960
1960
|
*/
|
|
1961
1961
|
OriginEndpoints?: OriginEndpoint[];
|
|
1962
1962
|
}
|
|
@@ -1977,8 +1977,8 @@ export interface ListTagsForResourceResponse {
|
|
|
1977
1977
|
*/
|
|
1978
1978
|
export interface RotateChannelCredentialsRequest {
|
|
1979
1979
|
/**
|
|
1980
|
-
* @public
|
|
1981
1980
|
* The ID of the channel to update.
|
|
1981
|
+
* @public
|
|
1982
1982
|
*/
|
|
1983
1983
|
Id: string | undefined;
|
|
1984
1984
|
}
|
|
@@ -1987,43 +1987,43 @@ export interface RotateChannelCredentialsRequest {
|
|
|
1987
1987
|
*/
|
|
1988
1988
|
export interface RotateChannelCredentialsResponse {
|
|
1989
1989
|
/**
|
|
1990
|
-
* @public
|
|
1991
1990
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1991
|
+
* @public
|
|
1992
1992
|
*/
|
|
1993
1993
|
Arn?: string;
|
|
1994
1994
|
/**
|
|
1995
|
-
* @public
|
|
1996
1995
|
* The date and time the Channel was created.
|
|
1996
|
+
* @public
|
|
1997
1997
|
*/
|
|
1998
1998
|
CreatedAt?: string;
|
|
1999
1999
|
/**
|
|
2000
|
-
* @public
|
|
2001
2000
|
* A short text description of the Channel.
|
|
2001
|
+
* @public
|
|
2002
2002
|
*/
|
|
2003
2003
|
Description?: string;
|
|
2004
2004
|
/**
|
|
2005
|
-
* @public
|
|
2006
2005
|
* Configure egress access logging.
|
|
2006
|
+
* @public
|
|
2007
2007
|
*/
|
|
2008
2008
|
EgressAccessLogs?: EgressAccessLogs;
|
|
2009
2009
|
/**
|
|
2010
|
-
* @public
|
|
2011
2010
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
2011
|
+
* @public
|
|
2012
2012
|
*/
|
|
2013
2013
|
HlsIngest?: HlsIngest;
|
|
2014
2014
|
/**
|
|
2015
|
-
* @public
|
|
2016
2015
|
* The ID of the Channel.
|
|
2016
|
+
* @public
|
|
2017
2017
|
*/
|
|
2018
2018
|
Id?: string;
|
|
2019
2019
|
/**
|
|
2020
|
-
* @public
|
|
2021
2020
|
* Configure ingress access logging.
|
|
2021
|
+
* @public
|
|
2022
2022
|
*/
|
|
2023
2023
|
IngressAccessLogs?: IngressAccessLogs;
|
|
2024
2024
|
/**
|
|
2025
|
-
* @public
|
|
2026
2025
|
* A collection of tags associated with a resource
|
|
2026
|
+
* @public
|
|
2027
2027
|
*/
|
|
2028
2028
|
Tags?: Record<string, string>;
|
|
2029
2029
|
}
|
|
@@ -2032,13 +2032,13 @@ export interface RotateChannelCredentialsResponse {
|
|
|
2032
2032
|
*/
|
|
2033
2033
|
export interface RotateIngestEndpointCredentialsRequest {
|
|
2034
2034
|
/**
|
|
2035
|
-
* @public
|
|
2036
2035
|
* The ID of the channel the IngestEndpoint is on.
|
|
2036
|
+
* @public
|
|
2037
2037
|
*/
|
|
2038
2038
|
Id: string | undefined;
|
|
2039
2039
|
/**
|
|
2040
|
-
* @public
|
|
2041
2040
|
* The id of the IngestEndpoint whose credentials should be rotated
|
|
2041
|
+
* @public
|
|
2042
2042
|
*/
|
|
2043
2043
|
IngestEndpointId: string | undefined;
|
|
2044
2044
|
}
|
|
@@ -2047,43 +2047,43 @@ export interface RotateIngestEndpointCredentialsRequest {
|
|
|
2047
2047
|
*/
|
|
2048
2048
|
export interface RotateIngestEndpointCredentialsResponse {
|
|
2049
2049
|
/**
|
|
2050
|
-
* @public
|
|
2051
2050
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
2051
|
+
* @public
|
|
2052
2052
|
*/
|
|
2053
2053
|
Arn?: string;
|
|
2054
2054
|
/**
|
|
2055
|
-
* @public
|
|
2056
2055
|
* The date and time the Channel was created.
|
|
2056
|
+
* @public
|
|
2057
2057
|
*/
|
|
2058
2058
|
CreatedAt?: string;
|
|
2059
2059
|
/**
|
|
2060
|
-
* @public
|
|
2061
2060
|
* A short text description of the Channel.
|
|
2061
|
+
* @public
|
|
2062
2062
|
*/
|
|
2063
2063
|
Description?: string;
|
|
2064
2064
|
/**
|
|
2065
|
-
* @public
|
|
2066
2065
|
* Configure egress access logging.
|
|
2066
|
+
* @public
|
|
2067
2067
|
*/
|
|
2068
2068
|
EgressAccessLogs?: EgressAccessLogs;
|
|
2069
2069
|
/**
|
|
2070
|
-
* @public
|
|
2071
2070
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
2071
|
+
* @public
|
|
2072
2072
|
*/
|
|
2073
2073
|
HlsIngest?: HlsIngest;
|
|
2074
2074
|
/**
|
|
2075
|
-
* @public
|
|
2076
2075
|
* The ID of the Channel.
|
|
2076
|
+
* @public
|
|
2077
2077
|
*/
|
|
2078
2078
|
Id?: string;
|
|
2079
2079
|
/**
|
|
2080
|
-
* @public
|
|
2081
2080
|
* Configure ingress access logging.
|
|
2081
|
+
* @public
|
|
2082
2082
|
*/
|
|
2083
2083
|
IngressAccessLogs?: IngressAccessLogs;
|
|
2084
2084
|
/**
|
|
2085
|
-
* @public
|
|
2086
2085
|
* A collection of tags associated with a resource
|
|
2086
|
+
* @public
|
|
2087
2087
|
*/
|
|
2088
2088
|
Tags?: Record<string, string>;
|
|
2089
2089
|
}
|
|
@@ -2100,24 +2100,24 @@ export interface TagResourceRequest {
|
|
|
2100
2100
|
export interface UntagResourceRequest {
|
|
2101
2101
|
ResourceArn: string | undefined;
|
|
2102
2102
|
/**
|
|
2103
|
-
* @public
|
|
2104
2103
|
* The key(s) of tag to be deleted
|
|
2104
|
+
* @public
|
|
2105
2105
|
*/
|
|
2106
2106
|
TagKeys: string[] | undefined;
|
|
2107
2107
|
}
|
|
2108
2108
|
/**
|
|
2109
|
-
* @public
|
|
2110
2109
|
* Configuration parameters used to update the Channel.
|
|
2110
|
+
* @public
|
|
2111
2111
|
*/
|
|
2112
2112
|
export interface UpdateChannelRequest {
|
|
2113
2113
|
/**
|
|
2114
|
-
* @public
|
|
2115
2114
|
* A short text description of the Channel.
|
|
2115
|
+
* @public
|
|
2116
2116
|
*/
|
|
2117
2117
|
Description?: string;
|
|
2118
2118
|
/**
|
|
2119
|
-
* @public
|
|
2120
2119
|
* The ID of the Channel to update.
|
|
2120
|
+
* @public
|
|
2121
2121
|
*/
|
|
2122
2122
|
Id: string | undefined;
|
|
2123
2123
|
}
|
|
@@ -2126,113 +2126,113 @@ export interface UpdateChannelRequest {
|
|
|
2126
2126
|
*/
|
|
2127
2127
|
export interface UpdateChannelResponse {
|
|
2128
2128
|
/**
|
|
2129
|
-
* @public
|
|
2130
2129
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
2130
|
+
* @public
|
|
2131
2131
|
*/
|
|
2132
2132
|
Arn?: string;
|
|
2133
2133
|
/**
|
|
2134
|
-
* @public
|
|
2135
2134
|
* The date and time the Channel was created.
|
|
2135
|
+
* @public
|
|
2136
2136
|
*/
|
|
2137
2137
|
CreatedAt?: string;
|
|
2138
2138
|
/**
|
|
2139
|
-
* @public
|
|
2140
2139
|
* A short text description of the Channel.
|
|
2140
|
+
* @public
|
|
2141
2141
|
*/
|
|
2142
2142
|
Description?: string;
|
|
2143
2143
|
/**
|
|
2144
|
-
* @public
|
|
2145
2144
|
* Configure egress access logging.
|
|
2145
|
+
* @public
|
|
2146
2146
|
*/
|
|
2147
2147
|
EgressAccessLogs?: EgressAccessLogs;
|
|
2148
2148
|
/**
|
|
2149
|
-
* @public
|
|
2150
2149
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
2150
|
+
* @public
|
|
2151
2151
|
*/
|
|
2152
2152
|
HlsIngest?: HlsIngest;
|
|
2153
2153
|
/**
|
|
2154
|
-
* @public
|
|
2155
2154
|
* The ID of the Channel.
|
|
2155
|
+
* @public
|
|
2156
2156
|
*/
|
|
2157
2157
|
Id?: string;
|
|
2158
2158
|
/**
|
|
2159
|
-
* @public
|
|
2160
2159
|
* Configure ingress access logging.
|
|
2160
|
+
* @public
|
|
2161
2161
|
*/
|
|
2162
2162
|
IngressAccessLogs?: IngressAccessLogs;
|
|
2163
2163
|
/**
|
|
2164
|
-
* @public
|
|
2165
2164
|
* A collection of tags associated with a resource
|
|
2165
|
+
* @public
|
|
2166
2166
|
*/
|
|
2167
2167
|
Tags?: Record<string, string>;
|
|
2168
2168
|
}
|
|
2169
2169
|
/**
|
|
2170
|
-
* @public
|
|
2171
2170
|
* Configuration parameters used to update an existing OriginEndpoint.
|
|
2171
|
+
* @public
|
|
2172
2172
|
*/
|
|
2173
2173
|
export interface UpdateOriginEndpointRequest {
|
|
2174
2174
|
/**
|
|
2175
|
-
* @public
|
|
2176
2175
|
* CDN Authorization credentials
|
|
2176
|
+
* @public
|
|
2177
2177
|
*/
|
|
2178
2178
|
Authorization?: Authorization;
|
|
2179
2179
|
/**
|
|
2180
|
-
* @public
|
|
2181
2180
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
2181
|
+
* @public
|
|
2182
2182
|
*/
|
|
2183
2183
|
CmafPackage?: CmafPackageCreateOrUpdateParameters;
|
|
2184
2184
|
/**
|
|
2185
|
-
* @public
|
|
2186
2185
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
2186
|
+
* @public
|
|
2187
2187
|
*/
|
|
2188
2188
|
DashPackage?: DashPackage;
|
|
2189
2189
|
/**
|
|
2190
|
-
* @public
|
|
2191
2190
|
* A short text description of the OriginEndpoint.
|
|
2191
|
+
* @public
|
|
2192
2192
|
*/
|
|
2193
2193
|
Description?: string;
|
|
2194
2194
|
/**
|
|
2195
|
-
* @public
|
|
2196
2195
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
2196
|
+
* @public
|
|
2197
2197
|
*/
|
|
2198
2198
|
HlsPackage?: HlsPackage;
|
|
2199
2199
|
/**
|
|
2200
|
-
* @public
|
|
2201
2200
|
* The ID of the OriginEndpoint to update.
|
|
2201
|
+
* @public
|
|
2202
2202
|
*/
|
|
2203
2203
|
Id: string | undefined;
|
|
2204
2204
|
/**
|
|
2205
|
-
* @public
|
|
2206
2205
|
* A short string that will be appended to the end of the Endpoint URL.
|
|
2206
|
+
* @public
|
|
2207
2207
|
*/
|
|
2208
2208
|
ManifestName?: string;
|
|
2209
2209
|
/**
|
|
2210
|
-
* @public
|
|
2211
2210
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
2211
|
+
* @public
|
|
2212
2212
|
*/
|
|
2213
2213
|
MssPackage?: MssPackage;
|
|
2214
2214
|
/**
|
|
2215
|
-
* @public
|
|
2216
2215
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
2217
2216
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
2218
2217
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
2218
|
+
* @public
|
|
2219
2219
|
*/
|
|
2220
2220
|
Origination?: Origination;
|
|
2221
2221
|
/**
|
|
2222
|
-
* @public
|
|
2223
2222
|
* Maximum duration (in seconds) of content to retain for startover playback.
|
|
2224
2223
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
2224
|
+
* @public
|
|
2225
2225
|
*/
|
|
2226
2226
|
StartoverWindowSeconds?: number;
|
|
2227
2227
|
/**
|
|
2228
|
-
* @public
|
|
2229
2228
|
* Amount of delay (in seconds) to enforce on the playback of live content.
|
|
2230
2229
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
2230
|
+
* @public
|
|
2231
2231
|
*/
|
|
2232
2232
|
TimeDelaySeconds?: number;
|
|
2233
2233
|
/**
|
|
2234
|
-
* @public
|
|
2235
2234
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
2235
|
+
* @public
|
|
2236
2236
|
*/
|
|
2237
2237
|
Whitelist?: string[];
|
|
2238
2238
|
}
|
|
@@ -2241,92 +2241,92 @@ export interface UpdateOriginEndpointRequest {
|
|
|
2241
2241
|
*/
|
|
2242
2242
|
export interface UpdateOriginEndpointResponse {
|
|
2243
2243
|
/**
|
|
2244
|
-
* @public
|
|
2245
2244
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
2245
|
+
* @public
|
|
2246
2246
|
*/
|
|
2247
2247
|
Arn?: string;
|
|
2248
2248
|
/**
|
|
2249
|
-
* @public
|
|
2250
2249
|
* CDN Authorization credentials
|
|
2250
|
+
* @public
|
|
2251
2251
|
*/
|
|
2252
2252
|
Authorization?: Authorization;
|
|
2253
2253
|
/**
|
|
2254
|
-
* @public
|
|
2255
2254
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
2255
|
+
* @public
|
|
2256
2256
|
*/
|
|
2257
2257
|
ChannelId?: string;
|
|
2258
2258
|
/**
|
|
2259
|
-
* @public
|
|
2260
2259
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
2260
|
+
* @public
|
|
2261
2261
|
*/
|
|
2262
2262
|
CmafPackage?: CmafPackage;
|
|
2263
2263
|
/**
|
|
2264
|
-
* @public
|
|
2265
2264
|
* The date and time the OriginEndpoint was created.
|
|
2265
|
+
* @public
|
|
2266
2266
|
*/
|
|
2267
2267
|
CreatedAt?: string;
|
|
2268
2268
|
/**
|
|
2269
|
-
* @public
|
|
2270
2269
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
2270
|
+
* @public
|
|
2271
2271
|
*/
|
|
2272
2272
|
DashPackage?: DashPackage;
|
|
2273
2273
|
/**
|
|
2274
|
-
* @public
|
|
2275
2274
|
* A short text description of the OriginEndpoint.
|
|
2275
|
+
* @public
|
|
2276
2276
|
*/
|
|
2277
2277
|
Description?: string;
|
|
2278
2278
|
/**
|
|
2279
|
-
* @public
|
|
2280
2279
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
2280
|
+
* @public
|
|
2281
2281
|
*/
|
|
2282
2282
|
HlsPackage?: HlsPackage;
|
|
2283
2283
|
/**
|
|
2284
|
-
* @public
|
|
2285
2284
|
* The ID of the OriginEndpoint.
|
|
2285
|
+
* @public
|
|
2286
2286
|
*/
|
|
2287
2287
|
Id?: string;
|
|
2288
2288
|
/**
|
|
2289
|
-
* @public
|
|
2290
2289
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
2290
|
+
* @public
|
|
2291
2291
|
*/
|
|
2292
2292
|
ManifestName?: string;
|
|
2293
2293
|
/**
|
|
2294
|
-
* @public
|
|
2295
2294
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
2295
|
+
* @public
|
|
2296
2296
|
*/
|
|
2297
2297
|
MssPackage?: MssPackage;
|
|
2298
2298
|
/**
|
|
2299
|
-
* @public
|
|
2300
2299
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
2301
2300
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
2302
2301
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
2302
|
+
* @public
|
|
2303
2303
|
*/
|
|
2304
2304
|
Origination?: Origination;
|
|
2305
2305
|
/**
|
|
2306
|
-
* @public
|
|
2307
2306
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
2308
2307
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
2308
|
+
* @public
|
|
2309
2309
|
*/
|
|
2310
2310
|
StartoverWindowSeconds?: number;
|
|
2311
2311
|
/**
|
|
2312
|
-
* @public
|
|
2313
2312
|
* A collection of tags associated with a resource
|
|
2313
|
+
* @public
|
|
2314
2314
|
*/
|
|
2315
2315
|
Tags?: Record<string, string>;
|
|
2316
2316
|
/**
|
|
2317
|
-
* @public
|
|
2318
2317
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
2319
2318
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
2319
|
+
* @public
|
|
2320
2320
|
*/
|
|
2321
2321
|
TimeDelaySeconds?: number;
|
|
2322
2322
|
/**
|
|
2323
|
-
* @public
|
|
2324
2323
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
2324
|
+
* @public
|
|
2325
2325
|
*/
|
|
2326
2326
|
Url?: string;
|
|
2327
2327
|
/**
|
|
2328
|
-
* @public
|
|
2329
2328
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
2329
|
+
* @public
|
|
2330
2330
|
*/
|
|
2331
2331
|
Whitelist?: string[];
|
|
2332
2332
|
}
|