@aws-sdk/client-mediatailor 3.72.0 → 3.76.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/MediaTailor.js +75 -0
  3. package/dist-cjs/commands/CreateLiveSourceCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteLiveSourceCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeLiveSourceCommand.js +36 -0
  6. package/dist-cjs/commands/ListLiveSourcesCommand.js +36 -0
  7. package/dist-cjs/commands/UpdateLiveSourceCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +85 -14
  10. package/dist-cjs/pagination/ListLiveSourcesPaginator.js +35 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +499 -2
  13. package/dist-es/MediaTailor.js +75 -0
  14. package/dist-es/commands/CreateLiveSourceCommand.js +39 -0
  15. package/dist-es/commands/DeleteLiveSourceCommand.js +39 -0
  16. package/dist-es/commands/DescribeLiveSourceCommand.js +39 -0
  17. package/dist-es/commands/ListLiveSourcesCommand.js +39 -0
  18. package/dist-es/commands/UpdateLiveSourceCommand.js +39 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +58 -9
  21. package/dist-es/pagination/ListLiveSourcesPaginator.js +74 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +607 -13
  24. package/dist-types/MediaTailor.d.ts +35 -0
  25. package/dist-types/MediaTailorClient.d.ts +7 -2
  26. package/dist-types/commands/CreateLiveSourceCommand.d.ts +35 -0
  27. package/dist-types/commands/DeleteLiveSourceCommand.d.ts +35 -0
  28. package/dist-types/commands/DescribeLiveSourceCommand.d.ts +35 -0
  29. package/dist-types/commands/ListLiveSourcesCommand.d.ts +35 -0
  30. package/dist-types/commands/UpdateLiveSourceCommand.d.ts +35 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/models/models_0.d.ts +387 -39
  33. package/dist-types/pagination/ListLiveSourcesPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  36. package/dist-types/ts3.4/MediaTailor.d.ts +25 -0
  37. package/dist-types/ts3.4/MediaTailorClient.d.ts +7 -2
  38. package/dist-types/ts3.4/commands/CreateLiveSourceCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/DeleteLiveSourceCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/DescribeLiveSourceCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/ListLiveSourcesCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/UpdateLiveSourceCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +217 -19
  45. package/dist-types/ts3.4/pagination/ListLiveSourcesPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  48. package/package.json +9 -9
@@ -244,6 +244,10 @@ export interface Channel {
244
244
  Tags?: {
245
245
  [key: string]: string;
246
246
  };
247
+ /**
248
+ * <p>The tier for this channel. STANDARD tier channels can contain live programs.</p>
249
+ */
250
+ Tier: string | undefined;
247
251
  }
248
252
  export declare namespace Channel {
249
253
  /**
@@ -251,6 +255,74 @@ export declare namespace Channel {
251
255
  */
252
256
  const filterSensitiveLog: (obj: Channel) => any;
253
257
  }
