aws-sdk-mediatailor 1.91.0 → 1.93.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +269 -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 +129 -122
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +48 -39
- metadata +6 -6
@@ -257,11 +257,34 @@ module Aws::MediaTailor
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -482,11 +505,12 @@ module Aws::MediaTailor
|
|
482
505
|
req.send_request(options)
|
483
506
|
end
|
484
507
|
|
485
|
-
#
|
508
|
+
# Defines where AWS Elemental MediaTailor sends logs for the playback
|
509
|
+
# configuration.
|
486
510
|
#
|
487
511
|
# @option params [required, Integer] :percent_enabled
|
488
512
|
# The percentage of session logs that MediaTailor sends to your
|
489
|
-
#
|
513
|
+
# CloudWatch Logs account. For example, if your playback configuration
|
490
514
|
# has 1000 sessions and percentEnabled is set to `60`, MediaTailor sends
|
491
515
|
# logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides
|
492
516
|
# at random which of the playback configuration sessions to send logs
|
@@ -535,9 +559,6 @@ module Aws::MediaTailor
|
|
535
559
|
#
|
536
560
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html
|
537
561
|
#
|
538
|
-
# @option params [Array<String>] :audiences
|
539
|
-
# The list of audiences defined in channel.
|
540
|
-
#
|
541
562
|
# @option params [required, String] :channel_name
|
542
563
|
# The name of the channel.
|
543
564
|
#
|
@@ -577,10 +598,12 @@ module Aws::MediaTailor
|
|
577
598
|
# The time-shifted viewing configuration you want to associate to the
|
578
599
|
# channel.
|
579
600
|
#
|
601
|
+
# @option params [Array<String>] :audiences
|
602
|
+
# The list of audiences defined in channel.
|
603
|
+
#
|
580
604
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
581
605
|
#
|
582
606
|
# * {Types::CreateChannelResponse#arn #arn} => String
|
583
|
-
# * {Types::CreateChannelResponse#audiences #audiences} => Array<String>
|
584
607
|
# * {Types::CreateChannelResponse#channel_name #channel_name} => String
|
585
608
|
# * {Types::CreateChannelResponse#channel_state #channel_state} => String
|
586
609
|
# * {Types::CreateChannelResponse#creation_time #creation_time} => Time
|
@@ -591,11 +614,11 @@ module Aws::MediaTailor
|
|
591
614
|
# * {Types::CreateChannelResponse#tags #tags} => Hash<String,String>
|
592
615
|
# * {Types::CreateChannelResponse#tier #tier} => String
|
593
616
|
# * {Types::CreateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
617
|
+
# * {Types::CreateChannelResponse#audiences #audiences} => Array<String>
|
594
618
|
#
|
595
619
|
# @example Request syntax with placeholder values
|
596
620
|
#
|
597
621
|
# resp = client.create_channel({
|
598
|
-
# audiences: ["String"],
|
599
622
|
# channel_name: "__string", # required
|
600
623
|
# filler_slate: {
|
601
624
|
# source_location_name: "__string",
|
@@ -610,8 +633,8 @@ module Aws::MediaTailor
|
|
610
633
|
# suggested_presentation_delay_seconds: 1,
|
611
634
|
# },
|
612
635
|
# hls_playlist_settings: {
|
613
|
-
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
614
636
|
# manifest_window_seconds: 1,
|
637
|
+
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
615
638
|
# },
|
616
639
|
# manifest_name: "__string", # required
|
617
640
|
# source_group: "__string", # required
|
@@ -625,13 +648,12 @@ module Aws::MediaTailor
|
|
625
648
|
# time_shift_configuration: {
|
626
649
|
# max_time_delay_seconds: 1, # required
|
627
650
|
# },
|
651
|
+
# audiences: ["String"],
|
628
652
|
# })
|
629
653
|
#
|
630
654
|
# @example Response structure
|
631
655
|
#
|
632
656
|
# resp.arn #=> String
|
633
|
-
# resp.audiences #=> Array
|
634
|
-
# resp.audiences[0] #=> String
|
635
657
|
# resp.channel_name #=> String
|
636
658
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
637
659
|
# resp.creation_time #=> Time
|
@@ -643,9 +665,9 @@ module Aws::MediaTailor
|
|
643
665
|
# resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
644
666
|
# resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
645
667
|
# resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
|
668
|
+
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
646
669
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
647
670
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
648
|
-
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
649
671
|
# resp.outputs[0].manifest_name #=> String
|
650
672
|
# resp.outputs[0].playback_url #=> String
|
651
673
|
# resp.outputs[0].source_group #=> String
|
@@ -654,6 +676,8 @@ module Aws::MediaTailor
|
|
654
676
|
# resp.tags["__string"] #=> String
|
655
677
|
# resp.tier #=> String
|
656
678
|
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
679
|
+
# resp.audiences #=> Array
|
680
|
+
# resp.audiences[0] #=> String
|
657
681
|
#
|
658
682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannel AWS API Documentation
|
659
683
|
#
|
@@ -840,9 +864,6 @@ module Aws::MediaTailor
|
|
840
864
|
# @option params [Array<Types::AdBreak>] :ad_breaks
|
841
865
|
# The ad break configuration settings.
|
842
866
|
#
|
843
|
-
# @option params [Array<Types::AudienceMedia>] :audience_media
|
844
|
-
# The list of AudienceMedia defined in program.
|
845
|
-
#
|
846
867
|
# @option params [required, String] :channel_name
|
847
868
|
# The name of the channel for this Program.
|
848
869
|
#
|
@@ -861,32 +882,29 @@ module Aws::MediaTailor
|
|
861
882
|
# @option params [String] :vod_source_name
|
862
883
|
# The name that's used to refer to a VOD source.
|
863
884
|
#
|
885
|
+
# @option params [Array<Types::AudienceMedia>] :audience_media
|
886
|
+
# The list of AudienceMedia defined in program.
|
887
|
+
#
|
864
888
|
# @return [Types::CreateProgramResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
865
889
|
#
|
866
890
|
# * {Types::CreateProgramResponse#ad_breaks #ad_breaks} => Array<Types::AdBreak>
|
867
891
|
# * {Types::CreateProgramResponse#arn #arn} => String
|
868
|
-
# * {Types::CreateProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
869
892
|
# * {Types::CreateProgramResponse#channel_name #channel_name} => String
|
870
|
-
# * {Types::CreateProgramResponse#clip_range #clip_range} => Types::ClipRange
|
871
893
|
# * {Types::CreateProgramResponse#creation_time #creation_time} => Time
|
872
|
-
# * {Types::CreateProgramResponse#duration_millis #duration_millis} => Integer
|
873
894
|
# * {Types::CreateProgramResponse#live_source_name #live_source_name} => String
|
874
895
|
# * {Types::CreateProgramResponse#program_name #program_name} => String
|
875
896
|
# * {Types::CreateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
876
897
|
# * {Types::CreateProgramResponse#source_location_name #source_location_name} => String
|
877
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>
|
878
902
|
#
|
879
903
|
# @example Request syntax with placeholder values
|
880
904
|
#
|
881
905
|
# resp = client.create_program({
|
882
906
|
# ad_breaks: [
|
883
907
|
# {
|
884
|
-
# ad_break_metadata: [
|
885
|
-
# {
|
886
|
-
# key: "String", # required
|
887
|
-
# value: "String", # required
|
888
|
-
# },
|
889
|
-
# ],
|
890
908
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
891
909
|
# offset_millis: 1, # required
|
892
910
|
# slate: {
|
@@ -902,31 +920,58 @@ module Aws::MediaTailor
|
|
902
920
|
# time_signal_message: {
|
903
921
|
# segmentation_descriptors: [
|
904
922
|
# {
|
905
|
-
# segment_num: 1,
|
906
923
|
# segmentation_event_id: 1,
|
907
|
-
# segmentation_type_id: 1,
|
908
|
-
# segmentation_upid: "String",
|
909
924
|
# segmentation_upid_type: 1,
|
925
|
+
# segmentation_upid: "String",
|
926
|
+
# segmentation_type_id: 1,
|
927
|
+
# segment_num: 1,
|
910
928
|
# segments_expected: 1,
|
911
929
|
# sub_segment_num: 1,
|
912
930
|
# sub_segments_expected: 1,
|
913
931
|
# },
|
914
932
|
# ],
|
915
933
|
# },
|
934
|
+
# ad_break_metadata: [
|
935
|
+
# {
|
936
|
+
# key: "String", # required
|
937
|
+
# value: "String", # required
|
938
|
+
# },
|
939
|
+
# ],
|
916
940
|
# },
|
917
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",
|
918
960
|
# audience_media: [
|
919
961
|
# {
|
962
|
+
# audience: "__string",
|
920
963
|
# alternate_media: [
|
921
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,
|
922
973
|
# ad_breaks: [
|
923
974
|
# {
|
924
|
-
# ad_break_metadata: [
|
925
|
-
# {
|
926
|
-
# key: "String", # required
|
927
|
-
# value: "String", # required
|
928
|
-
# },
|
929
|
-
# ],
|
930
975
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
931
976
|
# offset_millis: 1, # required
|
932
977
|
# slate: {
|
@@ -942,59 +987,35 @@ module Aws::MediaTailor
|
|
942
987
|
# time_signal_message: {
|
943
988
|
# segmentation_descriptors: [
|
944
989
|
# {
|
945
|
-
# segment_num: 1,
|
946
990
|
# segmentation_event_id: 1,
|
947
|
-
# segmentation_type_id: 1,
|
948
|
-
# segmentation_upid: "String",
|
949
991
|
# segmentation_upid_type: 1,
|
992
|
+
# segmentation_upid: "String",
|
993
|
+
# segmentation_type_id: 1,
|
994
|
+
# segment_num: 1,
|
950
995
|
# segments_expected: 1,
|
951
996
|
# sub_segment_num: 1,
|
952
997
|
# sub_segments_expected: 1,
|
953
998
|
# },
|
954
999
|
# ],
|
955
1000
|
# },
|
1001
|
+
# ad_break_metadata: [
|
1002
|
+
# {
|
1003
|
+
# key: "String", # required
|
1004
|
+
# value: "String", # required
|
1005
|
+
# },
|
1006
|
+
# ],
|
956
1007
|
# },
|
957
1008
|
# ],
|
958
|
-
# clip_range: {
|
959
|
-
# end_offset_millis: 1,
|
960
|
-
# start_offset_millis: 1,
|
961
|
-
# },
|
962
1009
|
# duration_millis: 1,
|
963
|
-
# live_source_name: "__string",
|
964
|
-
# scheduled_start_time_millis: 1,
|
965
|
-
# source_location_name: "__string",
|
966
|
-
# vod_source_name: "__string",
|
967
1010
|
# },
|
968
1011
|
# ],
|
969
|
-
# audience: "__string",
|
970
1012
|
# },
|
971
1013
|
# ],
|
972
|
-
# channel_name: "__string", # required
|
973
|
-
# live_source_name: "__string",
|
974
|
-
# program_name: "__string", # required
|
975
|
-
# schedule_configuration: { # required
|
976
|
-
# clip_range: {
|
977
|
-
# end_offset_millis: 1,
|
978
|
-
# start_offset_millis: 1,
|
979
|
-
# },
|
980
|
-
# transition: { # required
|
981
|
-
# duration_millis: 1,
|
982
|
-
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
983
|
-
# relative_program: "__string",
|
984
|
-
# scheduled_start_time_millis: 1,
|
985
|
-
# type: "__string", # required
|
986
|
-
# },
|
987
|
-
# },
|
988
|
-
# source_location_name: "__string", # required
|
989
|
-
# vod_source_name: "__string",
|
990
1014
|
# })
|
991
1015
|
#
|
992
1016
|
# @example Response structure
|
993
1017
|
#
|
994
1018
|
# resp.ad_breaks #=> Array
|
995
|
-
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
996
|
-
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
997
|
-
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
998
1019
|
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
999
1020
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
1000
1021
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
@@ -1004,21 +1025,38 @@ module Aws::MediaTailor
|
|
1004
1025
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1005
1026
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1006
1027
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1007
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1008
1028
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1009
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1010
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1011
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
|
1012
1033
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1013
1034
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1014
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
|
1015
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
|
1016
1050
|
# resp.audience_media #=> Array
|
1051
|
+
# resp.audience_media[0].audience #=> String
|
1017
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
|
1018
1059
|
# resp.audience_media[0].alternate_media[0].ad_breaks #=> Array
|
1019
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
1020
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
1021
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
1022
1060
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
1023
1061
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
|
1024
1062
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
|
@@ -1028,32 +1066,18 @@ module Aws::MediaTailor
|
|
1028
1066
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1029
1067
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1030
1068
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1031
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1032
1069
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1033
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1034
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1035
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
|
1036
1074
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1037
1075
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1038
1076
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
1039
|
-
# resp.audience_media[0].alternate_media[0].
|
1040
|
-
# 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
|
1041
1080
|
# resp.audience_media[0].alternate_media[0].duration_millis #=> Integer
|
1042
|
-
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
1043
|
-
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
1044
|
-
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
1045
|
-
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
1046
|
-
# resp.audience_media[0].audience #=> String
|
1047
|
-
# resp.channel_name #=> String
|
1048
|
-
# resp.clip_range.end_offset_millis #=> Integer
|
1049
|
-
# resp.clip_range.start_offset_millis #=> Integer
|
1050
|
-
# resp.creation_time #=> Time
|
1051
|
-
# resp.duration_millis #=> Integer
|
1052
|
-
# resp.live_source_name #=> String
|
1053
|
-
# resp.program_name #=> String
|
1054
|
-
# resp.scheduled_start_time #=> Time
|
1055
|
-
# resp.source_location_name #=> String
|
1056
|
-
# resp.vod_source_name #=> String
|
1057
1081
|
#
|
1058
1082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgram AWS API Documentation
|
1059
1083
|
#
|
@@ -1474,18 +1498,18 @@ module Aws::MediaTailor
|
|
1474
1498
|
# @return [Types::DescribeChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1475
1499
|
#
|
1476
1500
|
# * {Types::DescribeChannelResponse#arn #arn} => String
|
1477
|
-
# * {Types::DescribeChannelResponse#audiences #audiences} => Array<String>
|
1478
1501
|
# * {Types::DescribeChannelResponse#channel_name #channel_name} => String
|
1479
1502
|
# * {Types::DescribeChannelResponse#channel_state #channel_state} => String
|
1480
1503
|
# * {Types::DescribeChannelResponse#creation_time #creation_time} => Time
|
1481
1504
|
# * {Types::DescribeChannelResponse#filler_slate #filler_slate} => Types::SlateSource
|
1482
1505
|
# * {Types::DescribeChannelResponse#last_modified_time #last_modified_time} => Time
|
1483
|
-
# * {Types::DescribeChannelResponse#log_configuration #log_configuration} => Types::LogConfigurationForChannel
|
1484
1506
|
# * {Types::DescribeChannelResponse#outputs #outputs} => Array<Types::ResponseOutputItem>
|
1485
1507
|
# * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
|
1486
1508
|
# * {Types::DescribeChannelResponse#tags #tags} => Hash<String,String>
|
1487
1509
|
# * {Types::DescribeChannelResponse#tier #tier} => String
|
1510
|
+
# * {Types::DescribeChannelResponse#log_configuration #log_configuration} => Types::LogConfigurationForChannel
|
1488
1511
|
# * {Types::DescribeChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
1512
|
+
# * {Types::DescribeChannelResponse#audiences #audiences} => Array<String>
|
1489
1513
|
#
|
1490
1514
|
# @example Request syntax with placeholder values
|
1491
1515
|
#
|
@@ -1496,24 +1520,20 @@ module Aws::MediaTailor
|
|
1496
1520
|
# @example Response structure
|
1497
1521
|
#
|
1498
1522
|
# resp.arn #=> String
|
1499
|
-
# resp.audiences #=> Array
|
1500
|
-
# resp.audiences[0] #=> String
|
1501
1523
|
# resp.channel_name #=> String
|
1502
1524
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
1503
1525
|
# resp.creation_time #=> Time
|
1504
1526
|
# resp.filler_slate.source_location_name #=> String
|
1505
1527
|
# resp.filler_slate.vod_source_name #=> String
|
1506
1528
|
# resp.last_modified_time #=> Time
|
1507
|
-
# resp.log_configuration.log_types #=> Array
|
1508
|
-
# resp.log_configuration.log_types[0] #=> String, one of "AS_RUN"
|
1509
1529
|
# resp.outputs #=> Array
|
1510
1530
|
# resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
1511
1531
|
# resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
1512
1532
|
# resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
1513
1533
|
# resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
|
1534
|
+
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
1514
1535
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
1515
1536
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
1516
|
-
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
1517
1537
|
# resp.outputs[0].manifest_name #=> String
|
1518
1538
|
# resp.outputs[0].playback_url #=> String
|
1519
1539
|
# resp.outputs[0].source_group #=> String
|
@@ -1521,7 +1541,11 @@ module Aws::MediaTailor
|
|
1521
1541
|
# resp.tags #=> Hash
|
1522
1542
|
# resp.tags["__string"] #=> String
|
1523
1543
|
# resp.tier #=> String
|
1544
|
+
# resp.log_configuration.log_types #=> Array
|
1545
|
+
# resp.log_configuration.log_types[0] #=> String, one of "AS_RUN"
|
1524
1546
|
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
1547
|
+
# resp.audiences #=> Array
|
1548
|
+
# resp.audiences[0] #=> String
|
1525
1549
|
#
|
1526
1550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannel AWS API Documentation
|
1527
1551
|
#
|
@@ -1597,16 +1621,16 @@ module Aws::MediaTailor
|
|
1597
1621
|
#
|
1598
1622
|
# * {Types::DescribeProgramResponse#ad_breaks #ad_breaks} => Array<Types::AdBreak>
|
1599
1623
|
# * {Types::DescribeProgramResponse#arn #arn} => String
|
1600
|
-
# * {Types::DescribeProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
1601
1624
|
# * {Types::DescribeProgramResponse#channel_name #channel_name} => String
|
1602
|
-
# * {Types::DescribeProgramResponse#clip_range #clip_range} => Types::ClipRange
|
1603
1625
|
# * {Types::DescribeProgramResponse#creation_time #creation_time} => Time
|
1604
|
-
# * {Types::DescribeProgramResponse#duration_millis #duration_millis} => Integer
|
1605
1626
|
# * {Types::DescribeProgramResponse#live_source_name #live_source_name} => String
|
1606
1627
|
# * {Types::DescribeProgramResponse#program_name #program_name} => String
|
1607
1628
|
# * {Types::DescribeProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
1608
1629
|
# * {Types::DescribeProgramResponse#source_location_name #source_location_name} => String
|
1609
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>
|
1610
1634
|
#
|
1611
1635
|
# @example Request syntax with placeholder values
|
1612
1636
|
#
|
@@ -1618,9 +1642,6 @@ module Aws::MediaTailor
|
|
1618
1642
|
# @example Response structure
|
1619
1643
|
#
|
1620
1644
|
# resp.ad_breaks #=> Array
|
1621
|
-
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
1622
|
-
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
1623
|
-
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
1624
1645
|
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
1625
1646
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
1626
1647
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
@@ -1630,21 +1651,38 @@ module Aws::MediaTailor
|
|
1630
1651
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1631
1652
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1632
1653
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1633
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1634
1654
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1635
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1636
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1637
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
|
1638
1659
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1639
1660
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1640
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
|
1641
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
|
1642
1676
|
# resp.audience_media #=> Array
|
1677
|
+
# resp.audience_media[0].audience #=> String
|
1643
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
|
1644
1685
|
# resp.audience_media[0].alternate_media[0].ad_breaks #=> Array
|
1645
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
1646
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
1647
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
1648
1686
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
1649
1687
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
|
1650
1688
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
|
@@ -1654,32 +1692,18 @@ module Aws::MediaTailor
|
|
1654
1692
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
1655
1693
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
1656
1694
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
1657
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
1658
1695
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
1659
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
1660
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
1661
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
|
1662
1700
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
1663
1701
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
1664
1702
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
1665
|
-
# resp.audience_media[0].alternate_media[0].
|
1666
|
-
# 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
|
1667
1706
|
# resp.audience_media[0].alternate_media[0].duration_millis #=> Integer
|
1668
|
-
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
1669
|
-
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
1670
|
-
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
1671
|
-
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
1672
|
-
# resp.audience_media[0].audience #=> String
|
1673
|
-
# resp.channel_name #=> String
|
1674
|
-
# resp.clip_range.end_offset_millis #=> Integer
|
1675
|
-
# resp.clip_range.start_offset_millis #=> Integer
|
1676
|
-
# resp.creation_time #=> Time
|
1677
|
-
# resp.duration_millis #=> Integer
|
1678
|
-
# resp.live_source_name #=> String
|
1679
|
-
# resp.program_name #=> String
|
1680
|
-
# resp.scheduled_start_time #=> Time
|
1681
|
-
# resp.source_location_name #=> String
|
1682
|
-
# resp.vod_source_name #=> String
|
1683
1707
|
#
|
1684
1708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeProgram AWS API Documentation
|
1685
1709
|
#
|
@@ -1829,9 +1853,6 @@ module Aws::MediaTailor
|
|
1829
1853
|
|
1830
1854
|
# Retrieves information about your channel's schedule.
|
1831
1855
|
#
|
1832
|
-
# @option params [String] :audience
|
1833
|
-
# The single audience for GetChannelScheduleRequest.
|
1834
|
-
#
|
1835
1856
|
# @option params [required, String] :channel_name
|
1836
1857
|
# The name of the channel associated with this Channel Schedule.
|
1837
1858
|
#
|
@@ -1858,6 +1879,9 @@ module Aws::MediaTailor
|
|
1858
1879
|
# If the previous response didn't include a `NextToken` element, there
|
1859
1880
|
# are no more channel schedules to get.
|
1860
1881
|
#
|
1882
|
+
# @option params [String] :audience
|
1883
|
+
# The single audience for GetChannelScheduleRequest.
|
1884
|
+
#
|
1861
1885
|
# @return [Types::GetChannelScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1862
1886
|
#
|
1863
1887
|
# * {Types::GetChannelScheduleResponse#items #items} => Array<Types::ScheduleEntry>
|
@@ -1868,11 +1892,11 @@ module Aws::MediaTailor
|
|
1868
1892
|
# @example Request syntax with placeholder values
|
1869
1893
|
#
|
1870
1894
|
# resp = client.get_channel_schedule({
|
1871
|
-
# audience: "__string",
|
1872
1895
|
# channel_name: "__string", # required
|
1873
1896
|
# duration_minutes: "__string",
|
1874
1897
|
# max_results: 1,
|
1875
1898
|
# next_token: "__string",
|
1899
|
+
# audience: "__string",
|
1876
1900
|
# })
|
1877
1901
|
#
|
1878
1902
|
# @example Response structure
|
@@ -1881,8 +1905,6 @@ module Aws::MediaTailor
|
|
1881
1905
|
# resp.items[0].approximate_duration_seconds #=> Integer
|
1882
1906
|
# resp.items[0].approximate_start_time #=> Time
|
1883
1907
|
# resp.items[0].arn #=> String
|
1884
|
-
# resp.items[0].audiences #=> Array
|
1885
|
-
# resp.items[0].audiences[0] #=> String
|
1886
1908
|
# resp.items[0].channel_name #=> String
|
1887
1909
|
# resp.items[0].live_source_name #=> String
|
1888
1910
|
# resp.items[0].program_name #=> String
|
@@ -1894,6 +1916,8 @@ module Aws::MediaTailor
|
|
1894
1916
|
# resp.items[0].schedule_entry_type #=> String, one of "PROGRAM", "FILLER_SLATE", "ALTERNATE_MEDIA"
|
1895
1917
|
# resp.items[0].source_location_name #=> String
|
1896
1918
|
# resp.items[0].vod_source_name #=> String
|
1919
|
+
# resp.items[0].audiences #=> Array
|
1920
|
+
# resp.items[0].audiences[0] #=> String
|
1897
1921
|
# resp.next_token #=> String
|
1898
1922
|
#
|
1899
1923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelSchedule AWS API Documentation
|
@@ -1938,6 +1962,7 @@ module Aws::MediaTailor
|
|
1938
1962
|
# * {Types::GetPlaybackConfigurationResponse#tags #tags} => Hash<String,String>
|
1939
1963
|
# * {Types::GetPlaybackConfigurationResponse#transcode_profile_name #transcode_profile_name} => String
|
1940
1964
|
# * {Types::GetPlaybackConfigurationResponse#video_content_source_url #video_content_source_url} => String
|
1965
|
+
# * {Types::GetPlaybackConfigurationResponse#ad_conditioning_configuration #ad_conditioning_configuration} => Types::AdConditioningConfiguration
|
1941
1966
|
#
|
1942
1967
|
# @example Request syntax with placeholder values
|
1943
1968
|
#
|
@@ -1948,9 +1973,9 @@ module Aws::MediaTailor
|
|
1948
1973
|
# @example Response structure
|
1949
1974
|
#
|
1950
1975
|
# resp.ad_decision_server_url #=> String
|
1951
|
-
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
1952
1976
|
# resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
|
1953
1977
|
# resp.avail_suppression.value #=> String
|
1978
|
+
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
1954
1979
|
# resp.bumper.end_url #=> String
|
1955
1980
|
# resp.bumper.start_url #=> String
|
1956
1981
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
@@ -1977,6 +2002,7 @@ module Aws::MediaTailor
|
|
1977
2002
|
# resp.tags["__string"] #=> String
|
1978
2003
|
# resp.transcode_profile_name #=> String
|
1979
2004
|
# resp.video_content_source_url #=> String
|
2005
|
+
# resp.ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
|
1980
2006
|
#
|
1981
2007
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPlaybackConfiguration AWS API Documentation
|
1982
2008
|
#
|
@@ -2085,11 +2111,11 @@ module Aws::MediaTailor
|
|
2085
2111
|
# resp.items #=> Array
|
2086
2112
|
# resp.items[0].alert_code #=> String
|
2087
2113
|
# resp.items[0].alert_message #=> String
|
2088
|
-
# resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
|
2089
2114
|
# resp.items[0].last_modified_time #=> Time
|
2090
2115
|
# resp.items[0].related_resource_arns #=> Array
|
2091
2116
|
# resp.items[0].related_resource_arns[0] #=> String
|
2092
2117
|
# resp.items[0].resource_arn #=> String
|
2118
|
+
# resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
|
2093
2119
|
# resp.next_token #=> String
|
2094
2120
|
#
|
2095
2121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlerts AWS API Documentation
|
@@ -2132,24 +2158,20 @@ module Aws::MediaTailor
|
|
2132
2158
|
#
|
2133
2159
|
# resp.items #=> Array
|
2134
2160
|
# resp.items[0].arn #=> String
|
2135
|
-
# resp.items[0].audiences #=> Array
|
2136
|
-
# resp.items[0].audiences[0] #=> String
|
2137
2161
|
# resp.items[0].channel_name #=> String
|
2138
2162
|
# resp.items[0].channel_state #=> String
|
2139
2163
|
# resp.items[0].creation_time #=> Time
|
2140
2164
|
# resp.items[0].filler_slate.source_location_name #=> String
|
2141
2165
|
# resp.items[0].filler_slate.vod_source_name #=> String
|
2142
2166
|
# resp.items[0].last_modified_time #=> Time
|
2143
|
-
# resp.items[0].log_configuration.log_types #=> Array
|
2144
|
-
# resp.items[0].log_configuration.log_types[0] #=> String, one of "AS_RUN"
|
2145
2167
|
# resp.items[0].outputs #=> Array
|
2146
2168
|
# resp.items[0].outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
2147
2169
|
# resp.items[0].outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
2148
2170
|
# resp.items[0].outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
2149
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
|
2150
2173
|
# resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
2151
2174
|
# resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
2152
|
-
# resp.items[0].outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
2153
2175
|
# resp.items[0].outputs[0].manifest_name #=> String
|
2154
2176
|
# resp.items[0].outputs[0].playback_url #=> String
|
2155
2177
|
# resp.items[0].outputs[0].source_group #=> String
|
@@ -2157,6 +2179,10 @@ module Aws::MediaTailor
|
|
2157
2179
|
# resp.items[0].tags #=> Hash
|
2158
2180
|
# resp.items[0].tags["__string"] #=> String
|
2159
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
|
2160
2186
|
# resp.next_token #=> String
|
2161
2187
|
#
|
2162
2188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListChannels AWS API Documentation
|
@@ -2261,9 +2287,9 @@ module Aws::MediaTailor
|
|
2261
2287
|
#
|
2262
2288
|
# resp.items #=> Array
|
2263
2289
|
# resp.items[0].ad_decision_server_url #=> String
|
2264
|
-
# resp.items[0].avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2265
2290
|
# resp.items[0].avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
|
2266
2291
|
# resp.items[0].avail_suppression.value #=> String
|
2292
|
+
# resp.items[0].avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2267
2293
|
# resp.items[0].bumper.end_url #=> String
|
2268
2294
|
# resp.items[0].bumper.start_url #=> String
|
2269
2295
|
# resp.items[0].cdn_configuration.ad_segment_url_prefix #=> String
|
@@ -2290,6 +2316,7 @@ module Aws::MediaTailor
|
|
2290
2316
|
# resp.items[0].tags["__string"] #=> String
|
2291
2317
|
# resp.items[0].transcode_profile_name #=> String
|
2292
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"
|
2293
2320
|
# resp.next_token #=> String
|
2294
2321
|
#
|
2295
2322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListPlaybackConfigurations AWS API Documentation
|
@@ -2593,7 +2620,7 @@ module Aws::MediaTailor
|
|
2593
2620
|
#
|
2594
2621
|
#
|
2595
2622
|
#
|
2596
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
2623
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
2597
2624
|
#
|
2598
2625
|
# @option params [Types::DashConfigurationForPut] :dash_configuration
|
2599
2626
|
# The configuration for DASH content.
|
@@ -2660,6 +2687,10 @@ module Aws::MediaTailor
|
|
2660
2687
|
# The URL prefix for the parent manifest for the stream, minus the asset
|
2661
2688
|
# ID. The maximum length is 512 characters.
|
2662
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
|
+
#
|
2663
2694
|
# @return [Types::PutPlaybackConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2664
2695
|
#
|
2665
2696
|
# * {Types::PutPlaybackConfigurationResponse#ad_decision_server_url #ad_decision_server_url} => String
|
@@ -2682,15 +2713,16 @@ module Aws::MediaTailor
|
|
2682
2713
|
# * {Types::PutPlaybackConfigurationResponse#tags #tags} => Hash<String,String>
|
2683
2714
|
# * {Types::PutPlaybackConfigurationResponse#transcode_profile_name #transcode_profile_name} => String
|
2684
2715
|
# * {Types::PutPlaybackConfigurationResponse#video_content_source_url #video_content_source_url} => String
|
2716
|
+
# * {Types::PutPlaybackConfigurationResponse#ad_conditioning_configuration #ad_conditioning_configuration} => Types::AdConditioningConfiguration
|
2685
2717
|
#
|
2686
2718
|
# @example Request syntax with placeholder values
|
2687
2719
|
#
|
2688
2720
|
# resp = client.put_playback_configuration({
|
2689
2721
|
# ad_decision_server_url: "__string",
|
2690
2722
|
# avail_suppression: {
|
2691
|
-
# fill_policy: "FULL_AVAIL_ONLY", # accepts FULL_AVAIL_ONLY, PARTIAL_AVAIL
|
2692
2723
|
# mode: "OFF", # accepts OFF, BEHIND_LIVE_EDGE, AFTER_LIVE_EDGE
|
2693
2724
|
# value: "__string",
|
2725
|
+
# fill_policy: "FULL_AVAIL_ONLY", # accepts FULL_AVAIL_ONLY, PARTIAL_AVAIL
|
2694
2726
|
# },
|
2695
2727
|
# bumper: {
|
2696
2728
|
# end_url: "__string",
|
@@ -2727,14 +2759,17 @@ module Aws::MediaTailor
|
|
2727
2759
|
# },
|
2728
2760
|
# transcode_profile_name: "__string",
|
2729
2761
|
# video_content_source_url: "__string",
|
2762
|
+
# ad_conditioning_configuration: {
|
2763
|
+
# streaming_media_file_conditioning: "TRANSCODE", # required, accepts TRANSCODE, NONE
|
2764
|
+
# },
|
2730
2765
|
# })
|
2731
2766
|
#
|
2732
2767
|
# @example Response structure
|
2733
2768
|
#
|
2734
2769
|
# resp.ad_decision_server_url #=> String
|
2735
|
-
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2736
2770
|
# resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
|
2737
2771
|
# resp.avail_suppression.value #=> String
|
2772
|
+
# resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
|
2738
2773
|
# resp.bumper.end_url #=> String
|
2739
2774
|
# resp.bumper.start_url #=> String
|
2740
2775
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
@@ -2761,6 +2796,7 @@ module Aws::MediaTailor
|
|
2761
2796
|
# resp.tags["__string"] #=> String
|
2762
2797
|
# resp.transcode_profile_name #=> String
|
2763
2798
|
# resp.video_content_source_url #=> String
|
2799
|
+
# resp.ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
|
2764
2800
|
#
|
2765
2801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfiguration AWS API Documentation
|
2766
2802
|
#
|
@@ -2900,9 +2936,6 @@ module Aws::MediaTailor
|
|
2900
2936
|
#
|
2901
2937
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html
|
2902
2938
|
#
|
2903
|
-
# @option params [Array<String>] :audiences
|
2904
|
-
# The list of audiences defined in channel.
|
2905
|
-
#
|
2906
2939
|
# @option params [required, String] :channel_name
|
2907
2940
|
# The name of the channel.
|
2908
2941
|
#
|
@@ -2919,10 +2952,12 @@ module Aws::MediaTailor
|
|
2919
2952
|
# The time-shifted viewing configuration you want to associate to the
|
2920
2953
|
# channel.
|
2921
2954
|
#
|
2955
|
+
# @option params [Array<String>] :audiences
|
2956
|
+
# The list of audiences defined in channel.
|
2957
|
+
#
|
2922
2958
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2923
2959
|
#
|
2924
2960
|
# * {Types::UpdateChannelResponse#arn #arn} => String
|
2925
|
-
# * {Types::UpdateChannelResponse#audiences #audiences} => Array<String>
|
2926
2961
|
# * {Types::UpdateChannelResponse#channel_name #channel_name} => String
|
2927
2962
|
# * {Types::UpdateChannelResponse#channel_state #channel_state} => String
|
2928
2963
|
# * {Types::UpdateChannelResponse#creation_time #creation_time} => Time
|
@@ -2933,11 +2968,11 @@ module Aws::MediaTailor
|
|
2933
2968
|
# * {Types::UpdateChannelResponse#tags #tags} => Hash<String,String>
|
2934
2969
|
# * {Types::UpdateChannelResponse#tier #tier} => String
|
2935
2970
|
# * {Types::UpdateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
2971
|
+
# * {Types::UpdateChannelResponse#audiences #audiences} => Array<String>
|
2936
2972
|
#
|
2937
2973
|
# @example Request syntax with placeholder values
|
2938
2974
|
#
|
2939
2975
|
# resp = client.update_channel({
|
2940
|
-
# audiences: ["String"],
|
2941
2976
|
# channel_name: "__string", # required
|
2942
2977
|
# filler_slate: {
|
2943
2978
|
# source_location_name: "__string",
|
@@ -2952,8 +2987,8 @@ module Aws::MediaTailor
|
|
2952
2987
|
# suggested_presentation_delay_seconds: 1,
|
2953
2988
|
# },
|
2954
2989
|
# hls_playlist_settings: {
|
2955
|
-
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
2956
2990
|
# manifest_window_seconds: 1,
|
2991
|
+
# ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
|
2957
2992
|
# },
|
2958
2993
|
# manifest_name: "__string", # required
|
2959
2994
|
# source_group: "__string", # required
|
@@ -2962,13 +2997,12 @@ module Aws::MediaTailor
|
|
2962
2997
|
# time_shift_configuration: {
|
2963
2998
|
# max_time_delay_seconds: 1, # required
|
2964
2999
|
# },
|
3000
|
+
# audiences: ["String"],
|
2965
3001
|
# })
|
2966
3002
|
#
|
2967
3003
|
# @example Response structure
|
2968
3004
|
#
|
2969
3005
|
# resp.arn #=> String
|
2970
|
-
# resp.audiences #=> Array
|
2971
|
-
# resp.audiences[0] #=> String
|
2972
3006
|
# resp.channel_name #=> String
|
2973
3007
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
2974
3008
|
# resp.creation_time #=> Time
|
@@ -2980,9 +3014,9 @@ module Aws::MediaTailor
|
|
2980
3014
|
# resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
|
2981
3015
|
# resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
|
2982
3016
|
# resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
|
3017
|
+
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
2983
3018
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
|
2984
3019
|
# resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
|
2985
|
-
# resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
|
2986
3020
|
# resp.outputs[0].manifest_name #=> String
|
2987
3021
|
# resp.outputs[0].playback_url #=> String
|
2988
3022
|
# resp.outputs[0].source_group #=> String
|
@@ -2991,6 +3025,8 @@ module Aws::MediaTailor
|
|
2991
3025
|
# resp.tags["__string"] #=> String
|
2992
3026
|
# resp.tier #=> String
|
2993
3027
|
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
3028
|
+
# resp.audiences #=> Array
|
3029
|
+
# resp.audiences[0] #=> String
|
2994
3030
|
#
|
2995
3031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannel AWS API Documentation
|
2996
3032
|
#
|
@@ -3065,9 +3101,6 @@ module Aws::MediaTailor
|
|
3065
3101
|
# @option params [Array<Types::AdBreak>] :ad_breaks
|
3066
3102
|
# The ad break configuration settings.
|
3067
3103
|
#
|
3068
|
-
# @option params [Array<Types::AudienceMedia>] :audience_media
|
3069
|
-
# The list of AudienceMedia defined in program.
|
3070
|
-
#
|
3071
3104
|
# @option params [required, String] :channel_name
|
3072
3105
|
# The name of the channel for this Program.
|
3073
3106
|
#
|
@@ -3077,32 +3110,29 @@ module Aws::MediaTailor
|
|
3077
3110
|
# @option params [required, Types::UpdateProgramScheduleConfiguration] :schedule_configuration
|
3078
3111
|
# The schedule configuration settings.
|
3079
3112
|
#
|
3113
|
+
# @option params [Array<Types::AudienceMedia>] :audience_media
|
3114
|
+
# The list of AudienceMedia defined in program.
|
3115
|
+
#
|
3080
3116
|
# @return [Types::UpdateProgramResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3081
3117
|
#
|
3082
3118
|
# * {Types::UpdateProgramResponse#ad_breaks #ad_breaks} => Array<Types::AdBreak>
|
3083
3119
|
# * {Types::UpdateProgramResponse#arn #arn} => String
|
3084
|
-
# * {Types::UpdateProgramResponse#audience_media #audience_media} => Array<Types::AudienceMedia>
|
3085
3120
|
# * {Types::UpdateProgramResponse#channel_name #channel_name} => String
|
3086
|
-
# * {Types::UpdateProgramResponse#clip_range #clip_range} => Types::ClipRange
|
3087
3121
|
# * {Types::UpdateProgramResponse#creation_time #creation_time} => Time
|
3088
|
-
# * {Types::UpdateProgramResponse#duration_millis #duration_millis} => Integer
|
3089
|
-
# * {Types::UpdateProgramResponse#live_source_name #live_source_name} => String
|
3090
3122
|
# * {Types::UpdateProgramResponse#program_name #program_name} => String
|
3091
|
-
# * {Types::UpdateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
3092
3123
|
# * {Types::UpdateProgramResponse#source_location_name #source_location_name} => String
|
3093
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>
|
3094
3130
|
#
|
3095
3131
|
# @example Request syntax with placeholder values
|
3096
3132
|
#
|
3097
3133
|
# resp = client.update_program({
|
3098
3134
|
# ad_breaks: [
|
3099
3135
|
# {
|
3100
|
-
# ad_break_metadata: [
|
3101
|
-
# {
|
3102
|
-
# key: "String", # required
|
3103
|
-
# value: "String", # required
|
3104
|
-
# },
|
3105
|
-
# ],
|
3106
3136
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
3107
3137
|
# offset_millis: 1, # required
|
3108
3138
|
# slate: {
|
@@ -3118,31 +3148,52 @@ module Aws::MediaTailor
|
|
3118
3148
|
# time_signal_message: {
|
3119
3149
|
# segmentation_descriptors: [
|
3120
3150
|
# {
|
3121
|
-
# segment_num: 1,
|
3122
3151
|
# segmentation_event_id: 1,
|
3123
|
-
# segmentation_type_id: 1,
|
3124
|
-
# segmentation_upid: "String",
|
3125
3152
|
# segmentation_upid_type: 1,
|
3153
|
+
# segmentation_upid: "String",
|
3154
|
+
# segmentation_type_id: 1,
|
3155
|
+
# segment_num: 1,
|
3126
3156
|
# segments_expected: 1,
|
3127
3157
|
# sub_segment_num: 1,
|
3128
3158
|
# sub_segments_expected: 1,
|
3129
3159
|
# },
|
3130
3160
|
# ],
|
3131
3161
|
# },
|
3162
|
+
# ad_break_metadata: [
|
3163
|
+
# {
|
3164
|
+
# key: "String", # required
|
3165
|
+
# value: "String", # required
|
3166
|
+
# },
|
3167
|
+
# ],
|
3132
3168
|
# },
|
3133
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
|
+
# },
|
3134
3182
|
# audience_media: [
|
3135
3183
|
# {
|
3184
|
+
# audience: "__string",
|
3136
3185
|
# alternate_media: [
|
3137
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,
|
3138
3195
|
# ad_breaks: [
|
3139
3196
|
# {
|
3140
|
-
# ad_break_metadata: [
|
3141
|
-
# {
|
3142
|
-
# key: "String", # required
|
3143
|
-
# value: "String", # required
|
3144
|
-
# },
|
3145
|
-
# ],
|
3146
3197
|
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
3147
3198
|
# offset_millis: 1, # required
|
3148
3199
|
# slate: {
|
@@ -3158,53 +3209,35 @@ module Aws::MediaTailor
|
|
3158
3209
|
# time_signal_message: {
|
3159
3210
|
# segmentation_descriptors: [
|
3160
3211
|
# {
|
3161
|
-
# segment_num: 1,
|
3162
3212
|
# segmentation_event_id: 1,
|
3163
|
-
# segmentation_type_id: 1,
|
3164
|
-
# segmentation_upid: "String",
|
3165
3213
|
# segmentation_upid_type: 1,
|
3214
|
+
# segmentation_upid: "String",
|
3215
|
+
# segmentation_type_id: 1,
|
3216
|
+
# segment_num: 1,
|
3166
3217
|
# segments_expected: 1,
|
3167
3218
|
# sub_segment_num: 1,
|
3168
3219
|
# sub_segments_expected: 1,
|
3169
3220
|
# },
|
3170
3221
|
# ],
|
3171
3222
|
# },
|
3223
|
+
# ad_break_metadata: [
|
3224
|
+
# {
|
3225
|
+
# key: "String", # required
|
3226
|
+
# value: "String", # required
|
3227
|
+
# },
|
3228
|
+
# ],
|
3172
3229
|
# },
|
3173
3230
|
# ],
|
3174
|
-
# clip_range: {
|
3175
|
-
# end_offset_millis: 1,
|
3176
|
-
# start_offset_millis: 1,
|
3177
|
-
# },
|
3178
3231
|
# duration_millis: 1,
|
3179
|
-
# live_source_name: "__string",
|
3180
|
-
# scheduled_start_time_millis: 1,
|
3181
|
-
# source_location_name: "__string",
|
3182
|
-
# vod_source_name: "__string",
|
3183
3232
|
# },
|
3184
3233
|
# ],
|
3185
|
-
# audience: "__string",
|
3186
3234
|
# },
|
3187
3235
|
# ],
|
3188
|
-
# channel_name: "__string", # required
|
3189
|
-
# program_name: "__string", # required
|
3190
|
-
# schedule_configuration: { # required
|
3191
|
-
# clip_range: {
|
3192
|
-
# end_offset_millis: 1,
|
3193
|
-
# start_offset_millis: 1,
|
3194
|
-
# },
|
3195
|
-
# transition: {
|
3196
|
-
# duration_millis: 1,
|
3197
|
-
# scheduled_start_time_millis: 1,
|
3198
|
-
# },
|
3199
|
-
# },
|
3200
3236
|
# })
|
3201
3237
|
#
|
3202
3238
|
# @example Response structure
|
3203
3239
|
#
|
3204
3240
|
# resp.ad_breaks #=> Array
|
3205
|
-
# resp.ad_breaks[0].ad_break_metadata #=> Array
|
3206
|
-
# resp.ad_breaks[0].ad_break_metadata[0].key #=> String
|
3207
|
-
# resp.ad_breaks[0].ad_break_metadata[0].value #=> String
|
3208
3241
|
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
3209
3242
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
3210
3243
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
@@ -3214,21 +3247,38 @@ module Aws::MediaTailor
|
|
3214
3247
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
3215
3248
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
3216
3249
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
3217
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
3218
3250
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
3219
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
3220
|
-
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
3221
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
|
3222
3255
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
3223
3256
|
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
3224
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
|
3225
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
|
3226
3272
|
# resp.audience_media #=> Array
|
3273
|
+
# resp.audience_media[0].audience #=> String
|
3227
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
|
3228
3281
|
# resp.audience_media[0].alternate_media[0].ad_breaks #=> Array
|
3229
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
|
3230
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
|
3231
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
|
3232
3282
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
3233
3283
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
|
3234
3284
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
|
@@ -3238,32 +3288,18 @@ module Aws::MediaTailor
|
|
3238
3288
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
3239
3289
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
3240
3290
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
3241
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
3242
3291
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
3243
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
3244
|
-
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
3245
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
|
3246
3296
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
3247
3297
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
3248
3298
|
# resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
3249
|
-
# resp.audience_media[0].alternate_media[0].
|
3250
|
-
# 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
|
3251
3302
|
# resp.audience_media[0].alternate_media[0].duration_millis #=> Integer
|
3252
|
-
# resp.audience_media[0].alternate_media[0].live_source_name #=> String
|
3253
|
-
# resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
|
3254
|
-
# resp.audience_media[0].alternate_media[0].source_location_name #=> String
|
3255
|
-
# resp.audience_media[0].alternate_media[0].vod_source_name #=> String
|
3256
|
-
# resp.audience_media[0].audience #=> String
|
3257
|
-
# resp.channel_name #=> String
|
3258
|
-
# resp.clip_range.end_offset_millis #=> Integer
|
3259
|
-
# resp.clip_range.start_offset_millis #=> Integer
|
3260
|
-
# resp.creation_time #=> Time
|
3261
|
-
# resp.duration_millis #=> Integer
|
3262
|
-
# resp.live_source_name #=> String
|
3263
|
-
# resp.program_name #=> String
|
3264
|
-
# resp.scheduled_start_time #=> Time
|
3265
|
-
# resp.source_location_name #=> String
|
3266
|
-
# resp.vod_source_name #=> String
|
3267
3303
|
#
|
3268
3304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgram AWS API Documentation
|
3269
3305
|
#
|
@@ -3441,7 +3477,7 @@ module Aws::MediaTailor
|
|
3441
3477
|
tracer: tracer
|
3442
3478
|
)
|
3443
3479
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
3444
|
-
context[:gem_version] = '1.
|
3480
|
+
context[:gem_version] = '1.93.0'
|
3445
3481
|
Seahorse::Client::Request.new(handlers, context)
|
3446
3482
|
end
|
3447
3483
|
|