aws-sdk-mediatailor 1.54.0 → 1.55.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +268 -7
- data/lib/aws-sdk-mediatailor/client_api.rb +139 -2
- data/lib/aws-sdk-mediatailor/types.rb +423 -22
- data/lib/aws-sdk-mediatailor.rb +1 -1
- metadata +2 -2
@@ -342,7 +342,7 @@ module Aws::MediaTailor
|
|
342
342
|
# By default, AWS Elemental MediaTailor uses Amazon CloudFront with
|
343
343
|
# default cache settings as its CDN for ad segments. To set up an
|
344
344
|
# alternate CDN, create a rule in your CDN for the origin
|
345
|
-
# ads.mediatailor.<region
|
345
|
+
# ads.mediatailor.<region>.amazonaws.com. Then specify the
|
346
346
|
# rule's name in this AdSegmentUrlPrefix. When AWS Elemental
|
347
347
|
# MediaTailor serves a manifest, it reports your CDN as the source for
|
348
348
|
# ad segments.
|
@@ -413,6 +413,11 @@ module Aws::MediaTailor
|
|
413
413
|
# The tags to assign to the channel.
|
414
414
|
# @return [Hash<String,String>]
|
415
415
|
#
|
416
|
+
# @!attribute [rw] tier
|
417
|
+
# The tier for this channel. STANDARD tier channels can contain live
|
418
|
+
# programs.
|
419
|
+
# @return [String]
|
420
|
+
#
|
416
421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Channel AWS API Documentation
|
417
422
|
#
|
418
423
|
class Channel < Struct.new(
|
@@ -424,7 +429,8 @@ module Aws::MediaTailor
|
|
424
429
|
:last_modified_time,
|
425
430
|
:outputs,
|
426
431
|
:playback_mode,
|
427
|
-
:tags
|
432
|
+
:tags,
|
433
|
+
:tier)
|
428
434
|
SENSITIVE = []
|
429
435
|
include Aws::Structure
|
430
436
|
end
|
@@ -519,6 +525,7 @@ module Aws::MediaTailor
|
|
519
525
|
# tags: {
|
520
526
|
# "__string" => "__string",
|
521
527
|
# },
|
528
|
+
# tier: "BASIC", # accepts BASIC, STANDARD
|
522
529
|
# }
|
523
530
|
#
|
524
531
|
# @!attribute [rw] channel_name
|
@@ -550,6 +557,10 @@ module Aws::MediaTailor
|
|
550
557
|
# The tags to assign to the channel.
|
551
558
|
# @return [Hash<String,String>]
|
552
559
|
#
|
560
|
+
# @!attribute [rw] tier
|
561
|
+
# The tier of the channel.
|
562
|
+
# @return [String]
|
563
|
+
#
|
553
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelRequest AWS API Documentation
|
554
565
|
#
|
555
566
|
class CreateChannelRequest < Struct.new(
|
@@ -557,7 +568,8 @@ module Aws::MediaTailor
|
|
557
568
|
:filler_slate,
|
558
569
|
:outputs,
|
559
570
|
:playback_mode,
|
560
|
-
:tags
|
571
|
+
:tags,
|
572
|
+
:tier)
|
561
573
|
SENSITIVE = []
|
562
574
|
include Aws::Structure
|
563
575
|
end
|
@@ -590,6 +602,9 @@ module Aws::MediaTailor
|
|
590
602
|
# @!attribute [rw] tags
|
591
603
|
# @return [Hash<String,String>]
|
592
604
|
#
|
605
|
+
# @!attribute [rw] tier
|
606
|
+
# @return [String]
|
607
|
+
#
|
593
608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelResponse AWS API Documentation
|
594
609
|
#
|
595
610
|
class CreateChannelResponse < Struct.new(
|
@@ -601,6 +616,89 @@ module Aws::MediaTailor
|
|
601
616
|
:last_modified_time,
|
602
617
|
:outputs,
|
603
618
|
:playback_mode,
|
619
|
+
:tags,
|
620
|
+
:tier)
|
621
|
+
SENSITIVE = []
|
622
|
+
include Aws::Structure
|
623
|
+
end
|
624
|
+
|
625
|
+
# The live source configuration parameters.
|
626
|
+
#
|
627
|
+
# @note When making an API call, you may pass CreateLiveSourceRequest
|
628
|
+
# data as a hash:
|
629
|
+
#
|
630
|
+
# {
|
631
|
+
# http_package_configurations: [ # required
|
632
|
+
# {
|
633
|
+
# path: "__string", # required
|
634
|
+
# source_group: "__string", # required
|
635
|
+
# type: "DASH", # required, accepts DASH, HLS
|
636
|
+
# },
|
637
|
+
# ],
|
638
|
+
# live_source_name: "__string", # required
|
639
|
+
# source_location_name: "__string", # required
|
640
|
+
# tags: {
|
641
|
+
# "__string" => "__string",
|
642
|
+
# },
|
643
|
+
# }
|
644
|
+
#
|
645
|
+
# @!attribute [rw] http_package_configurations
|
646
|
+
# A list of HTTP package configuration parameters for this live
|
647
|
+
# source.
|
648
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
649
|
+
#
|
650
|
+
# @!attribute [rw] live_source_name
|
651
|
+
# @return [String]
|
652
|
+
#
|
653
|
+
# @!attribute [rw] source_location_name
|
654
|
+
# @return [String]
|
655
|
+
#
|
656
|
+
# @!attribute [rw] tags
|
657
|
+
# The tags to assign to the live source.
|
658
|
+
# @return [Hash<String,String>]
|
659
|
+
#
|
660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateLiveSourceRequest AWS API Documentation
|
661
|
+
#
|
662
|
+
class CreateLiveSourceRequest < Struct.new(
|
663
|
+
:http_package_configurations,
|
664
|
+
:live_source_name,
|
665
|
+
:source_location_name,
|
666
|
+
:tags)
|
667
|
+
SENSITIVE = []
|
668
|
+
include Aws::Structure
|
669
|
+
end
|
670
|
+
|
671
|
+
# @!attribute [rw] arn
|
672
|
+
# @return [String]
|
673
|
+
#
|
674
|
+
# @!attribute [rw] creation_time
|
675
|
+
# @return [Time]
|
676
|
+
#
|
677
|
+
# @!attribute [rw] http_package_configurations
|
678
|
+
# The VOD source's HTTP package configuration settings.
|
679
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
680
|
+
#
|
681
|
+
# @!attribute [rw] last_modified_time
|
682
|
+
# @return [Time]
|
683
|
+
#
|
684
|
+
# @!attribute [rw] live_source_name
|
685
|
+
# @return [String]
|
686
|
+
#
|
687
|
+
# @!attribute [rw] source_location_name
|
688
|
+
# @return [String]
|
689
|
+
#
|
690
|
+
# @!attribute [rw] tags
|
691
|
+
# @return [Hash<String,String>]
|
692
|
+
#
|
693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateLiveSourceResponse AWS API Documentation
|
694
|
+
#
|
695
|
+
class CreateLiveSourceResponse < Struct.new(
|
696
|
+
:arn,
|
697
|
+
:creation_time,
|
698
|
+
:http_package_configurations,
|
699
|
+
:last_modified_time,
|
700
|
+
:live_source_name,
|
701
|
+
:source_location_name,
|
604
702
|
:tags)
|
605
703
|
SENSITIVE = []
|
606
704
|
include Aws::Structure
|
@@ -735,9 +833,11 @@ module Aws::MediaTailor
|
|
735
833
|
# },
|
736
834
|
# ],
|
737
835
|
# channel_name: "__string", # required
|
836
|
+
# live_source_name: "__string",
|
738
837
|
# program_name: "__string", # required
|
739
838
|
# schedule_configuration: { # required
|
740
839
|
# transition: { # required
|
840
|
+
# duration_millis: 1,
|
741
841
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
742
842
|
# relative_program: "__string",
|
743
843
|
# scheduled_start_time_millis: 1,
|
@@ -745,7 +845,7 @@ module Aws::MediaTailor
|
|
745
845
|
# },
|
746
846
|
# },
|
747
847
|
# source_location_name: "__string", # required
|
748
|
-
# vod_source_name: "__string",
|
848
|
+
# vod_source_name: "__string",
|
749
849
|
# }
|
750
850
|
#
|
751
851
|
# @!attribute [rw] ad_breaks
|
@@ -755,6 +855,10 @@ module Aws::MediaTailor
|
|
755
855
|
# @!attribute [rw] channel_name
|
756
856
|
# @return [String]
|
757
857
|
#
|
858
|
+
# @!attribute [rw] live_source_name
|
859
|
+
# The name of the LiveSource for this Program.
|
860
|
+
# @return [String]
|
861
|
+
#
|
758
862
|
# @!attribute [rw] program_name
|
759
863
|
# @return [String]
|
760
864
|
#
|
@@ -775,6 +879,7 @@ module Aws::MediaTailor
|
|
775
879
|
class CreateProgramRequest < Struct.new(
|
776
880
|
:ad_breaks,
|
777
881
|
:channel_name,
|
882
|
+
:live_source_name,
|
778
883
|
:program_name,
|
779
884
|
:schedule_configuration,
|
780
885
|
:source_location_name,
|
@@ -795,6 +900,9 @@ module Aws::MediaTailor
|
|
795
900
|
# @!attribute [rw] creation_time
|
796
901
|
# @return [Time]
|
797
902
|
#
|
903
|
+
# @!attribute [rw] live_source_name
|
904
|
+
# @return [String]
|
905
|
+
#
|
798
906
|
# @!attribute [rw] program_name
|
799
907
|
# @return [String]
|
800
908
|
#
|
@@ -814,6 +922,7 @@ module Aws::MediaTailor
|
|
814
922
|
:arn,
|
815
923
|
:channel_name,
|
816
924
|
:creation_time,
|
925
|
+
:live_source_name,
|
817
926
|
:program_name,
|
818
927
|
:scheduled_start_time,
|
819
928
|
:source_location_name,
|
@@ -868,8 +977,8 @@ module Aws::MediaTailor
|
|
868
977
|
# @return [Types::HttpConfiguration]
|
869
978
|
#
|
870
979
|
# @!attribute [rw] segment_delivery_configurations
|
871
|
-
#
|
872
|
-
#
|
980
|
+
# A list of the segment delivery configurations associated with this
|
981
|
+
# resource.
|
873
982
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
874
983
|
#
|
875
984
|
# @!attribute [rw] source_location_name
|
@@ -965,8 +1074,7 @@ module Aws::MediaTailor
|
|
965
1074
|
# }
|
966
1075
|
#
|
967
1076
|
# @!attribute [rw] http_package_configurations
|
968
|
-
#
|
969
|
-
# source.
|
1077
|
+
# A list of HTTP package configuration parameters for this VOD source.
|
970
1078
|
# @return [Array<Types::HttpPackageConfiguration>]
|
971
1079
|
#
|
972
1080
|
# @!attribute [rw] source_location_name
|
@@ -1229,6 +1337,35 @@ module Aws::MediaTailor
|
|
1229
1337
|
#
|
1230
1338
|
class DeleteChannelResponse < Aws::EmptyStructure; end
|
1231
1339
|
|
1340
|
+
# @note When making an API call, you may pass DeleteLiveSourceRequest
|
1341
|
+
# data as a hash:
|
1342
|
+
#
|
1343
|
+
# {
|
1344
|
+
# live_source_name: "__string", # required
|
1345
|
+
# source_location_name: "__string", # required
|
1346
|
+
# }
|
1347
|
+
#
|
1348
|
+
# @!attribute [rw] live_source_name
|
1349
|
+
# @return [String]
|
1350
|
+
#
|
1351
|
+
# @!attribute [rw] source_location_name
|
1352
|
+
# @return [String]
|
1353
|
+
#
|
1354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteLiveSourceRequest AWS API Documentation
|
1355
|
+
#
|
1356
|
+
class DeleteLiveSourceRequest < Struct.new(
|
1357
|
+
:live_source_name,
|
1358
|
+
:source_location_name)
|
1359
|
+
SENSITIVE = []
|
1360
|
+
include Aws::Structure
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
# This response includes only the "type" : "object" property.
|
1364
|
+
#
|
1365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteLiveSourceResponse AWS API Documentation
|
1366
|
+
#
|
1367
|
+
class DeleteLiveSourceResponse < Aws::EmptyStructure; end
|
1368
|
+
|
1232
1369
|
# @note When making an API call, you may pass DeletePlaybackConfigurationRequest
|
1233
1370
|
# data as a hash:
|
1234
1371
|
#
|
@@ -1420,6 +1557,10 @@ module Aws::MediaTailor
|
|
1420
1557
|
# The tags assigned to the channel.
|
1421
1558
|
# @return [Hash<String,String>]
|
1422
1559
|
#
|
1560
|
+
# @!attribute [rw] tier
|
1561
|
+
# The channel's tier.
|
1562
|
+
# @return [String]
|
1563
|
+
#
|
1423
1564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannelResponse AWS API Documentation
|
1424
1565
|
#
|
1425
1566
|
class DescribeChannelResponse < Struct.new(
|
@@ -1431,6 +1572,74 @@ module Aws::MediaTailor
|
|
1431
1572
|
:last_modified_time,
|
1432
1573
|
:outputs,
|
1433
1574
|
:playback_mode,
|
1575
|
+
:tags,
|
1576
|
+
:tier)
|
1577
|
+
SENSITIVE = []
|
1578
|
+
include Aws::Structure
|
1579
|
+
end
|
1580
|
+
|
1581
|
+
# @note When making an API call, you may pass DescribeLiveSourceRequest
|
1582
|
+
# data as a hash:
|
1583
|
+
#
|
1584
|
+
# {
|
1585
|
+
# live_source_name: "__string", # required
|
1586
|
+
# source_location_name: "__string", # required
|
1587
|
+
# }
|
1588
|
+
#
|
1589
|
+
# @!attribute [rw] live_source_name
|
1590
|
+
# @return [String]
|
1591
|
+
#
|
1592
|
+
# @!attribute [rw] source_location_name
|
1593
|
+
# @return [String]
|
1594
|
+
#
|
1595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeLiveSourceRequest AWS API Documentation
|
1596
|
+
#
|
1597
|
+
class DescribeLiveSourceRequest < Struct.new(
|
1598
|
+
:live_source_name,
|
1599
|
+
:source_location_name)
|
1600
|
+
SENSITIVE = []
|
1601
|
+
include Aws::Structure
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
# This response includes only the "type" : "object" property.
|
1605
|
+
#
|
1606
|
+
# @!attribute [rw] arn
|
1607
|
+
# The ARN of the live source.
|
1608
|
+
# @return [String]
|
1609
|
+
#
|
1610
|
+
# @!attribute [rw] creation_time
|
1611
|
+
# The timestamp that indicates when the live source was created.
|
1612
|
+
# @return [Time]
|
1613
|
+
#
|
1614
|
+
# @!attribute [rw] http_package_configurations
|
1615
|
+
# The HTTP package configurations.
|
1616
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
1617
|
+
#
|
1618
|
+
# @!attribute [rw] last_modified_time
|
1619
|
+
# The timestamp that indicates when the live source was modified.
|
1620
|
+
# @return [Time]
|
1621
|
+
#
|
1622
|
+
# @!attribute [rw] live_source_name
|
1623
|
+
# The name of the live source.
|
1624
|
+
# @return [String]
|
1625
|
+
#
|
1626
|
+
# @!attribute [rw] source_location_name
|
1627
|
+
# The name of the source location associated with the VOD source.
|
1628
|
+
# @return [String]
|
1629
|
+
#
|
1630
|
+
# @!attribute [rw] tags
|
1631
|
+
# The tags assigned to the live source.
|
1632
|
+
# @return [Hash<String,String>]
|
1633
|
+
#
|
1634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeLiveSourceResponse AWS API Documentation
|
1635
|
+
#
|
1636
|
+
class DescribeLiveSourceResponse < Struct.new(
|
1637
|
+
:arn,
|
1638
|
+
:creation_time,
|
1639
|
+
:http_package_configurations,
|
1640
|
+
:last_modified_time,
|
1641
|
+
:live_source_name,
|
1642
|
+
:source_location_name,
|
1434
1643
|
:tags)
|
1435
1644
|
SENSITIVE = []
|
1436
1645
|
include Aws::Structure
|
@@ -1477,6 +1686,10 @@ module Aws::MediaTailor
|
|
1477
1686
|
# The timestamp of when the program was created.
|
1478
1687
|
# @return [Time]
|
1479
1688
|
#
|
1689
|
+
# @!attribute [rw] live_source_name
|
1690
|
+
# The name of the LiveSource for this Program.
|
1691
|
+
# @return [String]
|
1692
|
+
#
|
1480
1693
|
# @!attribute [rw] program_name
|
1481
1694
|
# The name of the program.
|
1482
1695
|
# @return [String]
|
@@ -1503,6 +1716,7 @@ module Aws::MediaTailor
|
|
1503
1716
|
:arn,
|
1504
1717
|
:channel_name,
|
1505
1718
|
:creation_time,
|
1719
|
+
:live_source_name,
|
1506
1720
|
:program_name,
|
1507
1721
|
:scheduled_start_time,
|
1508
1722
|
:source_location_name,
|
@@ -1557,8 +1771,8 @@ module Aws::MediaTailor
|
|
1557
1771
|
# @return [Time]
|
1558
1772
|
#
|
1559
1773
|
# @!attribute [rw] segment_delivery_configurations
|
1560
|
-
#
|
1561
|
-
#
|
1774
|
+
# A list of the segment delivery configurations associated with this
|
1775
|
+
# resource.
|
1562
1776
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
1563
1777
|
#
|
1564
1778
|
# @!attribute [rw] source_location_name
|
@@ -1623,7 +1837,7 @@ module Aws::MediaTailor
|
|
1623
1837
|
# @return [Array<Types::HttpPackageConfiguration>]
|
1624
1838
|
#
|
1625
1839
|
# @!attribute [rw] last_modified_time
|
1626
|
-
# The
|
1840
|
+
# The last modified time of the VOD source.
|
1627
1841
|
# @return [Time]
|
1628
1842
|
#
|
1629
1843
|
# @!attribute [rw] source_location_name
|
@@ -1720,7 +1934,7 @@ module Aws::MediaTailor
|
|
1720
1934
|
# Returns the schedule entries for the channel.
|
1721
1935
|
#
|
1722
1936
|
# @!attribute [rw] items
|
1723
|
-
#
|
1937
|
+
# A list of schedule entries for the channel.
|
1724
1938
|
# @return [Array<Types::ScheduleEntry>]
|
1725
1939
|
#
|
1726
1940
|
# @!attribute [rw] next_token
|
@@ -2095,7 +2309,7 @@ module Aws::MediaTailor
|
|
2095
2309
|
# Lists the alerts for a given resource.
|
2096
2310
|
#
|
2097
2311
|
# @!attribute [rw] items
|
2098
|
-
#
|
2312
|
+
# A list of alerts that are associated with this resource.
|
2099
2313
|
# @return [Array<Types::Alert>]
|
2100
2314
|
#
|
2101
2315
|
# @!attribute [rw] next_token
|
@@ -2138,7 +2352,7 @@ module Aws::MediaTailor
|
|
2138
2352
|
# Returns a list of channels.
|
2139
2353
|
#
|
2140
2354
|
# @!attribute [rw] items
|
2141
|
-
#
|
2355
|
+
# A list of channels that are associated with this account.
|
2142
2356
|
# @return [Array<Types::Channel>]
|
2143
2357
|
#
|
2144
2358
|
# @!attribute [rw] next_token
|
@@ -2156,6 +2370,54 @@ module Aws::MediaTailor
|
|
2156
2370
|
include Aws::Structure
|
2157
2371
|
end
|
2158
2372
|
|
2373
|
+
# @note When making an API call, you may pass ListLiveSourcesRequest
|
2374
|
+
# data as a hash:
|
2375
|
+
#
|
2376
|
+
# {
|
2377
|
+
# max_results: 1,
|
2378
|
+
# next_token: "__string",
|
2379
|
+
# source_location_name: "__string", # required
|
2380
|
+
# }
|
2381
|
+
#
|
2382
|
+
# @!attribute [rw] max_results
|
2383
|
+
# @return [Integer]
|
2384
|
+
#
|
2385
|
+
# @!attribute [rw] next_token
|
2386
|
+
# @return [String]
|
2387
|
+
#
|
2388
|
+
# @!attribute [rw] source_location_name
|
2389
|
+
# @return [String]
|
2390
|
+
#
|
2391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListLiveSourcesRequest AWS API Documentation
|
2392
|
+
#
|
2393
|
+
class ListLiveSourcesRequest < Struct.new(
|
2394
|
+
:max_results,
|
2395
|
+
:next_token,
|
2396
|
+
:source_location_name)
|
2397
|
+
SENSITIVE = []
|
2398
|
+
include Aws::Structure
|
2399
|
+
end
|
2400
|
+
|
2401
|
+
# A list of your live sources.
|
2402
|
+
#
|
2403
|
+
# @!attribute [rw] items
|
2404
|
+
# Lists the live sources.
|
2405
|
+
# @return [Array<Types::LiveSource>]
|
2406
|
+
#
|
2407
|
+
# @!attribute [rw] next_token
|
2408
|
+
# Pagination token from the list request. Use the token to fetch the
|
2409
|
+
# next page of results.
|
2410
|
+
# @return [String]
|
2411
|
+
#
|
2412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListLiveSourcesResponse AWS API Documentation
|
2413
|
+
#
|
2414
|
+
class ListLiveSourcesResponse < Struct.new(
|
2415
|
+
:items,
|
2416
|
+
:next_token)
|
2417
|
+
SENSITIVE = []
|
2418
|
+
include Aws::Structure
|
2419
|
+
end
|
2420
|
+
|
2159
2421
|
# @note When making an API call, you may pass ListPlaybackConfigurationsRequest
|
2160
2422
|
# data as a hash:
|
2161
2423
|
#
|
@@ -2303,7 +2565,7 @@ module Aws::MediaTailor
|
|
2303
2565
|
# Lists the source locations.
|
2304
2566
|
#
|
2305
2567
|
# @!attribute [rw] items
|
2306
|
-
#
|
2568
|
+
# A list of source locations.
|
2307
2569
|
# @return [Array<Types::SourceLocation>]
|
2308
2570
|
#
|
2309
2571
|
# @!attribute [rw] next_token
|
@@ -2377,7 +2639,7 @@ module Aws::MediaTailor
|
|
2377
2639
|
include Aws::Structure
|
2378
2640
|
end
|
2379
2641
|
|
2380
|
-
#
|
2642
|
+
# A list of VOD sources.
|
2381
2643
|
#
|
2382
2644
|
# @!attribute [rw] items
|
2383
2645
|
# Lists the VOD sources.
|
@@ -2432,6 +2694,50 @@ module Aws::MediaTailor
|
|
2432
2694
|
include Aws::Structure
|
2433
2695
|
end
|
2434
2696
|
|
2697
|
+
# Live source configuration parameters.
|
2698
|
+
#
|
2699
|
+
# @!attribute [rw] arn
|
2700
|
+
# The ARN for the live source.
|
2701
|
+
# @return [String]
|
2702
|
+
#
|
2703
|
+
# @!attribute [rw] creation_time
|
2704
|
+
# The timestamp that indicates when the live source was created.
|
2705
|
+
# @return [Time]
|
2706
|
+
#
|
2707
|
+
# @!attribute [rw] http_package_configurations
|
2708
|
+
# The HTTP package configurations for the live source.
|
2709
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
2710
|
+
#
|
2711
|
+
# @!attribute [rw] last_modified_time
|
2712
|
+
# The timestamp that indicates when the live source was last modified.
|
2713
|
+
# @return [Time]
|
2714
|
+
#
|
2715
|
+
# @!attribute [rw] live_source_name
|
2716
|
+
# The name that's used to refer to a live source.
|
2717
|
+
# @return [String]
|
2718
|
+
#
|
2719
|
+
# @!attribute [rw] source_location_name
|
2720
|
+
# The name of the source location.
|
2721
|
+
# @return [String]
|
2722
|
+
#
|
2723
|
+
# @!attribute [rw] tags
|
2724
|
+
# The tags assigned to the live source.
|
2725
|
+
# @return [Hash<String,String>]
|
2726
|
+
#
|
2727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/LiveSource AWS API Documentation
|
2728
|
+
#
|
2729
|
+
class LiveSource < Struct.new(
|
2730
|
+
:arn,
|
2731
|
+
:creation_time,
|
2732
|
+
:http_package_configurations,
|
2733
|
+
:last_modified_time,
|
2734
|
+
:live_source_name,
|
2735
|
+
:source_location_name,
|
2736
|
+
:tags)
|
2737
|
+
SENSITIVE = []
|
2738
|
+
include Aws::Structure
|
2739
|
+
end
|
2740
|
+
|
2435
2741
|
# Returns Amazon CloudWatch log settings for a playback configuration.
|
2436
2742
|
#
|
2437
2743
|
# @!attribute [rw] percent_enabled
|
@@ -3230,6 +3536,7 @@ module Aws::MediaTailor
|
|
3230
3536
|
#
|
3231
3537
|
# {
|
3232
3538
|
# transition: { # required
|
3539
|
+
# duration_millis: 1,
|
3233
3540
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
3234
3541
|
# relative_program: "__string",
|
3235
3542
|
# scheduled_start_time_millis: 1,
|
@@ -3267,6 +3574,10 @@ module Aws::MediaTailor
|
|
3267
3574
|
# The name of the channel that uses this schedule.
|
3268
3575
|
# @return [String]
|
3269
3576
|
#
|
3577
|
+
# @!attribute [rw] live_source_name
|
3578
|
+
# The name of the live source used for the program.
|
3579
|
+
# @return [String]
|
3580
|
+
#
|
3270
3581
|
# @!attribute [rw] program_name
|
3271
3582
|
# The name of the program.
|
3272
3583
|
# @return [String]
|
@@ -3296,6 +3607,7 @@ module Aws::MediaTailor
|
|
3296
3607
|
:approximate_start_time,
|
3297
3608
|
:arn,
|
3298
3609
|
:channel_name,
|
3610
|
+
:live_source_name,
|
3299
3611
|
:program_name,
|
3300
3612
|
:schedule_ad_breaks,
|
3301
3613
|
:schedule_entry_type,
|
@@ -3352,6 +3664,12 @@ module Aws::MediaTailor
|
|
3352
3664
|
include Aws::Structure
|
3353
3665
|
end
|
3354
3666
|
|
3667
|
+
# The base URL of the host or path of the segment delivery server that
|
3668
|
+
# you're using to serve segments. This is typically a content delivery
|
3669
|
+
# network (CDN). The URL can be absolute or relative. To use an absolute
|
3670
|
+
# URL include the protocol, such as https://example.com/some/path. To
|
3671
|
+
# use a relative URL specify the relative path, such as /some/path*.
|
3672
|
+
#
|
3355
3673
|
# @note When making an API call, you may pass SegmentDeliveryConfiguration
|
3356
3674
|
# data as a hash:
|
3357
3675
|
#
|
@@ -3366,7 +3684,7 @@ module Aws::MediaTailor
|
|
3366
3684
|
# delivery network (CDN). The URL can be absolute or relative. To use
|
3367
3685
|
# an absolute URL include the protocol, such as
|
3368
3686
|
# https://example.com/some/path. To use a relative URL specify the
|
3369
|
-
# relative path, such as /some/path
|
3687
|
+
# relative path, such as /some/path*.
|
3370
3688
|
# @return [String]
|
3371
3689
|
#
|
3372
3690
|
# @!attribute [rw] name
|
@@ -3440,8 +3758,7 @@ module Aws::MediaTailor
|
|
3440
3758
|
# @return [Time]
|
3441
3759
|
#
|
3442
3760
|
# @!attribute [rw] segment_delivery_configurations
|
3443
|
-
#
|
3444
|
-
# location.
|
3761
|
+
# The segment delivery configurations for the source location.
|
3445
3762
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3446
3763
|
#
|
3447
3764
|
# @!attribute [rw] source_location_name
|
@@ -3590,12 +3907,17 @@ module Aws::MediaTailor
|
|
3590
3907
|
# data as a hash:
|
3591
3908
|
#
|
3592
3909
|
# {
|
3910
|
+
# duration_millis: 1,
|
3593
3911
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
3594
3912
|
# relative_program: "__string",
|
3595
3913
|
# scheduled_start_time_millis: 1,
|
3596
3914
|
# type: "__string", # required
|
3597
3915
|
# }
|
3598
3916
|
#
|
3917
|
+
# @!attribute [rw] duration_millis
|
3918
|
+
# The duration of the live program in seconds.
|
3919
|
+
# @return [Integer]
|
3920
|
+
#
|
3599
3921
|
# @!attribute [rw] relative_position
|
3600
3922
|
# The position where this program will be inserted relative to the
|
3601
3923
|
# RelativePosition.
|
@@ -3634,6 +3956,7 @@ module Aws::MediaTailor
|
|
3634
3956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Transition AWS API Documentation
|
3635
3957
|
#
|
3636
3958
|
class Transition < Struct.new(
|
3959
|
+
:duration_millis,
|
3637
3960
|
:relative_position,
|
3638
3961
|
:relative_program,
|
3639
3962
|
:scheduled_start_time_millis,
|
@@ -3745,6 +4068,9 @@ module Aws::MediaTailor
|
|
3745
4068
|
# @!attribute [rw] tags
|
3746
4069
|
# @return [Hash<String,String>]
|
3747
4070
|
#
|
4071
|
+
# @!attribute [rw] tier
|
4072
|
+
# @return [String]
|
4073
|
+
#
|
3748
4074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelResponse AWS API Documentation
|
3749
4075
|
#
|
3750
4076
|
class UpdateChannelResponse < Struct.new(
|
@@ -3756,6 +4082,81 @@ module Aws::MediaTailor
|
|
3756
4082
|
:last_modified_time,
|
3757
4083
|
:outputs,
|
3758
4084
|
:playback_mode,
|
4085
|
+
:tags,
|
4086
|
+
:tier)
|
4087
|
+
SENSITIVE = []
|
4088
|
+
include Aws::Structure
|
4089
|
+
end
|
4090
|
+
|
4091
|
+
# Updates a live source's configuration.
|
4092
|
+
#
|
4093
|
+
# @note When making an API call, you may pass UpdateLiveSourceRequest
|
4094
|
+
# data as a hash:
|
4095
|
+
#
|
4096
|
+
# {
|
4097
|
+
# http_package_configurations: [ # required
|
4098
|
+
# {
|
4099
|
+
# path: "__string", # required
|
4100
|
+
# source_group: "__string", # required
|
4101
|
+
# type: "DASH", # required, accepts DASH, HLS
|
4102
|
+
# },
|
4103
|
+
# ],
|
4104
|
+
# live_source_name: "__string", # required
|
4105
|
+
# source_location_name: "__string", # required
|
4106
|
+
# }
|
4107
|
+
#
|
4108
|
+
# @!attribute [rw] http_package_configurations
|
4109
|
+
# A list of HTTP package configurations for the live source on this
|
4110
|
+
# account.
|
4111
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
4112
|
+
#
|
4113
|
+
# @!attribute [rw] live_source_name
|
4114
|
+
# @return [String]
|
4115
|
+
#
|
4116
|
+
# @!attribute [rw] source_location_name
|
4117
|
+
# @return [String]
|
4118
|
+
#
|
4119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateLiveSourceRequest AWS API Documentation
|
4120
|
+
#
|
4121
|
+
class UpdateLiveSourceRequest < Struct.new(
|
4122
|
+
:http_package_configurations,
|
4123
|
+
:live_source_name,
|
4124
|
+
:source_location_name)
|
4125
|
+
SENSITIVE = []
|
4126
|
+
include Aws::Structure
|
4127
|
+
end
|
4128
|
+
|
4129
|
+
# @!attribute [rw] arn
|
4130
|
+
# @return [String]
|
4131
|
+
#
|
4132
|
+
# @!attribute [rw] creation_time
|
4133
|
+
# @return [Time]
|
4134
|
+
#
|
4135
|
+
# @!attribute [rw] http_package_configurations
|
4136
|
+
# The VOD source's HTTP package configuration settings.
|
4137
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
4138
|
+
#
|
4139
|
+
# @!attribute [rw] last_modified_time
|
4140
|
+
# @return [Time]
|
4141
|
+
#
|
4142
|
+
# @!attribute [rw] live_source_name
|
4143
|
+
# @return [String]
|
4144
|
+
#
|
4145
|
+
# @!attribute [rw] source_location_name
|
4146
|
+
# @return [String]
|
4147
|
+
#
|
4148
|
+
# @!attribute [rw] tags
|
4149
|
+
# @return [Hash<String,String>]
|
4150
|
+
#
|
4151
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateLiveSourceResponse AWS API Documentation
|
4152
|
+
#
|
4153
|
+
class UpdateLiveSourceResponse < Struct.new(
|
4154
|
+
:arn,
|
4155
|
+
:creation_time,
|
4156
|
+
:http_package_configurations,
|
4157
|
+
:last_modified_time,
|
4158
|
+
:live_source_name,
|
4159
|
+
:source_location_name,
|
3759
4160
|
:tags)
|
3760
4161
|
SENSITIVE = []
|
3761
4162
|
include Aws::Structure
|
@@ -3804,8 +4205,8 @@ module Aws::MediaTailor
|
|
3804
4205
|
# @return [Types::HttpConfiguration]
|
3805
4206
|
#
|
3806
4207
|
# @!attribute [rw] segment_delivery_configurations
|
3807
|
-
#
|
3808
|
-
#
|
4208
|
+
# A list of the segment delivery configurations associated with this
|
4209
|
+
# resource.
|
3809
4210
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3810
4211
|
#
|
3811
4212
|
# @!attribute [rw] source_location_name
|
@@ -3893,7 +4294,7 @@ module Aws::MediaTailor
|
|
3893
4294
|
# }
|
3894
4295
|
#
|
3895
4296
|
# @!attribute [rw] http_package_configurations
|
3896
|
-
#
|
4297
|
+
# A list of HTTP package configurations for the VOD source on this
|
3897
4298
|
# account.
|
3898
4299
|
# @return [Array<Types::HttpPackageConfiguration>]
|
3899
4300
|
#
|