258
+ export declare enum Type {
259
+ DASH = "DASH",
260
+ HLS = "HLS"
261
+ }
262
+ /**
263
+ * <p>The HTTP package configuration properties for the requested VOD source.</p>
264
+ */
265
+ export interface HttpPackageConfiguration {
266
+ /**
267
+ * <p>The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.</p>
268
+ */
269
+ Path: string | undefined;
270
+ /**
271
+ * <p>The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.</p>
272
+ */
273
+ SourceGroup: string | undefined;
274
+ /**
275
+ * <p>The streaming protocol for this package configuration. Supported values are HLS and DASH.</p>
276
+ */
277
+ Type: Type | string | undefined;
278
+ }
279
+ export declare namespace HttpPackageConfiguration {
280
+ /**
281
+ * @internal
282
+ */
283
+ const filterSensitiveLog: (obj: HttpPackageConfiguration) => any;
284
+ }
285
+ /**
286
+ * <p>Live source configuration parameters.</p>
287
+ */
288
+ export interface LiveSource {
289
+ /**
290
+ * <p>The ARN for the live source.</p>
291
+ */
292
+ Arn: string | undefined;
293
+ /**
294
+ * <p>The timestamp that indicates when the live source was created.</p>
295
+ */
296
+ CreationTime?: Date;
297
+ /**
298
+ * <p>The HTTP package configurations for the live source.</p>
299
+ */
300
+ HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
301
+ /**
302
+ * <p>The timestamp that indicates when the live source was last modified.</p>
303
+ */
304
+ LastModifiedTime?: Date;
305
+ /**
306
+ * <p>The name that's used to refer to a live source.</p>
307
+ */
308
+ LiveSourceName: string | undefined;
309
+ /**
310
+ * <p>The name of the source location.</p>
311
+ */
312
+ SourceLocationName: string | undefined;
313
+ /**
314
+ * <p>The tags assigned to the live source.</p>
315
+ */
316
+ Tags?: {
317
+ [key: string]: string;
318
+ };
319
+ }
320
+ export declare namespace LiveSource {
321
+ /**
322
+ * @internal
323
+ */
324
+ const filterSensitiveLog: (obj: LiveSource) => any;
325
+ }
254
326
  export declare enum Mode {
255
327
  BEHIND_LIVE_EDGE = "BEHIND_LIVE_EDGE",
256
328
  OFF = "OFF"
@@ -298,7 +370,7 @@ export declare namespace Bumper {
298
370
  */
299
371
  export interface CdnConfiguration {
300
372
  /**
301
- * <p>A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.&amp;lt;region&gt;.amazonaws.com. Then specify the rule's name in this AdSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.</p>
373
+ * <p>A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.&amp;lt;region>.amazonaws.com. Then specify the rule's name in this AdSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.</p>
302
374
  */
303
375
  AdSegmentUrlPrefix?: string;
304
376
  /**
@@ -645,6 +717,10 @@ export interface ScheduleEntry {
645
717
  * <p>The name of the channel that uses this schedule.</p>
646
718
  */
647
719
  ChannelName: string | undefined;
720
+ /**
721
+ * <p>The name of the live source used for the program.</p>
722
+ */
723
+ LiveSourceName?: string;
648
724
  /**
649
725
  * <p>The name of the program.</p>
650
726
  */
@@ -664,7 +740,7 @@ export interface ScheduleEntry {
664
740
  /**
665
741
  * <p>The name of the VOD source.</p>
666
742
  */
667
- VodSourceName: string | undefined;
743
+ VodSourceName?: string;
668
744
  }
669
745
  export declare namespace ScheduleEntry {
670
746
  /**
@@ -672,8 +748,17 @@ export declare namespace ScheduleEntry {
672
748
  */
673
749
  const filterSensitiveLog: (obj: ScheduleEntry) => any;
674
750
  }
751
+ /**
752
+ * <p>The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as https://example.com/some/path. To use a relative URL specify the relative path, such as /some/path*.</p>
753
+ */
675
754
  export interface SegmentDeliveryConfiguration {
755
+ /**
756
+ * <p>The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as https://example.com/some/path. To use a relative URL specify the relative path, such as /some/path*.</p>
757
+ */
676
758
  BaseUrl?: string;
759
+ /**
760
+ * <p>A unique identifier used to distinguish between multiple segment delivery configurations in a source location.</p>
761
+ */
677
762
  Name?: string;
678
763
  }
679
764
  export declare namespace SegmentDeliveryConfiguration {
@@ -786,6 +871,9 @@ export interface SourceLocation {
786
871
  * <p>The timestamp that indicates when the source location was last modified.</p>
787
872
  */
788
873
  LastModifiedTime?: Date;
874
+ /**
875
+ * <p>The segment delivery configurations for the source location.</p>
876
+ */
789
877
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
790
878
  /**
791
879
  * <p>The name of the source location.</p>
@@ -804,33 +892,6 @@ export declare namespace SourceLocation {
804
892
  */
805
893
  const filterSensitiveLog: (obj: SourceLocation) => any;
806
894
  }
807
- export declare enum Type {
808
- DASH = "DASH",
809
- HLS = "HLS"
810
- }
811
- /**
812
- * <p>The HTTP package configuration properties for the requested VOD source.</p>
813
- */
814
- export interface HttpPackageConfiguration {
815
- /**
816
- * <p>The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.</p>
817
- */
818
- Path: string | undefined;
819
- /**
820
- * <p>The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.</p>
821
- */
822
- SourceGroup: string | undefined;
823
- /**
824
- * <p>The streaming protocol for this package configuration. Supported values are HLS and DASH.</p>
825
- */
826
- Type: Type | string | undefined;
827
- }
828
- export declare namespace HttpPackageConfiguration {
829
- /**
830
- * @internal
831
- */
832
- const filterSensitiveLog: (obj: HttpPackageConfiguration) => any;
833
- }
834
895
  /**
835
896
  * <p>VOD source configuration parameters.</p>
836
897
  */
@@ -954,6 +1015,10 @@ export declare enum PlaybackMode {
954
1015
  LINEAR = "LINEAR",
955
1016
  LOOP = "LOOP"
956
1017
  }
1018
+ export declare enum Tier {
1019
+ BASIC = "BASIC",
1020
+ STANDARD = "STANDARD"
1021
+ }
957
1022
  export interface CreateChannelRequest {
958
1023
  /**
959
1024
  * <p>The identifier for the channel you are working on.</p>
@@ -977,6 +1042,10 @@ export interface CreateChannelRequest {
977
1042
  Tags?: {
978
1043
  [key: string]: string;
979
1044
  };
1045
+ /**
1046
+ * <p>The tier of the channel.</p>
1047
+ */
1048
+ Tier?: Tier | string;
980
1049
  }
981
1050
  export declare namespace CreateChannelRequest {
982
1051
  /**
@@ -1023,6 +1092,10 @@ export interface CreateChannelResponse {
1023
1092
  Tags?: {
1024
1093
  [key: string]: string;
1025
1094
  };
1095
+ /**
1096
+ * <p>The channel's tier.</p>
1097
+ */
1098
+ Tier?: string;
1026
1099
  }
1027
1100
  export declare namespace CreateChannelResponse {
1028
1101
  /**
@@ -1030,6 +1103,70 @@ export declare namespace CreateChannelResponse {
1030
1103
  */
1031
1104
  const filterSensitiveLog: (obj: CreateChannelResponse) => any;
1032
1105
  }
1106
+ export interface CreateLiveSourceRequest {
1107
+ /**
1108
+ * <p>A list of HTTP package configuration parameters for this live source.</p>
1109
+ */
1110
+ HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
1111
+ /**
1112
+ * <p>The identifier for the live source you are working on.</p>
1113
+ */
1114
+ LiveSourceName: string | undefined;
1115
+ /**
1116
+ * <p>The identifier for the source location you are working on.</p>
1117
+ */
1118
+ SourceLocationName: string | undefined;
1119
+ /**
1120
+ * <p>The tags to assign to the live source.</p>
1121
+ */
1122
+ Tags?: {
1123
+ [key: string]: string;
1124
+ };
1125
+ }
1126
+ export declare namespace CreateLiveSourceRequest {
1127
+ /**
1128
+ * @internal
1129
+ */
1130
+ const filterSensitiveLog: (obj: CreateLiveSourceRequest) => any;
1131
+ }
1132
+ export interface CreateLiveSourceResponse {
1133
+ /**
1134
+ * <p>The ARN of the live source.</p>
1135
+ */
1136
+ Arn?: string;
1137
+ /**
1138
+ * <p>The timestamp that indicates when the live source was created.</p>
1139
+ */
1140
+ CreationTime?: Date;
1141
+ /**
1142
+ * <p>The HTTP package configurations.</p>
1143
+ */
1144
+ HttpPackageConfigurations?: HttpPackageConfiguration[];
1145
+ /**
1146
+ * <p>The timestamp that indicates when the live source was modified.</p>
1147
+ */
1148
+ LastModifiedTime?: Date;
1149
+ /**
1150
+ * <p>The name of the live source.</p>
1151
+ */
1152
+ LiveSourceName?: string;
1153
+ /**
1154
+ * <p>The name of the source location associated with the VOD source.</p>
1155
+ */
1156
+ SourceLocationName?: string;
1157
+ /**
1158
+ * <p>The tags assigned to the live source.</p>
1159
+ */
1160
+ Tags?: {
1161
+ [key: string]: string;
1162
+ };
1163
+ }
1164
+ export declare namespace CreateLiveSourceResponse {
1165
+ /**
1166
+ * @internal
1167
+ */
1168
+ const filterSensitiveLog: (obj: CreateLiveSourceResponse) => any;
1169
+ }
1033
1170
  export interface CreatePrefetchScheduleRequest {
1034
1171
  /**
1035
1172
  * <p>The configuration settings for MediaTailor's <i>consumption</i> of the prefetched ads from the ad decision server. Each consumption configuration contains an end time and an optional start time that define the <i>consumption window</i>. Prefetch schedules automatically expire no earlier than seven days after the end time.</p>
@@ -1098,6 +1235,10 @@ export declare enum RelativePosition {
1098
1235
  * <p>Program transition configuration.</p>
1099
1236
  */
1100
1237
  export interface Transition {
1238
+ /**
1239
+ * <p>The duration of the live program in seconds.</p>
1240
+ */
1241
+ DurationMillis?: number;
1101
1242
  /**
1102
1243
  * <p>The position where this program will be inserted relative to the RelativePosition.</p>
1103
1244
  */
@@ -1145,6 +1286,10 @@ export interface CreateProgramRequest {
1145
1286
  * <p>The identifier for the channel you are working on.</p>
1146
1287
  */
1147
1288
  ChannelName: string | undefined;
1289
+ /**
1290
+ * <p>The name of the LiveSource for this Program.</p>
1291
+ */
1292
+ LiveSourceName?: string;
1148
1293
  /**
1149
1294
  * <p>The identifier for the program you are working on.</p>
1150
1295
  */
@@ -1160,7 +1305,7 @@ export interface CreateProgramRequest {
1160
1305
  /**
1161
1306
  * <p>The name that's used to refer to a VOD source.</p>
1162
1307
  */
1163
- VodSourceName: string | undefined;
1308
+ VodSourceName?: string;
1164
1309
  }
1165
1310
  export declare namespace CreateProgramRequest {
1166
1311
  /**
@@ -1185,6 +1330,10 @@ export interface CreateProgramResponse {
1185
1330
  * <p>The timestamp of when the program was created.</p>
1186
1331
  */
1187
1332
  CreationTime?: Date;
1333
+ /**
1334
+ * <p>The name of the LiveSource for this Program.</p>
1335
+ */
1336
+ LiveSourceName?: string;
1188
1337
  /**
1189
1338
  * <p>The name of the program.</p>
1190
1339
  */
@@ -1221,6 +1370,9 @@ export interface CreateSourceLocationRequest {
1221
1370
  * <p>The source's HTTP package configurations.</p>
1222
1371
  */
1223
1372
  HttpConfiguration: HttpConfiguration | undefined;
1373
+ /**
1374
+ * <p>A list of the segment delivery configurations associated with this resource.</p>
1375
+ */
1224
1376
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
1225
1377
  /**
1226
1378
  * <p>The identifier for the source location you are working on.</p>
@@ -1264,6 +1416,9 @@ export interface CreateSourceLocationResponse {
1264
1416
  * <p>The timestamp that indicates when the source location was last modified.</p>
1265
1417
  */
1266
1418
  LastModifiedTime?: Date;
1419
+ /**
1420
+ * <p>A list of the segment delivery configurations associated with this resource.</p>
1421
+ */
1267
1422
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
1268
1423
  /**
1269
1424
  * <p>The name of the source location.</p>
@@ -1284,7 +1439,7 @@ export declare namespace CreateSourceLocationResponse {
1284
1439
  }
1285
1440
  export interface CreateVodSourceRequest {
1286
1441
  /**
1287
- * <p>An array of HTTP package configuration parameters for this VOD source.</p>
1442
+ * <p>A list of HTTP package configuration parameters for this VOD source.</p>
1288
1443
  */
1289
1444
  HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
1290
1445
  /**
@@ -1322,7 +1477,7 @@ export interface CreateVodSourceResponse {
1322
1477
  */
1323
1478
  HttpPackageConfigurations?: HttpPackageConfiguration[];
1324
1479
  /**
1325
- * <p>The ARN for the VOD source.</p>
1480
+ * <p>The last modified time of the VOD source.</p>
1326
1481
  */
1327
1482
  LastModifiedTime?: Date;
1328
1483
  /**
@@ -1405,6 +1560,30 @@ export declare namespace DeleteChannelPolicyResponse {
1405
1560
  */
1406
1561
  const filterSensitiveLog: (obj: DeleteChannelPolicyResponse) => any;
1407
1562
  }
1563
+ export interface DeleteLiveSourceRequest {
1564
+ /**
1565
+ * <p>The identifier for the live source you are working on.</p>
1566
+ */
1567
+ LiveSourceName: string | undefined;
1568
+ /**
1569
+ * <p>The identifier for the source location you are working on.</p>
1570
+ */
1571
+ SourceLocationName: string | undefined;
1572
+ }
1573
+ export declare namespace DeleteLiveSourceRequest {
1574
+ /**
1575
+ * @internal
1576
+ */
1577
+ const filterSensitiveLog: (obj: DeleteLiveSourceRequest) => any;
1578
+ }
1579
+ export interface DeleteLiveSourceResponse {
1580
+ }
1581
+ export declare namespace DeleteLiveSourceResponse {
1582
+ /**
1583
+ * @internal
1584
+ */
1585
+ const filterSensitiveLog: (obj: DeleteLiveSourceResponse) => any;
1586
+ }
1408
1587
  export interface DeletePlaybackConfigurationRequest {
1409
1588
  /**
1410
1589
  * <p>The identifier for the playback configuration.</p>
@@ -1568,6 +1747,10 @@ export interface DescribeChannelResponse {
1568
1747
  Tags?: {
1569
1748
  [key: string]: string;
1570
1749
  };
1750
+ /**
1751
+ * <p>The channel's tier.</p>
1752
+ */
1753
+ Tier?: string;
1571
1754
  }
1572
1755
  export declare namespace DescribeChannelResponse {
1573
1756
  /**
@@ -1575,6 +1758,60 @@ export declare namespace DescribeChannelResponse {
1575
1758
  */
1576
1759
  const filterSensitiveLog: (obj: DescribeChannelResponse) => any;
1577
1760
  }
1761
+ export interface DescribeLiveSourceRequest {
1762
+ /**
1763
+ * <p>The identifier for the live source you are working on.</p>
1764
+ */
1765
+ LiveSourceName: string | undefined;
1766
+ /**
1767
+ * <p>The identifier for the source location you are working on.</p>
1768
+ */
1769
+ SourceLocationName: string | undefined;
1770
+ }
1771
+ export declare namespace DescribeLiveSourceRequest {
1772
+ /**
1773
+ * @internal
1774
+ */
1775
+ const filterSensitiveLog: (obj: DescribeLiveSourceRequest) => any;
1776
+ }
1777
+ export interface DescribeLiveSourceResponse {
1778
+ /**
1779
+ * <p>The ARN of the live source.</p>
1780
+ */
1781
+ Arn?: string;
1782
+ /**
1783
+ * <p>The timestamp that indicates when the live source was created.</p>
1784
+ */
1785
+ CreationTime?: Date;
1786
+ /**
1787
+ * <p>The HTTP package configurations.</p>
1788
+ */
1789
+ HttpPackageConfigurations?: HttpPackageConfiguration[];
1790
+ /**
1791
+ * <p>The timestamp that indicates when the live source was modified.</p>
1792
+ */
1793
+ LastModifiedTime?: Date;
1794
+ /**
1795
+ * <p>The name of the live source.</p>
1796
+ */
1797
+ LiveSourceName?: string;
1798
+ /**
1799
+ * <p>The name of the source location associated with the VOD source.</p>
1800
+ */
1801
+ SourceLocationName?: string;
1802
+ /**
1803
+ * <p>The tags assigned to the live source.</p>
1804
+ */
1805
+ Tags?: {
1806
+ [key: string]: string;
1807
+ };
1808
+ }
1809
+ export declare namespace DescribeLiveSourceResponse {
1810
+ /**
1811
+ * @internal
1812
+ */
1813
+ const filterSensitiveLog: (obj: DescribeLiveSourceResponse) => any;
1814
+ }
1578
1815
  export interface DescribeProgramRequest {
1579
1816
  /**
1580
1817
  * <p>The identifier for the channel you are working on.</p>
@@ -1608,6 +1845,10 @@ export interface DescribeProgramResponse {
1608
1845
  * <p>The timestamp of when the program was created.</p>
1609
1846
  */
1610
1847
  CreationTime?: Date;
1848
+ /**
1849
+ * <p>The name of the LiveSource for this Program.</p>
1850
+ */
1851
+ LiveSourceName?: string;
1611
1852
  /**
1612
1853
  * <p>The name of the program.</p>
1613
1854
  */
@@ -1668,6 +1909,9 @@ export interface DescribeSourceLocationResponse {
1668
1909
  * <p>The timestamp that indicates when the source location was last modified.</p>
1669
1910
  */
1670
1911
  LastModifiedTime?: Date;
1912
+ /**
1913
+ * <p>A list of the segment delivery configurations associated with this resource.</p>
1914
+ */
1671
1915
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
1672
1916
  /**
1673
1917
  * <p>The name of the source location.</p>
@@ -1716,7 +1960,7 @@ export interface DescribeVodSourceResponse {
1716
1960
  */
1717
1961
  HttpPackageConfigurations?: HttpPackageConfiguration[];
1718
1962
  /**
1719
- * <p>The ARN for the VOD source.</p>
1963
+ * <p>The last modified time of the VOD source.</p>
1720
1964
  */
1721
1965
  LastModifiedTime?: Date;
1722
1966
  /**
@@ -1790,7 +2034,7 @@ export declare namespace GetChannelScheduleRequest {
1790
2034
  }
1791
2035
  export interface GetChannelScheduleResponse {
1792
2036
  /**
1793
- * <p>An array of schedule entries for the channel.</p>
2037
+ * <p>A list of schedule entries for the channel.</p>
1794
2038
  */
1795
2039
  Items?: ScheduleEntry[];
1796
2040
  /**
@@ -1976,7 +2220,7 @@ export declare namespace ListAlertsRequest {
1976
2220
  }
1977
2221
  export interface ListAlertsResponse {
1978
2222
  /**
1979
- * <p>An array of alerts that are associated with this resource.</p>
2223
+ * <p>A list of alerts that are associated with this resource.</p>
1980
2224
  */
1981
2225
  Items?: Alert[];
1982
2226
  /**
@@ -2008,7 +2252,7 @@ export declare namespace ListChannelsRequest {
2008
2252
  }
2009
2253
  export interface ListChannelsResponse {
2010
2254
  /**
2011
- * <p>An array of channels that are associated with this account.</p>
2255
+ * <p>A list of channels that are associated with this account.</p>
2012
2256
  */
2013
2257
  Items?: Channel[];
2014
2258
  /**
@@ -2022,6 +2266,42 @@ export declare namespace ListChannelsResponse {
2022
2266
  */
2023
2267
  const filterSensitiveLog: (obj: ListChannelsResponse) => any;
2024
2268
  }
2269
+ export interface ListLiveSourcesRequest {
2270
+ /**
2271
+ * <p>Upper bound on number of records to return. The maximum number of results is 100.</p>
2272
+ */
2273
+ MaxResults?: number;
2274
+ /**
2275
+ * <p>Pagination token from the GET list request. Use the token to fetch the next page of results.</p>
2276
+ */
2277
+ NextToken?: string;
2278
+ /**
2279
+ * <p>The identifier for the source location you are working on.</p>
2280
+ */
2281
+ SourceLocationName: string | undefined;
2282
+ }
2283
+ export declare namespace ListLiveSourcesRequest {
2284
+ /**
2285
+ * @internal
2286
+ */
2287
+ const filterSensitiveLog: (obj: ListLiveSourcesRequest) => any;
2288
+ }
2289
+ export interface ListLiveSourcesResponse {
2290
+ /**
2291
+ * <p>Lists the live sources.</p>
2292
+ */
2293
+ Items?: LiveSource[];
2294
+ /**
2295
+ * <p>Pagination token from the list request. Use the token to fetch the next page of results.</p>
2296
+ */
2297
+ NextToken?: string;
2298
+ }
2299
+ export declare namespace ListLiveSourcesResponse {
2300
+ /**
2301
+ * @internal
2302
+ */
2303
+ const filterSensitiveLog: (obj: ListLiveSourcesResponse) => any;
2304
+ }
2025
2305
  export interface ListPlaybackConfigurationsRequest {
2026
2306
  /**
2027
2307
  * <p>Maximum number of records to return.</p>
@@ -2112,7 +2392,7 @@ export declare namespace ListSourceLocationsRequest {
2112
2392
  }
2113
2393
  export interface ListSourceLocationsResponse {
2114
2394
  /**
2115
- * <p>An array of source locations.</p>
2395
+ * <p>A list of source locations.</p>
2116
2396
  */
2117
2397
  Items?: SourceLocation[];
2118
2398
  /**
@@ -2505,6 +2785,10 @@ export interface UpdateChannelResponse {
2505
2785
  Tags?: {
2506
2786
  [key: string]: string;
2507
2787
  };
2788
+ /**
2789
+ * <p>The channel's tier.</p>
2790
+ */
2791
+ Tier?: string;
2508
2792
  }
2509
2793
  export declare namespace UpdateChannelResponse {
2510
2794
  /**
@@ -2512,6 +2796,64 @@ export declare namespace UpdateChannelResponse {
2512
2796
  */
2513
2797
  const filterSensitiveLog: (obj: UpdateChannelResponse) => any;
2514
2798
  }
2799
+ export interface UpdateLiveSourceRequest {
2800
+ /**
2801
+ * <p>A list of HTTP package configurations for the live source on this account.</p>
2802
+ */
2803
+ HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
2804
+ /**
2805
+ * <p>The identifier for the live source you are working on.</p>
2806
+ */
2807
+ LiveSourceName: string | undefined;
2808
+ /**
2809
+ * <p>The identifier for the source location you are working on.</p>
2810
+ */
2811
+ SourceLocationName: string | undefined;
2812
+ }
2813
+ export declare namespace UpdateLiveSourceRequest {
2814
+ /**
2815
+ * @internal
2816
+ */
2817
+ const filterSensitiveLog: (obj: UpdateLiveSourceRequest) => any;
2818
+ }
2819
+ export interface UpdateLiveSourceResponse {
2820
+ /**
2821
+ * <p>The ARN of the live source.</p>
2822
+ */
2823
+ Arn?: string;
2824
+ /**
2825
+ * <p>The timestamp that indicates when the live source was created.</p>
2826
+ */
2827
+ CreationTime?: Date;
2828
+ /**
2829
+ * <p>The HTTP package configurations.</p>
2830
+ */
2831
+ HttpPackageConfigurations?: HttpPackageConfiguration[];
2832
+ /**
2833
+ * <p>The timestamp that indicates when the live source was modified.</p>
2834
+ */
2835
+ LastModifiedTime?: Date;
2836
+ /**
2837
+ * <p>The name of the live source.</p>
2838
+ */
2839
+ LiveSourceName?: string;
2840
+ /**
2841
+ * <p>The name of the source location associated with the VOD source.</p>
2842
+ */
2843
+ SourceLocationName?: string;
2844
+ /**
2845
+ * <p>The tags assigned to the live source.</p>
2846
+ */
2847
+ Tags?: {
2848
+ [key: string]: string;
2849
+ };
2850
+ }
2851
+ export declare namespace UpdateLiveSourceResponse {
2852
+ /**
2853
+ * @internal
2854
+ */
2855
+ const filterSensitiveLog: (obj: UpdateLiveSourceResponse) => any;
2856
+ }
2515
2857
  export interface UpdateSourceLocationRequest {
2516
2858
  /**
2517
2859
  * <p>Access configuration parameters. Configures the type of authentication used to access content from your source location.</p>
@@ -2525,6 +2867,9 @@ export interface UpdateSourceLocationRequest {
2525
2867
  * <p>The HTTP configuration for the source location.</p>
2526
2868
  */
2527
2869
  HttpConfiguration: HttpConfiguration | undefined;
2870
+ /**
2871
+ * <p>A list of the segment delivery configurations associated with this resource.</p>
2872
+ */
2528
2873
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
2529
2874
  /**
2530
2875
  * <p>The identifier for the source location you are working on.</p>
@@ -2562,6 +2907,9 @@ export interface UpdateSourceLocationResponse {
2562
2907
  * <p>The timestamp that indicates when the source location was last modified.</p>
2563
2908
  */
2564
2909
  LastModifiedTime?: Date;
2910
+ /**
2911
+ * <p>A list of the segment delivery configurations associated with this resource.</p>
2912
+ */
2565
2913
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
2566
2914
  /**
2567
2915
  * <p>The name of the source location.</p>
@@ -2582,7 +2930,7 @@ export declare namespace UpdateSourceLocationResponse {
2582
2930
  }
2583
2931
  export interface UpdateVodSourceRequest {
2584
2932
  /**
2585
- * <p>An array of HTTP package configurations for the VOD source on this account.</p>
2933
+ * <p>A list of HTTP package configurations for the VOD source on this account.</p>
2586
2934
  */
2587
2935
  HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
2588
2936
  /**
@@ -2614,7 +2962,7 @@ export interface UpdateVodSourceResponse {
2614
2962
  */
2615
2963
  HttpPackageConfigurations?: HttpPackageConfiguration[];
2616
2964
  /**
2617
- * <p>The ARN for the VOD source.</p>
2965
+ * <p>The last modified time of the VOD source.</p>
2618
2966
  */
2619
2967
  LastModifiedTime?: Date;
2620
2968
  /**
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput } from "../commands/ListLiveSourcesCommand";
3
+ import { MediaTailorPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListLiveSources(config: MediaTailorPaginationConfiguration, input: ListLiveSourcesCommandInput, ...additionalArguments: any): Paginator<ListLiveSourcesCommandOutput>;
@@ -2,6 +2,7 @@ export * from "./GetChannelSchedulePaginator";
2
2
  export * from "./Interfaces";
3
3
  export * from "./ListAlertsPaginator";
4
4
  export * from "./ListChannelsPaginator";
5
+ export * from "./ListLiveSourcesPaginator";
5
6
  export * from "./ListPlaybackConfigurationsPaginator";
6
7
  export * from "./ListPrefetchSchedulesPaginator";
7
8
  export * from "./ListSourceLocationsPaginator";