@aws-sdk/client-mediatailor 3.28.0 → 3.32.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/CHANGELOG.md +35 -0
- package/dist/cjs/models/models_0.js +9 -3
- package/dist/cjs/models/models_0.js.map +1 -1
- package/dist/cjs/package.json +31 -31
- package/dist/cjs/protocols/Aws_restJson1.js +94 -66
- package/dist/cjs/protocols/Aws_restJson1.js.map +1 -1
- package/dist/es/endpoints.js +1 -2
- package/dist/es/endpoints.js.map +1 -1
- package/dist/es/models/models_0.js +6 -0
- package/dist/es/models/models_0.js.map +1 -1
- package/dist/es/package.json +31 -31
- package/dist/es/protocols/Aws_restJson1.js +201 -133
- package/dist/es/protocols/Aws_restJson1.js.map +1 -1
- package/dist/types/models/models_0.d.ts +49 -8
- package/dist/types/ts3.4/models/models_0.d.ts +49 -8
- package/models/models_0.ts +59 -8
- package/package.json +31 -31
- package/protocols/Aws_restJson1.ts +101 -67
|
@@ -199,6 +199,10 @@ export interface Channel {
|
|
|
199
199
|
* <p>The timestamp of when the channel was created.</p>
|
|
200
200
|
*/
|
|
201
201
|
CreationTime?: Date;
|
|
202
|
+
/**
|
|
203
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule. You must configure FillerSlate if your channel uses an LINEAR PlaybackMode.</p>
|
|
204
|
+
*/
|
|
205
|
+
FillerSlate?: SlateSource;
|
|
202
206
|
/**
|
|
203
207
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
204
208
|
*/
|
|
@@ -208,7 +212,7 @@ export interface Channel {
|
|
|
208
212
|
*/
|
|
209
213
|
Outputs: ResponseOutputItem[] | undefined;
|
|
210
214
|
/**
|
|
211
|
-
* <p>The type of playback mode for this channel.
|
|
215
|
+
* <p>The type of playback mode for this channel.</p> <p>LINEAR - Programs play back-to-back only once.</p> <p>LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.</p>
|
|
212
216
|
*/
|
|
213
217
|
PlaybackMode: string | undefined;
|
|
214
218
|
/**
|
|
@@ -492,6 +496,10 @@ export declare namespace ScheduleAdBreak {
|
|
|
492
496
|
*/
|
|
493
497
|
const filterSensitiveLog: (obj: ScheduleAdBreak) => any;
|
|
494
498
|
}
|
|
499
|
+
export declare enum ScheduleEntryType {
|
|
500
|
+
FILLER_SLATE = "FILLER_SLATE",
|
|
501
|
+
PROGRAM = "PROGRAM"
|
|
502
|
+
}
|
|
495
503
|
/**
|
|
496
504
|
* <p>The properties for a schedule.</p>
|
|
497
505
|
*/
|
|
@@ -520,6 +528,10 @@ export interface ScheduleEntry {
|
|
|
520
528
|
* <p>The schedule's ad break properties.</p>
|
|
521
529
|
*/
|
|
522
530
|
ScheduleAdBreaks?: ScheduleAdBreak[];
|
|
531
|
+
/**
|
|
532
|
+
* <p>The type of schedule entry.</p> <p>Valid values: PROGRAM or FILLER_SLATE.</p>
|
|
533
|
+
*/
|
|
534
|
+
ScheduleEntryType?: ScheduleEntryType | string;
|
|
523
535
|
/**
|
|
524
536
|
* <p>The name of the source location.</p>
|
|
525
537
|
*/
|
|
@@ -743,7 +755,7 @@ export declare enum ChannelState {
|
|
|
743
755
|
STOPPED = "STOPPED"
|
|
744
756
|
}
|
|
745
757
|
/**
|
|
746
|
-
* <p>The
|
|
758
|
+
* <p>The output configuration for this channel.</p>
|
|
747
759
|
*/
|
|
748
760
|
export interface RequestOutputItem {
|
|
749
761
|
/**
|
|
@@ -770,6 +782,7 @@ export declare namespace RequestOutputItem {
|
|
|
770
782
|
const filterSensitiveLog: (obj: RequestOutputItem) => any;
|
|
771
783
|
}
|
|
772
784
|
export declare enum PlaybackMode {
|
|
785
|
+
LINEAR = "LINEAR",
|
|
773
786
|
LOOP = "LOOP"
|
|
774
787
|
}
|
|
775
788
|
export interface CreateChannelRequest {
|
|
@@ -777,12 +790,16 @@ export interface CreateChannelRequest {
|
|
|
777
790
|
* <p>The identifier for the channel you are working on.</p>
|
|
778
791
|
*/
|
|
779
792
|
ChannelName: string | undefined;
|
|
793
|
+
/**
|
|
794
|
+
* <p>The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses an LINEAR PlaybackMode.</p>
|
|
795
|
+
*/
|
|
796
|
+
FillerSlate?: SlateSource;
|
|
780
797
|
/**
|
|
781
798
|
* <p>The channel's output properties.</p>
|
|
782
799
|
*/
|
|
783
800
|
Outputs: RequestOutputItem[] | undefined;
|
|
784
801
|
/**
|
|
785
|
-
* <p>The type of playback mode for this channel
|
|
802
|
+
* <p>The type of playback mode to use for this channel.</p> <p>LINEAR - The programs in the schedule play once back-to-back in the schedule.</p> <p>LOOP - The programs in the schedule play back-to-back in an endless loop. When the last program in the schedule stops playing, playback loops back to the first program in the schedule.</p>
|
|
786
803
|
*/
|
|
787
804
|
PlaybackMode: PlaybackMode | string | undefined;
|
|
788
805
|
/**
|
|
@@ -815,6 +832,10 @@ export interface CreateChannelResponse {
|
|
|
815
832
|
* <p>The timestamp of when the channel was created.</p>
|
|
816
833
|
*/
|
|
817
834
|
CreationTime?: Date;
|
|
835
|
+
/**
|
|
836
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
837
|
+
*/
|
|
838
|
+
FillerSlate?: SlateSource;
|
|
818
839
|
/**
|
|
819
840
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
820
841
|
*/
|
|
@@ -824,7 +845,7 @@ export interface CreateChannelResponse {
|
|
|
824
845
|
*/
|
|
825
846
|
Outputs?: ResponseOutputItem[];
|
|
826
847
|
/**
|
|
827
|
-
* <p>The
|
|
848
|
+
* <p>The channel's playback mode.</p>
|
|
828
849
|
*/
|
|
829
850
|
PlaybackMode?: string;
|
|
830
851
|
/**
|
|
@@ -849,7 +870,7 @@ export declare enum RelativePosition {
|
|
|
849
870
|
*/
|
|
850
871
|
export interface Transition {
|
|
851
872
|
/**
|
|
852
|
-
* <p>The position where this program will be inserted relative to the
|
|
873
|
+
* <p>The position where this program will be inserted relative to the RelativePosition.</p>
|
|
853
874
|
*/
|
|
854
875
|
RelativePosition: RelativePosition | string | undefined;
|
|
855
876
|
/**
|
|
@@ -857,7 +878,11 @@ export interface Transition {
|
|
|
857
878
|
*/
|
|
858
879
|
RelativeProgram?: string;
|
|
859
880
|
/**
|
|
860
|
-
* <p>
|
|
881
|
+
* <p>The date and time that the program is scheduled to start, in epoch milliseconds.</p>
|
|
882
|
+
*/
|
|
883
|
+
ScheduledStartTimeMillis?: number;
|
|
884
|
+
/**
|
|
885
|
+
* <p>Defines when the program plays in the schedule. You can set the value to ABSOLUTE or RELATIVE.</p> <p>ABSOLUTE - The program plays at a specific wall clock time. This setting can only be used for channels using the LINEAR PlaybackMode.</p> <p>Note the following considerations when using ABSOLUTE transitions:</p> <p>If the preceding program in the schedule has a duration that extends past the wall clock time, MediaTailor truncates the preceding program on a common segment boundary.</p> <p>If there are gaps in playback, MediaTailor plays the FillerSlate you configured for your linear channel.</p> <p>RELATIVE - The program is inserted into the schedule either before or after a program that you specify via RelativePosition.</p>
|
|
861
886
|
*/
|
|
862
887
|
Type: string | undefined;
|
|
863
888
|
}
|
|
@@ -935,6 +960,10 @@ export interface CreateProgramResponse {
|
|
|
935
960
|
* <p>The name of the program.</p>
|
|
936
961
|
*/
|
|
937
962
|
ProgramName?: string;
|
|
963
|
+
/**
|
|
964
|
+
* <p>The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.</p>
|
|
965
|
+
*/
|
|
966
|
+
ScheduledStartTime?: Date;
|
|
938
967
|
/**
|
|
939
968
|
* <p>The source location name.</p>
|
|
940
969
|
*/
|
|
@@ -1262,6 +1291,10 @@ export interface DescribeChannelResponse {
|
|
|
1262
1291
|
* <p>The timestamp of when the channel was created.</p>
|
|
1263
1292
|
*/
|
|
1264
1293
|
CreationTime?: Date;
|
|
1294
|
+
/**
|
|
1295
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
1296
|
+
*/
|
|
1297
|
+
FillerSlate?: SlateSource;
|
|
1265
1298
|
/**
|
|
1266
1299
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
1267
1300
|
*/
|
|
@@ -1271,7 +1304,7 @@ export interface DescribeChannelResponse {
|
|
|
1271
1304
|
*/
|
|
1272
1305
|
Outputs?: ResponseOutputItem[];
|
|
1273
1306
|
/**
|
|
1274
|
-
* <p>The
|
|
1307
|
+
* <p>The channel's playback mode.</p>
|
|
1275
1308
|
*/
|
|
1276
1309
|
PlaybackMode?: string;
|
|
1277
1310
|
/**
|
|
@@ -1324,6 +1357,10 @@ export interface DescribeProgramResponse {
|
|
|
1324
1357
|
* <p>The name of the program.</p>
|
|
1325
1358
|
*/
|
|
1326
1359
|
ProgramName?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* <p>The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.</p>
|
|
1362
|
+
*/
|
|
1363
|
+
ScheduledStartTime?: Date;
|
|
1327
1364
|
/**
|
|
1328
1365
|
* <p>The source location name.</p>
|
|
1329
1366
|
*/
|
|
@@ -2090,6 +2127,10 @@ export interface UpdateChannelResponse {
|
|
|
2090
2127
|
* <p>The timestamp of when the channel was created.</p>
|
|
2091
2128
|
*/
|
|
2092
2129
|
CreationTime?: Date;
|
|
2130
|
+
/**
|
|
2131
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
2132
|
+
*/
|
|
2133
|
+
FillerSlate?: SlateSource;
|
|
2093
2134
|
/**
|
|
2094
2135
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
2095
2136
|
*/
|
|
@@ -2099,7 +2140,7 @@ export interface UpdateChannelResponse {
|
|
|
2099
2140
|
*/
|
|
2100
2141
|
Outputs?: ResponseOutputItem[];
|
|
2101
2142
|
/**
|
|
2102
|
-
* <p>The
|
|
2143
|
+
* <p>The channel's playback mode.</p>
|
|
2103
2144
|
*/
|
|
2104
2145
|
PlaybackMode?: string;
|
|
2105
2146
|
/**
|
|
@@ -199,6 +199,10 @@ export interface Channel {
|
|
|
199
199
|
* <p>The timestamp of when the channel was created.</p>
|
|
200
200
|
*/
|
|
201
201
|
CreationTime?: Date;
|
|
202
|
+
/**
|
|
203
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule. You must configure FillerSlate if your channel uses an LINEAR PlaybackMode.</p>
|
|
204
|
+
*/
|
|
205
|
+
FillerSlate?: SlateSource;
|
|
202
206
|
/**
|
|
203
207
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
204
208
|
*/
|
|
@@ -208,7 +212,7 @@ export interface Channel {
|
|
|
208
212
|
*/
|
|
209
213
|
Outputs: ResponseOutputItem[] | undefined;
|
|
210
214
|
/**
|
|
211
|
-
* <p>The type of playback mode for this channel.
|
|
215
|
+
* <p>The type of playback mode for this channel.</p> <p>LINEAR - Programs play back-to-back only once.</p> <p>LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.</p>
|
|
212
216
|
*/
|
|
213
217
|
PlaybackMode: string | undefined;
|
|
214
218
|
/**
|
|
@@ -492,6 +496,10 @@ export declare namespace ScheduleAdBreak {
|
|
|
492
496
|
*/
|
|
493
497
|
const filterSensitiveLog: (obj: ScheduleAdBreak) => any;
|
|
494
498
|
}
|
|
499
|
+
export declare enum ScheduleEntryType {
|
|
500
|
+
FILLER_SLATE = "FILLER_SLATE",
|
|
501
|
+
PROGRAM = "PROGRAM"
|
|
502
|
+
}
|
|
495
503
|
/**
|
|
496
504
|
* <p>The properties for a schedule.</p>
|
|
497
505
|
*/
|
|
@@ -520,6 +528,10 @@ export interface ScheduleEntry {
|
|
|
520
528
|
* <p>The schedule's ad break properties.</p>
|
|
521
529
|
*/
|
|
522
530
|
ScheduleAdBreaks?: ScheduleAdBreak[];
|
|
531
|
+
/**
|
|
532
|
+
* <p>The type of schedule entry.</p> <p>Valid values: PROGRAM or FILLER_SLATE.</p>
|
|
533
|
+
*/
|
|
534
|
+
ScheduleEntryType?: ScheduleEntryType | string;
|
|
523
535
|
/**
|
|
524
536
|
* <p>The name of the source location.</p>
|
|
525
537
|
*/
|
|
@@ -743,7 +755,7 @@ export declare enum ChannelState {
|
|
|
743
755
|
STOPPED = "STOPPED"
|
|
744
756
|
}
|
|
745
757
|
/**
|
|
746
|
-
* <p>The
|
|
758
|
+
* <p>The output configuration for this channel.</p>
|
|
747
759
|
*/
|
|
748
760
|
export interface RequestOutputItem {
|
|
749
761
|
/**
|
|
@@ -770,6 +782,7 @@ export declare namespace RequestOutputItem {
|
|
|
770
782
|
const filterSensitiveLog: (obj: RequestOutputItem) => any;
|
|
771
783
|
}
|
|
772
784
|
export declare enum PlaybackMode {
|
|
785
|
+
LINEAR = "LINEAR",
|
|
773
786
|
LOOP = "LOOP"
|
|
774
787
|
}
|
|
775
788
|
export interface CreateChannelRequest {
|
|
@@ -777,12 +790,16 @@ export interface CreateChannelRequest {
|
|
|
777
790
|
* <p>The identifier for the channel you are working on.</p>
|
|
778
791
|
*/
|
|
779
792
|
ChannelName: string | undefined;
|
|
793
|
+
/**
|
|
794
|
+
* <p>The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses an LINEAR PlaybackMode.</p>
|
|
795
|
+
*/
|
|
796
|
+
FillerSlate?: SlateSource;
|
|
780
797
|
/**
|
|
781
798
|
* <p>The channel's output properties.</p>
|
|
782
799
|
*/
|
|
783
800
|
Outputs: RequestOutputItem[] | undefined;
|
|
784
801
|
/**
|
|
785
|
-
* <p>The type of playback mode for this channel
|
|
802
|
+
* <p>The type of playback mode to use for this channel.</p> <p>LINEAR - The programs in the schedule play once back-to-back in the schedule.</p> <p>LOOP - The programs in the schedule play back-to-back in an endless loop. When the last program in the schedule stops playing, playback loops back to the first program in the schedule.</p>
|
|
786
803
|
*/
|
|
787
804
|
PlaybackMode: PlaybackMode | string | undefined;
|
|
788
805
|
/**
|
|
@@ -815,6 +832,10 @@ export interface CreateChannelResponse {
|
|
|
815
832
|
* <p>The timestamp of when the channel was created.</p>
|
|
816
833
|
*/
|
|
817
834
|
CreationTime?: Date;
|
|
835
|
+
/**
|
|
836
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
837
|
+
*/
|
|
838
|
+
FillerSlate?: SlateSource;
|
|
818
839
|
/**
|
|
819
840
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
820
841
|
*/
|
|
@@ -824,7 +845,7 @@ export interface CreateChannelResponse {
|
|
|
824
845
|
*/
|
|
825
846
|
Outputs?: ResponseOutputItem[];
|
|
826
847
|
/**
|
|
827
|
-
* <p>The
|
|
848
|
+
* <p>The channel's playback mode.</p>
|
|
828
849
|
*/
|
|
829
850
|
PlaybackMode?: string;
|
|
830
851
|
/**
|
|
@@ -849,7 +870,7 @@ export declare enum RelativePosition {
|
|
|
849
870
|
*/
|
|
850
871
|
export interface Transition {
|
|
851
872
|
/**
|
|
852
|
-
* <p>The position where this program will be inserted relative to the
|
|
873
|
+
* <p>The position where this program will be inserted relative to the RelativePosition.</p>
|
|
853
874
|
*/
|
|
854
875
|
RelativePosition: RelativePosition | string | undefined;
|
|
855
876
|
/**
|
|
@@ -857,7 +878,11 @@ export interface Transition {
|
|
|
857
878
|
*/
|
|
858
879
|
RelativeProgram?: string;
|
|
859
880
|
/**
|
|
860
|
-
* <p>
|
|
881
|
+
* <p>The date and time that the program is scheduled to start, in epoch milliseconds.</p>
|
|
882
|
+
*/
|
|
883
|
+
ScheduledStartTimeMillis?: number;
|
|
884
|
+
/**
|
|
885
|
+
* <p>Defines when the program plays in the schedule. You can set the value to ABSOLUTE or RELATIVE.</p> <p>ABSOLUTE - The program plays at a specific wall clock time. This setting can only be used for channels using the LINEAR PlaybackMode.</p> <p>Note the following considerations when using ABSOLUTE transitions:</p> <p>If the preceding program in the schedule has a duration that extends past the wall clock time, MediaTailor truncates the preceding program on a common segment boundary.</p> <p>If there are gaps in playback, MediaTailor plays the FillerSlate you configured for your linear channel.</p> <p>RELATIVE - The program is inserted into the schedule either before or after a program that you specify via RelativePosition.</p>
|
|
861
886
|
*/
|
|
862
887
|
Type: string | undefined;
|
|
863
888
|
}
|
|
@@ -935,6 +960,10 @@ export interface CreateProgramResponse {
|
|
|
935
960
|
* <p>The name of the program.</p>
|
|
936
961
|
*/
|
|
937
962
|
ProgramName?: string;
|
|
963
|
+
/**
|
|
964
|
+
* <p>The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.</p>
|
|
965
|
+
*/
|
|
966
|
+
ScheduledStartTime?: Date;
|
|
938
967
|
/**
|
|
939
968
|
* <p>The source location name.</p>
|
|
940
969
|
*/
|
|
@@ -1262,6 +1291,10 @@ export interface DescribeChannelResponse {
|
|
|
1262
1291
|
* <p>The timestamp of when the channel was created.</p>
|
|
1263
1292
|
*/
|
|
1264
1293
|
CreationTime?: Date;
|
|
1294
|
+
/**
|
|
1295
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
1296
|
+
*/
|
|
1297
|
+
FillerSlate?: SlateSource;
|
|
1265
1298
|
/**
|
|
1266
1299
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
1267
1300
|
*/
|
|
@@ -1271,7 +1304,7 @@ export interface DescribeChannelResponse {
|
|
|
1271
1304
|
*/
|
|
1272
1305
|
Outputs?: ResponseOutputItem[];
|
|
1273
1306
|
/**
|
|
1274
|
-
* <p>The
|
|
1307
|
+
* <p>The channel's playback mode.</p>
|
|
1275
1308
|
*/
|
|
1276
1309
|
PlaybackMode?: string;
|
|
1277
1310
|
/**
|
|
@@ -1324,6 +1357,10 @@ export interface DescribeProgramResponse {
|
|
|
1324
1357
|
* <p>The name of the program.</p>
|
|
1325
1358
|
*/
|
|
1326
1359
|
ProgramName?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* <p>The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.</p>
|
|
1362
|
+
*/
|
|
1363
|
+
ScheduledStartTime?: Date;
|
|
1327
1364
|
/**
|
|
1328
1365
|
* <p>The source location name.</p>
|
|
1329
1366
|
*/
|
|
@@ -2090,6 +2127,10 @@ export interface UpdateChannelResponse {
|
|
|
2090
2127
|
* <p>The timestamp of when the channel was created.</p>
|
|
2091
2128
|
*/
|
|
2092
2129
|
CreationTime?: Date;
|
|
2130
|
+
/**
|
|
2131
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
2132
|
+
*/
|
|
2133
|
+
FillerSlate?: SlateSource;
|
|
2093
2134
|
/**
|
|
2094
2135
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
2095
2136
|
*/
|
|
@@ -2099,7 +2140,7 @@ export interface UpdateChannelResponse {
|
|
|
2099
2140
|
*/
|
|
2100
2141
|
Outputs?: ResponseOutputItem[];
|
|
2101
2142
|
/**
|
|
2102
|
-
* <p>The
|
|
2143
|
+
* <p>The channel's playback mode.</p>
|
|
2103
2144
|
*/
|
|
2104
2145
|
PlaybackMode?: string;
|
|
2105
2146
|
/**
|
package/models/models_0.ts
CHANGED
|
@@ -251,6 +251,11 @@ export interface Channel {
|
|
|
251
251
|
*/
|
|
252
252
|
CreationTime?: Date;
|
|
253
253
|
|
|
254
|
+
/**
|
|
255
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule. You must configure FillerSlate if your channel uses an LINEAR PlaybackMode.</p>
|
|
256
|
+
*/
|
|
257
|
+
FillerSlate?: SlateSource;
|
|
258
|
+
|
|
254
259
|
/**
|
|
255
260
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
256
261
|
*/
|
|
@@ -262,7 +267,7 @@ export interface Channel {
|
|
|
262
267
|
Outputs: ResponseOutputItem[] | undefined;
|
|
263
268
|
|
|
264
269
|
/**
|
|
265
|
-
* <p>The type of playback mode for this channel.
|
|
270
|
+
* <p>The type of playback mode for this channel.</p> <p>LINEAR - Programs play back-to-back only once.</p> <p>LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.</p>
|
|
266
271
|
*/
|
|
267
272
|
PlaybackMode: string | undefined;
|
|
268
273
|
|
|
@@ -611,6 +616,11 @@ export namespace ScheduleAdBreak {
|
|
|
611
616
|
});
|
|
612
617
|
}
|
|
613
618
|
|
|
619
|
+
export enum ScheduleEntryType {
|
|
620
|
+
FILLER_SLATE = "FILLER_SLATE",
|
|
621
|
+
PROGRAM = "PROGRAM",
|
|
622
|
+
}
|
|
623
|
+
|
|
614
624
|
/**
|
|
615
625
|
* <p>The properties for a schedule.</p>
|
|
616
626
|
*/
|
|
@@ -645,6 +655,11 @@ export interface ScheduleEntry {
|
|
|
645
655
|
*/
|
|
646
656
|
ScheduleAdBreaks?: ScheduleAdBreak[];
|
|
647
657
|
|
|
658
|
+
/**
|
|
659
|
+
* <p>The type of schedule entry.</p> <p>Valid values: PROGRAM or FILLER_SLATE.</p>
|
|
660
|
+
*/
|
|
661
|
+
ScheduleEntryType?: ScheduleEntryType | string;
|
|
662
|
+
|
|
648
663
|
/**
|
|
649
664
|
* <p>The name of the source location.</p>
|
|
650
665
|
*/
|
|
@@ -922,7 +937,7 @@ export enum ChannelState {
|
|
|
922
937
|
}
|
|
923
938
|
|
|
924
939
|
/**
|
|
925
|
-
* <p>The
|
|
940
|
+
* <p>The output configuration for this channel.</p>
|
|
926
941
|
*/
|
|
927
942
|
export interface RequestOutputItem {
|
|
928
943
|
/**
|
|
@@ -956,6 +971,7 @@ export namespace RequestOutputItem {
|
|
|
956
971
|
}
|
|
957
972
|
|
|
958
973
|
export enum PlaybackMode {
|
|
974
|
+
LINEAR = "LINEAR",
|
|
959
975
|
LOOP = "LOOP",
|
|
960
976
|
}
|
|
961
977
|
|
|
@@ -965,13 +981,18 @@ export interface CreateChannelRequest {
|
|
|
965
981
|
*/
|
|
966
982
|
ChannelName: string | undefined;
|
|
967
983
|
|
|
984
|
+
/**
|
|
985
|
+
* <p>The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses an LINEAR PlaybackMode.</p>
|
|
986
|
+
*/
|
|
987
|
+
FillerSlate?: SlateSource;
|
|
988
|
+
|
|
968
989
|
/**
|
|
969
990
|
* <p>The channel's output properties.</p>
|
|
970
991
|
*/
|
|
971
992
|
Outputs: RequestOutputItem[] | undefined;
|
|
972
993
|
|
|
973
994
|
/**
|
|
974
|
-
* <p>The type of playback mode for this channel
|
|
995
|
+
* <p>The type of playback mode to use for this channel.</p> <p>LINEAR - The programs in the schedule play once back-to-back in the schedule.</p> <p>LOOP - The programs in the schedule play back-to-back in an endless loop. When the last program in the schedule stops playing, playback loops back to the first program in the schedule.</p>
|
|
975
996
|
*/
|
|
976
997
|
PlaybackMode: PlaybackMode | string | undefined;
|
|
977
998
|
|
|
@@ -1011,6 +1032,11 @@ export interface CreateChannelResponse {
|
|
|
1011
1032
|
*/
|
|
1012
1033
|
CreationTime?: Date;
|
|
1013
1034
|
|
|
1035
|
+
/**
|
|
1036
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
1037
|
+
*/
|
|
1038
|
+
FillerSlate?: SlateSource;
|
|
1039
|
+
|
|
1014
1040
|
/**
|
|
1015
1041
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
1016
1042
|
*/
|
|
@@ -1022,7 +1048,7 @@ export interface CreateChannelResponse {
|
|
|
1022
1048
|
Outputs?: ResponseOutputItem[];
|
|
1023
1049
|
|
|
1024
1050
|
/**
|
|
1025
|
-
* <p>The
|
|
1051
|
+
* <p>The channel's playback mode.</p>
|
|
1026
1052
|
*/
|
|
1027
1053
|
PlaybackMode?: string;
|
|
1028
1054
|
|
|
@@ -1051,7 +1077,7 @@ export enum RelativePosition {
|
|
|
1051
1077
|
*/
|
|
1052
1078
|
export interface Transition {
|
|
1053
1079
|
/**
|
|
1054
|
-
* <p>The position where this program will be inserted relative to the
|
|
1080
|
+
* <p>The position where this program will be inserted relative to the RelativePosition.</p>
|
|
1055
1081
|
*/
|
|
1056
1082
|
RelativePosition: RelativePosition | string | undefined;
|
|
1057
1083
|
|
|
@@ -1061,7 +1087,12 @@ export interface Transition {
|
|
|
1061
1087
|
RelativeProgram?: string;
|
|
1062
1088
|
|
|
1063
1089
|
/**
|
|
1064
|
-
* <p>
|
|
1090
|
+
* <p>The date and time that the program is scheduled to start, in epoch milliseconds.</p>
|
|
1091
|
+
*/
|
|
1092
|
+
ScheduledStartTimeMillis?: number;
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* <p>Defines when the program plays in the schedule. You can set the value to ABSOLUTE or RELATIVE.</p> <p>ABSOLUTE - The program plays at a specific wall clock time. This setting can only be used for channels using the LINEAR PlaybackMode.</p> <p>Note the following considerations when using ABSOLUTE transitions:</p> <p>If the preceding program in the schedule has a duration that extends past the wall clock time, MediaTailor truncates the preceding program on a common segment boundary.</p> <p>If there are gaps in playback, MediaTailor plays the FillerSlate you configured for your linear channel.</p> <p>RELATIVE - The program is inserted into the schedule either before or after a program that you specify via RelativePosition.</p>
|
|
1065
1096
|
*/
|
|
1066
1097
|
Type: string | undefined;
|
|
1067
1098
|
}
|
|
@@ -1161,6 +1192,11 @@ export interface CreateProgramResponse {
|
|
|
1161
1192
|
*/
|
|
1162
1193
|
ProgramName?: string;
|
|
1163
1194
|
|
|
1195
|
+
/**
|
|
1196
|
+
* <p>The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.</p>
|
|
1197
|
+
*/
|
|
1198
|
+
ScheduledStartTime?: Date;
|
|
1199
|
+
|
|
1164
1200
|
/**
|
|
1165
1201
|
* <p>The source location name.</p>
|
|
1166
1202
|
*/
|
|
@@ -1578,6 +1614,11 @@ export interface DescribeChannelResponse {
|
|
|
1578
1614
|
*/
|
|
1579
1615
|
CreationTime?: Date;
|
|
1580
1616
|
|
|
1617
|
+
/**
|
|
1618
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
1619
|
+
*/
|
|
1620
|
+
FillerSlate?: SlateSource;
|
|
1621
|
+
|
|
1581
1622
|
/**
|
|
1582
1623
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
1583
1624
|
*/
|
|
@@ -1589,7 +1630,7 @@ export interface DescribeChannelResponse {
|
|
|
1589
1630
|
Outputs?: ResponseOutputItem[];
|
|
1590
1631
|
|
|
1591
1632
|
/**
|
|
1592
|
-
* <p>The
|
|
1633
|
+
* <p>The channel's playback mode.</p>
|
|
1593
1634
|
*/
|
|
1594
1635
|
PlaybackMode?: string;
|
|
1595
1636
|
|
|
@@ -1655,6 +1696,11 @@ export interface DescribeProgramResponse {
|
|
|
1655
1696
|
*/
|
|
1656
1697
|
ProgramName?: string;
|
|
1657
1698
|
|
|
1699
|
+
/**
|
|
1700
|
+
* <p>The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.</p>
|
|
1701
|
+
*/
|
|
1702
|
+
ScheduledStartTime?: Date;
|
|
1703
|
+
|
|
1658
1704
|
/**
|
|
1659
1705
|
* <p>The source location name.</p>
|
|
1660
1706
|
*/
|
|
@@ -2614,6 +2660,11 @@ export interface UpdateChannelResponse {
|
|
|
2614
2660
|
*/
|
|
2615
2661
|
CreationTime?: Date;
|
|
2616
2662
|
|
|
2663
|
+
/**
|
|
2664
|
+
* <p>Contains information about the slate used to fill gaps between programs in the schedule.</p>
|
|
2665
|
+
*/
|
|
2666
|
+
FillerSlate?: SlateSource;
|
|
2667
|
+
|
|
2617
2668
|
/**
|
|
2618
2669
|
* <p>The timestamp of when the channel was last modified.</p>
|
|
2619
2670
|
*/
|
|
@@ -2625,7 +2676,7 @@ export interface UpdateChannelResponse {
|
|
|
2625
2676
|
Outputs?: ResponseOutputItem[];
|
|
2626
2677
|
|
|
2627
2678
|
/**
|
|
2628
|
-
* <p>The
|
|
2679
|
+
* <p>The channel's playback mode.</p>
|
|
2629
2680
|
*/
|
|
2630
2681
|
PlaybackMode?: string;
|
|
2631
2682
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediatailor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediatailor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.32.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "yarn remove-definitions && yarn remove-dist && yarn remove-documentation",
|
|
7
7
|
"build-documentation": "yarn remove-documentation && typedoc ./",
|
|
@@ -27,45 +27,45 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "^1.0.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "^1.0.0",
|
|
30
|
-
"@aws-sdk/client-sts": "3.
|
|
31
|
-
"@aws-sdk/config-resolver": "3.
|
|
32
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
33
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
34
|
-
"@aws-sdk/hash-node": "3.
|
|
35
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
36
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
37
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
38
|
-
"@aws-sdk/middleware-logger": "3.
|
|
39
|
-
"@aws-sdk/middleware-retry": "3.
|
|
40
|
-
"@aws-sdk/middleware-serde": "3.
|
|
41
|
-
"@aws-sdk/middleware-signing": "3.
|
|
42
|
-
"@aws-sdk/middleware-stack": "3.
|
|
43
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
44
|
-
"@aws-sdk/node-config-provider": "3.
|
|
45
|
-
"@aws-sdk/node-http-handler": "3.
|
|
46
|
-
"@aws-sdk/protocol-http": "3.
|
|
47
|
-
"@aws-sdk/smithy-client": "3.
|
|
48
|
-
"@aws-sdk/types": "3.
|
|
49
|
-
"@aws-sdk/url-parser": "3.
|
|
50
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
51
|
-
"@aws-sdk/util-base64-node": "3.
|
|
52
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
53
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
57
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
30
|
+
"@aws-sdk/client-sts": "3.32.0",
|
|
31
|
+
"@aws-sdk/config-resolver": "3.32.0",
|
|
32
|
+
"@aws-sdk/credential-provider-node": "3.32.0",
|
|
33
|
+
"@aws-sdk/fetch-http-handler": "3.32.0",
|
|
34
|
+
"@aws-sdk/hash-node": "3.32.0",
|
|
35
|
+
"@aws-sdk/invalid-dependency": "3.32.0",
|
|
36
|
+
"@aws-sdk/middleware-content-length": "3.32.0",
|
|
37
|
+
"@aws-sdk/middleware-host-header": "3.32.0",
|
|
38
|
+
"@aws-sdk/middleware-logger": "3.32.0",
|
|
39
|
+
"@aws-sdk/middleware-retry": "3.32.0",
|
|
40
|
+
"@aws-sdk/middleware-serde": "3.32.0",
|
|
41
|
+
"@aws-sdk/middleware-signing": "3.32.0",
|
|
42
|
+
"@aws-sdk/middleware-stack": "3.32.0",
|
|
43
|
+
"@aws-sdk/middleware-user-agent": "3.32.0",
|
|
44
|
+
"@aws-sdk/node-config-provider": "3.32.0",
|
|
45
|
+
"@aws-sdk/node-http-handler": "3.32.0",
|
|
46
|
+
"@aws-sdk/protocol-http": "3.32.0",
|
|
47
|
+
"@aws-sdk/smithy-client": "3.32.0",
|
|
48
|
+
"@aws-sdk/types": "3.32.0",
|
|
49
|
+
"@aws-sdk/url-parser": "3.32.0",
|
|
50
|
+
"@aws-sdk/util-base64-browser": "3.32.0",
|
|
51
|
+
"@aws-sdk/util-base64-node": "3.32.0",
|
|
52
|
+
"@aws-sdk/util-body-length-browser": "3.32.0",
|
|
53
|
+
"@aws-sdk/util-body-length-node": "3.32.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.32.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.32.0",
|
|
56
|
+
"@aws-sdk/util-utf8-browser": "3.32.0",
|
|
57
|
+
"@aws-sdk/util-utf8-node": "3.32.0",
|
|
58
58
|
"tslib": "^2.3.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/client-documentation-generator": "3.32.0",
|
|
62
62
|
"@types/node": "^12.7.5",
|
|
63
63
|
"downlevel-dts": "0.7.0",
|
|
64
64
|
"jest": "^26.1.0",
|
|
65
65
|
"rimraf": "^3.0.0",
|
|
66
66
|
"ts-jest": "^26.4.1",
|
|
67
67
|
"typedoc": "^0.19.2",
|
|
68
|
-
"typescript": "~4.3.
|
|
68
|
+
"typescript": "~4.3.5"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": ">=10.0.0"
|