@aws-sdk/client-mediapackage 3.428.0 → 3.429.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.
|
@@ -221,7 +221,7 @@ export interface HarvestJob {
|
|
|
221
221
|
* HarvestJobs as they succeed or fail. In the event of failure, the CloudWatch Event will
|
|
222
222
|
* include an explanation of why the HarvestJob failed.
|
|
223
223
|
*/
|
|
224
|
-
Status?: Status
|
|
224
|
+
Status?: Status;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* @public
|
|
@@ -281,7 +281,7 @@ export interface HlsManifest {
|
|
|
281
281
|
* in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value
|
|
282
282
|
* that is greater than 0.
|
|
283
283
|
*/
|
|
284
|
-
AdMarkers?: AdMarkers
|
|
284
|
+
AdMarkers?: AdMarkers;
|
|
285
285
|
/**
|
|
286
286
|
* @public
|
|
287
287
|
* The ID of the manifest. The ID must be unique within the OriginEndpoint and it cannot be changed after it is created.
|
|
@@ -303,7 +303,7 @@ export interface HlsManifest {
|
|
|
303
303
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
304
304
|
* entry will be included in the media playlist.
|
|
305
305
|
*/
|
|
306
|
-
PlaylistType?: PlaylistType
|
|
306
|
+
PlaylistType?: PlaylistType;
|
|
307
307
|
/**
|
|
308
308
|
* @public
|
|
309
309
|
* Time window (in seconds) contained in each parent manifest.
|
|
@@ -333,7 +333,7 @@ export interface HlsManifest {
|
|
|
333
333
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
334
334
|
* message types.
|
|
335
335
|
*/
|
|
336
|
-
AdTriggers?:
|
|
336
|
+
AdTriggers?: __AdTriggersElement[];
|
|
337
337
|
/**
|
|
338
338
|
* @public
|
|
339
339
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
@@ -345,7 +345,7 @@ export interface HlsManifest {
|
|
|
345
345
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
346
346
|
* and are always treated as ads if specified in AdTriggers.
|
|
347
347
|
*/
|
|
348
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
348
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
351
|
* @public
|
|
@@ -364,14 +364,14 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
364
364
|
* in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value
|
|
365
365
|
* that is greater than 0.
|
|
366
366
|
*/
|
|
367
|
-
AdMarkers?: AdMarkers
|
|
367
|
+
AdMarkers?: AdMarkers;
|
|
368
368
|
/**
|
|
369
369
|
* @public
|
|
370
370
|
* A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no
|
|
371
371
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
372
372
|
* message types.
|
|
373
373
|
*/
|
|
374
|
-
AdTriggers?:
|
|
374
|
+
AdTriggers?: __AdTriggersElement[];
|
|
375
375
|
/**
|
|
376
376
|
* @public
|
|
377
377
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
@@ -383,7 +383,7 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
383
383
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
384
384
|
* and are always treated as ads if specified in AdTriggers.
|
|
385
385
|
*/
|
|
386
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
386
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
387
387
|
/**
|
|
388
388
|
* @public
|
|
389
389
|
* The ID of the manifest. The ID must be unique within the OriginEndpoint and it cannot be changed after it is created.
|
|
@@ -405,7 +405,7 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
405
405
|
* When either "EVENT" or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE
|
|
406
406
|
* entry will be included in the media playlist.
|
|
407
407
|
*/
|
|
408
|
-
PlaylistType?: PlaylistType
|
|
408
|
+
PlaylistType?: PlaylistType;
|
|
409
409
|
/**
|
|
410
410
|
* @public
|
|
411
411
|
* Time window (in seconds) contained in each parent manifest.
|
|
@@ -502,12 +502,12 @@ export interface EncryptionContractConfiguration {
|
|
|
502
502
|
* @public
|
|
503
503
|
* A collection of audio encryption presets.
|
|
504
504
|
*/
|
|
505
|
-
PresetSpeke20Audio: PresetSpeke20Audio |
|
|
505
|
+
PresetSpeke20Audio: PresetSpeke20Audio | undefined;
|
|
506
506
|
/**
|
|
507
507
|
* @public
|
|
508
508
|
* A collection of video encryption presets.
|
|
509
509
|
*/
|
|
510
|
-
PresetSpeke20Video: PresetSpeke20Video |
|
|
510
|
+
PresetSpeke20Video: PresetSpeke20Video | undefined;
|
|
511
511
|
}
|
|
512
512
|
/**
|
|
513
513
|
* @public
|
|
@@ -567,7 +567,7 @@ export interface CmafEncryption {
|
|
|
567
567
|
* @public
|
|
568
568
|
* The encryption method to use.
|
|
569
569
|
*/
|
|
570
|
-
EncryptionMethod?: CmafEncryptionMethod
|
|
570
|
+
EncryptionMethod?: CmafEncryptionMethod;
|
|
571
571
|
/**
|
|
572
572
|
* @public
|
|
573
573
|
* Time (in seconds) between each encryption key rotation.
|
|
@@ -611,7 +611,7 @@ export interface StreamSelection {
|
|
|
611
611
|
* @public
|
|
612
612
|
* A directive that determines the order of streams in the output.
|
|
613
613
|
*/
|
|
614
|
-
StreamOrder?: StreamOrder
|
|
614
|
+
StreamOrder?: StreamOrder;
|
|
615
615
|
}
|
|
616
616
|
/**
|
|
617
617
|
* @public
|
|
@@ -725,7 +725,7 @@ export interface DashPackage {
|
|
|
725
725
|
* ad markers are output. Specify multiple items to create ad markers for all of the included
|
|
726
726
|
* message types.
|
|
727
727
|
*/
|
|
728
|
-
AdTriggers?:
|
|
728
|
+
AdTriggers?: __AdTriggersElement[];
|
|
729
729
|
/**
|
|
730
730
|
* @public
|
|
731
731
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
@@ -737,7 +737,7 @@ export interface DashPackage {
|
|
|
737
737
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
738
738
|
* and are always treated as ads if specified in AdTriggers.
|
|
739
739
|
*/
|
|
740
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
740
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
741
741
|
/**
|
|
742
742
|
* @public
|
|
743
743
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
@@ -752,7 +752,7 @@ export interface DashPackage {
|
|
|
752
752
|
* @public
|
|
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.
|
|
754
754
|
*/
|
|
755
|
-
ManifestLayout?: ManifestLayout
|
|
755
|
+
ManifestLayout?: ManifestLayout;
|
|
756
756
|
/**
|
|
757
757
|
* @public
|
|
758
758
|
* Time window (in seconds) contained in each manifest.
|
|
@@ -775,12 +775,12 @@ export interface DashPackage {
|
|
|
775
775
|
* be partitioned into more than one period. If the list contains "ADS", new periods will be created where
|
|
776
776
|
* the Channel source contains SCTE-35 ad markers.
|
|
777
777
|
*/
|
|
778
|
-
PeriodTriggers?:
|
|
778
|
+
PeriodTriggers?: __PeriodTriggersElement[];
|
|
779
779
|
/**
|
|
780
780
|
* @public
|
|
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
|
*/
|
|
783
|
-
Profile?: Profile
|
|
783
|
+
Profile?: Profile;
|
|
784
784
|
/**
|
|
785
785
|
* @public
|
|
786
786
|
* Duration (in seconds) of each segment. Actual segments will be
|
|
@@ -791,7 +791,7 @@ export interface DashPackage {
|
|
|
791
791
|
* @public
|
|
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
|
*/
|
|
794
|
-
SegmentTemplateFormat?: SegmentTemplateFormat
|
|
794
|
+
SegmentTemplateFormat?: SegmentTemplateFormat;
|
|
795
795
|
/**
|
|
796
796
|
* @public
|
|
797
797
|
* A StreamSelection configuration.
|
|
@@ -806,7 +806,7 @@ export interface DashPackage {
|
|
|
806
806
|
* @public
|
|
807
807
|
* Determines the type of UTCTiming included in the Media Presentation Description (MPD)
|
|
808
808
|
*/
|
|
809
|
-
UtcTiming?: UtcTiming
|
|
809
|
+
UtcTiming?: UtcTiming;
|
|
810
810
|
/**
|
|
811
811
|
* @public
|
|
812
812
|
* Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
|
|
@@ -840,7 +840,7 @@ export interface HlsEncryption {
|
|
|
840
840
|
* @public
|
|
841
841
|
* The encryption method to use.
|
|
842
842
|
*/
|
|
843
|
-
EncryptionMethod?: EncryptionMethod
|
|
843
|
+
EncryptionMethod?: EncryptionMethod;
|
|
844
844
|
/**
|
|
845
845
|
* @public
|
|
846
846
|
* Interval (in seconds) between each encryption key rotation.
|
|
@@ -874,14 +874,14 @@ export interface HlsPackage {
|
|
|
874
874
|
* in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value
|
|
875
875
|
* that is greater than 0.
|
|
876
876
|
*/
|
|
877
|
-
AdMarkers?: AdMarkers
|
|
877
|
+
AdMarkers?: AdMarkers;
|
|
878
878
|
/**
|
|
879
879
|
* @public
|
|
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
|
*/
|
|
884
|
-
AdTriggers?:
|
|
884
|
+
AdTriggers?: __AdTriggersElement[];
|
|
885
885
|
/**
|
|
886
886
|
* @public
|
|
887
887
|
* This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to
|
|
@@ -893,7 +893,7 @@ export interface HlsPackage {
|
|
|
893
893
|
* AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags
|
|
894
894
|
* and are always treated as ads if specified in AdTriggers.
|
|
895
895
|
*/
|
|
896
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
896
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
897
897
|
/**
|
|
898
898
|
* @public
|
|
899
899
|
* An HTTP Live Streaming (HLS) encryption configuration.
|
|
@@ -915,7 +915,7 @@ export interface HlsPackage {
|
|
|
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
|
*/
|
|
918
|
-
PlaylistType?: PlaylistType
|
|
918
|
+
PlaylistType?: PlaylistType;
|
|
919
919
|
/**
|
|
920
920
|
* @public
|
|
921
921
|
* Time window (in seconds) contained in each parent manifest.
|
|
@@ -1066,7 +1066,7 @@ export interface 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
|
*/
|
|
1069
|
-
Origination?: Origination
|
|
1069
|
+
Origination?: Origination;
|
|
1070
1070
|
/**
|
|
1071
1071
|
* @public
|
|
1072
1072
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
@@ -1423,7 +1423,7 @@ export interface CreateHarvestJobResponse {
|
|
|
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
|
*/
|
|
1426
|
-
Status?: Status
|
|
1426
|
+
Status?: Status;
|
|
1427
1427
|
}
|
|
1428
1428
|
/**
|
|
1429
1429
|
* @public
|
|
@@ -1483,7 +1483,7 @@ export interface CreateOriginEndpointRequest {
|
|
|
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
|
*/
|
|
1486
|
-
Origination?: Origination
|
|
1486
|
+
Origination?: Origination;
|
|
1487
1487
|
/**
|
|
1488
1488
|
* @public
|
|
1489
1489
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
@@ -1572,7 +1572,7 @@ export interface CreateOriginEndpointResponse {
|
|
|
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
|
*/
|
|
1575
|
-
Origination?: Origination
|
|
1575
|
+
Origination?: Origination;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* @public
|
|
1578
1578
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
@@ -1748,7 +1748,7 @@ export interface DescribeHarvestJobResponse {
|
|
|
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
|
*/
|
|
1751
|
-
Status?: Status
|
|
1751
|
+
Status?: Status;
|
|
1752
1752
|
}
|
|
1753
1753
|
/**
|
|
1754
1754
|
* @public
|
|
@@ -1825,7 +1825,7 @@ export interface DescribeOriginEndpointResponse {
|
|
|
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
|
*/
|
|
1828
|
-
Origination?: Origination
|
|
1828
|
+
Origination?: Origination;
|
|
1829
1829
|
/**
|
|
1830
1830
|
* @public
|
|
1831
1831
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
@@ -2216,7 +2216,7 @@ export interface UpdateOriginEndpointRequest {
|
|
|
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
|
*/
|
|
2219
|
-
Origination?: Origination
|
|
2219
|
+
Origination?: Origination;
|
|
2220
2220
|
/**
|
|
2221
2221
|
* @public
|
|
2222
2222
|
* Maximum duration (in seconds) of content to retain for startover playback.
|
|
@@ -2300,7 +2300,7 @@ export interface UpdateOriginEndpointResponse {
|
|
|
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
|
*/
|
|
2303
|
-
Origination?: Origination
|
|
2303
|
+
Origination?: Origination;
|
|
2304
2304
|
/**
|
|
2305
2305
|
* @public
|
|
2306
2306
|
* Maximum duration (seconds) of content to retain for startover playback.
|
|
@@ -62,7 +62,7 @@ export interface HarvestJob {
|
|
|
62
62
|
OriginEndpointId?: string;
|
|
63
63
|
S3Destination?: S3Destination;
|
|
64
64
|
StartTime?: string;
|
|
65
|
-
Status?: Status
|
|
65
|
+
Status?: Status;
|
|
66
66
|
}
|
|
67
67
|
export declare const AdMarkers: {
|
|
68
68
|
readonly DATERANGE: "DATERANGE";
|
|
@@ -86,25 +86,25 @@ export declare const PlaylistType: {
|
|
|
86
86
|
};
|
|
87
87
|
export type PlaylistType = (typeof PlaylistType)[keyof typeof PlaylistType];
|
|
88
88
|
export interface HlsManifest {
|
|
89
|
-
AdMarkers?: AdMarkers
|
|
89
|
+
AdMarkers?: AdMarkers;
|
|
90
90
|
Id: string | undefined;
|
|
91
91
|
IncludeIframeOnlyStream?: boolean;
|
|
92
92
|
ManifestName?: string;
|
|
93
|
-
PlaylistType?: PlaylistType
|
|
93
|
+
PlaylistType?: PlaylistType;
|
|
94
94
|
PlaylistWindowSeconds?: number;
|
|
95
95
|
ProgramDateTimeIntervalSeconds?: number;
|
|
96
96
|
Url?: string;
|
|
97
|
-
AdTriggers?:
|
|
98
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
97
|
+
AdTriggers?: __AdTriggersElement[];
|
|
98
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
99
99
|
}
|
|
100
100
|
export interface HlsManifestCreateOrUpdateParameters {
|
|
101
|
-
AdMarkers?: AdMarkers
|
|
102
|
-
AdTriggers?:
|
|
103
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
101
|
+
AdMarkers?: AdMarkers;
|
|
102
|
+
AdTriggers?: __AdTriggersElement[];
|
|
103
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
104
104
|
Id: string | undefined;
|
|
105
105
|
IncludeIframeOnlyStream?: boolean;
|
|
106
106
|
ManifestName?: string;
|
|
107
|
-
PlaylistType?: PlaylistType
|
|
107
|
+
PlaylistType?: PlaylistType;
|
|
108
108
|
PlaylistWindowSeconds?: number;
|
|
109
109
|
ProgramDateTimeIntervalSeconds?: number;
|
|
110
110
|
}
|
|
@@ -142,8 +142,8 @@ export declare const PresetSpeke20Video: {
|
|
|
142
142
|
export type PresetSpeke20Video =
|
|
143
143
|
(typeof PresetSpeke20Video)[keyof typeof PresetSpeke20Video];
|
|
144
144
|
export interface EncryptionContractConfiguration {
|
|
145
|
-
PresetSpeke20Audio: PresetSpeke20Audio |
|
|
146
|
-
PresetSpeke20Video: PresetSpeke20Video |
|
|
145
|
+
PresetSpeke20Audio: PresetSpeke20Audio | undefined;
|
|
146
|
+
PresetSpeke20Video: PresetSpeke20Video | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface SpekeKeyProvider {
|
|
149
149
|
CertificateArn?: string;
|
|
@@ -155,7 +155,7 @@ export interface SpekeKeyProvider {
|
|
|
155
155
|
}
|
|
156
156
|
export interface CmafEncryption {
|
|
157
157
|
ConstantInitializationVector?: string;
|
|
158
|
-
EncryptionMethod?: CmafEncryptionMethod
|
|
158
|
+
EncryptionMethod?: CmafEncryptionMethod;
|
|
159
159
|
KeyRotationIntervalSeconds?: number;
|
|
160
160
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
161
161
|
}
|
|
@@ -168,7 +168,7 @@ export type StreamOrder = (typeof StreamOrder)[keyof typeof StreamOrder];
|
|
|
168
168
|
export interface StreamSelection {
|
|
169
169
|
MaxVideoBitsPerSecond?: number;
|
|
170
170
|
MinVideoBitsPerSecond?: number;
|
|
171
|
-
StreamOrder?: StreamOrder
|
|
171
|
+
StreamOrder?: StreamOrder;
|
|
172
172
|
}
|
|
173
173
|
export interface CmafPackage {
|
|
174
174
|
Encryption?: CmafEncryption;
|
|
@@ -209,21 +209,21 @@ export declare const UtcTiming: {
|
|
|
209
209
|
};
|
|
210
210
|
export type UtcTiming = (typeof UtcTiming)[keyof typeof UtcTiming];
|
|
211
211
|
export interface DashPackage {
|
|
212
|
-
AdTriggers?:
|
|
213
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
212
|
+
AdTriggers?: __AdTriggersElement[];
|
|
213
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
214
214
|
Encryption?: DashEncryption;
|
|
215
215
|
IncludeIframeOnlyStream?: boolean;
|
|
216
|
-
ManifestLayout?: ManifestLayout
|
|
216
|
+
ManifestLayout?: ManifestLayout;
|
|
217
217
|
ManifestWindowSeconds?: number;
|
|
218
218
|
MinBufferTimeSeconds?: number;
|
|
219
219
|
MinUpdatePeriodSeconds?: number;
|
|
220
|
-
PeriodTriggers?:
|
|
221
|
-
Profile?: Profile
|
|
220
|
+
PeriodTriggers?: __PeriodTriggersElement[];
|
|
221
|
+
Profile?: Profile;
|
|
222
222
|
SegmentDurationSeconds?: number;
|
|
223
|
-
SegmentTemplateFormat?: SegmentTemplateFormat
|
|
223
|
+
SegmentTemplateFormat?: SegmentTemplateFormat;
|
|
224
224
|
StreamSelection?: StreamSelection;
|
|
225
225
|
SuggestedPresentationDelaySeconds?: number;
|
|
226
|
-
UtcTiming?: UtcTiming
|
|
226
|
+
UtcTiming?: UtcTiming;
|
|
227
227
|
UtcTimingUri?: string;
|
|
228
228
|
}
|
|
229
229
|
export declare const EncryptionMethod: {
|
|
@@ -234,19 +234,19 @@ export type EncryptionMethod =
|
|
|
234
234
|
(typeof EncryptionMethod)[keyof typeof EncryptionMethod];
|
|
235
235
|
export interface HlsEncryption {
|
|
236
236
|
ConstantInitializationVector?: string;
|
|
237
|
-
EncryptionMethod?: EncryptionMethod
|
|
237
|
+
EncryptionMethod?: EncryptionMethod;
|
|
238
238
|
KeyRotationIntervalSeconds?: number;
|
|
239
239
|
RepeatExtXKey?: boolean;
|
|
240
240
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
241
241
|
}
|
|
242
242
|
export interface HlsPackage {
|
|
243
|
-
AdMarkers?: AdMarkers
|
|
244
|
-
AdTriggers?:
|
|
245
|
-
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions
|
|
243
|
+
AdMarkers?: AdMarkers;
|
|
244
|
+
AdTriggers?: __AdTriggersElement[];
|
|
245
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
|
246
246
|
Encryption?: HlsEncryption;
|
|
247
247
|
IncludeDvbSubtitles?: boolean;
|
|
248
248
|
IncludeIframeOnlyStream?: boolean;
|
|
249
|
-
PlaylistType?: PlaylistType
|
|
249
|
+
PlaylistType?: PlaylistType;
|
|
250
250
|
PlaylistWindowSeconds?: number;
|
|
251
251
|
ProgramDateTimeIntervalSeconds?: number;
|
|
252
252
|
SegmentDurationSeconds?: number;
|
|
@@ -279,7 +279,7 @@ export interface OriginEndpoint {
|
|
|
279
279
|
Id?: string;
|
|
280
280
|
ManifestName?: string;
|
|
281
281
|
MssPackage?: MssPackage;
|
|
282
|
-
Origination?: Origination
|
|
282
|
+
Origination?: Origination;
|
|
283
283
|
StartoverWindowSeconds?: number;
|
|
284
284
|
Tags?: Record<string, string>;
|
|
285
285
|
TimeDelaySeconds?: number;
|
|
@@ -383,7 +383,7 @@ export interface CreateHarvestJobResponse {
|
|
|
383
383
|
OriginEndpointId?: string;
|
|
384
384
|
S3Destination?: S3Destination;
|
|
385
385
|
StartTime?: string;
|
|
386
|
-
Status?: Status
|
|
386
|
+
Status?: Status;
|
|
387
387
|
}
|
|
388
388
|
export interface CreateOriginEndpointRequest {
|
|
389
389
|
Authorization?: Authorization;
|
|
@@ -395,7 +395,7 @@ export interface CreateOriginEndpointRequest {
|
|
|
395
395
|
Id: string | undefined;
|
|
396
396
|
ManifestName?: string;
|
|
397
397
|
MssPackage?: MssPackage;
|
|
398
|
-
Origination?: Origination
|
|
398
|
+
Origination?: Origination;
|
|
399
399
|
StartoverWindowSeconds?: number;
|
|
400
400
|
Tags?: Record<string, string>;
|
|
401
401
|
TimeDelaySeconds?: number;
|
|
@@ -413,7 +413,7 @@ export interface CreateOriginEndpointResponse {
|
|
|
413
413
|
Id?: string;
|
|
414
414
|
ManifestName?: string;
|
|
415
415
|
MssPackage?: MssPackage;
|
|
416
|
-
Origination?: Origination
|
|
416
|
+
Origination?: Origination;
|
|
417
417
|
StartoverWindowSeconds?: number;
|
|
418
418
|
Tags?: Record<string, string>;
|
|
419
419
|
TimeDelaySeconds?: number;
|
|
@@ -453,7 +453,7 @@ export interface DescribeHarvestJobResponse {
|
|
|
453
453
|
OriginEndpointId?: string;
|
|
454
454
|
S3Destination?: S3Destination;
|
|
455
455
|
StartTime?: string;
|
|
456
|
-
Status?: Status
|
|
456
|
+
Status?: Status;
|
|
457
457
|
}
|
|
458
458
|
export interface DescribeOriginEndpointRequest {
|
|
459
459
|
Id: string | undefined;
|
|
@@ -470,7 +470,7 @@ export interface DescribeOriginEndpointResponse {
|
|
|
470
470
|
Id?: string;
|
|
471
471
|
ManifestName?: string;
|
|
472
472
|
MssPackage?: MssPackage;
|
|
473
|
-
Origination?: Origination
|
|
473
|
+
Origination?: Origination;
|
|
474
474
|
StartoverWindowSeconds?: number;
|
|
475
475
|
Tags?: Record<string, string>;
|
|
476
476
|
TimeDelaySeconds?: number;
|
|
@@ -568,7 +568,7 @@ export interface UpdateOriginEndpointRequest {
|
|
|
568
568
|
Id: string | undefined;
|
|
569
569
|
ManifestName?: string;
|
|
570
570
|
MssPackage?: MssPackage;
|
|
571
|
-
Origination?: Origination
|
|
571
|
+
Origination?: Origination;
|
|
572
572
|
StartoverWindowSeconds?: number;
|
|
573
573
|
TimeDelaySeconds?: number;
|
|
574
574
|
Whitelist?: string[];
|
|
@@ -585,7 +585,7 @@ export interface UpdateOriginEndpointResponse {
|
|
|
585
585
|
Id?: string;
|
|
586
586
|
ManifestName?: string;
|
|
587
587
|
MssPackage?: MssPackage;
|
|
588
|
-
Origination?: Origination
|
|
588
|
+
Origination?: Origination;
|
|
589
589
|
StartoverWindowSeconds?: number;
|
|
590
590
|
Tags?: Record<string, string>;
|
|
591
591
|
TimeDelaySeconds?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|