aws-sdk-mediatailor 1.92.0 → 1.93.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +246 -233
- data/lib/aws-sdk-mediatailor/client_api.rb +50 -40
- data/lib/aws-sdk-mediatailor/types.rb +295 -241
- data/lib/aws-sdk-mediatailor.rb +1 -1
- data/sig/client.rbs +127 -122
- data/sig/types.rbs +48 -39
- metadata +4 -4
@@ -505,11 +505,12 @@ module Aws::MediaTailor
|
|
505
505
|
req.send_request(options)
|
506
506
|
end
|
507
507
|
|
508
|
-
#
|
508
|
+
# Defines where AWS Elemental MediaTailor sends logs for the playback
|
509
|
+
# configuration.
|
509
510
|
#
|
510
511
|
# @option params [required, Integer] :percent_enabled
|
511
512
|
# The percentage of session logs that MediaTailor sends to your
|
512
|
-
#
|
513
|
+
# CloudWatch Logs account. For example, if your playback configuration
|
513
514
|
# has 1000 sessions and percentEnabled is set to `60`, MediaTailor sends
|
514
515
|
# logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides
|
515
516
|
# at random which of the playback configuration sessions to send logs
|
@@ -558,9 +559,6 @@ module Aws::MediaTailor
|
|
558
559
|
#
|
559
560
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html
|
560
561
|
#
|
561
|
-
# @option params [Array<String>] :audiences
|
562
|
-
# The list of audiences defined in channel.
|
563
|
-
#
|
564
562
|
# @option params [required, String] :channel_name
|
565
563
|
# The name of the channel.
|
566
564
|
#
|
@@ -600,10 +598,12 @@ module Aws::MediaTailor
|
|
600
598
|
# The time-shifted viewing configuration you want to associate to the
|
601
599
|
# channel.
|
602
600
|
#
|
601
|
+
# @option params [Array<String>] :audiences
|
602
|
+
# The list of audiences defined in channel.
|
603
|
+
#
|
603
604
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
604
605
|
#
|
605
606
|
# * {Types::CreateChannelResponse#arn #arn} => String
|
606
|
-
# * {Types::CreateChannelResponse#audiences #audiences} => Array<String>
|
607
607
|
# * {Types::CreateChannelResponse#channel_name #channel_name} => String
|
608
608
|
# * {Types::CreateChannelResponse#channel_state #channel_state} => String
|
609
609
|
# * {Types::CreateChannelResponse#creation_time #creation_time} => Time
|
@@ -614,11 +614,11 @@ module Aws::MediaTailor
|
|
614
614
|
# * {Types::CreateChannelResponse#tags #tags} => Hash<String,String>
|
615
615
|
# * {Types::CreateChannelResponse#tier #tier} => String
|
616
616
|
# * {Types::CreateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
617
|
+
# * {Types::CreateChannelResponse#audiences #audiences} => Array<String>
|
617
618
|
#
|
618
619
|
# @example Request syntax with placeholder values
|
619
620
|
#
|
620
621
|
# resp = client.create_channel({
|
621
|
-
# audiences: ["String"],
|
622
622
|
# channel_name: "__string", # required
|
623
623
|
# filler_slate: {
|
624
624
|
# source_location_name: "__string",
|
@@ -633,8 +633,8 @@ module Aws::MediaTailor
|
|
633
633
|
# suggested_presentation_delay_seconds: 1,
|
634
634
|
# },
|
635
635
|
# hls_playlist_settings: {
|
636
|
-
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
637
636
|
# manifest_window_seconds: 1,
|
637
|
+
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
638
638
|
# },
|
639
639
|
# manifest_name: "__string", # required
|
640
640
|
# source_group: "__string", # required
|
@@ -648,13 +648,12 @@ module Aws::MediaTailor
|
|
648
648
|
# time_shift_configuration: {
|
649
649
|
# max_time_delay_seconds: 1, # required
|
650
650
|
# },
|
651
|
+
# audiences: ["String"],
|
651
652
|
# })
|
652
653
|
#
|
653
654
|
# @example Response structure
|
654
655
|
#
|
655
656
|
# resp.arn #=> String
|
656
|
-
# resp.audiences #=> Array
|
657
|
-
# resp.audiences[0] #=> String
|
658
657
|
# resp.channel_name #=> String
|
659
658
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
660
659
|
# resp.creation_time #=> Time
|
@@ -666,9 +665,9 @@ module Aws::MediaTailor
|
|
666
665
|
# resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
667
666
|
# resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
668
667
|
# resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
|
668
|
+
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
669
669
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
670
670
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
671
|
-
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
672
671
|
# resp.outputs[0].manifest_name #=> String
|
673
672
|
# resp.outputs[0].playback_url #=> String
|
674
673
|
# resp.outputs[0].source_group #=> String
|
@@ -677,6 +676,8 @@ module Aws::MediaTailor
|
|
677
676
|
# resp.tags["__string"] #=> String
|
678
677
|
# resp.tier #=> String
|
679
678
|
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
679
|
+
# resp.audiences #=> Array
|
680
|
+
# resp.audiences[0] #=> String
|
680
681
|
#
|
681
682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannel AWS API Documentation
|
682
683
|
#
|
@@ -863,9 +864,6 @@ module Aws::MediaTailor
|
|
863
864
|
# @option params [Array<Types::AdBreak>] :ad_breaks
|
864
865
|
# The ad break configuration settings.
|
865
866
|
#
|
866
|
-
# @option params [Array<Types::AudienceMedia>] :audience_media
|
867
|
-
# The list of AudienceMedia defined in program.
|
868
|
-
#
|
869
867
|
# @option params [required, String] :channel_name
|
870
868
|
# The name of the channel for this Program.
|
871
869
|
#
|
@@ -884,32 +882,29 @@ module Aws::MediaTailor
|
|
884
882
|
# @option params [String] :vod_source_name
|
885
883
|
# The name that's used to refer to a VOD source.
|
886
884
|
#
|
885
|
+
# @option params [Array<Types::AudienceMedia>] :audience_media
|
886
|
+
# The list of AudienceMedia defined in program.
|
887
|
+
#
|
887
888
|
# @return [Types::CreateProgramResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
888
889
|
#
|
889
890
|
# * {Types::CreateProgramResponse#ad_breaks #ad_breaks} => Array<Types::AdBreak>
|
890
891
|
# * {Types::CreateProgramResponse#arn #arn} => String
|
891
|
-
# * {Types::CreateProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
892
892
|
# * {Types::CreateProgramResponse#channel_name #channel_name} => String
|
893
|
-
# * {Types::CreateProgramResponse#clip_range #clip_range} => Types::ClipRange
|
894
893
|
# * {Types::CreateProgramResponse#creation_time #creation_time} => Time
|
895
|
-
# * {Types::CreateProgramResponse#duration_millis #duration_millis} => Integer
|
896
894
|
# * {Types::CreateProgramResponse#live_source_name #live_source_name} => String
|
897
895
|
# * {Types::CreateProgramResponse#program_name #program_name} => String
|
898
896
|
# * {Types::CreateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
899
897
|
# * {Types::CreateProgramResponse#source_location_name #source_location_name} => String
|
900
898
|
# * {Types::CreateProgramResponse#vod_source_name #vod_source_name} => String
|
899
|
+
# * {Types::CreateProgramResponse#clip_range #clip_range} => Types::ClipRange
|
900
|
+
# * {Types::CreateProgramResponse#duration_millis #duration_millis} => Integer
|
901
|
+
# * {Types::CreateProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
901
902
|
#
|
902
903
|
# @example Request syntax with placeholder values
|
903
904
|
#
|
904
905
|
# resp = client.create_program({
|
905
906
|
# ad_breaks: [
|
906
907
|
# {
|
907
|
-
# ad_break_metadata: [
|
908
|
-
# {
|
909
|
-
# key: "String", # required
|
910
|
-
# value: "String", # required
|
911
|
-
# },
|
912
|
-
# ],
|
913
908
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
914
909
|
# offset_millis: 1, # required
|
915
910
|
# slate: {
|
@@ -925,31 +920,58 @@ module Aws::MediaTailor
|
|
925
920
|
# time_signal_message: {
|
926
921
|
# segmentation_descriptors: [
|
927
922
|
# {
|
928
|
-
# segment_num: 1,
|
929
923
|
# segmentation_event_id: 1,
|
930
|
-
# segmentation_type_id: 1,
|
931
|
-
# segmentation_upid: "String",
|
932
924
|
# segmentation_upid_type: 1,
|
925
|
+
# segmentation_upid: "String",
|
926
|
+
# segmentation_type_id: 1,
|
927
|
+
# segment_num: 1,
|
933
928
|
# segments_expected: 1,
|
934
929
|
# sub_segment_num: 1,
|
935
930
|
# sub_segments_expected: 1,
|
936
931
|
# },
|
937
932
|
# ],
|
938
933
|
# },
|
934
|
+
# ad_break_metadata: [
|
935
|
+
# {
|
936
|
+
# key: "String", # required
|
937
|
+
# value: "String", # required
|
938
|
+
# },
|
939
|
+
# ],
|
939
940
|
# },
|
940
941
|
# ],
|
942
|
+
# channel_name: "__string", # required
|
943
|
+
# live_source_name: "__string",
|
944
|
+
# program_name: "__string", # required
|
945
|
+
# schedule_configuration: { # required
|
946
|
+
# transition: { # required
|
947
|
+
# duration_millis: 1,
|
948
|
+
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
949
|
+
# relative_program: "__string",
|
950
|
+
# scheduled_start_time_millis: 1,
|
951
|
+
# type: "__string", # required
|
952
|
+
# },
|
953
|
+
# clip_range: {
|
954
|
+
# end_offset_millis: 1,
|
955
|
+
# start_offset_millis: 1,
|
956
|
+
# },
|
957
|
+
# },
|
958
|
+
# source_location_name: "__string", # required
|
959
|
+
# vod_source_name: "__string",
|
941
960
|
# audience_media: [
|
942
961
|
# {
|
962
|
+
# audience: "__string",
|
943
963
|
# alternate_media: [
|
944
964
|
# {
|
965
|
+
# source_location_name: "__string",
|
966
|
+
# live_source_name: "__string",
|
967
|
+
# vod_source_name: "__string",
|
968
|
+
# clip_range: {
|
969
|
+
# end_offset_millis: 1,
|
970
|
+
# start_offset_millis: 1,
|
971
|
+
# },
|
972
|
+
# scheduled_start_time_millis: 1,
|
945
973
|
# ad_breaks: [
|
946
974
|
# {
|
947
|
-
# ad_break_metadata: [
|
948
|
-
# {
|
949
|
-
# key: "String", # required
|
950
|
-
# value: "String", # required
|
951
|
-
# },
|
952
|
-
# ],
|
953
975
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
954
976
|
# offset_millis: 1, # required
|
955
977
|
# slate: {
|
@@ -965,59 +987,35 @@ module Aws::MediaTailor
|
|
965
987
|
# time_signal_message: {
|
966
988
|
# segmentation_descriptors: [
|
967
989
|
# {
|
968
|
-
# segment_num: 1,
|
969
990
|
# segmentation_event_id: 1,
|
970
|
-
# segmentation_type_id: 1,
|
971
|
-
# segmentation_upid: "String",
|
972
991
|
# segmentation_upid_type: 1,
|
992
|
+
# segmentation_upid: "String",
|
993
|
+
# segmentation_type_id: 1,
|
994
|
+
# segment_num: 1,
|
973
995
|
# segments_expected: 1,
|
974
996
|
# sub_segment_num: 1,
|
975
997
|
# sub_segments_expected: 1,
|
976
998
|
# },
|
977
999
|
# ],
|
978
1000
|
# },
|
1001
|
+
# ad_break_metadata: [
|
1002
|
+
# {
|
1003
|
+
# key: "String", # required
|
1004
|
+
# value: "String", # required
|
1005
|
+
# },
|
1006
|
+
# ],
|
979
1007
|
# },
|
980
1008
|
# ],
|
981
|
-
# clip_range: {
|
982
|
-
# end_offset_millis: 1,
|
983
|
-
# start_offset_millis: 1,
|
984
|
-
# },
|
985
1009
|
# duration_millis: 1,
|
986
|
-
# live_source_name: "__string",
|
987
|
-
# scheduled_start_time_millis: 1,
|
988
|
-
# source_location_name: "__string",
|
989
|
-
# vod_source_name: "__string",
|
990
1010
|
# },
|
991
1011
|
# ],
|
992
|
-
# audience: "__string",
|
993
1012
|
# },
|
994
1013
|
# ],
|
995
|
-
# channel_name: "__string", # required
|
996
|
-
# live_source_name: "__string",
|
997
|
-
# program_name: "__string", # required
|
998
|
-
# schedule_configuration: { # required
|
999
|
-
# clip_range: {
|
1000
|
-
# end_offset_millis: 1,
|
1001
|
-
# start_offset_millis: 1,
|
1002
|
-
# },
|
1003
|
-
# transition: { # required
|
1004
|
-
# duration_millis: 1,
|
1005
|
-
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
1006
|
-
# relative_program: "__string",
|
1007
|
-
# scheduled_start_time_millis: 1,
|
1008
|
-
# type: "__string", # required
|
1009
|
-
# },
|
1010
|
-
# },
|
1011
|
-
# source_location_name: "__string", # required
|
1012
|
-
# vod_source_name: "__string",
|
1013
1014
|
# })
|
1014
1015
|
#
|
1015
1016
|
# @example Response structure
|
1016
1017
|
#
|
1017
1018
|
# resp.ad_breaks #=> Array
|
1018
|
-
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
1019
|
-
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
1020
|
-
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
1021
1019
|
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
1022
1020
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
1023
1021
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
@@ -1027,21 +1025,38 @@ module Aws::MediaTailor
|
|
1027
1025
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1028
1026
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1029
1027
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1030
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1031
1028
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1032
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1033
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1034
1029
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
1030
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1031
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1032
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1035
1033
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1036
1034
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1037
1035
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
1036
|
+
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
1037
|
+
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
1038
|
+
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
1038
1039
|
# resp.arn #=> String
|
1040
|
+
# resp.channel_name #=> String
|
1041
|
+
# resp.creation_time #=> Time
|
1042
|
+
# resp.live_source_name #=> String
|
1043
|
+
# resp.program_name #=> String
|
1044
|
+
# resp.scheduled_start_time #=> Time
|
1045
|
+
# resp.source_location_name #=> String
|
1046
|
+
# resp.vod_source_name #=> String
|
1047
|
+
# resp.clip_range.end_offset_millis #=> Integer
|
1048
|
+
# resp.clip_range.start_offset_millis #=> Integer
|
1049
|
+
# resp.duration_millis #=> Integer
|
1039
1050
|
# resp.audience_media #=> Array
|
1051
|
+
# resp.audience_media[0].audience #=> String
|
1040
1052
|
# resp.audience_media[0].alternate_media #=> Array
|
1053
|
+
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
1054
|
+
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
1055
|
+
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
1056
|
+
# resp.audience_media[0].alternate_media[0].clip_range.end_offset_millis #=> Integer
|
1057
|
+
# resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
|
1058
|
+
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
1041
1059
|
# resp.audience_media[0].alternate_media[0].ad_breaks #=> Array
|
1042
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
1043
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
1044
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
1045
1060
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
1046
1061
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
|
1047
1062
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
|
@@ -1051,32 +1066,18 @@ module Aws::MediaTailor
|
|
1051
1066
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1052
1067
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1053
1068
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1054
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1055
1069
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1056
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1057
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1058
1070
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
1071
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1072
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1073
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1059
1074
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1060
1075
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1061
1076
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
1062
|
-
# resp.audience_media[0].alternate_media[0].
|
1063
|
-
# resp.audience_media[0].alternate_media[0].
|
1077
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
1078
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
1079
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
1064
1080
|
# resp.audience_media[0].alternate_media[0].duration_millis #=> Integer
|
1065
|
-
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
1066
|
-
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
1067
|
-
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
1068
|
-
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
1069
|
-
# resp.audience_media[0].audience #=> String
|
1070
|
-
# resp.channel_name #=> String
|
1071
|
-
# resp.clip_range.end_offset_millis #=> Integer
|
1072
|
-
# resp.clip_range.start_offset_millis #=> Integer
|
1073
|
-
# resp.creation_time #=> Time
|
1074
|
-
# resp.duration_millis #=> Integer
|
1075
|
-
# resp.live_source_name #=> String
|
1076
|
-
# resp.program_name #=> String
|
1077
|
-
# resp.scheduled_start_time #=> Time
|
1078
|
-
# resp.source_location_name #=> String
|
1079
|
-
# resp.vod_source_name #=> String
|
1080
1081
|
#
|
1081
1082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgram AWS API Documentation
|
1082
1083
|
#
|
@@ -1497,18 +1498,18 @@ module Aws::MediaTailor
|
|
1497
1498
|
# @return [Types::DescribeChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1498
1499
|
#
|
1499
1500
|
# * {Types::DescribeChannelResponse#arn #arn} => String
|
1500
|
-
# * {Types::DescribeChannelResponse#audiences #audiences} => Array<String>
|
1501
1501
|
# * {Types::DescribeChannelResponse#channel_name #channel_name} => String
|
1502
1502
|
# * {Types::DescribeChannelResponse#channel_state #channel_state} => String
|
1503
1503
|
# * {Types::DescribeChannelResponse#creation_time #creation_time} => Time
|
1504
1504
|
# * {Types::DescribeChannelResponse#filler_slate #filler_slate} => Types::SlateSource
|
1505
1505
|
# * {Types::DescribeChannelResponse#last_modified_time #last_modified_time} => Time
|
1506
|
-
# * {Types::DescribeChannelResponse#log_configuration #log_configuration} => Types::LogConfigurationForChannel
|
1507
1506
|
# * {Types::DescribeChannelResponse#outputs #outputs} => Array<Types::ResponseOutputItem>
|
1508
1507
|
# * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
|
1509
1508
|
# * {Types::DescribeChannelResponse#tags #tags} => Hash<String,String>
|
1510
1509
|
# * {Types::DescribeChannelResponse#tier #tier} => String
|
1510
|
+
# * {Types::DescribeChannelResponse#log_configuration #log_configuration} => Types::LogConfigurationForChannel
|
1511
1511
|
# * {Types::DescribeChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
1512
|
+
# * {Types::DescribeChannelResponse#audiences #audiences} => Array<String>
|
1512
1513
|
#
|
1513
1514
|
# @example Request syntax with placeholder values
|
1514
1515
|
#
|
@@ -1519,24 +1520,20 @@ module Aws::MediaTailor
|
|
1519
1520
|
# @example Response structure
|
1520
1521
|
#
|
1521
1522
|
# resp.arn #=> String
|
1522
|
-
# resp.audiences #=> Array
|
1523
|
-
# resp.audiences[0] #=> String
|
1524
1523
|
# resp.channel_name #=> String
|
1525
1524
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
1526
1525
|
# resp.creation_time #=> Time
|
1527
1526
|
# resp.filler_slate.source_location_name #=> String
|
1528
1527
|
# resp.filler_slate.vod_source_name #=> String
|
1529
1528
|
# resp.last_modified_time #=> Time
|
1530
|
-
# resp.log_configuration.log_types #=> Array
|
1531
|
-
# resp.log_configuration.log_types[0] #=> String, one of "AS_RUN"
|
1532
1529
|
# resp.outputs #=> Array
|
1533
1530
|
# resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
1534
1531
|
# resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
1535
1532
|
# resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
1536
1533
|
# resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
|
1534
|
+
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
1537
1535
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
1538
1536
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
1539
|
-
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
1540
1537
|
# resp.outputs[0].manifest_name #=> String
|
1541
1538
|
# resp.outputs[0].playback_url #=> String
|
1542
1539
|
# resp.outputs[0].source_group #=> String
|
@@ -1544,7 +1541,11 @@ module Aws::MediaTailor
|
|
1544
1541
|
# resp.tags #=> Hash
|
1545
1542
|
# resp.tags["__string"] #=> String
|
1546
1543
|
# resp.tier #=> String
|
1544
|
+
# resp.log_configuration.log_types #=> Array
|
1545
|
+
# resp.log_configuration.log_types[0] #=> String, one of "AS_RUN"
|
1547
1546
|
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
1547
|
+
# resp.audiences #=> Array
|
1548
|
+
# resp.audiences[0] #=> String
|
1548
1549
|
#
|
1549
1550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannel AWS API Documentation
|
1550
1551
|
#
|
@@ -1620,16 +1621,16 @@ module Aws::MediaTailor
|
|
1620
1621
|
#
|
1621
1622
|
# * {Types::DescribeProgramResponse#ad_breaks #ad_breaks} => Array<Types::AdBreak>
|
1622
1623
|
# * {Types::DescribeProgramResponse#arn #arn} => String
|
1623
|
-
# * {Types::DescribeProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
1624
1624
|
# * {Types::DescribeProgramResponse#channel_name #channel_name} => String
|
1625
|
-
# * {Types::DescribeProgramResponse#clip_range #clip_range} => Types::ClipRange
|
1626
1625
|
# * {Types::DescribeProgramResponse#creation_time #creation_time} => Time
|
1627
|
-
# * {Types::DescribeProgramResponse#duration_millis #duration_millis} => Integer
|
1628
1626
|
# * {Types::DescribeProgramResponse#live_source_name #live_source_name} => String
|
1629
1627
|
# * {Types::DescribeProgramResponse#program_name #program_name} => String
|
1630
1628
|
# * {Types::DescribeProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
1631
1629
|
# * {Types::DescribeProgramResponse#source_location_name #source_location_name} => String
|
1632
1630
|
# * {Types::DescribeProgramResponse#vod_source_name #vod_source_name} => String
|
1631
|
+
# * {Types::DescribeProgramResponse#clip_range #clip_range} => Types::ClipRange
|
1632
|
+
# * {Types::DescribeProgramResponse#duration_millis #duration_millis} => Integer
|
1633
|
+
# * {Types::DescribeProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
1633
1634
|
#
|
1634
1635
|
# @example Request syntax with placeholder values
|
1635
1636
|
#
|
@@ -1641,9 +1642,6 @@ module Aws::MediaTailor
|
|
1641
1642
|
# @example Response structure
|
1642
1643
|
#
|
1643
1644
|
# resp.ad_breaks #=> Array
|
1644
|
-
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
1645
|
-
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
1646
|
-
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
1647
1645
|
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
1648
1646
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
1649
1647
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
@@ -1653,21 +1651,38 @@ module Aws::MediaTailor
|
|
1653
1651
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1654
1652
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1655
1653
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1656
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1657
1654
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1658
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1659
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1660
1655
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
1656
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1657
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1658
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1661
1659
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1662
1660
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1663
1661
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
1662
|
+
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
1663
|
+
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
1664
|
+
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
1664
1665
|
# resp.arn #=> String
|
1666
|
+
# resp.channel_name #=> String
|
1667
|
+
# resp.creation_time #=> Time
|
1668
|
+
# resp.live_source_name #=> String
|
1669
|
+
# resp.program_name #=> String
|
1670
|
+
# resp.scheduled_start_time #=> Time
|
1671
|
+
# resp.source_location_name #=> String
|
1672
|
+
# resp.vod_source_name #=> String
|
1673
|
+
# resp.clip_range.end_offset_millis #=> Integer
|
1674
|
+
# resp.clip_range.start_offset_millis #=> Integer
|
1675
|
+
# resp.duration_millis #=> Integer
|
1665
1676
|
# resp.audience_media #=> Array
|
1677
|
+
# resp.audience_media[0].audience #=> String
|
1666
1678
|
# resp.audience_media[0].alternate_media #=> Array
|
1679
|
+
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
1680
|
+
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
1681
|
+
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
1682
|
+
# resp.audience_media[0].alternate_media[0].clip_range.end_offset_millis #=> Integer
|
1683
|
+
# resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
|
1684
|
+
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
1667
1685
|
# resp.audience_media[0].alternate_media[0].ad_breaks #=> Array
|
1668
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
1669
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
1670
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
1671
1686
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
1672
1687
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
|
1673
1688
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
|
@@ -1677,32 +1692,18 @@ module Aws::MediaTailor
|
|
1677
1692
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1678
1693
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1679
1694
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1680
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1681
1695
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1682
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1683
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1684
1696
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
1697
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1698
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1699
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1685
1700
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1686
1701
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1687
1702
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
1688
|
-
# resp.audience_media[0].alternate_media[0].
|
1689
|
-
# resp.audience_media[0].alternate_media[0].
|
1703
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
1704
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
1705
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
1690
1706
|
# resp.audience_media[0].alternate_media[0].duration_millis #=> Integer
|
1691
|
-
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
1692
|
-
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
1693
|
-
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
1694
|
-
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
1695
|
-
# resp.audience_media[0].audience #=> String
|
1696
|
-
# resp.channel_name #=> String
|
1697
|
-
# resp.clip_range.end_offset_millis #=> Integer
|
1698
|
-
# resp.clip_range.start_offset_millis #=> Integer
|
1699
|
-
# resp.creation_time #=> Time
|
1700
|
-
# resp.duration_millis #=> Integer
|
1701
|
-
# resp.live_source_name #=> String
|
1702
|
-
# resp.program_name #=> String
|
1703
|
-
# resp.scheduled_start_time #=> Time
|
1704
|
-
# resp.source_location_name #=> String
|
1705
|
-
# resp.vod_source_name #=> String
|
1706
1707
|
#
|
1707
1708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeProgram AWS API Documentation
|
1708
1709
|
#
|
@@ -1852,9 +1853,6 @@ module Aws::MediaTailor
|
|
1852
1853
|
|
1853
1854
|
# Retrieves information about your channel's schedule.
|
1854
1855
|
#
|
1855
|
-
# @option params [String] :audience
|
1856
|
-
# The single audience for GetChannelScheduleRequest.
|
1857
|
-
#
|
1858
1856
|
# @option params [required, String] :channel_name
|
1859
1857
|
# The name of the channel associated with this Channel Schedule.
|
1860
1858
|
#
|
@@ -1881,6 +1879,9 @@ module Aws::MediaTailor
|
|
1881
1879
|
# If the previous response didn't include a `NextToken` element, there
|
1882
1880
|
# are no more channel schedules to get.
|
1883
1881
|
#
|
1882
|
+
# @option params [String] :audience
|
1883
|
+
# The single audience for GetChannelScheduleRequest.
|
1884
|
+
#
|
1884
1885
|
# @return [Types::GetChannelScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1885
1886
|
#
|
1886
1887
|
# * {Types::GetChannelScheduleResponse#items #items} => Array<Types::ScheduleEntry>
|
@@ -1891,11 +1892,11 @@ module Aws::MediaTailor
|
|
1891
1892
|
# @example Request syntax with placeholder values
|
1892
1893
|
#
|
1893
1894
|
# resp = client.get_channel_schedule({
|
1894
|
-
# audience: "__string",
|
1895
1895
|
# channel_name: "__string", # required
|
1896
1896
|
# duration_minutes: "__string",
|
1897
1897
|
# max_results: 1,
|
1898
1898
|
# next_token: "__string",
|
1899
|
+
# audience: "__string",
|
1899
1900
|
# })
|
1900
1901
|
#
|
1901
1902
|
# @example Response structure
|
@@ -1904,8 +1905,6 @@ module Aws::MediaTailor
|
|
1904
1905
|
# resp.items[0].approximate_duration_seconds #=> Integer
|
1905
1906
|
# resp.items[0].approximate_start_time #=> Time
|
1906
1907
|
# resp.items[0].arn #=> String
|
1907
|
-
# resp.items[0].audiences #=> Array
|
1908
|
-
# resp.items[0].audiences[0] #=> String
|
1909
1908
|
# resp.items[0].channel_name #=> String
|
1910
1909
|
# resp.items[0].live_source_name #=> String
|
1911
1910
|
# resp.items[0].program_name #=> String
|
@@ -1917,6 +1916,8 @@ module Aws::MediaTailor
|
|
1917
1916
|
# resp.items[0].schedule_entry_type #=> String, one of "PROGRAM", "FILLER_SLATE", "ALTERNATE_MEDIA"
|
1918
1917
|
# resp.items[0].source_location_name #=> String
|
1919
1918
|
# resp.items[0].vod_source_name #=> String
|
1919
|
+
# resp.items[0].audiences #=> Array
|
1920
|
+
# resp.items[0].audiences[0] #=> String
|
1920
1921
|
# resp.next_token #=> String
|
1921
1922
|
#
|
1922
1923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelSchedule AWS API Documentation
|
@@ -1961,6 +1962,7 @@ module Aws::MediaTailor
|
|
1961
1962
|
# * {Types::GetPlaybackConfigurationResponse#tags #tags} => Hash<String,String>
|
1962
1963
|
# * {Types::GetPlaybackConfigurationResponse#transcode_profile_name #transcode_profile_name} => String
|
1963
1964
|
# * {Types::GetPlaybackConfigurationResponse#video_content_source_url #video_content_source_url} => String
|
1965
|
+
# * {Types::GetPlaybackConfigurationResponse#ad_conditioning_configuration #ad_conditioning_configuration} => Types::AdConditioningConfiguration
|
1964
1966
|
#
|
1965
1967
|
# @example Request syntax with placeholder values
|
1966
1968
|
#
|
@@ -1971,9 +1973,9 @@ module Aws::MediaTailor
|
|
1971
1973
|
# @example Response structure
|
1972
1974
|
#
|
1973
1975
|
# resp.ad_decision_server_url #=> String
|
1974
|
-
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
1975
1976
|
# resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
|
1976
1977
|
# resp.avail_suppression.value #=> String
|
1978
|
+
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
1977
1979
|
# resp.bumper.end_url #=> String
|
1978
1980
|
# resp.bumper.start_url #=> String
|
1979
1981
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
@@ -2000,6 +2002,7 @@ module Aws::MediaTailor
|
|
2000
2002
|
# resp.tags["__string"] #=> String
|
2001
2003
|
# resp.transcode_profile_name #=> String
|
2002
2004
|
# resp.video_content_source_url #=> String
|
2005
|
+
# resp.ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
|
2003
2006
|
#
|
2004
2007
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPlaybackConfiguration AWS API Documentation
|
2005
2008
|
#
|
@@ -2108,11 +2111,11 @@ module Aws::MediaTailor
|
|
2108
2111
|
# resp.items #=> Array
|
2109
2112
|
# resp.items[0].alert_code #=> String
|
2110
2113
|
# resp.items[0].alert_message #=> String
|
2111
|
-
# resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
|
2112
2114
|
# resp.items[0].last_modified_time #=> Time
|
2113
2115
|
# resp.items[0].related_resource_arns #=> Array
|
2114
2116
|
# resp.items[0].related_resource_arns[0] #=> String
|
2115
2117
|
# resp.items[0].resource_arn #=> String
|
2118
|
+
# resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
|
2116
2119
|
# resp.next_token #=> String
|
2117
2120
|
#
|
2118
2121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlerts AWS API Documentation
|
@@ -2155,24 +2158,20 @@ module Aws::MediaTailor
|
|
2155
2158
|
#
|
2156
2159
|
# resp.items #=> Array
|
2157
2160
|
# resp.items[0].arn #=> String
|
2158
|
-
# resp.items[0].audiences #=> Array
|
2159
|
-
# resp.items[0].audiences[0] #=> String
|
2160
2161
|
# resp.items[0].channel_name #=> String
|
2161
2162
|
# resp.items[0].channel_state #=> String
|
2162
2163
|
# resp.items[0].creation_time #=> Time
|
2163
2164
|
# resp.items[0].filler_slate.source_location_name #=> String
|
2164
2165
|
# resp.items[0].filler_slate.vod_source_name #=> String
|
2165
2166
|
# resp.items[0].last_modified_time #=> Time
|
2166
|
-
# resp.items[0].log_configuration.log_types #=> Array
|
2167
|
-
# resp.items[0].log_configuration.log_types[0] #=> String, one of "AS_RUN"
|
2168
2167
|
# resp.items[0].outputs #=> Array
|
2169
2168
|
# resp.items[0].outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
2170
2169
|
# resp.items[0].outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
2171
2170
|
# resp.items[0].outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
2172
2171
|
# resp.items[0].outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
|
2172
|
+
# resp.items[0].outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
2173
2173
|
# resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
2174
2174
|
# resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
2175
|
-
# resp.items[0].outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
2176
2175
|
# resp.items[0].outputs[0].manifest_name #=> String
|
2177
2176
|
# resp.items[0].outputs[0].playback_url #=> String
|
2178
2177
|
# resp.items[0].outputs[0].source_group #=> String
|
@@ -2180,6 +2179,10 @@ module Aws::MediaTailor
|
|
2180
2179
|
# resp.items[0].tags #=> Hash
|
2181
2180
|
# resp.items[0].tags["__string"] #=> String
|
2182
2181
|
# resp.items[0].tier #=> String
|
2182
|
+
# resp.items[0].log_configuration.log_types #=> Array
|
2183
|
+
# resp.items[0].log_configuration.log_types[0] #=> String, one of "AS_RUN"
|
2184
|
+
# resp.items[0].audiences #=> Array
|
2185
|
+
# resp.items[0].audiences[0] #=> String
|
2183
2186
|
# resp.next_token #=> String
|
2184
2187
|
#
|
2185
2188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListChannels AWS API Documentation
|
@@ -2284,9 +2287,9 @@ module Aws::MediaTailor
|
|
2284
2287
|
#
|
2285
2288
|
# resp.items #=> Array
|
2286
2289
|
# resp.items[0].ad_decision_server_url #=> String
|
2287
|
-
# resp.items[0].avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2288
2290
|
# resp.items[0].avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
|
2289
2291
|
# resp.items[0].avail_suppression.value #=> String
|
2292
|
+
# resp.items[0].avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2290
2293
|
# resp.items[0].bumper.end_url #=> String
|
2291
2294
|
# resp.items[0].bumper.start_url #=> String
|
2292
2295
|
# resp.items[0].cdn_configuration.ad_segment_url_prefix #=> String
|
@@ -2313,6 +2316,7 @@ module Aws::MediaTailor
|
|
2313
2316
|
# resp.items[0].tags["__string"] #=> String
|
2314
2317
|
# resp.items[0].transcode_profile_name #=> String
|
2315
2318
|
# resp.items[0].video_content_source_url #=> String
|
2319
|
+
# resp.items[0].ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
|
2316
2320
|
# resp.next_token #=> String
|
2317
2321
|
#
|
2318
2322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListPlaybackConfigurations AWS API Documentation
|
@@ -2616,7 +2620,7 @@ module Aws::MediaTailor
|
|
2616
2620
|
#
|
2617
2621
|
#
|
2618
2622
|
#
|
2619
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
2623
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
2620
2624
|
#
|
2621
2625
|
# @option params [Types::DashConfigurationForPut] :dash_configuration
|
2622
2626
|
# The configuration for DASH content.
|
@@ -2683,6 +2687,10 @@ module Aws::MediaTailor
|
|
2683
2687
|
# The URL prefix for the parent manifest for the stream, minus the asset
|
2684
2688
|
# ID. The maximum length is 512 characters.
|
2685
2689
|
#
|
2690
|
+
# @option params [Types::AdConditioningConfiguration] :ad_conditioning_configuration
|
2691
|
+
# The setting that indicates what conditioning MediaTailor will perform
|
2692
|
+
# on ads that the ad decision server (ADS) returns.
|
2693
|
+
#
|
2686
2694
|
# @return [Types::PutPlaybackConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2687
2695
|
#
|
2688
2696
|
# * {Types::PutPlaybackConfigurationResponse#ad_decision_server_url #ad_decision_server_url} => String
|
@@ -2705,15 +2713,16 @@ module Aws::MediaTailor
|
|
2705
2713
|
# * {Types::PutPlaybackConfigurationResponse#tags #tags} => Hash<String,String>
|
2706
2714
|
# * {Types::PutPlaybackConfigurationResponse#transcode_profile_name #transcode_profile_name} => String
|
2707
2715
|
# * {Types::PutPlaybackConfigurationResponse#video_content_source_url #video_content_source_url} => String
|
2716
|
+
# * {Types::PutPlaybackConfigurationResponse#ad_conditioning_configuration #ad_conditioning_configuration} => Types::AdConditioningConfiguration
|
2708
2717
|
#
|
2709
2718
|
# @example Request syntax with placeholder values
|
2710
2719
|
#
|
2711
2720
|
# resp = client.put_playback_configuration({
|
2712
2721
|
# ad_decision_server_url: "__string",
|
2713
2722
|
# avail_suppression: {
|
2714
|
-
# fill_policy: "FULL_AVAIL_ONLY", # accepts FULL_AVAIL_ONLY, PARTIAL_AVAIL
|
2715
2723
|
# mode: "OFF", # accepts OFF, BEHIND_LIVE_EDGE, AFTER_LIVE_EDGE
|
2716
2724
|
# value: "__string",
|
2725
|
+
# fill_policy: "FULL_AVAIL_ONLY", # accepts FULL_AVAIL_ONLY, PARTIAL_AVAIL
|
2717
2726
|
# },
|
2718
2727
|
# bumper: {
|
2719
2728
|
# end_url: "__string",
|
@@ -2750,14 +2759,17 @@ module Aws::MediaTailor
|
|
2750
2759
|
# },
|
2751
2760
|
# transcode_profile_name: "__string",
|
2752
2761
|
# video_content_source_url: "__string",
|
2762
|
+
# ad_conditioning_configuration: {
|
2763
|
+
# streaming_media_file_conditioning: "TRANSCODE", # required, accepts TRANSCODE, NONE
|
2764
|
+
# },
|
2753
2765
|
# })
|
2754
2766
|
#
|
2755
2767
|
# @example Response structure
|
2756
2768
|
#
|
2757
2769
|
# resp.ad_decision_server_url #=> String
|
2758
|
-
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2759
2770
|
# resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
|
2760
2771
|
# resp.avail_suppression.value #=> String
|
2772
|
+
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2761
2773
|
# resp.bumper.end_url #=> String
|
2762
2774
|
# resp.bumper.start_url #=> String
|
2763
2775
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
@@ -2784,6 +2796,7 @@ module Aws::MediaTailor
|
|
2784
2796
|
# resp.tags["__string"] #=> String
|
2785
2797
|
# resp.transcode_profile_name #=> String
|
2786
2798
|
# resp.video_content_source_url #=> String
|
2799
|
+
# resp.ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
|
2787
2800
|
#
|
2788
2801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfiguration AWS API Documentation
|
2789
2802
|
#
|
@@ -2923,9 +2936,6 @@ module Aws::MediaTailor
|
|
2923
2936
|
#
|
2924
2937
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html
|
2925
2938
|
#
|
2926
|
-
# @option params [Array<String>] :audiences
|
2927
|
-
# The list of audiences defined in channel.
|
2928
|
-
#
|
2929
2939
|
# @option params [required, String] :channel_name
|
2930
2940
|
# The name of the channel.
|
2931
2941
|
#
|
@@ -2942,10 +2952,12 @@ module Aws::MediaTailor
|
|
2942
2952
|
# The time-shifted viewing configuration you want to associate to the
|
2943
2953
|
# channel.
|
2944
2954
|
#
|
2955
|
+
# @option params [Array<String>] :audiences
|
2956
|
+
# The list of audiences defined in channel.
|
2957
|
+
#
|
2945
2958
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2946
2959
|
#
|
2947
2960
|
# * {Types::UpdateChannelResponse#arn #arn} => String
|
2948
|
-
# * {Types::UpdateChannelResponse#audiences #audiences} => Array<String>
|
2949
2961
|
# * {Types::UpdateChannelResponse#channel_name #channel_name} => String
|
2950
2962
|
# * {Types::UpdateChannelResponse#channel_state #channel_state} => String
|
2951
2963
|
# * {Types::UpdateChannelResponse#creation_time #creation_time} => Time
|
@@ -2956,11 +2968,11 @@ module Aws::MediaTailor
|
|
2956
2968
|
# * {Types::UpdateChannelResponse#tags #tags} => Hash<String,String>
|
2957
2969
|
# * {Types::UpdateChannelResponse#tier #tier} => String
|
2958
2970
|
# * {Types::UpdateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
2971
|
+
# * {Types::UpdateChannelResponse#audiences #audiences} => Array<String>
|
2959
2972
|
#
|
2960
2973
|
# @example Request syntax with placeholder values
|
2961
2974
|
#
|
2962
2975
|
# resp = client.update_channel({
|
2963
|
-
# audiences: ["String"],
|
2964
2976
|
# channel_name: "__string", # required
|
2965
2977
|
# filler_slate: {
|
2966
2978
|
# source_location_name: "__string",
|
@@ -2975,8 +2987,8 @@ module Aws::MediaTailor
|
|
2975
2987
|
# suggested_presentation_delay_seconds: 1,
|
2976
2988
|
# },
|
2977
2989
|
# hls_playlist_settings: {
|
2978
|
-
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
2979
2990
|
# manifest_window_seconds: 1,
|
2991
|
+
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
2980
2992
|
# },
|
2981
2993
|
# manifest_name: "__string", # required
|
2982
2994
|
# source_group: "__string", # required
|
@@ -2985,13 +2997,12 @@ module Aws::MediaTailor
|
|
2985
2997
|
# time_shift_configuration: {
|
2986
2998
|
# max_time_delay_seconds: 1, # required
|
2987
2999
|
# },
|
3000
|
+
# audiences: ["String"],
|
2988
3001
|
# })
|
2989
3002
|
#
|
2990
3003
|
# @example Response structure
|
2991
3004
|
#
|
2992
3005
|
# resp.arn #=> String
|
2993
|
-
# resp.audiences #=> Array
|
2994
|
-
# resp.audiences[0] #=> String
|
2995
3006
|
# resp.channel_name #=> String
|
2996
3007
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
2997
3008
|
# resp.creation_time #=> Time
|
@@ -3003,9 +3014,9 @@ module Aws::MediaTailor
|
|
3003
3014
|
# resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
3004
3015
|
# resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
3005
3016
|
# resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
|
3017
|
+
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
3006
3018
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
3007
3019
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
3008
|
-
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
3009
3020
|
# resp.outputs[0].manifest_name #=> String
|
3010
3021
|
# resp.outputs[0].playback_url #=> String
|
3011
3022
|
# resp.outputs[0].source_group #=> String
|
@@ -3014,6 +3025,8 @@ module Aws::MediaTailor
|
|
3014
3025
|
# resp.tags["__string"] #=> String
|
3015
3026
|
# resp.tier #=> String
|
3016
3027
|
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
3028
|
+
# resp.audiences #=> Array
|
3029
|
+
# resp.audiences[0] #=> String
|
3017
3030
|
#
|
3018
3031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannel AWS API Documentation
|
3019
3032
|
#
|
@@ -3088,9 +3101,6 @@ module Aws::MediaTailor
|
|
3088
3101
|
# @option params [Array<Types::AdBreak>] :ad_breaks
|
3089
3102
|
# The ad break configuration settings.
|
3090
3103
|
#
|
3091
|
-
# @option params [Array<Types::AudienceMedia>] :audience_media
|
3092
|
-
# The list of AudienceMedia defined in program.
|
3093
|
-
#
|
3094
3104
|
# @option params [required, String] :channel_name
|
3095
3105
|
# The name of the channel for this Program.
|
3096
3106
|
#
|
@@ -3100,32 +3110,29 @@ module Aws::MediaTailor
|
|
3100
3110
|
# @option params [required, Types::UpdateProgramScheduleConfiguration] :schedule_configuration
|
3101
3111
|
# The schedule configuration settings.
|
3102
3112
|
#
|
3113
|
+
# @option params [Array<Types::AudienceMedia>] :audience_media
|
3114
|
+
# The list of AudienceMedia defined in program.
|
3115
|
+
#
|
3103
3116
|
# @return [Types::UpdateProgramResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3104
3117
|
#
|
3105
3118
|
# * {Types::UpdateProgramResponse#ad_breaks #ad_breaks} => Array<Types::AdBreak>
|
3106
3119
|
# * {Types::UpdateProgramResponse#arn #arn} => String
|
3107
|
-
# * {Types::UpdateProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
3108
3120
|
# * {Types::UpdateProgramResponse#channel_name #channel_name} => String
|
3109
|
-
# * {Types::UpdateProgramResponse#clip_range #clip_range} => Types::ClipRange
|
3110
3121
|
# * {Types::UpdateProgramResponse#creation_time #creation_time} => Time
|
3111
|
-
# * {Types::UpdateProgramResponse#duration_millis #duration_millis} => Integer
|
3112
|
-
# * {Types::UpdateProgramResponse#live_source_name #live_source_name} => String
|
3113
3122
|
# * {Types::UpdateProgramResponse#program_name #program_name} => String
|
3114
|
-
# * {Types::UpdateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
3115
3123
|
# * {Types::UpdateProgramResponse#source_location_name #source_location_name} => String
|
3116
3124
|
# * {Types::UpdateProgramResponse#vod_source_name #vod_source_name} => String
|
3125
|
+
# * {Types::UpdateProgramResponse#live_source_name #live_source_name} => String
|
3126
|
+
# * {Types::UpdateProgramResponse#clip_range #clip_range} => Types::ClipRange
|
3127
|
+
# * {Types::UpdateProgramResponse#duration_millis #duration_millis} => Integer
|
3128
|
+
# * {Types::UpdateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
3129
|
+
# * {Types::UpdateProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
3117
3130
|
#
|
3118
3131
|
# @example Request syntax with placeholder values
|
3119
3132
|
#
|
3120
3133
|
# resp = client.update_program({
|
3121
3134
|
# ad_breaks: [
|
3122
3135
|
# {
|
3123
|
-
# ad_break_metadata: [
|
3124
|
-
# {
|
3125
|
-
# key: "String", # required
|
3126
|
-
# value: "String", # required
|
3127
|
-
# },
|
3128
|
-
# ],
|
3129
3136
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
3130
3137
|
# offset_millis: 1, # required
|
3131
3138
|
# slate: {
|
@@ -3141,31 +3148,52 @@ module Aws::MediaTailor
|
|
3141
3148
|
# time_signal_message: {
|
3142
3149
|
# segmentation_descriptors: [
|
3143
3150
|
# {
|
3144
|
-
# segment_num: 1,
|
3145
3151
|
# segmentation_event_id: 1,
|
3146
|
-
# segmentation_type_id: 1,
|
3147
|
-
# segmentation_upid: "String",
|
3148
3152
|
# segmentation_upid_type: 1,
|
3153
|
+
# segmentation_upid: "String",
|
3154
|
+
# segmentation_type_id: 1,
|
3155
|
+
# segment_num: 1,
|
3149
3156
|
# segments_expected: 1,
|
3150
3157
|
# sub_segment_num: 1,
|
3151
3158
|
# sub_segments_expected: 1,
|
3152
3159
|
# },
|
3153
3160
|
# ],
|
3154
3161
|
# },
|
3162
|
+
# ad_break_metadata: [
|
3163
|
+
# {
|
3164
|
+
# key: "String", # required
|
3165
|
+
# value: "String", # required
|
3166
|
+
# },
|
3167
|
+
# ],
|
3155
3168
|
# },
|
3156
3169
|
# ],
|
3170
|
+
# channel_name: "__string", # required
|
3171
|
+
# program_name: "__string", # required
|
3172
|
+
# schedule_configuration: { # required
|
3173
|
+
# transition: {
|
3174
|
+
# scheduled_start_time_millis: 1,
|
3175
|
+
# duration_millis: 1,
|
3176
|
+
# },
|
3177
|
+
# clip_range: {
|
3178
|
+
# end_offset_millis: 1,
|
3179
|
+
# start_offset_millis: 1,
|
3180
|
+
# },
|
3181
|
+
# },
|
3157
3182
|
# audience_media: [
|
3158
3183
|
# {
|
3184
|
+
# audience: "__string",
|
3159
3185
|
# alternate_media: [
|
3160
3186
|
# {
|
3187
|
+
# source_location_name: "__string",
|
3188
|
+
# live_source_name: "__string",
|
3189
|
+
# vod_source_name: "__string",
|
3190
|
+
# clip_range: {
|
3191
|
+
# end_offset_millis: 1,
|
3192
|
+
# start_offset_millis: 1,
|
3193
|
+
# },
|
3194
|
+
# scheduled_start_time_millis: 1,
|
3161
3195
|
# ad_breaks: [
|
3162
3196
|
# {
|
3163
|
-
# ad_break_metadata: [
|
3164
|
-
# {
|
3165
|
-
# key: "String", # required
|
3166
|
-
# value: "String", # required
|
3167
|
-
# },
|
3168
|
-
# ],
|
3169
3197
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
3170
3198
|
# offset_millis: 1, # required
|
3171
3199
|
# slate: {
|
@@ -3181,53 +3209,35 @@ module Aws::MediaTailor
|
|
3181
3209
|
# time_signal_message: {
|
3182
3210
|
# segmentation_descriptors: [
|
3183
3211
|
# {
|
3184
|
-
# segment_num: 1,
|
3185
3212
|
# segmentation_event_id: 1,
|
3186
|
-
# segmentation_type_id: 1,
|
3187
|
-
# segmentation_upid: "String",
|
3188
3213
|
# segmentation_upid_type: 1,
|
3214
|
+
# segmentation_upid: "String",
|
3215
|
+
# segmentation_type_id: 1,
|
3216
|
+
# segment_num: 1,
|
3189
3217
|
# segments_expected: 1,
|
3190
3218
|
# sub_segment_num: 1,
|
3191
3219
|
# sub_segments_expected: 1,
|
3192
3220
|
# },
|
3193
3221
|
# ],
|
3194
3222
|
# },
|
3223
|
+
# ad_break_metadata: [
|
3224
|
+
# {
|
3225
|
+
# key: "String", # required
|
3226
|
+
# value: "String", # required
|
3227
|
+
# },
|
3228
|
+
# ],
|
3195
3229
|
# },
|
3196
3230
|
# ],
|
3197
|
-
# clip_range: {
|
3198
|
-
# end_offset_millis: 1,
|
3199
|
-
# start_offset_millis: 1,
|
3200
|
-
# },
|
3201
3231
|
# duration_millis: 1,
|
3202
|
-
# live_source_name: "__string",
|
3203
|
-
# scheduled_start_time_millis: 1,
|
3204
|
-
# source_location_name: "__string",
|
3205
|
-
# vod_source_name: "__string",
|
3206
3232
|
# },
|
3207
3233
|
# ],
|
3208
|
-
# audience: "__string",
|
3209
3234
|
# },
|
3210
3235
|
# ],
|
3211
|
-
# channel_name: "__string", # required
|
3212
|
-
# program_name: "__string", # required
|
3213
|
-
# schedule_configuration: { # required
|
3214
|
-
# clip_range: {
|
3215
|
-
# end_offset_millis: 1,
|
3216
|
-
# start_offset_millis: 1,
|
3217
|
-
# },
|
3218
|
-
# transition: {
|
3219
|
-
# duration_millis: 1,
|
3220
|
-
# scheduled_start_time_millis: 1,
|
3221
|
-
# },
|
3222
|
-
# },
|
3223
3236
|
# })
|
3224
3237
|
#
|
3225
3238
|
# @example Response structure
|
3226
3239
|
#
|
3227
3240
|
# resp.ad_breaks #=> Array
|
3228
|
-
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
3229
|
-
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
3230
|
-
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
3231
3241
|
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
3232
3242
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
3233
3243
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
@@ -3237,21 +3247,38 @@ module Aws::MediaTailor
|
|
3237
3247
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
3238
3248
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
3239
3249
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
3240
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
3241
3250
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
3242
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
3243
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
3244
3251
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
3252
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
3253
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
3254
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
3245
3255
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
3246
3256
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
3247
3257
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
3258
|
+
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
3259
|
+
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
3260
|
+
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
3248
3261
|
# resp.arn #=> String
|
3262
|
+
# resp.channel_name #=> String
|
3263
|
+
# resp.creation_time #=> Time
|
3264
|
+
# resp.program_name #=> String
|
3265
|
+
# resp.source_location_name #=> String
|
3266
|
+
# resp.vod_source_name #=> String
|
3267
|
+
# resp.live_source_name #=> String
|
3268
|
+
# resp.clip_range.end_offset_millis #=> Integer
|
3269
|
+
# resp.clip_range.start_offset_millis #=> Integer
|
3270
|
+
# resp.duration_millis #=> Integer
|
3271
|
+
# resp.scheduled_start_time #=> Time
|
3249
3272
|
# resp.audience_media #=> Array
|
3273
|
+
# resp.audience_media[0].audience #=> String
|
3250
3274
|
# resp.audience_media[0].alternate_media #=> Array
|
3275
|
+
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
3276
|
+
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
3277
|
+
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
3278
|
+
# resp.audience_media[0].alternate_media[0].clip_range.end_offset_millis #=> Integer
|
3279
|
+
# resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
|
3280
|
+
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
3251
3281
|
# resp.audience_media[0].alternate_media[0].ad_breaks #=> Array
|
3252
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
3253
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
3254
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
3255
3282
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
3256
3283
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
|
3257
3284
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
|
@@ -3261,32 +3288,18 @@ module Aws::MediaTailor
|
|
3261
3288
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
3262
3289
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
3263
3290
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
3264
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
3265
3291
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
3266
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
3267
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
3268
3292
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
3293
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
3294
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
3295
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
3269
3296
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
3270
3297
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
3271
3298
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
3272
|
-
# resp.audience_media[0].alternate_media[0].
|
3273
|
-
# resp.audience_media[0].alternate_media[0].
|
3299
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
3300
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
3301
|
+
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
3274
3302
|
# resp.audience_media[0].alternate_media[0].duration_millis #=> Integer
|
3275
|
-
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
3276
|
-
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
3277
|
-
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
3278
|
-
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
3279
|
-
# resp.audience_media[0].audience #=> String
|
3280
|
-
# resp.channel_name #=> String
|
3281
|
-
# resp.clip_range.end_offset_millis #=> Integer
|
3282
|
-
# resp.clip_range.start_offset_millis #=> Integer
|
3283
|
-
# resp.creation_time #=> Time
|
3284
|
-
# resp.duration_millis #=> Integer
|
3285
|
-
# resp.live_source_name #=> String
|
3286
|
-
# resp.program_name #=> String
|
3287
|
-
# resp.scheduled_start_time #=> Time
|
3288
|
-
# resp.source_location_name #=> String
|
3289
|
-
# resp.vod_source_name #=> String
|
3290
3303
|
#
|
3291
3304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgram AWS API Documentation
|
3292
3305
|
#
|
@@ -3464,7 +3477,7 @@ module Aws::MediaTailor
|
|
3464
3477
|
tracer: tracer
|
3465
3478
|
)
|
3466
3479
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
3467
|
-
context[:gem_version] = '1.
|
3480
|
+
context[:gem_version] = '1.93.0'
|
3468
3481
|
Seahorse::Client::Request.new(handlers, context)
|
3469
3482
|
end
|
3470
3483
|
|