@aws-sdk/client-mediapackage 3.686.0 → 3.691.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/models/models_0.d.ts +280 -280
- package/dist-types/ts3.4/models/models_0.d.ts +280 -280
- package/package.json +7 -7
|
@@ -38,7 +38,7 @@ export interface EgressAccessLogs {
|
|
|
38
38
|
* Customize the log group name.
|
|
39
39
|
* @public
|
|
40
40
|
*/
|
|
41
|
-
LogGroupName?: string;
|
|
41
|
+
LogGroupName?: string | undefined;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* An endpoint for ingesting source content for a Channel.
|
|
@@ -49,22 +49,22 @@ export interface IngestEndpoint {
|
|
|
49
49
|
* The system generated unique identifier for the IngestEndpoint
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
Id?: string;
|
|
52
|
+
Id?: string | undefined;
|
|
53
53
|
/**
|
|
54
54
|
* The system generated password for ingest authentication.
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
Password?: string;
|
|
57
|
+
Password?: string | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* The ingest URL to which the source stream should be sent.
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
Url?: string;
|
|
62
|
+
Url?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* The system generated username for ingest authentication.
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
Username?: string;
|
|
67
|
+
Username?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
70
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
@@ -75,7 +75,7 @@ export interface HlsIngest {
|
|
|
75
75
|
* A list of endpoints to which the source stream should be sent.
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
78
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
81
|
* Configure ingress access logging.
|
|
@@ -86,7 +86,7 @@ export interface IngressAccessLogs {
|
|
|
86
86
|
* Customize the log group name.
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
LogGroupName?: string;
|
|
89
|
+
LogGroupName?: string | undefined;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
92
|
* A Channel resource configuration.
|
|
@@ -97,42 +97,42 @@ export interface Channel {
|
|
|
97
97
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
|
-
Arn?: string;
|
|
100
|
+
Arn?: string | undefined;
|
|
101
101
|
/**
|
|
102
102
|
* The date and time the Channel was created.
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
|
-
CreatedAt?: string;
|
|
105
|
+
CreatedAt?: string | undefined;
|
|
106
106
|
/**
|
|
107
107
|
* A short text description of the Channel.
|
|
108
108
|
* @public
|
|
109
109
|
*/
|
|
110
|
-
Description?: string;
|
|
110
|
+
Description?: string | undefined;
|
|
111
111
|
/**
|
|
112
112
|
* Configure egress access logging.
|
|
113
113
|
* @public
|
|
114
114
|
*/
|
|
115
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
115
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
HlsIngest?: HlsIngest;
|
|
120
|
+
HlsIngest?: HlsIngest | undefined;
|
|
121
121
|
/**
|
|
122
122
|
* The ID of the Channel.
|
|
123
123
|
* @public
|
|
124
124
|
*/
|
|
125
|
-
Id?: string;
|
|
125
|
+
Id?: string | undefined;
|
|
126
126
|
/**
|
|
127
127
|
* Configure ingress access logging.
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
130
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* A collection of tags associated with a resource
|
|
133
133
|
* @public
|
|
134
134
|
*/
|
|
135
|
-
Tags?: Record<string, string
|
|
135
|
+
Tags?: Record<string, string> | undefined;
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
@@ -177,51 +177,51 @@ export interface HarvestJob {
|
|
|
177
177
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
Arn?: string;
|
|
180
|
+
Arn?: string | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* The ID of the Channel that the HarvestJob will harvest from.
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
ChannelId?: string;
|
|
185
|
+
ChannelId?: string | undefined;
|
|
186
186
|
/**
|
|
187
187
|
* The date and time the HarvestJob was submitted.
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
CreatedAt?: string;
|
|
190
|
+
CreatedAt?: string | undefined;
|
|
191
191
|
/**
|
|
192
192
|
* The end of the time-window which will be harvested.
|
|
193
193
|
* @public
|
|
194
194
|
*/
|
|
195
|
-
EndTime?: string;
|
|
195
|
+
EndTime?: string | undefined;
|
|
196
196
|
/**
|
|
197
197
|
* The ID of the HarvestJob. The ID must be unique within the region
|
|
198
198
|
* and it cannot be changed after the HarvestJob is submitted.
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
Id?: string;
|
|
201
|
+
Id?: string | undefined;
|
|
202
202
|
/**
|
|
203
203
|
* The ID of the OriginEndpoint that the HarvestJob will harvest from.
|
|
204
204
|
* This cannot be changed after the HarvestJob is submitted.
|
|
205
205
|
* @public
|
|
206
206
|
*/
|
|
207
|
-
OriginEndpointId?: string;
|
|
207
|
+
OriginEndpointId?: string | undefined;
|
|
208
208
|
/**
|
|
209
209
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
S3Destination?: S3Destination;
|
|
212
|
+
S3Destination?: S3Destination | undefined;
|
|
213
213
|
/**
|
|
214
214
|
* The start of the time-window which will be harvested.
|
|
215
215
|
* @public
|
|
216
216
|
*/
|
|
217
|
-
StartTime?: string;
|
|
217
|
+
StartTime?: string | undefined;
|
|
218
218
|
/**
|
|
219
219
|
* The current status of the HarvestJob. Consider setting up a CloudWatch Event to listen for
|
|
220
220
|
* HarvestJobs as they succeed or fail. In the event of failure, the CloudWatch Event will
|
|
221
221
|
* include an explanation of why the HarvestJob failed.
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
Status?: Status;
|
|
224
|
+
Status?: Status | undefined;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* @public
|
|
@@ -281,7 +281,7 @@ export interface HlsManifest {
|
|
|
281
281
|
* that is greater than 0.
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
AdMarkers?: AdMarkers;
|
|
284
|
+
AdMarkers?: AdMarkers | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* The ID of the manifest. The ID must be unique within the OriginEndpoint and it cannot be changed after it is created.
|
|
287
287
|
* @public
|
|
@@ -291,24 +291,24 @@ export interface HlsManifest {
|
|
|
291
291
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
IncludeIframeOnlyStream?: boolean;
|
|
294
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* An optional short string appended to the end of the OriginEndpoint URL. If not specified, defaults to the manifestName for the OriginEndpoint.
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
ManifestName?: string;
|
|
299
|
+
ManifestName?: string | undefined;
|
|
300
300
|
/**
|
|
301
301
|
* The HTTP Live Streaming (HLS) playlist type.
|
|
302
302
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
303
303
|
* entry will be included in the media playlist.
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
PlaylistType?: PlaylistType;
|
|
306
|
+
PlaylistType?: PlaylistType | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* Time window (in seconds) contained in each parent manifest.
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
PlaylistWindowSeconds?: number;
|
|
311
|
+
PlaylistWindowSeconds?: number | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
|
|
314
314
|
* inserted into manifests. Additionally, when an interval is specified
|
|
@@ -321,19 +321,19 @@ export interface HlsManifest {
|
|
|
321
321
|
* it will be passed through to HLS output.
|
|
322
322
|
* @public
|
|
323
323
|
*/
|
|
324
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
324
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
325
325
|
/**
|
|
326
326
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
Url?: string;
|
|
329
|
+
Url?: string | undefined;
|
|
330
330
|
/**
|
|
331
331
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
332
332
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
333
333
|
* message types.
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
AdTriggers?: __AdTriggersElement[];
|
|
336
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
339
339
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
@@ -345,7 +345,7 @@ export interface HlsManifest {
|
|
|
345
345
|
* and are always treated as ads if specified in AdTriggers.
|
|
346
346
|
* @public
|
|
347
347
|
*/
|
|
348
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
348
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
351
|
* A HTTP Live Streaming (HLS) manifest configuration.
|
|
@@ -364,14 +364,14 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
364
364
|
* that is greater than 0.
|
|
365
365
|
* @public
|
|
366
366
|
*/
|
|
367
|
-
AdMarkers?: AdMarkers;
|
|
367
|
+
AdMarkers?: AdMarkers | undefined;
|
|
368
368
|
/**
|
|
369
369
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
370
370
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
371
371
|
* message types.
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
AdTriggers?: __AdTriggersElement[];
|
|
374
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
377
377
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
@@ -383,7 +383,7 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
383
383
|
* and are always treated as ads if specified in AdTriggers.
|
|
384
384
|
* @public
|
|
385
385
|
*/
|
|
386
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
386
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
387
387
|
/**
|
|
388
388
|
* The ID of the manifest. The ID must be unique within the OriginEndpoint and it cannot be changed after it is created.
|
|
389
389
|
* @public
|
|
@@ -393,24 +393,24 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
393
393
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
394
394
|
* @public
|
|
395
395
|
*/
|
|
396
|
-
IncludeIframeOnlyStream?: boolean;
|
|
396
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
397
397
|
/**
|
|
398
398
|
* An optional short string appended to the end of the OriginEndpoint URL. If not specified, defaults to the manifestName for the OriginEndpoint.
|
|
399
399
|
* @public
|
|
400
400
|
*/
|
|
401
|
-
ManifestName?: string;
|
|
401
|
+
ManifestName?: string | undefined;
|
|
402
402
|
/**
|
|
403
403
|
* The HTTP Live Streaming (HLS) playlist type.
|
|
404
404
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
405
405
|
* entry will be included in the media playlist.
|
|
406
406
|
* @public
|
|
407
407
|
*/
|
|
408
|
-
PlaylistType?: PlaylistType;
|
|
408
|
+
PlaylistType?: PlaylistType | undefined;
|
|
409
409
|
/**
|
|
410
410
|
* Time window (in seconds) contained in each parent manifest.
|
|
411
411
|
* @public
|
|
412
412
|
*/
|
|
413
|
-
PlaylistWindowSeconds?: number;
|
|
413
|
+
PlaylistWindowSeconds?: number | undefined;
|
|
414
414
|
/**
|
|
415
415
|
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
|
|
416
416
|
* inserted into manifests. Additionally, when an interval is specified
|
|
@@ -423,7 +423,7 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
423
423
|
* it will be passed through to HLS output.
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
426
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
427
427
|
}
|
|
428
428
|
/**
|
|
429
429
|
* CDN Authorization credentials
|
|
@@ -520,7 +520,7 @@ export interface SpekeKeyProvider {
|
|
|
520
520
|
* transfer with the key provider service.
|
|
521
521
|
* @public
|
|
522
522
|
*/
|
|
523
|
-
CertificateArn?: string;
|
|
523
|
+
CertificateArn?: string | undefined;
|
|
524
524
|
/**
|
|
525
525
|
* Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE 2.0.
|
|
526
526
|
* The encryption contract defines which content keys are used to encrypt the audio and video tracks in your stream.
|
|
@@ -530,7 +530,7 @@ export interface SpekeKeyProvider {
|
|
|
530
530
|
* You must disable key rotation for this endpoint by setting keyRotationIntervalSeconds to 0.
|
|
531
531
|
* @public
|
|
532
532
|
*/
|
|
533
|
-
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
533
|
+
EncryptionContractConfiguration?: EncryptionContractConfiguration | undefined;
|
|
534
534
|
/**
|
|
535
535
|
* The resource ID to include in key requests.
|
|
536
536
|
* @public
|
|
@@ -562,17 +562,17 @@ export interface CmafEncryption {
|
|
|
562
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
563
|
* @public
|
|
564
564
|
*/
|
|
565
|
-
ConstantInitializationVector?: string;
|
|
565
|
+
ConstantInitializationVector?: string | undefined;
|
|
566
566
|
/**
|
|
567
567
|
* The encryption method to use.
|
|
568
568
|
* @public
|
|
569
569
|
*/
|
|
570
|
-
EncryptionMethod?: CmafEncryptionMethod;
|
|
570
|
+
EncryptionMethod?: CmafEncryptionMethod | undefined;
|
|
571
571
|
/**
|
|
572
572
|
* Time (in seconds) between each encryption key rotation.
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
KeyRotationIntervalSeconds?: number;
|
|
575
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
578
578
|
* @public
|
|
@@ -601,17 +601,17 @@ export interface StreamSelection {
|
|
|
601
601
|
* The maximum video bitrate (bps) to include in output.
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
|
-
MaxVideoBitsPerSecond?: number;
|
|
604
|
+
MaxVideoBitsPerSecond?: number | undefined;
|
|
605
605
|
/**
|
|
606
606
|
* The minimum video bitrate (bps) to include in output.
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
MinVideoBitsPerSecond?: number;
|
|
609
|
+
MinVideoBitsPerSecond?: number | undefined;
|
|
610
610
|
/**
|
|
611
611
|
* A directive that determines the order of streams in the output.
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
StreamOrder?: StreamOrder;
|
|
614
|
+
StreamOrder?: StreamOrder | undefined;
|
|
615
615
|
}
|
|
616
616
|
/**
|
|
617
617
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
@@ -622,28 +622,28 @@ export interface CmafPackage {
|
|
|
622
622
|
* A Common Media Application Format (CMAF) encryption configuration.
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
Encryption?: CmafEncryption;
|
|
625
|
+
Encryption?: CmafEncryption | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* A list of HLS manifest configurations
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
HlsManifests?: HlsManifest[];
|
|
630
|
+
HlsManifests?: HlsManifest[] | undefined;
|
|
631
631
|
/**
|
|
632
632
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
633
633
|
* rounded to the nearest multiple of the source segment duration.
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
SegmentDurationSeconds?: number;
|
|
636
|
+
SegmentDurationSeconds?: number | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* An optional custom string that is prepended to the name of each segment. If not specified, it defaults to the ChannelId.
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
SegmentPrefix?: string;
|
|
641
|
+
SegmentPrefix?: string | undefined;
|
|
642
642
|
/**
|
|
643
643
|
* A StreamSelection configuration.
|
|
644
644
|
* @public
|
|
645
645
|
*/
|
|
646
|
-
StreamSelection?: StreamSelection;
|
|
646
|
+
StreamSelection?: StreamSelection | undefined;
|
|
647
647
|
}
|
|
648
648
|
/**
|
|
649
649
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
@@ -654,7 +654,7 @@ export interface DashEncryption {
|
|
|
654
654
|
* Time (in seconds) between each encryption key rotation.
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
KeyRotationIntervalSeconds?: number;
|
|
657
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
658
658
|
/**
|
|
659
659
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
660
660
|
* @public
|
|
@@ -726,7 +726,7 @@ export interface DashPackage {
|
|
|
726
726
|
* message types.
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
AdTriggers?: __AdTriggersElement[];
|
|
729
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
730
730
|
/**
|
|
731
731
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
732
732
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
@@ -738,37 +738,37 @@ export interface DashPackage {
|
|
|
738
738
|
* and are always treated as ads if specified in AdTriggers.
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
741
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
742
742
|
/**
|
|
743
743
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
Encryption?: DashEncryption;
|
|
746
|
+
Encryption?: DashEncryption | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
|
-
IncludeIframeOnlyStream?: boolean;
|
|
751
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
752
752
|
/**
|
|
753
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
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
ManifestLayout?: ManifestLayout;
|
|
756
|
+
ManifestLayout?: ManifestLayout | undefined;
|
|
757
757
|
/**
|
|
758
758
|
* Time window (in seconds) contained in each manifest.
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
ManifestWindowSeconds?: number;
|
|
761
|
+
ManifestWindowSeconds?: number | undefined;
|
|
762
762
|
/**
|
|
763
763
|
* Minimum duration (in seconds) that a player will buffer media before starting the presentation.
|
|
764
764
|
* @public
|
|
765
765
|
*/
|
|
766
|
-
MinBufferTimeSeconds?: number;
|
|
766
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
767
767
|
/**
|
|
768
768
|
* Minimum duration (in seconds) between potential changes to the Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD).
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
MinUpdatePeriodSeconds?: number;
|
|
771
|
+
MinUpdatePeriodSeconds?: number | undefined;
|
|
772
772
|
/**
|
|
773
773
|
* A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH)
|
|
774
774
|
* Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not
|
|
@@ -776,43 +776,43 @@ export interface DashPackage {
|
|
|
776
776
|
* the Channel source contains SCTE-35 ad markers.
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
PeriodTriggers?: __PeriodTriggersElement[];
|
|
779
|
+
PeriodTriggers?: __PeriodTriggersElement[] | undefined;
|
|
780
780
|
/**
|
|
781
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
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
Profile?: Profile;
|
|
784
|
+
Profile?: Profile | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
787
787
|
* rounded to the nearest multiple of the source segment duration.
|
|
788
788
|
* @public
|
|
789
789
|
*/
|
|
790
|
-
SegmentDurationSeconds?: number;
|
|
790
|
+
SegmentDurationSeconds?: number | undefined;
|
|
791
791
|
/**
|
|
792
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
793
|
* @public
|
|
794
794
|
*/
|
|
795
|
-
SegmentTemplateFormat?: SegmentTemplateFormat;
|
|
795
|
+
SegmentTemplateFormat?: SegmentTemplateFormat | undefined;
|
|
796
796
|
/**
|
|
797
797
|
* A StreamSelection configuration.
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
StreamSelection?: StreamSelection;
|
|
800
|
+
StreamSelection?: StreamSelection | undefined;
|
|
801
801
|
/**
|
|
802
802
|
* Duration (in seconds) to delay live content before presentation.
|
|
803
803
|
* @public
|
|
804
804
|
*/
|
|
805
|
-
SuggestedPresentationDelaySeconds?: number;
|
|
805
|
+
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
806
806
|
/**
|
|
807
807
|
* Determines the type of UTCTiming included in the Media Presentation Description (MPD)
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
UtcTiming?: UtcTiming;
|
|
810
|
+
UtcTiming?: UtcTiming | undefined;
|
|
811
811
|
/**
|
|
812
812
|
* Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
|
|
813
813
|
* @public
|
|
814
814
|
*/
|
|
815
|
-
UtcTimingUri?: string;
|
|
815
|
+
UtcTimingUri?: string | undefined;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* @public
|
|
@@ -836,22 +836,22 @@ export interface HlsEncryption {
|
|
|
836
836
|
* When not specified the initialization vector will be periodically rotated.
|
|
837
837
|
* @public
|
|
838
838
|
*/
|
|
839
|
-
ConstantInitializationVector?: string;
|
|
839
|
+
ConstantInitializationVector?: string | undefined;
|
|
840
840
|
/**
|
|
841
841
|
* The encryption method to use.
|
|
842
842
|
* @public
|
|
843
843
|
*/
|
|
844
|
-
EncryptionMethod?: EncryptionMethod;
|
|
844
|
+
EncryptionMethod?: EncryptionMethod | undefined;
|
|
845
845
|
/**
|
|
846
846
|
* Interval (in seconds) between each encryption key rotation.
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
KeyRotationIntervalSeconds?: number;
|
|
849
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
850
850
|
/**
|
|
851
851
|
* When enabled, the EXT-X-KEY tag will be repeated in output manifests.
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
RepeatExtXKey?: boolean;
|
|
854
|
+
RepeatExtXKey?: boolean | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
857
857
|
* @public
|
|
@@ -875,14 +875,14 @@ export interface HlsPackage {
|
|
|
875
875
|
* that is greater than 0.
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
AdMarkers?: AdMarkers;
|
|
878
|
+
AdMarkers?: AdMarkers | undefined;
|
|
879
879
|
/**
|
|
880
880
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
881
881
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
882
882
|
* message types.
|
|
883
883
|
* @public
|
|
884
884
|
*/
|
|
885
|
-
AdTriggers?: __AdTriggersElement[];
|
|
885
|
+
AdTriggers?: __AdTriggersElement[] | undefined;
|
|
886
886
|
/**
|
|
887
887
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
888
888
|
* determine whether a message signals an ad. Choosing "NONE" means no SCTE-35 messages become
|
|
@@ -894,34 +894,34 @@ export interface HlsPackage {
|
|
|
894
894
|
* and are always treated as ads if specified in AdTriggers.
|
|
895
895
|
* @public
|
|
896
896
|
*/
|
|
897
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
897
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | undefined;
|
|
898
898
|
/**
|
|
899
899
|
* An HTTP Live Streaming (HLS) encryption configuration.
|
|
900
900
|
* @public
|
|
901
901
|
*/
|
|
902
|
-
Encryption?: HlsEncryption;
|
|
902
|
+
Encryption?: HlsEncryption | undefined;
|
|
903
903
|
/**
|
|
904
904
|
* When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
|
|
905
905
|
* @public
|
|
906
906
|
*/
|
|
907
|
-
IncludeDvbSubtitles?: boolean;
|
|
907
|
+
IncludeDvbSubtitles?: boolean | undefined;
|
|
908
908
|
/**
|
|
909
909
|
* When enabled, an I-Frame only stream will be included in the output.
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
IncludeIframeOnlyStream?: boolean;
|
|
912
|
+
IncludeIframeOnlyStream?: boolean | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* The HTTP Live Streaming (HLS) playlist type.
|
|
915
915
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
916
916
|
* entry will be included in the media playlist.
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
PlaylistType?: PlaylistType;
|
|
919
|
+
PlaylistType?: PlaylistType | undefined;
|
|
920
920
|
/**
|
|
921
921
|
* Time window (in seconds) contained in each parent manifest.
|
|
922
922
|
* @public
|
|
923
923
|
*/
|
|
924
|
-
PlaylistWindowSeconds?: number;
|
|
924
|
+
PlaylistWindowSeconds?: number | undefined;
|
|
925
925
|
/**
|
|
926
926
|
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
|
|
927
927
|
* inserted into manifests. Additionally, when an interval is specified
|
|
@@ -934,23 +934,23 @@ export interface HlsPackage {
|
|
|
934
934
|
* it will be passed through to HLS output.
|
|
935
935
|
* @public
|
|
936
936
|
*/
|
|
937
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
937
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
938
938
|
/**
|
|
939
939
|
* Duration (in seconds) of each fragment. Actual fragments will be
|
|
940
940
|
* rounded to the nearest multiple of the source fragment duration.
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
SegmentDurationSeconds?: number;
|
|
943
|
+
SegmentDurationSeconds?: number | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* A StreamSelection configuration.
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
|
-
StreamSelection?: StreamSelection;
|
|
948
|
+
StreamSelection?: StreamSelection | undefined;
|
|
949
949
|
/**
|
|
950
950
|
* When enabled, audio streams will be placed in rendition groups in the output.
|
|
951
951
|
* @public
|
|
952
952
|
*/
|
|
953
|
-
UseAudioRenditionGroup?: boolean;
|
|
953
|
+
UseAudioRenditionGroup?: boolean | undefined;
|
|
954
954
|
}
|
|
955
955
|
/**
|
|
956
956
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
@@ -972,22 +972,22 @@ export interface MssPackage {
|
|
|
972
972
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
973
973
|
* @public
|
|
974
974
|
*/
|
|
975
|
-
Encryption?: MssEncryption;
|
|
975
|
+
Encryption?: MssEncryption | undefined;
|
|
976
976
|
/**
|
|
977
977
|
* The time window (in seconds) contained in each manifest.
|
|
978
978
|
* @public
|
|
979
979
|
*/
|
|
980
|
-
ManifestWindowSeconds?: number;
|
|
980
|
+
ManifestWindowSeconds?: number | undefined;
|
|
981
981
|
/**
|
|
982
982
|
* The duration (in seconds) of each segment.
|
|
983
983
|
* @public
|
|
984
984
|
*/
|
|
985
|
-
SegmentDurationSeconds?: number;
|
|
985
|
+
SegmentDurationSeconds?: number | undefined;
|
|
986
986
|
/**
|
|
987
987
|
* A StreamSelection configuration.
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
StreamSelection?: StreamSelection;
|
|
990
|
+
StreamSelection?: StreamSelection | undefined;
|
|
991
991
|
}
|
|
992
992
|
/**
|
|
993
993
|
* @public
|
|
@@ -1010,91 +1010,91 @@ export interface OriginEndpoint {
|
|
|
1010
1010
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
1011
1011
|
* @public
|
|
1012
1012
|
*/
|
|
1013
|
-
Arn?: string;
|
|
1013
|
+
Arn?: string | undefined;
|
|
1014
1014
|
/**
|
|
1015
1015
|
* CDN Authorization credentials
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
Authorization?: Authorization;
|
|
1018
|
+
Authorization?: Authorization | undefined;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
1021
1021
|
* @public
|
|
1022
1022
|
*/
|
|
1023
|
-
ChannelId?: string;
|
|
1023
|
+
ChannelId?: string | undefined;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1026
1026
|
* @public
|
|
1027
1027
|
*/
|
|
1028
|
-
CmafPackage?: CmafPackage;
|
|
1028
|
+
CmafPackage?: CmafPackage | undefined;
|
|
1029
1029
|
/**
|
|
1030
1030
|
* The date and time the OriginEndpoint was created.
|
|
1031
1031
|
* @public
|
|
1032
1032
|
*/
|
|
1033
|
-
CreatedAt?: string;
|
|
1033
|
+
CreatedAt?: string | undefined;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
DashPackage?: DashPackage;
|
|
1038
|
+
DashPackage?: DashPackage | undefined;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* A short text description of the OriginEndpoint.
|
|
1041
1041
|
* @public
|
|
1042
1042
|
*/
|
|
1043
|
-
Description?: string;
|
|
1043
|
+
Description?: string | undefined;
|
|
1044
1044
|
/**
|
|
1045
1045
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
HlsPackage?: HlsPackage;
|
|
1048
|
+
HlsPackage?: HlsPackage | undefined;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* The ID of the OriginEndpoint.
|
|
1051
1051
|
* @public
|
|
1052
1052
|
*/
|
|
1053
|
-
Id?: string;
|
|
1053
|
+
Id?: string | undefined;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
1056
1056
|
* @public
|
|
1057
1057
|
*/
|
|
1058
|
-
ManifestName?: string;
|
|
1058
|
+
ManifestName?: string | undefined;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1061
1061
|
* @public
|
|
1062
1062
|
*/
|
|
1063
|
-
MssPackage?: MssPackage;
|
|
1063
|
+
MssPackage?: MssPackage | undefined;
|
|
1064
1064
|
/**
|
|
1065
1065
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1066
1066
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1067
1067
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1068
1068
|
* @public
|
|
1069
1069
|
*/
|
|
1070
|
-
Origination?: Origination;
|
|
1070
|
+
Origination?: Origination | undefined;
|
|
1071
1071
|
/**
|
|
1072
1072
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1073
1073
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
StartoverWindowSeconds?: number;
|
|
1076
|
+
StartoverWindowSeconds?: number | undefined;
|
|
1077
1077
|
/**
|
|
1078
1078
|
* A collection of tags associated with a resource
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
Tags?: Record<string, string
|
|
1081
|
+
Tags?: Record<string, string> | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1084
1084
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
TimeDelaySeconds?: number;
|
|
1087
|
+
TimeDelaySeconds?: number | undefined;
|
|
1088
1088
|
/**
|
|
1089
1089
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
Url?: string;
|
|
1092
|
+
Url?: string | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
Whitelist?: string[];
|
|
1097
|
+
Whitelist?: string[] | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
/**
|
|
1100
1100
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
@@ -1105,28 +1105,28 @@ export interface CmafPackageCreateOrUpdateParameters {
|
|
|
1105
1105
|
* A Common Media Application Format (CMAF) encryption configuration.
|
|
1106
1106
|
* @public
|
|
1107
1107
|
*/
|
|
1108
|
-
Encryption?: CmafEncryption;
|
|
1108
|
+
Encryption?: CmafEncryption | undefined;
|
|
1109
1109
|
/**
|
|
1110
1110
|
* A list of HLS manifest configurations
|
|
1111
1111
|
* @public
|
|
1112
1112
|
*/
|
|
1113
|
-
HlsManifests?: HlsManifestCreateOrUpdateParameters[];
|
|
1113
|
+
HlsManifests?: HlsManifestCreateOrUpdateParameters[] | undefined;
|
|
1114
1114
|
/**
|
|
1115
1115
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
1116
1116
|
* rounded to the nearest multiple of the source segment duration.
|
|
1117
1117
|
* @public
|
|
1118
1118
|
*/
|
|
1119
|
-
SegmentDurationSeconds?: number;
|
|
1119
|
+
SegmentDurationSeconds?: number | undefined;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* An optional custom string that is prepended to the name of each segment. If not specified, it defaults to the ChannelId.
|
|
1122
1122
|
* @public
|
|
1123
1123
|
*/
|
|
1124
|
-
SegmentPrefix?: string;
|
|
1124
|
+
SegmentPrefix?: string | undefined;
|
|
1125
1125
|
/**
|
|
1126
1126
|
* A StreamSelection configuration.
|
|
1127
1127
|
* @public
|
|
1128
1128
|
*/
|
|
1129
|
-
StreamSelection?: StreamSelection;
|
|
1129
|
+
StreamSelection?: StreamSelection | undefined;
|
|
1130
1130
|
}
|
|
1131
1131
|
/**
|
|
1132
1132
|
* the option to configure log subscription.
|
|
@@ -1137,7 +1137,7 @@ export interface ConfigureLogsRequest {
|
|
|
1137
1137
|
* Configure egress access logging.
|
|
1138
1138
|
* @public
|
|
1139
1139
|
*/
|
|
1140
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1140
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1141
1141
|
/**
|
|
1142
1142
|
* The ID of the channel to log subscription.
|
|
1143
1143
|
* @public
|
|
@@ -1147,7 +1147,7 @@ export interface ConfigureLogsRequest {
|
|
|
1147
1147
|
* Configure ingress access logging.
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
1150
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
1151
1151
|
}
|
|
1152
1152
|
/**
|
|
1153
1153
|
* @public
|
|
@@ -1157,42 +1157,42 @@ export interface ConfigureLogsResponse {
|
|
|
1157
1157
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
Arn?: string;
|
|
1160
|
+
Arn?: string | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* The date and time the Channel was created.
|
|
1163
1163
|
* @public
|
|
1164
1164
|
*/
|
|
1165
|
-
CreatedAt?: string;
|
|
1165
|
+
CreatedAt?: string | undefined;
|
|
1166
1166
|
/**
|
|
1167
1167
|
* A short text description of the Channel.
|
|
1168
1168
|
* @public
|
|
1169
1169
|
*/
|
|
1170
|
-
Description?: string;
|
|
1170
|
+
Description?: string | undefined;
|
|
1171
1171
|
/**
|
|
1172
1172
|
* Configure egress access logging.
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1175
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
HlsIngest?: HlsIngest;
|
|
1180
|
+
HlsIngest?: HlsIngest | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* The ID of the Channel.
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
Id?: string;
|
|
1185
|
+
Id?: string | undefined;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* Configure ingress access logging.
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
1190
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
1191
1191
|
/**
|
|
1192
1192
|
* A collection of tags associated with a resource
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
Tags?: Record<string, string
|
|
1195
|
+
Tags?: Record<string, string> | undefined;
|
|
1196
1196
|
}
|
|
1197
1197
|
/**
|
|
1198
1198
|
* The client is not authorized to access the requested resource.
|
|
@@ -1201,7 +1201,7 @@ export interface ConfigureLogsResponse {
|
|
|
1201
1201
|
export declare class ForbiddenException extends __BaseException {
|
|
1202
1202
|
readonly name: "ForbiddenException";
|
|
1203
1203
|
readonly $fault: "client";
|
|
1204
|
-
Message?: string;
|
|
1204
|
+
Message?: string | undefined;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* @internal
|
|
1207
1207
|
*/
|
|
@@ -1214,7 +1214,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
1214
1214
|
export declare class InternalServerErrorException extends __BaseException {
|
|
1215
1215
|
readonly name: "InternalServerErrorException";
|
|
1216
1216
|
readonly $fault: "server";
|
|
1217
|
-
Message?: string;
|
|
1217
|
+
Message?: string | undefined;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* @internal
|
|
1220
1220
|
*/
|
|
@@ -1227,7 +1227,7 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
1227
1227
|
export declare class NotFoundException extends __BaseException {
|
|
1228
1228
|
readonly name: "NotFoundException";
|
|
1229
1229
|
readonly $fault: "client";
|
|
1230
|
-
Message?: string;
|
|
1230
|
+
Message?: string | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* @internal
|
|
1233
1233
|
*/
|
|
@@ -1240,7 +1240,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
1240
1240
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
1241
1241
|
readonly name: "ServiceUnavailableException";
|
|
1242
1242
|
readonly $fault: "server";
|
|
1243
|
-
Message?: string;
|
|
1243
|
+
Message?: string | undefined;
|
|
1244
1244
|
/**
|
|
1245
1245
|
* @internal
|
|
1246
1246
|
*/
|
|
@@ -1253,7 +1253,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
1253
1253
|
export declare class TooManyRequestsException extends __BaseException {
|
|
1254
1254
|
readonly name: "TooManyRequestsException";
|
|
1255
1255
|
readonly $fault: "client";
|
|
1256
|
-
Message?: string;
|
|
1256
|
+
Message?: string | undefined;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* @internal
|
|
1259
1259
|
*/
|
|
@@ -1266,7 +1266,7 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
1266
1266
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
1267
1267
|
readonly name: "UnprocessableEntityException";
|
|
1268
1268
|
readonly $fault: "client";
|
|
1269
|
-
Message?: string;
|
|
1269
|
+
Message?: string | undefined;
|
|
1270
1270
|
/**
|
|
1271
1271
|
* @internal
|
|
1272
1272
|
*/
|
|
@@ -1281,7 +1281,7 @@ export interface CreateChannelRequest {
|
|
|
1281
1281
|
* A short text description of the Channel.
|
|
1282
1282
|
* @public
|
|
1283
1283
|
*/
|
|
1284
|
-
Description?: string;
|
|
1284
|
+
Description?: string | undefined;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* The ID of the Channel. The ID must be unique within the region and it
|
|
1287
1287
|
* cannot be changed after a Channel is created.
|
|
@@ -1292,7 +1292,7 @@ export interface CreateChannelRequest {
|
|
|
1292
1292
|
* A collection of tags associated with a resource
|
|
1293
1293
|
* @public
|
|
1294
1294
|
*/
|
|
1295
|
-
Tags?: Record<string, string
|
|
1295
|
+
Tags?: Record<string, string> | undefined;
|
|
1296
1296
|
}
|
|
1297
1297
|
/**
|
|
1298
1298
|
* @public
|
|
@@ -1302,42 +1302,42 @@ export interface CreateChannelResponse {
|
|
|
1302
1302
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1303
1303
|
* @public
|
|
1304
1304
|
*/
|
|
1305
|
-
Arn?: string;
|
|
1305
|
+
Arn?: string | undefined;
|
|
1306
1306
|
/**
|
|
1307
1307
|
* The date and time the Channel was created.
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
CreatedAt?: string;
|
|
1310
|
+
CreatedAt?: string | undefined;
|
|
1311
1311
|
/**
|
|
1312
1312
|
* A short text description of the Channel.
|
|
1313
1313
|
* @public
|
|
1314
1314
|
*/
|
|
1315
|
-
Description?: string;
|
|
1315
|
+
Description?: string | undefined;
|
|
1316
1316
|
/**
|
|
1317
1317
|
* Configure egress access logging.
|
|
1318
1318
|
* @public
|
|
1319
1319
|
*/
|
|
1320
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1320
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1321
1321
|
/**
|
|
1322
1322
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
1323
1323
|
* @public
|
|
1324
1324
|
*/
|
|
1325
|
-
HlsIngest?: HlsIngest;
|
|
1325
|
+
HlsIngest?: HlsIngest | undefined;
|
|
1326
1326
|
/**
|
|
1327
1327
|
* The ID of the Channel.
|
|
1328
1328
|
* @public
|
|
1329
1329
|
*/
|
|
1330
|
-
Id?: string;
|
|
1330
|
+
Id?: string | undefined;
|
|
1331
1331
|
/**
|
|
1332
1332
|
* Configure ingress access logging.
|
|
1333
1333
|
* @public
|
|
1334
1334
|
*/
|
|
1335
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
1335
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
1336
1336
|
/**
|
|
1337
1337
|
* A collection of tags associated with a resource
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
Tags?: Record<string, string
|
|
1340
|
+
Tags?: Record<string, string> | undefined;
|
|
1341
1341
|
}
|
|
1342
1342
|
/**
|
|
1343
1343
|
* Configuration parameters used to create a new HarvestJob.
|
|
@@ -1380,51 +1380,51 @@ export interface CreateHarvestJobResponse {
|
|
|
1380
1380
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
1381
1381
|
* @public
|
|
1382
1382
|
*/
|
|
1383
|
-
Arn?: string;
|
|
1383
|
+
Arn?: string | undefined;
|
|
1384
1384
|
/**
|
|
1385
1385
|
* The ID of the Channel that the HarvestJob will harvest from.
|
|
1386
1386
|
* @public
|
|
1387
1387
|
*/
|
|
1388
|
-
ChannelId?: string;
|
|
1388
|
+
ChannelId?: string | undefined;
|
|
1389
1389
|
/**
|
|
1390
1390
|
* The date and time the HarvestJob was submitted.
|
|
1391
1391
|
* @public
|
|
1392
1392
|
*/
|
|
1393
|
-
CreatedAt?: string;
|
|
1393
|
+
CreatedAt?: string | undefined;
|
|
1394
1394
|
/**
|
|
1395
1395
|
* The end of the time-window which will be harvested.
|
|
1396
1396
|
* @public
|
|
1397
1397
|
*/
|
|
1398
|
-
EndTime?: string;
|
|
1398
|
+
EndTime?: string | undefined;
|
|
1399
1399
|
/**
|
|
1400
1400
|
* The ID of the HarvestJob. The ID must be unique within the region
|
|
1401
1401
|
* and it cannot be changed after the HarvestJob is submitted.
|
|
1402
1402
|
* @public
|
|
1403
1403
|
*/
|
|
1404
|
-
Id?: string;
|
|
1404
|
+
Id?: string | undefined;
|
|
1405
1405
|
/**
|
|
1406
1406
|
* The ID of the OriginEndpoint that the HarvestJob will harvest from.
|
|
1407
1407
|
* This cannot be changed after the HarvestJob is submitted.
|
|
1408
1408
|
* @public
|
|
1409
1409
|
*/
|
|
1410
|
-
OriginEndpointId?: string;
|
|
1410
|
+
OriginEndpointId?: string | undefined;
|
|
1411
1411
|
/**
|
|
1412
1412
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
S3Destination?: S3Destination;
|
|
1415
|
+
S3Destination?: S3Destination | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* The start of the time-window which will be harvested.
|
|
1418
1418
|
* @public
|
|
1419
1419
|
*/
|
|
1420
|
-
StartTime?: string;
|
|
1420
|
+
StartTime?: string | undefined;
|
|
1421
1421
|
/**
|
|
1422
1422
|
* The current status of the HarvestJob. Consider setting up a CloudWatch Event to listen for
|
|
1423
1423
|
* HarvestJobs as they succeed or fail. In the event of failure, the CloudWatch Event will
|
|
1424
1424
|
* include an explanation of why the HarvestJob failed.
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
Status?: Status;
|
|
1427
|
+
Status?: Status | undefined;
|
|
1428
1428
|
}
|
|
1429
1429
|
/**
|
|
1430
1430
|
* Configuration parameters used to create a new OriginEndpoint.
|
|
@@ -1435,7 +1435,7 @@ export interface CreateOriginEndpointRequest {
|
|
|
1435
1435
|
* CDN Authorization credentials
|
|
1436
1436
|
* @public
|
|
1437
1437
|
*/
|
|
1438
|
-
Authorization?: Authorization;
|
|
1438
|
+
Authorization?: Authorization | undefined;
|
|
1439
1439
|
/**
|
|
1440
1440
|
* The ID of the Channel that the OriginEndpoint will be associated with.
|
|
1441
1441
|
* This cannot be changed after the OriginEndpoint is created.
|
|
@@ -1446,22 +1446,22 @@ export interface CreateOriginEndpointRequest {
|
|
|
1446
1446
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1447
1447
|
* @public
|
|
1448
1448
|
*/
|
|
1449
|
-
CmafPackage?: CmafPackageCreateOrUpdateParameters;
|
|
1449
|
+
CmafPackage?: CmafPackageCreateOrUpdateParameters | undefined;
|
|
1450
1450
|
/**
|
|
1451
1451
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1452
1452
|
* @public
|
|
1453
1453
|
*/
|
|
1454
|
-
DashPackage?: DashPackage;
|
|
1454
|
+
DashPackage?: DashPackage | undefined;
|
|
1455
1455
|
/**
|
|
1456
1456
|
* A short text description of the OriginEndpoint.
|
|
1457
1457
|
* @public
|
|
1458
1458
|
*/
|
|
1459
|
-
Description?: string;
|
|
1459
|
+
Description?: string | undefined;
|
|
1460
1460
|
/**
|
|
1461
1461
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
HlsPackage?: HlsPackage;
|
|
1464
|
+
HlsPackage?: HlsPackage | undefined;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* The ID of the OriginEndpoint. The ID must be unique within the region
|
|
1467
1467
|
* and it cannot be changed after the OriginEndpoint is created.
|
|
@@ -1472,41 +1472,41 @@ export interface CreateOriginEndpointRequest {
|
|
|
1472
1472
|
* A short string that will be used as the filename of the OriginEndpoint URL (defaults to "index").
|
|
1473
1473
|
* @public
|
|
1474
1474
|
*/
|
|
1475
|
-
ManifestName?: string;
|
|
1475
|
+
ManifestName?: string | undefined;
|
|
1476
1476
|
/**
|
|
1477
1477
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1478
1478
|
* @public
|
|
1479
1479
|
*/
|
|
1480
|
-
MssPackage?: MssPackage;
|
|
1480
|
+
MssPackage?: MssPackage | undefined;
|
|
1481
1481
|
/**
|
|
1482
1482
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1483
1483
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1484
1484
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
Origination?: Origination;
|
|
1487
|
+
Origination?: Origination | undefined;
|
|
1488
1488
|
/**
|
|
1489
1489
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1490
1490
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
StartoverWindowSeconds?: number;
|
|
1493
|
+
StartoverWindowSeconds?: number | undefined;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* A collection of tags associated with a resource
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
Tags?: Record<string, string
|
|
1498
|
+
Tags?: Record<string, string> | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1501
1501
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1502
1502
|
* @public
|
|
1503
1503
|
*/
|
|
1504
|
-
TimeDelaySeconds?: number;
|
|
1504
|
+
TimeDelaySeconds?: number | undefined;
|
|
1505
1505
|
/**
|
|
1506
1506
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
Whitelist?: string[];
|
|
1509
|
+
Whitelist?: string[] | undefined;
|
|
1510
1510
|
}
|
|
1511
1511
|
/**
|
|
1512
1512
|
* @public
|
|
@@ -1516,91 +1516,91 @@ export interface CreateOriginEndpointResponse {
|
|
|
1516
1516
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
Arn?: string;
|
|
1519
|
+
Arn?: string | undefined;
|
|
1520
1520
|
/**
|
|
1521
1521
|
* CDN Authorization credentials
|
|
1522
1522
|
* @public
|
|
1523
1523
|
*/
|
|
1524
|
-
Authorization?: Authorization;
|
|
1524
|
+
Authorization?: Authorization | undefined;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
1527
1527
|
* @public
|
|
1528
1528
|
*/
|
|
1529
|
-
ChannelId?: string;
|
|
1529
|
+
ChannelId?: string | undefined;
|
|
1530
1530
|
/**
|
|
1531
1531
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1532
1532
|
* @public
|
|
1533
1533
|
*/
|
|
1534
|
-
CmafPackage?: CmafPackage;
|
|
1534
|
+
CmafPackage?: CmafPackage | undefined;
|
|
1535
1535
|
/**
|
|
1536
1536
|
* The date and time the OriginEndpoint was created.
|
|
1537
1537
|
* @public
|
|
1538
1538
|
*/
|
|
1539
|
-
CreatedAt?: string;
|
|
1539
|
+
CreatedAt?: string | undefined;
|
|
1540
1540
|
/**
|
|
1541
1541
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
DashPackage?: DashPackage;
|
|
1544
|
+
DashPackage?: DashPackage | undefined;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* A short text description of the OriginEndpoint.
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
Description?: string;
|
|
1549
|
+
Description?: string | undefined;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1552
1552
|
* @public
|
|
1553
1553
|
*/
|
|
1554
|
-
HlsPackage?: HlsPackage;
|
|
1554
|
+
HlsPackage?: HlsPackage | undefined;
|
|
1555
1555
|
/**
|
|
1556
1556
|
* The ID of the OriginEndpoint.
|
|
1557
1557
|
* @public
|
|
1558
1558
|
*/
|
|
1559
|
-
Id?: string;
|
|
1559
|
+
Id?: string | undefined;
|
|
1560
1560
|
/**
|
|
1561
1561
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
1562
1562
|
* @public
|
|
1563
1563
|
*/
|
|
1564
|
-
ManifestName?: string;
|
|
1564
|
+
ManifestName?: string | undefined;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1567
1567
|
* @public
|
|
1568
1568
|
*/
|
|
1569
|
-
MssPackage?: MssPackage;
|
|
1569
|
+
MssPackage?: MssPackage | undefined;
|
|
1570
1570
|
/**
|
|
1571
1571
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1572
1572
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1573
1573
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1574
1574
|
* @public
|
|
1575
1575
|
*/
|
|
1576
|
-
Origination?: Origination;
|
|
1576
|
+
Origination?: Origination | undefined;
|
|
1577
1577
|
/**
|
|
1578
1578
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1579
1579
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1580
1580
|
* @public
|
|
1581
1581
|
*/
|
|
1582
|
-
StartoverWindowSeconds?: number;
|
|
1582
|
+
StartoverWindowSeconds?: number | undefined;
|
|
1583
1583
|
/**
|
|
1584
1584
|
* A collection of tags associated with a resource
|
|
1585
1585
|
* @public
|
|
1586
1586
|
*/
|
|
1587
|
-
Tags?: Record<string, string
|
|
1587
|
+
Tags?: Record<string, string> | undefined;
|
|
1588
1588
|
/**
|
|
1589
1589
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1590
1590
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1591
1591
|
* @public
|
|
1592
1592
|
*/
|
|
1593
|
-
TimeDelaySeconds?: number;
|
|
1593
|
+
TimeDelaySeconds?: number | undefined;
|
|
1594
1594
|
/**
|
|
1595
1595
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
1596
1596
|
* @public
|
|
1597
1597
|
*/
|
|
1598
|
-
Url?: string;
|
|
1598
|
+
Url?: string | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1601
1601
|
* @public
|
|
1602
1602
|
*/
|
|
1603
|
-
Whitelist?: string[];
|
|
1603
|
+
Whitelist?: string[] | undefined;
|
|
1604
1604
|
}
|
|
1605
1605
|
/**
|
|
1606
1606
|
* @public
|
|
@@ -1650,42 +1650,42 @@ export interface DescribeChannelResponse {
|
|
|
1650
1650
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1651
1651
|
* @public
|
|
1652
1652
|
*/
|
|
1653
|
-
Arn?: string;
|
|
1653
|
+
Arn?: string | undefined;
|
|
1654
1654
|
/**
|
|
1655
1655
|
* The date and time the Channel was created.
|
|
1656
1656
|
* @public
|
|
1657
1657
|
*/
|
|
1658
|
-
CreatedAt?: string;
|
|
1658
|
+
CreatedAt?: string | undefined;
|
|
1659
1659
|
/**
|
|
1660
1660
|
* A short text description of the Channel.
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
Description?: string;
|
|
1663
|
+
Description?: string | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* Configure egress access logging.
|
|
1666
1666
|
* @public
|
|
1667
1667
|
*/
|
|
1668
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
1668
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
1669
1669
|
/**
|
|
1670
1670
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
1671
1671
|
* @public
|
|
1672
1672
|
*/
|
|
1673
|
-
HlsIngest?: HlsIngest;
|
|
1673
|
+
HlsIngest?: HlsIngest | undefined;
|
|
1674
1674
|
/**
|
|
1675
1675
|
* The ID of the Channel.
|
|
1676
1676
|
* @public
|
|
1677
1677
|
*/
|
|
1678
|
-
Id?: string;
|
|
1678
|
+
Id?: string | undefined;
|
|
1679
1679
|
/**
|
|
1680
1680
|
* Configure ingress access logging.
|
|
1681
1681
|
* @public
|
|
1682
1682
|
*/
|
|
1683
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
1683
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
1684
1684
|
/**
|
|
1685
1685
|
* A collection of tags associated with a resource
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
Tags?: Record<string, string
|
|
1688
|
+
Tags?: Record<string, string> | undefined;
|
|
1689
1689
|
}
|
|
1690
1690
|
/**
|
|
1691
1691
|
* @public
|
|
@@ -1705,51 +1705,51 @@ export interface DescribeHarvestJobResponse {
|
|
|
1705
1705
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
1706
1706
|
* @public
|
|
1707
1707
|
*/
|
|
1708
|
-
Arn?: string;
|
|
1708
|
+
Arn?: string | undefined;
|
|
1709
1709
|
/**
|
|
1710
1710
|
* The ID of the Channel that the HarvestJob will harvest from.
|
|
1711
1711
|
* @public
|
|
1712
1712
|
*/
|
|
1713
|
-
ChannelId?: string;
|
|
1713
|
+
ChannelId?: string | undefined;
|
|
1714
1714
|
/**
|
|
1715
1715
|
* The date and time the HarvestJob was submitted.
|
|
1716
1716
|
* @public
|
|
1717
1717
|
*/
|
|
1718
|
-
CreatedAt?: string;
|
|
1718
|
+
CreatedAt?: string | undefined;
|
|
1719
1719
|
/**
|
|
1720
1720
|
* The end of the time-window which will be harvested.
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
EndTime?: string;
|
|
1723
|
+
EndTime?: string | undefined;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* The ID of the HarvestJob. The ID must be unique within the region
|
|
1726
1726
|
* and it cannot be changed after the HarvestJob is submitted.
|
|
1727
1727
|
* @public
|
|
1728
1728
|
*/
|
|
1729
|
-
Id?: string;
|
|
1729
|
+
Id?: string | undefined;
|
|
1730
1730
|
/**
|
|
1731
1731
|
* The ID of the OriginEndpoint that the HarvestJob will harvest from.
|
|
1732
1732
|
* This cannot be changed after the HarvestJob is submitted.
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
OriginEndpointId?: string;
|
|
1735
|
+
OriginEndpointId?: string | undefined;
|
|
1736
1736
|
/**
|
|
1737
1737
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
1738
1738
|
* @public
|
|
1739
1739
|
*/
|
|
1740
|
-
S3Destination?: S3Destination;
|
|
1740
|
+
S3Destination?: S3Destination | undefined;
|
|
1741
1741
|
/**
|
|
1742
1742
|
* The start of the time-window which will be harvested.
|
|
1743
1743
|
* @public
|
|
1744
1744
|
*/
|
|
1745
|
-
StartTime?: string;
|
|
1745
|
+
StartTime?: string | undefined;
|
|
1746
1746
|
/**
|
|
1747
1747
|
* The current status of the HarvestJob. Consider setting up a CloudWatch Event to listen for
|
|
1748
1748
|
* HarvestJobs as they succeed or fail. In the event of failure, the CloudWatch Event will
|
|
1749
1749
|
* include an explanation of why the HarvestJob failed.
|
|
1750
1750
|
* @public
|
|
1751
1751
|
*/
|
|
1752
|
-
Status?: Status;
|
|
1752
|
+
Status?: Status | undefined;
|
|
1753
1753
|
}
|
|
1754
1754
|
/**
|
|
1755
1755
|
* @public
|
|
@@ -1769,91 +1769,91 @@ export interface DescribeOriginEndpointResponse {
|
|
|
1769
1769
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
Arn?: string;
|
|
1772
|
+
Arn?: string | undefined;
|
|
1773
1773
|
/**
|
|
1774
1774
|
* CDN Authorization credentials
|
|
1775
1775
|
* @public
|
|
1776
1776
|
*/
|
|
1777
|
-
Authorization?: Authorization;
|
|
1777
|
+
Authorization?: Authorization | undefined;
|
|
1778
1778
|
/**
|
|
1779
1779
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
ChannelId?: string;
|
|
1782
|
+
ChannelId?: string | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
CmafPackage?: CmafPackage;
|
|
1787
|
+
CmafPackage?: CmafPackage | undefined;
|
|
1788
1788
|
/**
|
|
1789
1789
|
* The date and time the OriginEndpoint was created.
|
|
1790
1790
|
* @public
|
|
1791
1791
|
*/
|
|
1792
|
-
CreatedAt?: string;
|
|
1792
|
+
CreatedAt?: string | undefined;
|
|
1793
1793
|
/**
|
|
1794
1794
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
1795
1795
|
* @public
|
|
1796
1796
|
*/
|
|
1797
|
-
DashPackage?: DashPackage;
|
|
1797
|
+
DashPackage?: DashPackage | undefined;
|
|
1798
1798
|
/**
|
|
1799
1799
|
* A short text description of the OriginEndpoint.
|
|
1800
1800
|
* @public
|
|
1801
1801
|
*/
|
|
1802
|
-
Description?: string;
|
|
1802
|
+
Description?: string | undefined;
|
|
1803
1803
|
/**
|
|
1804
1804
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
1805
1805
|
* @public
|
|
1806
1806
|
*/
|
|
1807
|
-
HlsPackage?: HlsPackage;
|
|
1807
|
+
HlsPackage?: HlsPackage | undefined;
|
|
1808
1808
|
/**
|
|
1809
1809
|
* The ID of the OriginEndpoint.
|
|
1810
1810
|
* @public
|
|
1811
1811
|
*/
|
|
1812
|
-
Id?: string;
|
|
1812
|
+
Id?: string | undefined;
|
|
1813
1813
|
/**
|
|
1814
1814
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
1815
1815
|
* @public
|
|
1816
1816
|
*/
|
|
1817
|
-
ManifestName?: string;
|
|
1817
|
+
ManifestName?: string | undefined;
|
|
1818
1818
|
/**
|
|
1819
1819
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
1820
1820
|
* @public
|
|
1821
1821
|
*/
|
|
1822
|
-
MssPackage?: MssPackage;
|
|
1822
|
+
MssPackage?: MssPackage | undefined;
|
|
1823
1823
|
/**
|
|
1824
1824
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
1825
1825
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
1826
1826
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
1827
1827
|
* @public
|
|
1828
1828
|
*/
|
|
1829
|
-
Origination?: Origination;
|
|
1829
|
+
Origination?: Origination | undefined;
|
|
1830
1830
|
/**
|
|
1831
1831
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
1832
1832
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
1833
1833
|
* @public
|
|
1834
1834
|
*/
|
|
1835
|
-
StartoverWindowSeconds?: number;
|
|
1835
|
+
StartoverWindowSeconds?: number | undefined;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* A collection of tags associated with a resource
|
|
1838
1838
|
* @public
|
|
1839
1839
|
*/
|
|
1840
|
-
Tags?: Record<string, string
|
|
1840
|
+
Tags?: Record<string, string> | undefined;
|
|
1841
1841
|
/**
|
|
1842
1842
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
1843
1843
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
1844
1844
|
* @public
|
|
1845
1845
|
*/
|
|
1846
|
-
TimeDelaySeconds?: number;
|
|
1846
|
+
TimeDelaySeconds?: number | undefined;
|
|
1847
1847
|
/**
|
|
1848
1848
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
1849
1849
|
* @public
|
|
1850
1850
|
*/
|
|
1851
|
-
Url?: string;
|
|
1851
|
+
Url?: string | undefined;
|
|
1852
1852
|
/**
|
|
1853
1853
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
Whitelist?: string[];
|
|
1856
|
+
Whitelist?: string[] | undefined;
|
|
1857
1857
|
}
|
|
1858
1858
|
/**
|
|
1859
1859
|
* @public
|
|
@@ -1863,12 +1863,12 @@ export interface ListChannelsRequest {
|
|
|
1863
1863
|
* Upper bound on number of records to return.
|
|
1864
1864
|
* @public
|
|
1865
1865
|
*/
|
|
1866
|
-
MaxResults?: number;
|
|
1866
|
+
MaxResults?: number | undefined;
|
|
1867
1867
|
/**
|
|
1868
1868
|
* A token used to resume pagination from the end of a previous request.
|
|
1869
1869
|
* @public
|
|
1870
1870
|
*/
|
|
1871
|
-
NextToken?: string;
|
|
1871
|
+
NextToken?: string | undefined;
|
|
1872
1872
|
}
|
|
1873
1873
|
/**
|
|
1874
1874
|
* @public
|
|
@@ -1878,12 +1878,12 @@ export interface ListChannelsResponse {
|
|
|
1878
1878
|
* A list of Channel records.
|
|
1879
1879
|
* @public
|
|
1880
1880
|
*/
|
|
1881
|
-
Channels?: Channel[];
|
|
1881
|
+
Channels?: Channel[] | undefined;
|
|
1882
1882
|
/**
|
|
1883
1883
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1884
1884
|
* @public
|
|
1885
1885
|
*/
|
|
1886
|
-
NextToken?: string;
|
|
1886
|
+
NextToken?: string | undefined;
|
|
1887
1887
|
}
|
|
1888
1888
|
/**
|
|
1889
1889
|
* @public
|
|
@@ -1893,22 +1893,22 @@ export interface ListHarvestJobsRequest {
|
|
|
1893
1893
|
* When specified, the request will return only HarvestJobs associated with the given Channel ID.
|
|
1894
1894
|
* @public
|
|
1895
1895
|
*/
|
|
1896
|
-
IncludeChannelId?: string;
|
|
1896
|
+
IncludeChannelId?: string | undefined;
|
|
1897
1897
|
/**
|
|
1898
1898
|
* When specified, the request will return only HarvestJobs in the given status.
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
IncludeStatus?: string;
|
|
1901
|
+
IncludeStatus?: string | undefined;
|
|
1902
1902
|
/**
|
|
1903
1903
|
* The upper bound on the number of records to return.
|
|
1904
1904
|
* @public
|
|
1905
1905
|
*/
|
|
1906
|
-
MaxResults?: number;
|
|
1906
|
+
MaxResults?: number | undefined;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* A token used to resume pagination from the end of a previous request.
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
NextToken?: string;
|
|
1911
|
+
NextToken?: string | undefined;
|
|
1912
1912
|
}
|
|
1913
1913
|
/**
|
|
1914
1914
|
* @public
|
|
@@ -1918,12 +1918,12 @@ export interface ListHarvestJobsResponse {
|
|
|
1918
1918
|
* A list of HarvestJob records.
|
|
1919
1919
|
* @public
|
|
1920
1920
|
*/
|
|
1921
|
-
HarvestJobs?: HarvestJob[];
|
|
1921
|
+
HarvestJobs?: HarvestJob[] | undefined;
|
|
1922
1922
|
/**
|
|
1923
1923
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1924
1924
|
* @public
|
|
1925
1925
|
*/
|
|
1926
|
-
NextToken?: string;
|
|
1926
|
+
NextToken?: string | undefined;
|
|
1927
1927
|
}
|
|
1928
1928
|
/**
|
|
1929
1929
|
* @public
|
|
@@ -1933,17 +1933,17 @@ export interface ListOriginEndpointsRequest {
|
|
|
1933
1933
|
* When specified, the request will return only OriginEndpoints associated with the given Channel ID.
|
|
1934
1934
|
* @public
|
|
1935
1935
|
*/
|
|
1936
|
-
ChannelId?: string;
|
|
1936
|
+
ChannelId?: string | undefined;
|
|
1937
1937
|
/**
|
|
1938
1938
|
* The upper bound on the number of records to return.
|
|
1939
1939
|
* @public
|
|
1940
1940
|
*/
|
|
1941
|
-
MaxResults?: number;
|
|
1941
|
+
MaxResults?: number | undefined;
|
|
1942
1942
|
/**
|
|
1943
1943
|
* A token used to resume pagination from the end of a previous request.
|
|
1944
1944
|
* @public
|
|
1945
1945
|
*/
|
|
1946
|
-
NextToken?: string;
|
|
1946
|
+
NextToken?: string | undefined;
|
|
1947
1947
|
}
|
|
1948
1948
|
/**
|
|
1949
1949
|
* @public
|
|
@@ -1953,12 +1953,12 @@ export interface ListOriginEndpointsResponse {
|
|
|
1953
1953
|
* A token that can be used to resume pagination from the end of the collection.
|
|
1954
1954
|
* @public
|
|
1955
1955
|
*/
|
|
1956
|
-
NextToken?: string;
|
|
1956
|
+
NextToken?: string | undefined;
|
|
1957
1957
|
/**
|
|
1958
1958
|
* A list of OriginEndpoint records.
|
|
1959
1959
|
* @public
|
|
1960
1960
|
*/
|
|
1961
|
-
OriginEndpoints?: OriginEndpoint[];
|
|
1961
|
+
OriginEndpoints?: OriginEndpoint[] | undefined;
|
|
1962
1962
|
}
|
|
1963
1963
|
/**
|
|
1964
1964
|
* @public
|
|
@@ -1970,7 +1970,7 @@ export interface ListTagsForResourceRequest {
|
|
|
1970
1970
|
* @public
|
|
1971
1971
|
*/
|
|
1972
1972
|
export interface ListTagsForResourceResponse {
|
|
1973
|
-
Tags?: Record<string, string
|
|
1973
|
+
Tags?: Record<string, string> | undefined;
|
|
1974
1974
|
}
|
|
1975
1975
|
/**
|
|
1976
1976
|
* @public
|
|
@@ -1990,42 +1990,42 @@ export interface RotateChannelCredentialsResponse {
|
|
|
1990
1990
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1991
1991
|
* @public
|
|
1992
1992
|
*/
|
|
1993
|
-
Arn?: string;
|
|
1993
|
+
Arn?: string | undefined;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* The date and time the Channel was created.
|
|
1996
1996
|
* @public
|
|
1997
1997
|
*/
|
|
1998
|
-
CreatedAt?: string;
|
|
1998
|
+
CreatedAt?: string | undefined;
|
|
1999
1999
|
/**
|
|
2000
2000
|
* A short text description of the Channel.
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
Description?: string;
|
|
2003
|
+
Description?: string | undefined;
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Configure egress access logging.
|
|
2006
2006
|
* @public
|
|
2007
2007
|
*/
|
|
2008
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
2008
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
2009
2009
|
/**
|
|
2010
2010
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
2011
2011
|
* @public
|
|
2012
2012
|
*/
|
|
2013
|
-
HlsIngest?: HlsIngest;
|
|
2013
|
+
HlsIngest?: HlsIngest | undefined;
|
|
2014
2014
|
/**
|
|
2015
2015
|
* The ID of the Channel.
|
|
2016
2016
|
* @public
|
|
2017
2017
|
*/
|
|
2018
|
-
Id?: string;
|
|
2018
|
+
Id?: string | undefined;
|
|
2019
2019
|
/**
|
|
2020
2020
|
* Configure ingress access logging.
|
|
2021
2021
|
* @public
|
|
2022
2022
|
*/
|
|
2023
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
2023
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
2024
2024
|
/**
|
|
2025
2025
|
* A collection of tags associated with a resource
|
|
2026
2026
|
* @public
|
|
2027
2027
|
*/
|
|
2028
|
-
Tags?: Record<string, string
|
|
2028
|
+
Tags?: Record<string, string> | undefined;
|
|
2029
2029
|
}
|
|
2030
2030
|
/**
|
|
2031
2031
|
* @public
|
|
@@ -2050,42 +2050,42 @@ export interface RotateIngestEndpointCredentialsResponse {
|
|
|
2050
2050
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
2051
2051
|
* @public
|
|
2052
2052
|
*/
|
|
2053
|
-
Arn?: string;
|
|
2053
|
+
Arn?: string | undefined;
|
|
2054
2054
|
/**
|
|
2055
2055
|
* The date and time the Channel was created.
|
|
2056
2056
|
* @public
|
|
2057
2057
|
*/
|
|
2058
|
-
CreatedAt?: string;
|
|
2058
|
+
CreatedAt?: string | undefined;
|
|
2059
2059
|
/**
|
|
2060
2060
|
* A short text description of the Channel.
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
Description?: string;
|
|
2063
|
+
Description?: string | undefined;
|
|
2064
2064
|
/**
|
|
2065
2065
|
* Configure egress access logging.
|
|
2066
2066
|
* @public
|
|
2067
2067
|
*/
|
|
2068
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
2068
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
2069
2069
|
/**
|
|
2070
2070
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
2071
2071
|
* @public
|
|
2072
2072
|
*/
|
|
2073
|
-
HlsIngest?: HlsIngest;
|
|
2073
|
+
HlsIngest?: HlsIngest | undefined;
|
|
2074
2074
|
/**
|
|
2075
2075
|
* The ID of the Channel.
|
|
2076
2076
|
* @public
|
|
2077
2077
|
*/
|
|
2078
|
-
Id?: string;
|
|
2078
|
+
Id?: string | undefined;
|
|
2079
2079
|
/**
|
|
2080
2080
|
* Configure ingress access logging.
|
|
2081
2081
|
* @public
|
|
2082
2082
|
*/
|
|
2083
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
2083
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
2084
2084
|
/**
|
|
2085
2085
|
* A collection of tags associated with a resource
|
|
2086
2086
|
* @public
|
|
2087
2087
|
*/
|
|
2088
|
-
Tags?: Record<string, string
|
|
2088
|
+
Tags?: Record<string, string> | undefined;
|
|
2089
2089
|
}
|
|
2090
2090
|
/**
|
|
2091
2091
|
* @public
|
|
@@ -2114,7 +2114,7 @@ export interface UpdateChannelRequest {
|
|
|
2114
2114
|
* A short text description of the Channel.
|
|
2115
2115
|
* @public
|
|
2116
2116
|
*/
|
|
2117
|
-
Description?: string;
|
|
2117
|
+
Description?: string | undefined;
|
|
2118
2118
|
/**
|
|
2119
2119
|
* The ID of the Channel to update.
|
|
2120
2120
|
* @public
|
|
@@ -2129,42 +2129,42 @@ export interface UpdateChannelResponse {
|
|
|
2129
2129
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
2130
2130
|
* @public
|
|
2131
2131
|
*/
|
|
2132
|
-
Arn?: string;
|
|
2132
|
+
Arn?: string | undefined;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* The date and time the Channel was created.
|
|
2135
2135
|
* @public
|
|
2136
2136
|
*/
|
|
2137
|
-
CreatedAt?: string;
|
|
2137
|
+
CreatedAt?: string | undefined;
|
|
2138
2138
|
/**
|
|
2139
2139
|
* A short text description of the Channel.
|
|
2140
2140
|
* @public
|
|
2141
2141
|
*/
|
|
2142
|
-
Description?: string;
|
|
2142
|
+
Description?: string | undefined;
|
|
2143
2143
|
/**
|
|
2144
2144
|
* Configure egress access logging.
|
|
2145
2145
|
* @public
|
|
2146
2146
|
*/
|
|
2147
|
-
EgressAccessLogs?: EgressAccessLogs;
|
|
2147
|
+
EgressAccessLogs?: EgressAccessLogs | undefined;
|
|
2148
2148
|
/**
|
|
2149
2149
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
2150
2150
|
* @public
|
|
2151
2151
|
*/
|
|
2152
|
-
HlsIngest?: HlsIngest;
|
|
2152
|
+
HlsIngest?: HlsIngest | undefined;
|
|
2153
2153
|
/**
|
|
2154
2154
|
* The ID of the Channel.
|
|
2155
2155
|
* @public
|
|
2156
2156
|
*/
|
|
2157
|
-
Id?: string;
|
|
2157
|
+
Id?: string | undefined;
|
|
2158
2158
|
/**
|
|
2159
2159
|
* Configure ingress access logging.
|
|
2160
2160
|
* @public
|
|
2161
2161
|
*/
|
|
2162
|
-
IngressAccessLogs?: IngressAccessLogs;
|
|
2162
|
+
IngressAccessLogs?: IngressAccessLogs | undefined;
|
|
2163
2163
|
/**
|
|
2164
2164
|
* A collection of tags associated with a resource
|
|
2165
2165
|
* @public
|
|
2166
2166
|
*/
|
|
2167
|
-
Tags?: Record<string, string
|
|
2167
|
+
Tags?: Record<string, string> | undefined;
|
|
2168
2168
|
}
|
|
2169
2169
|
/**
|
|
2170
2170
|
* Configuration parameters used to update an existing OriginEndpoint.
|
|
@@ -2175,27 +2175,27 @@ export interface UpdateOriginEndpointRequest {
|
|
|
2175
2175
|
* CDN Authorization credentials
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
Authorization?: Authorization;
|
|
2178
|
+
Authorization?: Authorization | undefined;
|
|
2179
2179
|
/**
|
|
2180
2180
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
CmafPackage?: CmafPackageCreateOrUpdateParameters;
|
|
2183
|
+
CmafPackage?: CmafPackageCreateOrUpdateParameters | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
DashPackage?: DashPackage;
|
|
2188
|
+
DashPackage?: DashPackage | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* A short text description of the OriginEndpoint.
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
Description?: string;
|
|
2193
|
+
Description?: string | undefined;
|
|
2194
2194
|
/**
|
|
2195
2195
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
HlsPackage?: HlsPackage;
|
|
2198
|
+
HlsPackage?: HlsPackage | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* The ID of the OriginEndpoint to update.
|
|
2201
2201
|
* @public
|
|
@@ -2205,36 +2205,36 @@ export interface UpdateOriginEndpointRequest {
|
|
|
2205
2205
|
* A short string that will be appended to the end of the Endpoint URL.
|
|
2206
2206
|
* @public
|
|
2207
2207
|
*/
|
|
2208
|
-
ManifestName?: string;
|
|
2208
|
+
ManifestName?: string | undefined;
|
|
2209
2209
|
/**
|
|
2210
2210
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
MssPackage?: MssPackage;
|
|
2213
|
+
MssPackage?: MssPackage | undefined;
|
|
2214
2214
|
/**
|
|
2215
2215
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
2216
2216
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
2217
2217
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
Origination?: Origination;
|
|
2220
|
+
Origination?: Origination | undefined;
|
|
2221
2221
|
/**
|
|
2222
2222
|
* Maximum duration (in seconds) of content to retain for startover playback.
|
|
2223
2223
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
2224
2224
|
* @public
|
|
2225
2225
|
*/
|
|
2226
|
-
StartoverWindowSeconds?: number;
|
|
2226
|
+
StartoverWindowSeconds?: number | undefined;
|
|
2227
2227
|
/**
|
|
2228
2228
|
* Amount of delay (in seconds) to enforce on the playback of live content.
|
|
2229
2229
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
TimeDelaySeconds?: number;
|
|
2232
|
+
TimeDelaySeconds?: number | undefined;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
Whitelist?: string[];
|
|
2237
|
+
Whitelist?: string[] | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* @public
|
|
@@ -2244,91 +2244,91 @@ export interface UpdateOriginEndpointResponse {
|
|
|
2244
2244
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
2245
2245
|
* @public
|
|
2246
2246
|
*/
|
|
2247
|
-
Arn?: string;
|
|
2247
|
+
Arn?: string | undefined;
|
|
2248
2248
|
/**
|
|
2249
2249
|
* CDN Authorization credentials
|
|
2250
2250
|
* @public
|
|
2251
2251
|
*/
|
|
2252
|
-
Authorization?: Authorization;
|
|
2252
|
+
Authorization?: Authorization | undefined;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* The ID of the Channel the OriginEndpoint is associated with.
|
|
2255
2255
|
* @public
|
|
2256
2256
|
*/
|
|
2257
|
-
ChannelId?: string;
|
|
2257
|
+
ChannelId?: string | undefined;
|
|
2258
2258
|
/**
|
|
2259
2259
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
2260
2260
|
* @public
|
|
2261
2261
|
*/
|
|
2262
|
-
CmafPackage?: CmafPackage;
|
|
2262
|
+
CmafPackage?: CmafPackage | undefined;
|
|
2263
2263
|
/**
|
|
2264
2264
|
* The date and time the OriginEndpoint was created.
|
|
2265
2265
|
* @public
|
|
2266
2266
|
*/
|
|
2267
|
-
CreatedAt?: string;
|
|
2267
|
+
CreatedAt?: string | undefined;
|
|
2268
2268
|
/**
|
|
2269
2269
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
2270
2270
|
* @public
|
|
2271
2271
|
*/
|
|
2272
|
-
DashPackage?: DashPackage;
|
|
2272
|
+
DashPackage?: DashPackage | undefined;
|
|
2273
2273
|
/**
|
|
2274
2274
|
* A short text description of the OriginEndpoint.
|
|
2275
2275
|
* @public
|
|
2276
2276
|
*/
|
|
2277
|
-
Description?: string;
|
|
2277
|
+
Description?: string | undefined;
|
|
2278
2278
|
/**
|
|
2279
2279
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
2280
2280
|
* @public
|
|
2281
2281
|
*/
|
|
2282
|
-
HlsPackage?: HlsPackage;
|
|
2282
|
+
HlsPackage?: HlsPackage | undefined;
|
|
2283
2283
|
/**
|
|
2284
2284
|
* The ID of the OriginEndpoint.
|
|
2285
2285
|
* @public
|
|
2286
2286
|
*/
|
|
2287
|
-
Id?: string;
|
|
2287
|
+
Id?: string | undefined;
|
|
2288
2288
|
/**
|
|
2289
2289
|
* A short string appended to the end of the OriginEndpoint URL.
|
|
2290
2290
|
* @public
|
|
2291
2291
|
*/
|
|
2292
|
-
ManifestName?: string;
|
|
2292
|
+
ManifestName?: string | undefined;
|
|
2293
2293
|
/**
|
|
2294
2294
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
2295
2295
|
* @public
|
|
2296
2296
|
*/
|
|
2297
|
-
MssPackage?: MssPackage;
|
|
2297
|
+
MssPackage?: MssPackage | undefined;
|
|
2298
2298
|
/**
|
|
2299
2299
|
* Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint
|
|
2300
2300
|
* may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be
|
|
2301
2301
|
* requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
|
|
2302
2302
|
* @public
|
|
2303
2303
|
*/
|
|
2304
|
-
Origination?: Origination;
|
|
2304
|
+
Origination?: Origination | undefined;
|
|
2305
2305
|
/**
|
|
2306
2306
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
2307
2307
|
* If not specified, startover playback will be disabled for the OriginEndpoint.
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
StartoverWindowSeconds?: number;
|
|
2310
|
+
StartoverWindowSeconds?: number | undefined;
|
|
2311
2311
|
/**
|
|
2312
2312
|
* A collection of tags associated with a resource
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
Tags?: Record<string, string
|
|
2315
|
+
Tags?: Record<string, string> | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* Amount of delay (seconds) to enforce on the playback of live content.
|
|
2318
2318
|
* If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
2319
2319
|
* @public
|
|
2320
2320
|
*/
|
|
2321
|
-
TimeDelaySeconds?: number;
|
|
2321
|
+
TimeDelaySeconds?: number | undefined;
|
|
2322
2322
|
/**
|
|
2323
2323
|
* The URL of the packaged OriginEndpoint for consumption.
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
Url?: string;
|
|
2326
|
+
Url?: string | undefined;
|
|
2327
2327
|
/**
|
|
2328
2328
|
* A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
Whitelist?: string[];
|
|
2331
|
+
Whitelist?: string[] | undefined;
|
|
2332
2332
|
}
|
|
2333
2333
|
/**
|
|
2334
2334
|
* @internal
|