@aws-sdk/client-mediapackagev2 3.687.0 → 3.692.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 +209 -209
- package/dist-types/ts3.4/models/models_0.d.ts +213 -209
- package/package.json +36 -36
|
@@ -7,7 +7,7 @@ import { MediaPackageV2ServiceException as __BaseException } from "./MediaPackag
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -64,7 +64,7 @@ export interface CancelHarvestJobRequest {
|
|
|
64
64
|
* <p>The current Entity Tag (ETag) associated with the harvest job. Used for concurrency control.</p>
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
ETag?: string;
|
|
67
|
+
ETag?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
70
|
* @public
|
|
@@ -92,12 +92,12 @@ export type ConflictExceptionType = (typeof ConflictExceptionType)[keyof typeof
|
|
|
92
92
|
export declare class ConflictException extends __BaseException {
|
|
93
93
|
readonly name: "ConflictException";
|
|
94
94
|
readonly $fault: "client";
|
|
95
|
-
Message?: string;
|
|
95
|
+
Message?: string | undefined;
|
|
96
96
|
/**
|
|
97
97
|
* <p>The type of ConflictException.</p>
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
|
-
ConflictExceptionType?: ConflictExceptionType;
|
|
100
|
+
ConflictExceptionType?: ConflictExceptionType | undefined;
|
|
101
101
|
/**
|
|
102
102
|
* @internal
|
|
103
103
|
*/
|
|
@@ -110,7 +110,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
110
110
|
export declare class InternalServerException extends __BaseException {
|
|
111
111
|
readonly name: "InternalServerException";
|
|
112
112
|
readonly $fault: "server";
|
|
113
|
-
Message?: string;
|
|
113
|
+
Message?: string | undefined;
|
|
114
114
|
/**
|
|
115
115
|
* @internal
|
|
116
116
|
*/
|
|
@@ -137,12 +137,12 @@ export type ResourceTypeNotFound = (typeof ResourceTypeNotFound)[keyof typeof Re
|
|
|
137
137
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
138
138
|
readonly name: "ResourceNotFoundException";
|
|
139
139
|
readonly $fault: "client";
|
|
140
|
-
Message?: string;
|
|
140
|
+
Message?: string | undefined;
|
|
141
141
|
/**
|
|
142
142
|
* <p>The specified resource type wasn't found.</p>
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
ResourceTypeNotFound?: ResourceTypeNotFound;
|
|
145
|
+
ResourceTypeNotFound?: ResourceTypeNotFound | undefined;
|
|
146
146
|
/**
|
|
147
147
|
* @internal
|
|
148
148
|
*/
|
|
@@ -155,7 +155,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
155
155
|
export declare class ThrottlingException extends __BaseException {
|
|
156
156
|
readonly name: "ThrottlingException";
|
|
157
157
|
readonly $fault: "client";
|
|
158
|
-
Message?: string;
|
|
158
|
+
Message?: string | undefined;
|
|
159
159
|
/**
|
|
160
160
|
* @internal
|
|
161
161
|
*/
|
|
@@ -235,12 +235,12 @@ export type ValidationExceptionType = (typeof ValidationExceptionType)[keyof typ
|
|
|
235
235
|
export declare class ValidationException extends __BaseException {
|
|
236
236
|
readonly name: "ValidationException";
|
|
237
237
|
readonly $fault: "client";
|
|
238
|
-
Message?: string;
|
|
238
|
+
Message?: string | undefined;
|
|
239
239
|
/**
|
|
240
240
|
* <p>The type of ValidationException.</p>
|
|
241
241
|
* @public
|
|
242
242
|
*/
|
|
243
|
-
ValidationExceptionType?: ValidationExceptionType;
|
|
243
|
+
ValidationExceptionType?: ValidationExceptionType | undefined;
|
|
244
244
|
/**
|
|
245
245
|
* @internal
|
|
246
246
|
*/
|
|
@@ -275,7 +275,7 @@ export interface ChannelGroupListConfiguration {
|
|
|
275
275
|
* <p>Any descriptive information that you want to add to the channel group for future identification purposes.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
Description?: string;
|
|
278
|
+
Description?: string | undefined;
|
|
279
279
|
}
|
|
280
280
|
/**
|
|
281
281
|
* @public
|
|
@@ -387,7 +387,7 @@ export interface CreateChannelRequest {
|
|
|
387
387
|
* <p>A unique, case-sensitive token that you provide to ensure the idempotency of the request.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
ClientToken?: string;
|
|
390
|
+
ClientToken?: string | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p>The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior.</p>
|
|
393
393
|
* <p>The allowed values are:</p>
|
|
@@ -403,12 +403,12 @@ export interface CreateChannelRequest {
|
|
|
403
403
|
* </ul>
|
|
404
404
|
* @public
|
|
405
405
|
*/
|
|
406
|
-
InputType?: InputType;
|
|
406
|
+
InputType?: InputType | undefined;
|
|
407
407
|
/**
|
|
408
408
|
* <p>Enter any descriptive text that helps you to identify the channel.</p>
|
|
409
409
|
* @public
|
|
410
410
|
*/
|
|
411
|
-
Description?: string;
|
|
411
|
+
Description?: string | undefined;
|
|
412
412
|
/**
|
|
413
413
|
* <p>A comma-separated list of tag key:value pairs that you define. For example:</p>
|
|
414
414
|
* <p>
|
|
@@ -419,7 +419,7 @@ export interface CreateChannelRequest {
|
|
|
419
419
|
* </p>
|
|
420
420
|
* @public
|
|
421
421
|
*/
|
|
422
|
-
Tags?: Record<string, string
|
|
422
|
+
Tags?: Record<string, string> | undefined;
|
|
423
423
|
}
|
|
424
424
|
/**
|
|
425
425
|
* <p>The ingest domain URL where the source stream should be sent.</p>
|
|
@@ -430,12 +430,12 @@ export interface IngestEndpoint {
|
|
|
430
430
|
* <p>The system-generated unique identifier for the IngestEndpoint.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
Id?: string;
|
|
433
|
+
Id?: string | undefined;
|
|
434
434
|
/**
|
|
435
435
|
* <p>The ingest domain URL where the source stream should be sent.</p>
|
|
436
436
|
* @public
|
|
437
437
|
*/
|
|
438
|
-
Url?: string;
|
|
438
|
+
Url?: string | undefined;
|
|
439
439
|
}
|
|
440
440
|
/**
|
|
441
441
|
* @public
|
|
@@ -470,12 +470,12 @@ export interface CreateChannelResponse {
|
|
|
470
470
|
* <p>The description for your channel.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
Description?: string;
|
|
473
|
+
Description?: string | undefined;
|
|
474
474
|
/**
|
|
475
475
|
* <p>The list of ingest endpoints.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
478
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior.</p>
|
|
481
481
|
* <p>The allowed values are:</p>
|
|
@@ -491,17 +491,17 @@ export interface CreateChannelResponse {
|
|
|
491
491
|
* </ul>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
InputType?: InputType;
|
|
494
|
+
InputType?: InputType | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
ETag?: string;
|
|
499
|
+
ETag?: string | undefined;
|
|
500
500
|
/**
|
|
501
501
|
* <p>The comma-separated list of tag key:value pairs assigned to the channel.</p>
|
|
502
502
|
* @public
|
|
503
503
|
*/
|
|
504
|
-
Tags?: Record<string, string
|
|
504
|
+
Tags?: Record<string, string> | undefined;
|
|
505
505
|
}
|
|
506
506
|
/**
|
|
507
507
|
* <p>The request would cause a service quota to be exceeded.</p>
|
|
@@ -510,7 +510,7 @@ export interface CreateChannelResponse {
|
|
|
510
510
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
511
511
|
readonly name: "ServiceQuotaExceededException";
|
|
512
512
|
readonly $fault: "client";
|
|
513
|
-
Message?: string;
|
|
513
|
+
Message?: string | undefined;
|
|
514
514
|
/**
|
|
515
515
|
* @internal
|
|
516
516
|
*/
|
|
@@ -584,12 +584,12 @@ export interface GetChannelResponse {
|
|
|
584
584
|
* <p>The description for your channel.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
Description?: string;
|
|
587
|
+
Description?: string | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>The list of ingest endpoints.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
592
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior.</p>
|
|
595
595
|
* <p>The allowed values are:</p>
|
|
@@ -605,17 +605,17 @@ export interface GetChannelResponse {
|
|
|
605
605
|
* </ul>
|
|
606
606
|
* @public
|
|
607
607
|
*/
|
|
608
|
-
InputType?: InputType;
|
|
608
|
+
InputType?: InputType | undefined;
|
|
609
609
|
/**
|
|
610
610
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
611
611
|
* @public
|
|
612
612
|
*/
|
|
613
|
-
ETag?: string;
|
|
613
|
+
ETag?: string | undefined;
|
|
614
614
|
/**
|
|
615
615
|
* <p>The comma-separated list of tag key:value pairs assigned to the channel.</p>
|
|
616
616
|
* @public
|
|
617
617
|
*/
|
|
618
|
-
Tags?: Record<string, string
|
|
618
|
+
Tags?: Record<string, string> | undefined;
|
|
619
619
|
}
|
|
620
620
|
/**
|
|
621
621
|
* @public
|
|
@@ -630,12 +630,12 @@ export interface ListChannelsRequest {
|
|
|
630
630
|
* <p>The maximum number of results to return in the response.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
MaxResults?: number;
|
|
633
|
+
MaxResults?: number | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>The pagination token from the GET list request. Use the token to fetch the next page of results.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
NextToken?: string;
|
|
638
|
+
NextToken?: string | undefined;
|
|
639
639
|
}
|
|
640
640
|
/**
|
|
641
641
|
* <p>The configuration of the channel.</p>
|
|
@@ -671,7 +671,7 @@ export interface ChannelListConfiguration {
|
|
|
671
671
|
* <p>Any descriptive information that you want to add to the channel for future identification purposes.</p>
|
|
672
672
|
* @public
|
|
673
673
|
*/
|
|
674
|
-
Description?: string;
|
|
674
|
+
Description?: string | undefined;
|
|
675
675
|
/**
|
|
676
676
|
* <p>The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior.</p>
|
|
677
677
|
* <p>The allowed values are:</p>
|
|
@@ -687,7 +687,7 @@ export interface ChannelListConfiguration {
|
|
|
687
687
|
* </ul>
|
|
688
688
|
* @public
|
|
689
689
|
*/
|
|
690
|
-
InputType?: InputType;
|
|
690
|
+
InputType?: InputType | undefined;
|
|
691
691
|
}
|
|
692
692
|
/**
|
|
693
693
|
* @public
|
|
@@ -697,12 +697,12 @@ export interface ListChannelsResponse {
|
|
|
697
697
|
* <p>The objects being returned.</p>
|
|
698
698
|
* @public
|
|
699
699
|
*/
|
|
700
|
-
Items?: ChannelListConfiguration[];
|
|
700
|
+
Items?: ChannelListConfiguration[] | undefined;
|
|
701
701
|
/**
|
|
702
702
|
* <p>The pagination token from the GET list request.</p>
|
|
703
703
|
* @public
|
|
704
704
|
*/
|
|
705
|
-
NextToken?: string;
|
|
705
|
+
NextToken?: string | undefined;
|
|
706
706
|
}
|
|
707
707
|
/**
|
|
708
708
|
* @public
|
|
@@ -737,27 +737,27 @@ export interface FilterConfiguration {
|
|
|
737
737
|
* <p>Optionally specify one or more manifest filters for all of your manifest egress requests. When you include a manifest filter, note that you cannot use an identical manifest filter query parameter for this manifest's endpoint URL.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
ManifestFilter?: string;
|
|
740
|
+
ManifestFilter?: string | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>Optionally specify the start time for all of your manifest egress requests. When you include start time, note that you cannot use start time query parameters for this manifest's endpoint URL.</p>
|
|
743
743
|
* @public
|
|
744
744
|
*/
|
|
745
|
-
Start?: Date;
|
|
745
|
+
Start?: Date | undefined;
|
|
746
746
|
/**
|
|
747
747
|
* <p>Optionally specify the end time for all of your manifest egress requests. When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.</p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
End?: Date;
|
|
750
|
+
End?: Date | undefined;
|
|
751
751
|
/**
|
|
752
752
|
* <p>Optionally specify the time delay for all of your manifest egress requests. Enter a value that is smaller than your endpoint's startover window. When you include time delay, note that you cannot use time delay query parameters for this manifest's endpoint URL.</p>
|
|
753
753
|
* @public
|
|
754
754
|
*/
|
|
755
|
-
TimeDelaySeconds?: number;
|
|
755
|
+
TimeDelaySeconds?: number | undefined;
|
|
756
756
|
/**
|
|
757
757
|
* <p>Optionally specify the clip start time for all of your manifest egress requests. When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.</p>
|
|
758
758
|
* @public
|
|
759
759
|
*/
|
|
760
|
-
ClipStartTime?: Date;
|
|
760
|
+
ClipStartTime?: Date | undefined;
|
|
761
761
|
}
|
|
762
762
|
/**
|
|
763
763
|
* @public
|
|
@@ -794,7 +794,7 @@ export interface ScteDash {
|
|
|
794
794
|
* </ul>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
AdMarkerDash?: AdMarkerDash;
|
|
797
|
+
AdMarkerDash?: AdMarkerDash | undefined;
|
|
798
798
|
}
|
|
799
799
|
/**
|
|
800
800
|
* @public
|
|
@@ -830,12 +830,12 @@ export interface DashUtcTiming {
|
|
|
830
830
|
* <p>The UTC timing mode.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
TimingMode?: DashUtcTimingMode;
|
|
833
|
+
TimingMode?: DashUtcTimingMode | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* <p>The the method that the player uses to synchronize to coordinated universal time (UTC) wall clock time.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
TimingSource?: string;
|
|
838
|
+
TimingSource?: string | undefined;
|
|
839
839
|
}
|
|
840
840
|
/**
|
|
841
841
|
* <p>Create a DASH manifest configuration.</p>
|
|
@@ -851,27 +851,27 @@ export interface CreateDashManifestConfiguration {
|
|
|
851
851
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
ManifestWindowSeconds?: number;
|
|
854
|
+
ManifestWindowSeconds?: number | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
FilterConfiguration?: FilterConfiguration;
|
|
859
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
860
860
|
/**
|
|
861
861
|
* <p>Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
MinUpdatePeriodSeconds?: number;
|
|
864
|
+
MinUpdatePeriodSeconds?: number | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* <p>Minimum amount of content (in seconds) that a player must keep available in the buffer.</p>
|
|
867
867
|
* @public
|
|
868
868
|
*/
|
|
869
|
-
MinBufferTimeSeconds?: number;
|
|
869
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
870
870
|
/**
|
|
871
871
|
* <p>The amount of time (in seconds) that the player should be from the end of the manifest.</p>
|
|
872
872
|
* @public
|
|
873
873
|
*/
|
|
874
|
-
SuggestedPresentationDelaySeconds?: number;
|
|
874
|
+
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
875
875
|
/**
|
|
876
876
|
* <p>Determines the type of variable used in the <code>media</code> URL of the <code>SegmentTemplate</code> tag in the manifest. Also specifies if segment timeline information is included in <code>SegmentTimeline</code> or <code>SegmentTemplate</code>.</p>
|
|
877
877
|
* <p>Value description:</p>
|
|
@@ -883,28 +883,28 @@ export interface CreateDashManifestConfiguration {
|
|
|
883
883
|
* </ul>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
SegmentTemplateFormat?: DashSegmentTemplateFormat;
|
|
886
|
+
SegmentTemplateFormat?: DashSegmentTemplateFormat | undefined;
|
|
887
887
|
/**
|
|
888
888
|
* <p>A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods. Type <code>ADS</code> to indicate that AWS Elemental MediaPackage must create periods in the output manifest that correspond to SCTE-35 ad markers in the input source. Leave this value empty to indicate that the manifest is contained all in one period.
|
|
889
889
|
* For more information about periods in the DASH manifest, see <a href="https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html">Multi-period DASH in AWS Elemental MediaPackage</a>.</p>
|
|
890
890
|
* @public
|
|
891
891
|
*/
|
|
892
|
-
PeriodTriggers?: DashPeriodTrigger[];
|
|
892
|
+
PeriodTriggers?: DashPeriodTrigger[] | undefined;
|
|
893
893
|
/**
|
|
894
894
|
* <p>The SCTE configuration.</p>
|
|
895
895
|
* @public
|
|
896
896
|
*/
|
|
897
|
-
ScteDash?: ScteDash;
|
|
897
|
+
ScteDash?: ScteDash | undefined;
|
|
898
898
|
/**
|
|
899
899
|
* <p>Determines how the DASH manifest signals the DRM content.</p>
|
|
900
900
|
* @public
|
|
901
901
|
*/
|
|
902
|
-
DrmSignaling?: DashDrmSignaling;
|
|
902
|
+
DrmSignaling?: DashDrmSignaling | undefined;
|
|
903
903
|
/**
|
|
904
904
|
* <p>Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).</p>
|
|
905
905
|
* @public
|
|
906
906
|
*/
|
|
907
|
-
UtcTiming?: DashUtcTiming;
|
|
907
|
+
UtcTiming?: DashUtcTiming | undefined;
|
|
908
908
|
}
|
|
909
909
|
/**
|
|
910
910
|
* @public
|
|
@@ -947,7 +947,7 @@ export interface ForceEndpointErrorConfiguration {
|
|
|
947
947
|
* </ul>
|
|
948
948
|
* @public
|
|
949
949
|
*/
|
|
950
|
-
EndpointErrorConditions?: EndpointErrorCondition[];
|
|
950
|
+
EndpointErrorConditions?: EndpointErrorCondition[] | undefined;
|
|
951
951
|
}
|
|
952
952
|
/**
|
|
953
953
|
* <p>The SCTE configuration.</p>
|
|
@@ -964,7 +964,7 @@ export interface ScteHls {
|
|
|
964
964
|
* </ul>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
AdMarkerHls?: AdMarkerHls;
|
|
967
|
+
AdMarkerHls?: AdMarkerHls | undefined;
|
|
968
968
|
}
|
|
969
969
|
/**
|
|
970
970
|
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
@@ -980,7 +980,7 @@ export interface StartTag {
|
|
|
980
980
|
* <p>Specify the value for PRECISE within your EXT-X-START tag. Leave blank, or choose false, to use the default value NO. Choose yes to use the value YES.</p>
|
|
981
981
|
* @public
|
|
982
982
|
*/
|
|
983
|
-
Precise?: boolean;
|
|
983
|
+
Precise?: boolean | undefined;
|
|
984
984
|
}
|
|
985
985
|
/**
|
|
986
986
|
* <p>Create an HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -996,22 +996,22 @@ export interface CreateHlsManifestConfiguration {
|
|
|
996
996
|
* <p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index, with an added suffix to distinguish it from the manifest name. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
ChildManifestName?: string;
|
|
999
|
+
ChildManifestName?: string | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p>The SCTE configuration.</p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
ScteHls?: ScteHls;
|
|
1004
|
+
ScteHls?: ScteHls | undefined;
|
|
1005
1005
|
/**
|
|
1006
1006
|
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
1007
1007
|
* @public
|
|
1008
1008
|
*/
|
|
1009
|
-
StartTag?: StartTag;
|
|
1009
|
+
StartTag?: StartTag | undefined;
|
|
1010
1010
|
/**
|
|
1011
1011
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
ManifestWindowSeconds?: number;
|
|
1014
|
+
ManifestWindowSeconds?: number | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
|
|
1017
1017
|
* EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
|
|
@@ -1020,12 +1020,12 @@ export interface CreateHlsManifestConfiguration {
|
|
|
1020
1020
|
* <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
|
|
1021
1021
|
* @public
|
|
1022
1022
|
*/
|
|
1023
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
1023
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
|
|
1026
1026
|
* @public
|
|
1027
1027
|
*/
|
|
1028
|
-
FilterConfiguration?: FilterConfiguration;
|
|
1028
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
1029
1029
|
}
|
|
1030
1030
|
/**
|
|
1031
1031
|
* <p>Create a low-latency HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -1041,22 +1041,22 @@ export interface CreateLowLatencyHlsManifestConfiguration {
|
|
|
1041
1041
|
* <p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index, with an added suffix to distinguish it from the manifest name. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>
|
|
1042
1042
|
* @public
|
|
1043
1043
|
*/
|
|
1044
|
-
ChildManifestName?: string;
|
|
1044
|
+
ChildManifestName?: string | undefined;
|
|
1045
1045
|
/**
|
|
1046
1046
|
* <p>The SCTE configuration.</p>
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
ScteHls?: ScteHls;
|
|
1049
|
+
ScteHls?: ScteHls | undefined;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
StartTag?: StartTag;
|
|
1054
|
+
StartTag?: StartTag | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
ManifestWindowSeconds?: number;
|
|
1059
|
+
ManifestWindowSeconds?: number | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
|
|
1062
1062
|
* EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
|
|
@@ -1065,12 +1065,12 @@ export interface CreateLowLatencyHlsManifestConfiguration {
|
|
|
1065
1065
|
* <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
|
|
1066
1066
|
* @public
|
|
1067
1067
|
*/
|
|
1068
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
1068
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
|
|
1071
1071
|
* @public
|
|
1072
1072
|
*/
|
|
1073
|
-
FilterConfiguration?: FilterConfiguration;
|
|
1073
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
1074
1074
|
}
|
|
1075
1075
|
/**
|
|
1076
1076
|
* @public
|
|
@@ -1105,12 +1105,12 @@ export interface EncryptionMethod {
|
|
|
1105
1105
|
* <p>The encryption method to use.</p>
|
|
1106
1106
|
* @public
|
|
1107
1107
|
*/
|
|
1108
|
-
TsEncryptionMethod?: TsEncryptionMethod;
|
|
1108
|
+
TsEncryptionMethod?: TsEncryptionMethod | undefined;
|
|
1109
1109
|
/**
|
|
1110
1110
|
* <p>The encryption method to use.</p>
|
|
1111
1111
|
* @public
|
|
1112
1112
|
*/
|
|
1113
|
-
CmafEncryptionMethod?: CmafEncryptionMethod;
|
|
1113
|
+
CmafEncryptionMethod?: CmafEncryptionMethod | undefined;
|
|
1114
1114
|
}
|
|
1115
1115
|
/**
|
|
1116
1116
|
* @public
|
|
@@ -1300,7 +1300,7 @@ export interface Encryption {
|
|
|
1300
1300
|
* <p>A 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting content. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).</p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
ConstantInitializationVector?: string;
|
|
1303
|
+
ConstantInitializationVector?: string | undefined;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* <p>The encryption method to use.</p>
|
|
1306
1306
|
* @public
|
|
@@ -1312,7 +1312,7 @@ export interface Encryption {
|
|
|
1312
1312
|
* </p>
|
|
1313
1313
|
* @public
|
|
1314
1314
|
*/
|
|
1315
|
-
KeyRotationIntervalSeconds?: number;
|
|
1315
|
+
KeyRotationIntervalSeconds?: number | undefined;
|
|
1316
1316
|
/**
|
|
1317
1317
|
* <p>The parameters for the SPEKE key provider.</p>
|
|
1318
1318
|
* @public
|
|
@@ -1347,7 +1347,7 @@ export interface Scte {
|
|
|
1347
1347
|
* <p>The SCTE-35 message types that you want to be treated as ad markers in the output.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
ScteFilter?: ScteFilter[];
|
|
1350
|
+
ScteFilter?: ScteFilter[] | undefined;
|
|
1351
1351
|
}
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>The segment configuration, including the segment name, duration, and other configuration values.</p>
|
|
@@ -1358,37 +1358,37 @@ export interface Segment {
|
|
|
1358
1358
|
* <p>The duration (in seconds) of each segment. Enter a value equal to, or a multiple of, the input segment duration. If the value that you enter is different from the input segment duration, MediaPackage rounds segments to the nearest multiple of the input segment duration.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
SegmentDurationSeconds?: number;
|
|
1361
|
+
SegmentDurationSeconds?: number | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>The name that describes the segment. The name is the base name of the segment used in all content manifests inside of the endpoint. You can't use spaces in the name.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
SegmentName?: string;
|
|
1366
|
+
SegmentName?: string | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>When selected, MediaPackage bundles all audio tracks in a rendition group. All other tracks in the stream can be used with any audio rendition from the group.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
TsUseAudioRenditionGroup?: boolean;
|
|
1371
|
+
TsUseAudioRenditionGroup?: boolean | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p>When selected, the stream set includes an additional I-frame only stream, along with the other tracks. If false, this extra stream is not included. MediaPackage generates an I-frame only stream from the first rendition in the manifest. The service inserts EXT-I-FRAMES-ONLY tags in the output manifest, and then generates and includes an I-frames only playlist in the stream. This playlist permits player functionality like fast forward and rewind.</p>
|
|
1374
1374
|
* @public
|
|
1375
1375
|
*/
|
|
1376
|
-
IncludeIframeOnlyStreams?: boolean;
|
|
1376
|
+
IncludeIframeOnlyStreams?: boolean | undefined;
|
|
1377
1377
|
/**
|
|
1378
1378
|
* <p>By default, MediaPackage excludes all digital video broadcasting (DVB) subtitles from the output. When selected, MediaPackage passes through DVB subtitles into the output.</p>
|
|
1379
1379
|
* @public
|
|
1380
1380
|
*/
|
|
1381
|
-
TsIncludeDvbSubtitles?: boolean;
|
|
1381
|
+
TsIncludeDvbSubtitles?: boolean | undefined;
|
|
1382
1382
|
/**
|
|
1383
1383
|
* <p>The SCTE configuration options in the segment settings.</p>
|
|
1384
1384
|
* @public
|
|
1385
1385
|
*/
|
|
1386
|
-
Scte?: Scte;
|
|
1386
|
+
Scte?: Scte | undefined;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* <p>The parameters for encrypting content.</p>
|
|
1389
1389
|
* @public
|
|
1390
1390
|
*/
|
|
1391
|
-
Encryption?: Encryption;
|
|
1391
|
+
Encryption?: Encryption | undefined;
|
|
1392
1392
|
}
|
|
1393
1393
|
/**
|
|
1394
1394
|
* @public
|
|
@@ -1418,42 +1418,42 @@ export interface CreateOriginEndpointRequest {
|
|
|
1418
1418
|
* <p>The segment configuration, including the segment name, duration, and other configuration values.</p>
|
|
1419
1419
|
* @public
|
|
1420
1420
|
*/
|
|
1421
|
-
Segment?: Segment;
|
|
1421
|
+
Segment?: Segment | undefined;
|
|
1422
1422
|
/**
|
|
1423
1423
|
* <p>A unique, case-sensitive token that you provide to ensure the idempotency of the request.</p>
|
|
1424
1424
|
* @public
|
|
1425
1425
|
*/
|
|
1426
|
-
ClientToken?: string;
|
|
1426
|
+
ClientToken?: string | undefined;
|
|
1427
1427
|
/**
|
|
1428
1428
|
* <p>Enter any descriptive text that helps you to identify the origin endpoint.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
Description?: string;
|
|
1431
|
+
Description?: string | undefined;
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>The size of the window (in seconds) to create a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window. The maximum startover window is 1,209,600 seconds (14 days).</p>
|
|
1434
1434
|
* @public
|
|
1435
1435
|
*/
|
|
1436
|
-
StartoverWindowSeconds?: number;
|
|
1436
|
+
StartoverWindowSeconds?: number | undefined;
|
|
1437
1437
|
/**
|
|
1438
1438
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
1439
1439
|
* @public
|
|
1440
1440
|
*/
|
|
1441
|
-
HlsManifests?: CreateHlsManifestConfiguration[];
|
|
1441
|
+
HlsManifests?: CreateHlsManifestConfiguration[] | undefined;
|
|
1442
1442
|
/**
|
|
1443
1443
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
1444
1444
|
* @public
|
|
1445
1445
|
*/
|
|
1446
|
-
LowLatencyHlsManifests?: CreateLowLatencyHlsManifestConfiguration[];
|
|
1446
|
+
LowLatencyHlsManifests?: CreateLowLatencyHlsManifestConfiguration[] | undefined;
|
|
1447
1447
|
/**
|
|
1448
1448
|
* <p>A DASH manifest configuration.</p>
|
|
1449
1449
|
* @public
|
|
1450
1450
|
*/
|
|
1451
|
-
DashManifests?: CreateDashManifestConfiguration[];
|
|
1451
|
+
DashManifests?: CreateDashManifestConfiguration[] | undefined;
|
|
1452
1452
|
/**
|
|
1453
1453
|
* <p>The failover settings for the endpoint.</p>
|
|
1454
1454
|
* @public
|
|
1455
1455
|
*/
|
|
1456
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
1456
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
1457
1457
|
/**
|
|
1458
1458
|
* <p>A comma-separated list of tag key:value pairs that you define. For example:</p>
|
|
1459
1459
|
* <p>
|
|
@@ -1464,7 +1464,7 @@ export interface CreateOriginEndpointRequest {
|
|
|
1464
1464
|
* </p>
|
|
1465
1465
|
* @public
|
|
1466
1466
|
*/
|
|
1467
|
-
Tags?: Record<string, string
|
|
1467
|
+
Tags?: Record<string, string> | undefined;
|
|
1468
1468
|
}
|
|
1469
1469
|
/**
|
|
1470
1470
|
* <p>Retrieve the DASH manifest configuration.</p>
|
|
@@ -1485,27 +1485,27 @@ export interface GetDashManifestConfiguration {
|
|
|
1485
1485
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
ManifestWindowSeconds?: number;
|
|
1488
|
+
ManifestWindowSeconds?: number | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
FilterConfiguration?: FilterConfiguration;
|
|
1493
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* <p>Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.</p>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
MinUpdatePeriodSeconds?: number;
|
|
1498
|
+
MinUpdatePeriodSeconds?: number | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p>Minimum amount of content (in seconds) that a player must keep available in the buffer.</p>
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
MinBufferTimeSeconds?: number;
|
|
1503
|
+
MinBufferTimeSeconds?: number | undefined;
|
|
1504
1504
|
/**
|
|
1505
1505
|
* <p>The amount of time (in seconds) that the player should be from the end of the manifest.</p>
|
|
1506
1506
|
* @public
|
|
1507
1507
|
*/
|
|
1508
|
-
SuggestedPresentationDelaySeconds?: number;
|
|
1508
|
+
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
1509
1509
|
/**
|
|
1510
1510
|
* <p>Determines the type of variable used in the <code>media</code> URL of the <code>SegmentTemplate</code> tag in the manifest. Also specifies if segment timeline information is included in <code>SegmentTimeline</code> or <code>SegmentTemplate</code>.</p>
|
|
1511
1511
|
* <p>Value description:</p>
|
|
@@ -1517,28 +1517,28 @@ export interface GetDashManifestConfiguration {
|
|
|
1517
1517
|
* </ul>
|
|
1518
1518
|
* @public
|
|
1519
1519
|
*/
|
|
1520
|
-
SegmentTemplateFormat?: DashSegmentTemplateFormat;
|
|
1520
|
+
SegmentTemplateFormat?: DashSegmentTemplateFormat | undefined;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* <p>A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods. Leave this value empty to indicate that the manifest is contained all in one period.
|
|
1523
1523
|
* For more information about periods in the DASH manifest, see <a href="https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html">Multi-period DASH in AWS Elemental MediaPackage</a>.</p>
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
PeriodTriggers?: DashPeriodTrigger[];
|
|
1526
|
+
PeriodTriggers?: DashPeriodTrigger[] | undefined;
|
|
1527
1527
|
/**
|
|
1528
1528
|
* <p>The SCTE configuration.</p>
|
|
1529
1529
|
* @public
|
|
1530
1530
|
*/
|
|
1531
|
-
ScteDash?: ScteDash;
|
|
1531
|
+
ScteDash?: ScteDash | undefined;
|
|
1532
1532
|
/**
|
|
1533
1533
|
* <p>Determines how the DASH manifest signals the DRM content.</p>
|
|
1534
1534
|
* @public
|
|
1535
1535
|
*/
|
|
1536
|
-
DrmSignaling?: DashDrmSignaling;
|
|
1536
|
+
DrmSignaling?: DashDrmSignaling | undefined;
|
|
1537
1537
|
/**
|
|
1538
1538
|
* <p>Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
UtcTiming?: DashUtcTiming;
|
|
1541
|
+
UtcTiming?: DashUtcTiming | undefined;
|
|
1542
1542
|
}
|
|
1543
1543
|
/**
|
|
1544
1544
|
* <p>Retrieve the HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -1559,12 +1559,12 @@ export interface GetHlsManifestConfiguration {
|
|
|
1559
1559
|
* <p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default child manifest name, index_1. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>
|
|
1560
1560
|
* @public
|
|
1561
1561
|
*/
|
|
1562
|
-
ChildManifestName?: string;
|
|
1562
|
+
ChildManifestName?: string | undefined;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
1565
1565
|
* @public
|
|
1566
1566
|
*/
|
|
1567
|
-
ManifestWindowSeconds?: number;
|
|
1567
|
+
ManifestWindowSeconds?: number | undefined;
|
|
1568
1568
|
/**
|
|
1569
1569
|
* <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
|
|
1570
1570
|
* EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
|
|
@@ -1573,22 +1573,22 @@ export interface GetHlsManifestConfiguration {
|
|
|
1573
1573
|
* <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
|
|
1574
1574
|
* @public
|
|
1575
1575
|
*/
|
|
1576
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
1576
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
1577
1577
|
/**
|
|
1578
1578
|
* <p>The SCTE configuration.</p>
|
|
1579
1579
|
* @public
|
|
1580
1580
|
*/
|
|
1581
|
-
ScteHls?: ScteHls;
|
|
1581
|
+
ScteHls?: ScteHls | undefined;
|
|
1582
1582
|
/**
|
|
1583
1583
|
* <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
|
|
1584
1584
|
* @public
|
|
1585
1585
|
*/
|
|
1586
|
-
FilterConfiguration?: FilterConfiguration;
|
|
1586
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
1587
1587
|
/**
|
|
1588
1588
|
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
1589
1589
|
* @public
|
|
1590
1590
|
*/
|
|
1591
|
-
StartTag?: StartTag;
|
|
1591
|
+
StartTag?: StartTag | undefined;
|
|
1592
1592
|
}
|
|
1593
1593
|
/**
|
|
1594
1594
|
* <p>Retrieve the low-latency HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -1609,12 +1609,12 @@ export interface GetLowLatencyHlsManifestConfiguration {
|
|
|
1609
1609
|
* <p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default child manifest name, index_1. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
ChildManifestName?: string;
|
|
1612
|
+
ChildManifestName?: string | undefined;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
1615
1615
|
* @public
|
|
1616
1616
|
*/
|
|
1617
|
-
ManifestWindowSeconds?: number;
|
|
1617
|
+
ManifestWindowSeconds?: number | undefined;
|
|
1618
1618
|
/**
|
|
1619
1619
|
* <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
|
|
1620
1620
|
* EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
|
|
@@ -1623,22 +1623,22 @@ export interface GetLowLatencyHlsManifestConfiguration {
|
|
|
1623
1623
|
* <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
|
|
1624
1624
|
* @public
|
|
1625
1625
|
*/
|
|
1626
|
-
ProgramDateTimeIntervalSeconds?: number;
|
|
1626
|
+
ProgramDateTimeIntervalSeconds?: number | undefined;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* <p>The SCTE configuration.</p>
|
|
1629
1629
|
* @public
|
|
1630
1630
|
*/
|
|
1631
|
-
ScteHls?: ScteHls;
|
|
1631
|
+
ScteHls?: ScteHls | undefined;
|
|
1632
1632
|
/**
|
|
1633
1633
|
* <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
|
|
1634
1634
|
* @public
|
|
1635
1635
|
*/
|
|
1636
|
-
FilterConfiguration?: FilterConfiguration;
|
|
1636
|
+
FilterConfiguration?: FilterConfiguration | undefined;
|
|
1637
1637
|
/**
|
|
1638
1638
|
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
1639
1639
|
* @public
|
|
1640
1640
|
*/
|
|
1641
|
-
StartTag?: StartTag;
|
|
1641
|
+
StartTag?: StartTag | undefined;
|
|
1642
1642
|
}
|
|
1643
1643
|
/**
|
|
1644
1644
|
* @public
|
|
@@ -1688,42 +1688,42 @@ export interface CreateOriginEndpointResponse {
|
|
|
1688
1688
|
* <p>The description for your origin endpoint.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
Description?: string;
|
|
1691
|
+
Description?: string | undefined;
|
|
1692
1692
|
/**
|
|
1693
1693
|
* <p>The size of the window (in seconds) to create a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window.</p>
|
|
1694
1694
|
* @public
|
|
1695
1695
|
*/
|
|
1696
|
-
StartoverWindowSeconds?: number;
|
|
1696
|
+
StartoverWindowSeconds?: number | undefined;
|
|
1697
1697
|
/**
|
|
1698
1698
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
1699
1699
|
* @public
|
|
1700
1700
|
*/
|
|
1701
|
-
HlsManifests?: GetHlsManifestConfiguration[];
|
|
1701
|
+
HlsManifests?: GetHlsManifestConfiguration[] | undefined;
|
|
1702
1702
|
/**
|
|
1703
1703
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
1704
1704
|
* @public
|
|
1705
1705
|
*/
|
|
1706
|
-
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[];
|
|
1706
|
+
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
|
|
1707
1707
|
/**
|
|
1708
1708
|
* <p>A DASH manifest configuration.</p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
DashManifests?: GetDashManifestConfiguration[];
|
|
1711
|
+
DashManifests?: GetDashManifestConfiguration[] | undefined;
|
|
1712
1712
|
/**
|
|
1713
1713
|
* <p>The failover settings for the endpoint.</p>
|
|
1714
1714
|
* @public
|
|
1715
1715
|
*/
|
|
1716
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
1716
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
1717
1717
|
/**
|
|
1718
1718
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
1719
1719
|
* @public
|
|
1720
1720
|
*/
|
|
1721
|
-
ETag?: string;
|
|
1721
|
+
ETag?: string | undefined;
|
|
1722
1722
|
/**
|
|
1723
1723
|
* <p>The comma-separated list of tag key:value pairs assigned to the origin endpoint.</p>
|
|
1724
1724
|
* @public
|
|
1725
1725
|
*/
|
|
1726
|
-
Tags?: Record<string, string
|
|
1726
|
+
Tags?: Record<string, string> | undefined;
|
|
1727
1727
|
}
|
|
1728
1728
|
/**
|
|
1729
1729
|
* @public
|
|
@@ -1818,42 +1818,42 @@ export interface GetOriginEndpointResponse {
|
|
|
1818
1818
|
* <p>The description for your origin endpoint.</p>
|
|
1819
1819
|
* @public
|
|
1820
1820
|
*/
|
|
1821
|
-
Description?: string;
|
|
1821
|
+
Description?: string | undefined;
|
|
1822
1822
|
/**
|
|
1823
1823
|
* <p>The size of the window (in seconds) to create a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window.</p>
|
|
1824
1824
|
* @public
|
|
1825
1825
|
*/
|
|
1826
|
-
StartoverWindowSeconds?: number;
|
|
1826
|
+
StartoverWindowSeconds?: number | undefined;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
1829
1829
|
* @public
|
|
1830
1830
|
*/
|
|
1831
|
-
HlsManifests?: GetHlsManifestConfiguration[];
|
|
1831
|
+
HlsManifests?: GetHlsManifestConfiguration[] | undefined;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
1834
1834
|
* @public
|
|
1835
1835
|
*/
|
|
1836
|
-
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[];
|
|
1836
|
+
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
|
|
1837
1837
|
/**
|
|
1838
1838
|
* <p>A DASH manifest configuration.</p>
|
|
1839
1839
|
* @public
|
|
1840
1840
|
*/
|
|
1841
|
-
DashManifests?: GetDashManifestConfiguration[];
|
|
1841
|
+
DashManifests?: GetDashManifestConfiguration[] | undefined;
|
|
1842
1842
|
/**
|
|
1843
1843
|
* <p>The failover settings for the endpoint.</p>
|
|
1844
1844
|
* @public
|
|
1845
1845
|
*/
|
|
1846
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
1846
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
1847
1847
|
/**
|
|
1848
1848
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
1849
1849
|
* @public
|
|
1850
1850
|
*/
|
|
1851
|
-
ETag?: string;
|
|
1851
|
+
ETag?: string | undefined;
|
|
1852
1852
|
/**
|
|
1853
1853
|
* <p>The comma-separated list of tag key:value pairs assigned to the origin endpoint.</p>
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
Tags?: Record<string, string
|
|
1856
|
+
Tags?: Record<string, string> | undefined;
|
|
1857
1857
|
}
|
|
1858
1858
|
/**
|
|
1859
1859
|
* @public
|
|
@@ -1873,12 +1873,12 @@ export interface ListOriginEndpointsRequest {
|
|
|
1873
1873
|
* <p>The maximum number of results to return in the response.</p>
|
|
1874
1874
|
* @public
|
|
1875
1875
|
*/
|
|
1876
|
-
MaxResults?: number;
|
|
1876
|
+
MaxResults?: number | undefined;
|
|
1877
1877
|
/**
|
|
1878
1878
|
* <p>The pagination token from the GET list request. Use the token to fetch the next page of results.</p>
|
|
1879
1879
|
* @public
|
|
1880
1880
|
*/
|
|
1881
|
-
NextToken?: string;
|
|
1881
|
+
NextToken?: string | undefined;
|
|
1882
1882
|
}
|
|
1883
1883
|
/**
|
|
1884
1884
|
* <p>List the DASH manifest configuration.</p>
|
|
@@ -1894,7 +1894,7 @@ export interface ListDashManifestConfiguration {
|
|
|
1894
1894
|
* <p>The egress domain URL for stream delivery from MediaPackage.</p>
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
Url?: string;
|
|
1897
|
+
Url?: string | undefined;
|
|
1898
1898
|
}
|
|
1899
1899
|
/**
|
|
1900
1900
|
* <p>List the HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -1910,12 +1910,12 @@ export interface ListHlsManifestConfiguration {
|
|
|
1910
1910
|
* <p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default child manifest name, index_1. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>
|
|
1911
1911
|
* @public
|
|
1912
1912
|
*/
|
|
1913
|
-
ChildManifestName?: string;
|
|
1913
|
+
ChildManifestName?: string | undefined;
|
|
1914
1914
|
/**
|
|
1915
1915
|
* <p>The egress domain URL for stream delivery from MediaPackage.</p>
|
|
1916
1916
|
* @public
|
|
1917
1917
|
*/
|
|
1918
|
-
Url?: string;
|
|
1918
|
+
Url?: string | undefined;
|
|
1919
1919
|
}
|
|
1920
1920
|
/**
|
|
1921
1921
|
* <p>List the low-latency HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -1931,12 +1931,12 @@ export interface ListLowLatencyHlsManifestConfiguration {
|
|
|
1931
1931
|
* <p>A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default child manifest name, index_1. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.</p>
|
|
1932
1932
|
* @public
|
|
1933
1933
|
*/
|
|
1934
|
-
ChildManifestName?: string;
|
|
1934
|
+
ChildManifestName?: string | undefined;
|
|
1935
1935
|
/**
|
|
1936
1936
|
* <p>The egress domain URL for stream delivery from MediaPackage.</p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
Url?: string;
|
|
1939
|
+
Url?: string | undefined;
|
|
1940
1940
|
}
|
|
1941
1941
|
/**
|
|
1942
1942
|
* <p>The configuration of the origin endpoint.</p>
|
|
@@ -1972,37 +1972,37 @@ export interface OriginEndpointListConfiguration {
|
|
|
1972
1972
|
* <p>Any descriptive information that you want to add to the origin endpoint for future identification purposes.</p>
|
|
1973
1973
|
* @public
|
|
1974
1974
|
*/
|
|
1975
|
-
Description?: string;
|
|
1975
|
+
Description?: string | undefined;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* <p>The date and time the origin endpoint was created.</p>
|
|
1978
1978
|
* @public
|
|
1979
1979
|
*/
|
|
1980
|
-
CreatedAt?: Date;
|
|
1980
|
+
CreatedAt?: Date | undefined;
|
|
1981
1981
|
/**
|
|
1982
1982
|
* <p>The date and time the origin endpoint was modified.</p>
|
|
1983
1983
|
* @public
|
|
1984
1984
|
*/
|
|
1985
|
-
ModifiedAt?: Date;
|
|
1985
|
+
ModifiedAt?: Date | undefined;
|
|
1986
1986
|
/**
|
|
1987
1987
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
1988
1988
|
* @public
|
|
1989
1989
|
*/
|
|
1990
|
-
HlsManifests?: ListHlsManifestConfiguration[];
|
|
1990
|
+
HlsManifests?: ListHlsManifestConfiguration[] | undefined;
|
|
1991
1991
|
/**
|
|
1992
1992
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
1993
1993
|
* @public
|
|
1994
1994
|
*/
|
|
1995
|
-
LowLatencyHlsManifests?: ListLowLatencyHlsManifestConfiguration[];
|
|
1995
|
+
LowLatencyHlsManifests?: ListLowLatencyHlsManifestConfiguration[] | undefined;
|
|
1996
1996
|
/**
|
|
1997
1997
|
* <p>A DASH manifest configuration.</p>
|
|
1998
1998
|
* @public
|
|
1999
1999
|
*/
|
|
2000
|
-
DashManifests?: ListDashManifestConfiguration[];
|
|
2000
|
+
DashManifests?: ListDashManifestConfiguration[] | undefined;
|
|
2001
2001
|
/**
|
|
2002
2002
|
* <p>The failover settings for the endpoint.</p>
|
|
2003
2003
|
* @public
|
|
2004
2004
|
*/
|
|
2005
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
2005
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
2006
2006
|
}
|
|
2007
2007
|
/**
|
|
2008
2008
|
* @public
|
|
@@ -2012,12 +2012,12 @@ export interface ListOriginEndpointsResponse {
|
|
|
2012
2012
|
* <p>The objects being returned.</p>
|
|
2013
2013
|
* @public
|
|
2014
2014
|
*/
|
|
2015
|
-
Items?: OriginEndpointListConfiguration[];
|
|
2015
|
+
Items?: OriginEndpointListConfiguration[] | undefined;
|
|
2016
2016
|
/**
|
|
2017
2017
|
* <p>The pagination token from the GET list request. Use the token to fetch the next page of results.</p>
|
|
2018
2018
|
* @public
|
|
2019
2019
|
*/
|
|
2020
|
-
NextToken?: string;
|
|
2020
|
+
NextToken?: string | undefined;
|
|
2021
2021
|
}
|
|
2022
2022
|
/**
|
|
2023
2023
|
* @public
|
|
@@ -2147,42 +2147,42 @@ export interface UpdateOriginEndpointRequest {
|
|
|
2147
2147
|
* <p>The segment configuration, including the segment name, duration, and other configuration values.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
Segment?: Segment;
|
|
2150
|
+
Segment?: Segment | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>Any descriptive information that you want to add to the origin endpoint for future identification purposes.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
Description?: string;
|
|
2155
|
+
Description?: string | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The size of the window (in seconds) to create a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window. The maximum startover window is 1,209,600 seconds (14 days).</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
StartoverWindowSeconds?: number;
|
|
2160
|
+
StartoverWindowSeconds?: number | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
HlsManifests?: CreateHlsManifestConfiguration[];
|
|
2165
|
+
HlsManifests?: CreateHlsManifestConfiguration[] | undefined;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
2168
2168
|
* @public
|
|
2169
2169
|
*/
|
|
2170
|
-
LowLatencyHlsManifests?: CreateLowLatencyHlsManifestConfiguration[];
|
|
2170
|
+
LowLatencyHlsManifests?: CreateLowLatencyHlsManifestConfiguration[] | undefined;
|
|
2171
2171
|
/**
|
|
2172
2172
|
* <p>A DASH manifest configuration.</p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
DashManifests?: CreateDashManifestConfiguration[];
|
|
2175
|
+
DashManifests?: CreateDashManifestConfiguration[] | undefined;
|
|
2176
2176
|
/**
|
|
2177
2177
|
* <p>The failover settings for the endpoint.</p>
|
|
2178
2178
|
* @public
|
|
2179
2179
|
*/
|
|
2180
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
2180
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
2181
2181
|
/**
|
|
2182
2182
|
* <p>The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.</p>
|
|
2183
2183
|
* @public
|
|
2184
2184
|
*/
|
|
2185
|
-
ETag?: string;
|
|
2185
|
+
ETag?: string | undefined;
|
|
2186
2186
|
}
|
|
2187
2187
|
/**
|
|
2188
2188
|
* @public
|
|
@@ -2232,42 +2232,42 @@ export interface UpdateOriginEndpointResponse {
|
|
|
2232
2232
|
* <p>The description of the origin endpoint.</p>
|
|
2233
2233
|
* @public
|
|
2234
2234
|
*/
|
|
2235
|
-
Description?: string;
|
|
2235
|
+
Description?: string | undefined;
|
|
2236
2236
|
/**
|
|
2237
2237
|
* <p>The size of the window (in seconds) to create a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window.</p>
|
|
2238
2238
|
* @public
|
|
2239
2239
|
*/
|
|
2240
|
-
StartoverWindowSeconds?: number;
|
|
2240
|
+
StartoverWindowSeconds?: number | undefined;
|
|
2241
2241
|
/**
|
|
2242
2242
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
2243
2243
|
* @public
|
|
2244
2244
|
*/
|
|
2245
|
-
HlsManifests?: GetHlsManifestConfiguration[];
|
|
2245
|
+
HlsManifests?: GetHlsManifestConfiguration[] | undefined;
|
|
2246
2246
|
/**
|
|
2247
2247
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[];
|
|
2250
|
+
LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>The failover settings for the endpoint.</p>
|
|
2253
2253
|
* @public
|
|
2254
2254
|
*/
|
|
2255
|
-
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
2255
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
|
|
2256
2256
|
/**
|
|
2257
2257
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
2258
2258
|
* @public
|
|
2259
2259
|
*/
|
|
2260
|
-
ETag?: string;
|
|
2260
|
+
ETag?: string | undefined;
|
|
2261
2261
|
/**
|
|
2262
2262
|
* <p>The comma-separated list of tag key:value pairs assigned to the origin endpoint.</p>
|
|
2263
2263
|
* @public
|
|
2264
2264
|
*/
|
|
2265
|
-
Tags?: Record<string, string
|
|
2265
|
+
Tags?: Record<string, string> | undefined;
|
|
2266
2266
|
/**
|
|
2267
2267
|
* <p>A DASH manifest configuration.</p>
|
|
2268
2268
|
* @public
|
|
2269
2269
|
*/
|
|
2270
|
-
DashManifests?: GetDashManifestConfiguration[];
|
|
2270
|
+
DashManifests?: GetDashManifestConfiguration[] | undefined;
|
|
2271
2271
|
}
|
|
2272
2272
|
/**
|
|
2273
2273
|
* @public
|
|
@@ -2287,12 +2287,12 @@ export interface UpdateChannelRequest {
|
|
|
2287
2287
|
* <p>The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.</p>
|
|
2288
2288
|
* @public
|
|
2289
2289
|
*/
|
|
2290
|
-
ETag?: string;
|
|
2290
|
+
ETag?: string | undefined;
|
|
2291
2291
|
/**
|
|
2292
2292
|
* <p>Any descriptive information that you want to add to the channel for future identification purposes.</p>
|
|
2293
2293
|
* @public
|
|
2294
2294
|
*/
|
|
2295
|
-
Description?: string;
|
|
2295
|
+
Description?: string | undefined;
|
|
2296
2296
|
}
|
|
2297
2297
|
/**
|
|
2298
2298
|
* @public
|
|
@@ -2327,12 +2327,12 @@ export interface UpdateChannelResponse {
|
|
|
2327
2327
|
* <p>The description for your channel.</p>
|
|
2328
2328
|
* @public
|
|
2329
2329
|
*/
|
|
2330
|
-
Description?: string;
|
|
2330
|
+
Description?: string | undefined;
|
|
2331
2331
|
/**
|
|
2332
2332
|
* <p>The list of ingest endpoints.</p>
|
|
2333
2333
|
* @public
|
|
2334
2334
|
*/
|
|
2335
|
-
IngestEndpoints?: IngestEndpoint[];
|
|
2335
|
+
IngestEndpoints?: IngestEndpoint[] | undefined;
|
|
2336
2336
|
/**
|
|
2337
2337
|
* <p>The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior.</p>
|
|
2338
2338
|
* <p>The allowed values are:</p>
|
|
@@ -2348,17 +2348,17 @@ export interface UpdateChannelResponse {
|
|
|
2348
2348
|
* </ul>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
InputType?: InputType;
|
|
2351
|
+
InputType?: InputType | undefined;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
ETag?: string;
|
|
2356
|
+
ETag?: string | undefined;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* <p>The comma-separated list of tag key:value pairs assigned to the channel.</p>
|
|
2359
2359
|
* @public
|
|
2360
2360
|
*/
|
|
2361
|
-
Tags?: Record<string, string
|
|
2361
|
+
Tags?: Record<string, string> | undefined;
|
|
2362
2362
|
}
|
|
2363
2363
|
/**
|
|
2364
2364
|
* @public
|
|
@@ -2373,12 +2373,12 @@ export interface CreateChannelGroupRequest {
|
|
|
2373
2373
|
* <p>A unique, case-sensitive token that you provide to ensure the idempotency of the request.</p>
|
|
2374
2374
|
* @public
|
|
2375
2375
|
*/
|
|
2376
|
-
ClientToken?: string;
|
|
2376
|
+
ClientToken?: string | undefined;
|
|
2377
2377
|
/**
|
|
2378
2378
|
* <p>Enter any descriptive text that helps you to identify the channel group.</p>
|
|
2379
2379
|
* @public
|
|
2380
2380
|
*/
|
|
2381
|
-
Description?: string;
|
|
2381
|
+
Description?: string | undefined;
|
|
2382
2382
|
/**
|
|
2383
2383
|
* <p>A comma-separated list of tag key:value pairs that you define. For example:</p>
|
|
2384
2384
|
* <p>
|
|
@@ -2389,7 +2389,7 @@ export interface CreateChannelGroupRequest {
|
|
|
2389
2389
|
* </p>
|
|
2390
2390
|
* @public
|
|
2391
2391
|
*/
|
|
2392
|
-
Tags?: Record<string, string
|
|
2392
|
+
Tags?: Record<string, string> | undefined;
|
|
2393
2393
|
}
|
|
2394
2394
|
/**
|
|
2395
2395
|
* @public
|
|
@@ -2424,17 +2424,17 @@ export interface CreateChannelGroupResponse {
|
|
|
2424
2424
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
2425
2425
|
* @public
|
|
2426
2426
|
*/
|
|
2427
|
-
ETag?: string;
|
|
2427
|
+
ETag?: string | undefined;
|
|
2428
2428
|
/**
|
|
2429
2429
|
* <p>The description for your channel group.</p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
Description?: string;
|
|
2432
|
+
Description?: string | undefined;
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p>The comma-separated list of tag key:value pairs assigned to the channel group.</p>
|
|
2435
2435
|
* @public
|
|
2436
2436
|
*/
|
|
2437
|
-
Tags?: Record<string, string
|
|
2437
|
+
Tags?: Record<string, string> | undefined;
|
|
2438
2438
|
}
|
|
2439
2439
|
/**
|
|
2440
2440
|
* @public
|
|
@@ -2494,17 +2494,17 @@ export interface GetChannelGroupResponse {
|
|
|
2494
2494
|
* <p>The description for your channel group.</p>
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
Description?: string;
|
|
2497
|
+
Description?: string | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
2500
2500
|
* @public
|
|
2501
2501
|
*/
|
|
2502
|
-
ETag?: string;
|
|
2502
|
+
ETag?: string | undefined;
|
|
2503
2503
|
/**
|
|
2504
2504
|
* <p>The comma-separated list of tag key:value pairs assigned to the channel group.</p>
|
|
2505
2505
|
* @public
|
|
2506
2506
|
*/
|
|
2507
|
-
Tags?: Record<string, string
|
|
2507
|
+
Tags?: Record<string, string> | undefined;
|
|
2508
2508
|
}
|
|
2509
2509
|
/**
|
|
2510
2510
|
* <p>Configuration parameters for where in an S3 bucket to place the harvested content.</p>
|
|
@@ -2575,17 +2575,17 @@ export interface HarvestedManifests {
|
|
|
2575
2575
|
* <p>A list of harvested HLS manifests.</p>
|
|
2576
2576
|
* @public
|
|
2577
2577
|
*/
|
|
2578
|
-
HlsManifests?: HarvestedHlsManifest[];
|
|
2578
|
+
HlsManifests?: HarvestedHlsManifest[] | undefined;
|
|
2579
2579
|
/**
|
|
2580
2580
|
* <p>A list of harvested DASH manifests.</p>
|
|
2581
2581
|
* @public
|
|
2582
2582
|
*/
|
|
2583
|
-
DashManifests?: HarvestedDashManifest[];
|
|
2583
|
+
DashManifests?: HarvestedDashManifest[] | undefined;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* <p>A list of harvested Low-Latency HLS manifests.</p>
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
LowLatencyHlsManifests?: HarvestedLowLatencyHlsManifest[];
|
|
2588
|
+
LowLatencyHlsManifests?: HarvestedLowLatencyHlsManifest[] | undefined;
|
|
2589
2589
|
}
|
|
2590
2590
|
/**
|
|
2591
2591
|
* <p>Defines the schedule configuration for a harvest job.</p>
|
|
@@ -2627,7 +2627,7 @@ export interface CreateHarvestJobRequest {
|
|
|
2627
2627
|
* <p>An optional description for the harvest job.</p>
|
|
2628
2628
|
* @public
|
|
2629
2629
|
*/
|
|
2630
|
-
Description?: string;
|
|
2630
|
+
Description?: string | undefined;
|
|
2631
2631
|
/**
|
|
2632
2632
|
* <p>A list of manifests to be harvested.</p>
|
|
2633
2633
|
* @public
|
|
@@ -2647,17 +2647,17 @@ export interface CreateHarvestJobRequest {
|
|
|
2647
2647
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
2648
2648
|
* @public
|
|
2649
2649
|
*/
|
|
2650
|
-
ClientToken?: string;
|
|
2650
|
+
ClientToken?: string | undefined;
|
|
2651
2651
|
/**
|
|
2652
2652
|
* <p>A name for the harvest job. This name must be unique within the channel.</p>
|
|
2653
2653
|
* @public
|
|
2654
2654
|
*/
|
|
2655
|
-
HarvestJobName?: string;
|
|
2655
|
+
HarvestJobName?: string | undefined;
|
|
2656
2656
|
/**
|
|
2657
2657
|
* <p>A collection of tags associated with the harvest job.</p>
|
|
2658
2658
|
* @public
|
|
2659
2659
|
*/
|
|
2660
|
-
Tags?: Record<string, string
|
|
2660
|
+
Tags?: Record<string, string> | undefined;
|
|
2661
2661
|
}
|
|
2662
2662
|
/**
|
|
2663
2663
|
* @public
|
|
@@ -2713,7 +2713,7 @@ export interface CreateHarvestJobResponse {
|
|
|
2713
2713
|
* <p>The description of the harvest job, if provided.</p>
|
|
2714
2714
|
* @public
|
|
2715
2715
|
*/
|
|
2716
|
-
Description?: string;
|
|
2716
|
+
Description?: string | undefined;
|
|
2717
2717
|
/**
|
|
2718
2718
|
* <p>The configuration for when the harvest job will run, including start and end times.</p>
|
|
2719
2719
|
* @public
|
|
@@ -2743,17 +2743,17 @@ export interface CreateHarvestJobResponse {
|
|
|
2743
2743
|
* <p>An error message if the harvest job creation failed.</p>
|
|
2744
2744
|
* @public
|
|
2745
2745
|
*/
|
|
2746
|
-
ErrorMessage?: string;
|
|
2746
|
+
ErrorMessage?: string | undefined;
|
|
2747
2747
|
/**
|
|
2748
2748
|
* <p>The current version of the harvest job. Used for concurrency control.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
ETag?: string;
|
|
2751
|
+
ETag?: string | undefined;
|
|
2752
2752
|
/**
|
|
2753
2753
|
* <p>A collection of tags associated with the harvest job.</p>
|
|
2754
2754
|
* @public
|
|
2755
2755
|
*/
|
|
2756
|
-
Tags?: Record<string, string
|
|
2756
|
+
Tags?: Record<string, string> | undefined;
|
|
2757
2757
|
}
|
|
2758
2758
|
/**
|
|
2759
2759
|
* <p>The request object for retrieving a specific harvest job.</p>
|
|
@@ -2820,7 +2820,7 @@ export interface GetHarvestJobResponse {
|
|
|
2820
2820
|
* <p>The description of the harvest job, if provided.</p>
|
|
2821
2821
|
* @public
|
|
2822
2822
|
*/
|
|
2823
|
-
Description?: string;
|
|
2823
|
+
Description?: string | undefined;
|
|
2824
2824
|
/**
|
|
2825
2825
|
* <p>The configuration for when the harvest job is scheduled to run, including start and end times.</p>
|
|
2826
2826
|
* @public
|
|
@@ -2850,17 +2850,17 @@ export interface GetHarvestJobResponse {
|
|
|
2850
2850
|
* <p>An error message if the harvest job encountered any issues.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
ErrorMessage?: string;
|
|
2853
|
+
ErrorMessage?: string | undefined;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* <p>The current version of the harvest job. Used for concurrency control.</p>
|
|
2856
2856
|
* @public
|
|
2857
2857
|
*/
|
|
2858
|
-
ETag?: string;
|
|
2858
|
+
ETag?: string | undefined;
|
|
2859
2859
|
/**
|
|
2860
2860
|
* <p>A collection of tags associated with the harvest job.</p>
|
|
2861
2861
|
* @public
|
|
2862
2862
|
*/
|
|
2863
|
-
Tags?: Record<string, string
|
|
2863
|
+
Tags?: Record<string, string> | undefined;
|
|
2864
2864
|
}
|
|
2865
2865
|
/**
|
|
2866
2866
|
* <p>The request object for listing harvest jobs.</p>
|
|
@@ -2876,27 +2876,27 @@ export interface ListHarvestJobsRequest {
|
|
|
2876
2876
|
* <p>The name of the channel to filter the harvest jobs by. If specified, only harvest jobs associated with this channel will be returned.</p>
|
|
2877
2877
|
* @public
|
|
2878
2878
|
*/
|
|
2879
|
-
ChannelName?: string;
|
|
2879
|
+
ChannelName?: string | undefined;
|
|
2880
2880
|
/**
|
|
2881
2881
|
* <p>The name of the origin endpoint to filter the harvest jobs by. If specified, only harvest jobs associated with this origin endpoint will be returned.</p>
|
|
2882
2882
|
* @public
|
|
2883
2883
|
*/
|
|
2884
|
-
OriginEndpointName?: string;
|
|
2884
|
+
OriginEndpointName?: string | undefined;
|
|
2885
2885
|
/**
|
|
2886
2886
|
* <p>The status to filter the harvest jobs by. If specified, only harvest jobs with this status will be returned.</p>
|
|
2887
2887
|
* @public
|
|
2888
2888
|
*/
|
|
2889
|
-
Status?: HarvestJobStatus;
|
|
2889
|
+
Status?: HarvestJobStatus | undefined;
|
|
2890
2890
|
/**
|
|
2891
2891
|
* <p>The maximum number of harvest jobs to return in a single request. If not specified, a default value will be used.</p>
|
|
2892
2892
|
* @public
|
|
2893
2893
|
*/
|
|
2894
|
-
MaxResults?: number;
|
|
2894
|
+
MaxResults?: number | undefined;
|
|
2895
2895
|
/**
|
|
2896
2896
|
* <p>A token used for pagination. Provide this value in subsequent requests to retrieve the next set of results.</p>
|
|
2897
2897
|
* @public
|
|
2898
2898
|
*/
|
|
2899
|
-
NextToken?: string;
|
|
2899
|
+
NextToken?: string | undefined;
|
|
2900
2900
|
}
|
|
2901
2901
|
/**
|
|
2902
2902
|
* <p>Represents a harvest job resource in MediaPackage v2, which is used to export content from an origin endpoint to an S3 bucket.</p>
|
|
@@ -2937,7 +2937,7 @@ export interface HarvestJob {
|
|
|
2937
2937
|
* <p>An optional description of the harvest job.</p>
|
|
2938
2938
|
* @public
|
|
2939
2939
|
*/
|
|
2940
|
-
Description?: string;
|
|
2940
|
+
Description?: string | undefined;
|
|
2941
2941
|
/**
|
|
2942
2942
|
* <p>The configuration for when the harvest job is scheduled to run.</p>
|
|
2943
2943
|
* @public
|
|
@@ -2967,12 +2967,12 @@ export interface HarvestJob {
|
|
|
2967
2967
|
* <p>An error message if the harvest job encountered any issues.</p>
|
|
2968
2968
|
* @public
|
|
2969
2969
|
*/
|
|
2970
|
-
ErrorMessage?: string;
|
|
2970
|
+
ErrorMessage?: string | undefined;
|
|
2971
2971
|
/**
|
|
2972
2972
|
* <p>The current version of the harvest job. Used for concurrency control.</p>
|
|
2973
2973
|
* @public
|
|
2974
2974
|
*/
|
|
2975
|
-
ETag?: string;
|
|
2975
|
+
ETag?: string | undefined;
|
|
2976
2976
|
}
|
|
2977
2977
|
/**
|
|
2978
2978
|
* <p>The response object containing the list of harvest jobs that match the specified criteria.</p>
|
|
@@ -2983,12 +2983,12 @@ export interface ListHarvestJobsResponse {
|
|
|
2983
2983
|
* <p>An array of harvest job objects that match the specified criteria.</p>
|
|
2984
2984
|
* @public
|
|
2985
2985
|
*/
|
|
2986
|
-
Items?: HarvestJob[];
|
|
2986
|
+
Items?: HarvestJob[] | undefined;
|
|
2987
2987
|
/**
|
|
2988
2988
|
* <p>A token used for pagination. Include this value in subsequent requests to retrieve the next set of results. If null, there are no more results to retrieve.</p>
|
|
2989
2989
|
* @public
|
|
2990
2990
|
*/
|
|
2991
|
-
NextToken?: string;
|
|
2991
|
+
NextToken?: string | undefined;
|
|
2992
2992
|
}
|
|
2993
2993
|
/**
|
|
2994
2994
|
* @public
|
|
@@ -2998,12 +2998,12 @@ export interface ListChannelGroupsRequest {
|
|
|
2998
2998
|
* <p>The maximum number of results to return in the response.</p>
|
|
2999
2999
|
* @public
|
|
3000
3000
|
*/
|
|
3001
|
-
MaxResults?: number;
|
|
3001
|
+
MaxResults?: number | undefined;
|
|
3002
3002
|
/**
|
|
3003
3003
|
* <p>The pagination token from the GET list request. Use the token to fetch the next page of results.</p>
|
|
3004
3004
|
* @public
|
|
3005
3005
|
*/
|
|
3006
|
-
NextToken?: string;
|
|
3006
|
+
NextToken?: string | undefined;
|
|
3007
3007
|
}
|
|
3008
3008
|
/**
|
|
3009
3009
|
* @public
|
|
@@ -3013,12 +3013,12 @@ export interface ListChannelGroupsResponse {
|
|
|
3013
3013
|
* <p>The objects being returned.</p>
|
|
3014
3014
|
* @public
|
|
3015
3015
|
*/
|
|
3016
|
-
Items?: ChannelGroupListConfiguration[];
|
|
3016
|
+
Items?: ChannelGroupListConfiguration[] | undefined;
|
|
3017
3017
|
/**
|
|
3018
3018
|
* <p>The pagination token from the GET list request. Use the token to fetch the next page of results.</p>
|
|
3019
3019
|
* @public
|
|
3020
3020
|
*/
|
|
3021
|
-
NextToken?: string;
|
|
3021
|
+
NextToken?: string | undefined;
|
|
3022
3022
|
}
|
|
3023
3023
|
/**
|
|
3024
3024
|
* @public
|
|
@@ -3033,12 +3033,12 @@ export interface UpdateChannelGroupRequest {
|
|
|
3033
3033
|
* <p>The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.</p>
|
|
3034
3034
|
* @public
|
|
3035
3035
|
*/
|
|
3036
|
-
ETag?: string;
|
|
3036
|
+
ETag?: string | undefined;
|
|
3037
3037
|
/**
|
|
3038
3038
|
* <p>Any descriptive information that you want to add to the channel group for future identification purposes.</p>
|
|
3039
3039
|
* @public
|
|
3040
3040
|
*/
|
|
3041
|
-
Description?: string;
|
|
3041
|
+
Description?: string | undefined;
|
|
3042
3042
|
}
|
|
3043
3043
|
/**
|
|
3044
3044
|
* @public
|
|
@@ -3073,17 +3073,17 @@ export interface UpdateChannelGroupResponse {
|
|
|
3073
3073
|
* <p>The description for your channel group.</p>
|
|
3074
3074
|
* @public
|
|
3075
3075
|
*/
|
|
3076
|
-
Description?: string;
|
|
3076
|
+
Description?: string | undefined;
|
|
3077
3077
|
/**
|
|
3078
3078
|
* <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
|
|
3079
3079
|
* @public
|
|
3080
3080
|
*/
|
|
3081
|
-
ETag?: string;
|
|
3081
|
+
ETag?: string | undefined;
|
|
3082
3082
|
/**
|
|
3083
3083
|
* <p>The comma-separated list of tag key:value pairs assigned to the channel group.</p>
|
|
3084
3084
|
* @public
|
|
3085
3085
|
*/
|
|
3086
|
-
Tags?: Record<string, string
|
|
3086
|
+
Tags?: Record<string, string> | undefined;
|
|
3087
3087
|
}
|
|
3088
3088
|
/**
|
|
3089
3089
|
* @public
|
|
@@ -3103,7 +3103,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3103
3103
|
* <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the resource.</p>
|
|
3104
3104
|
* @public
|
|
3105
3105
|
*/
|
|
3106
|
-
Tags?: Record<string, string
|
|
3106
|
+
Tags?: Record<string, string> | undefined;
|
|
3107
3107
|
}
|
|
3108
3108
|
/**
|
|
3109
3109
|
* @public
|