aws-sdk-mediatailor 1.92.0 → 1.94.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -505,11 +505,12 @@ module Aws::MediaTailor
505
505
  req.send_request(options)
506
506
  end
507
507
 
508
- # Amazon CloudWatch log settings for a playback configuration.
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
- # Cloudwatch Logs account. For example, if your playback configuration
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
@@ -525,22 +526,42 @@ module Aws::MediaTailor
525
526
  # @option params [required, String] :playback_configuration_name
526
527
  # The name of the playback configuration.
527
528
  #
529
+ # @option params [Array<String>] :enabled_logging_strategies
530
+ # The method used for collecting logs from AWS Elemental MediaTailor. To
531
+ # configure MediaTailor to send logs directly to Amazon CloudWatch Logs,
532
+ # choose `LEGACY_CLOUDWATCH`. To configure MediaTailor to send logs to
533
+ # CloudWatch, which then vends the logs to your destination of choice,
534
+ # choose `VENDED_LOGS`. Supported destinations are CloudWatch Logs log
535
+ # group, Amazon S3 bucket, and Amazon Data Firehose stream.
536
+ #
537
+ # To use vended logs, you must configure the delivery destination in
538
+ # Amazon CloudWatch, as described in [Enable logging from AWS services,
539
+ # Logging that requires additional permissions \[V2\]][1].
540
+ #
541
+ #
542
+ #
543
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-vended-logs-permissions-V2
544
+ #
528
545
  # @return [Types::ConfigureLogsForPlaybackConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
529
546
  #
530
547
  # * {Types::ConfigureLogsForPlaybackConfigurationResponse#percent_enabled #percent_enabled} => Integer
531
548
  # * {Types::ConfigureLogsForPlaybackConfigurationResponse#playback_configuration_name #playback_configuration_name} => String
549
+ # * {Types::ConfigureLogsForPlaybackConfigurationResponse#enabled_logging_strategies #enabled_logging_strategies} => Array&lt;String&gt;
532
550
  #
533
551
  # @example Request syntax with placeholder values
534
552
  #
535
553
  # resp = client.configure_logs_for_playback_configuration({
536
554
  # percent_enabled: 1, # required
537
555
  # playback_configuration_name: "__string", # required
556
+ # enabled_logging_strategies: ["VENDED_LOGS"], # accepts VENDED_LOGS, LEGACY_CLOUDWATCH
538
557
  # })
539
558
  #
540
559
  # @example Response structure
541
560
  #
542
561
  # resp.percent_enabled #=> Integer
543
562
  # resp.playback_configuration_name #=> String
563
+ # resp.enabled_logging_strategies #=> Array
564
+ # resp.enabled_logging_strategies[0] #=> String, one of "VENDED_LOGS", "LEGACY_CLOUDWATCH"
544
565
  #
545
566
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ConfigureLogsForPlaybackConfiguration AWS API Documentation
546
567
  #
@@ -558,9 +579,6 @@ module Aws::MediaTailor
558
579
  #
559
580
  # [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html
560
581
  #
561
- # @option params [Array<String>] :audiences
562
- # The list of audiences defined in channel.
563
- #
564
582
  # @option params [required, String] :channel_name
565
583
  # The name of the channel.
566
584
  #
@@ -600,10 +618,12 @@ module Aws::MediaTailor
600
618
  # The time-shifted viewing configuration you want to associate to the
601
619
  # channel.
602
620
  #
621
+ # @option params [Array<String>] :audiences
622
+ # The list of audiences defined in channel.
623
+ #
603
624
  # @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
604
625
  #
605
626
  # * {Types::CreateChannelResponse#arn #arn} => String
606
- # * {Types::CreateChannelResponse#audiences #audiences} => Array&lt;String&gt;
607
627
  # * {Types::CreateChannelResponse#channel_name #channel_name} => String
608
628
  # * {Types::CreateChannelResponse#channel_state #channel_state} => String
609
629
  # * {Types::CreateChannelResponse#creation_time #creation_time} => Time
@@ -614,11 +634,11 @@ module Aws::MediaTailor
614
634
  # * {Types::CreateChannelResponse#tags #tags} => Hash&lt;String,String&gt;
615
635
  # * {Types::CreateChannelResponse#tier #tier} => String
616
636
  # * {Types::CreateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
637
+ # * {Types::CreateChannelResponse#audiences #audiences} => Array&lt;String&gt;
617
638
  #
618
639
  # @example Request syntax with placeholder values
619
640
  #
620
641
  # resp = client.create_channel({
621
- # audiences: ["String"],
622
642
  # channel_name: "__string", # required
623
643
  # filler_slate: {
624
644
  # source_location_name: "__string",
@@ -633,8 +653,8 @@ module Aws::MediaTailor
633
653
  # suggested_presentation_delay_seconds: 1,
634
654
  # },
635
655
  # hls_playlist_settings: {
636
- # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
637
656
  # manifest_window_seconds: 1,
657
+ # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
638
658
  # },
639
659
  # manifest_name: "__string", # required
640
660
  # source_group: "__string", # required
@@ -648,13 +668,12 @@ module Aws::MediaTailor
648
668
  # time_shift_configuration: {
649
669
  # max_time_delay_seconds: 1, # required
650
670
  # },
671
+ # audiences: ["String"],
651
672
  # })
652
673
  #
653
674
  # @example Response structure
654
675
  #
655
676
  # resp.arn #=> String
656
- # resp.audiences #=> Array
657
- # resp.audiences[0] #=> String
658
677
  # resp.channel_name #=> String
659
678
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
660
679
  # resp.creation_time #=> Time
@@ -666,9 +685,9 @@ module Aws::MediaTailor
666
685
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
667
686
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
668
687
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
688
+ # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
669
689
  # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
670
690
  # 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
691
  # resp.outputs[0].manifest_name #=> String
673
692
  # resp.outputs[0].playback_url #=> String
674
693
  # resp.outputs[0].source_group #=> String
@@ -677,6 +696,8 @@ module Aws::MediaTailor
677
696
  # resp.tags["__string"] #=> String
678
697
  # resp.tier #=> String
679
698
  # resp.time_shift_configuration.max_time_delay_seconds #=> Integer
699
+ # resp.audiences #=> Array
700
+ # resp.audiences[0] #=> String
680
701
  #
681
702
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannel AWS API Documentation
682
703
  #
@@ -863,9 +884,6 @@ module Aws::MediaTailor
863
884
  # @option params [Array<Types::AdBreak>] :ad_breaks
864
885
  # The ad break configuration settings.
865
886
  #
866
- # @option params [Array<Types::AudienceMedia>] :audience_media
867
- # The list of AudienceMedia defined in program.
868
- #
869
887
  # @option params [required, String] :channel_name
870
888
  # The name of the channel for this Program.
871
889
  #
@@ -884,32 +902,29 @@ module Aws::MediaTailor
884
902
  # @option params [String] :vod_source_name
885
903
  # The name that's used to refer to a VOD source.
886
904
  #
905
+ # @option params [Array<Types::AudienceMedia>] :audience_media
906
+ # The list of AudienceMedia defined in program.
907
+ #
887
908
  # @return [Types::CreateProgramResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
888
909
  #
889
910
  # * {Types::CreateProgramResponse#ad_breaks #ad_breaks} => Array&lt;Types::AdBreak&gt;
890
911
  # * {Types::CreateProgramResponse#arn #arn} => String
891
- # * {Types::CreateProgramResponse#audience_media #audience_media} => Array&lt;Types::AudienceMedia&gt;
892
912
  # * {Types::CreateProgramResponse#channel_name #channel_name} => String
893
- # * {Types::CreateProgramResponse#clip_range #clip_range} => Types::ClipRange
894
913
  # * {Types::CreateProgramResponse#creation_time #creation_time} => Time
895
- # * {Types::CreateProgramResponse#duration_millis #duration_millis} => Integer
896
914
  # * {Types::CreateProgramResponse#live_source_name #live_source_name} => String
897
915
  # * {Types::CreateProgramResponse#program_name #program_name} => String
898
916
  # * {Types::CreateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
899
917
  # * {Types::CreateProgramResponse#source_location_name #source_location_name} => String
900
918
  # * {Types::CreateProgramResponse#vod_source_name #vod_source_name} => String
919
+ # * {Types::CreateProgramResponse#clip_range #clip_range} => Types::ClipRange
920
+ # * {Types::CreateProgramResponse#duration_millis #duration_millis} => Integer
921
+ # * {Types::CreateProgramResponse#audience_media #audience_media} => Array&lt;Types::AudienceMedia&gt;
901
922
  #
902
923
  # @example Request syntax with placeholder values
903
924
  #
904
925
  # resp = client.create_program({
905
926
  # ad_breaks: [
906
927
  # {
907
- # ad_break_metadata: [
908
- # {
909
- # key: "String", # required
910
- # value: "String", # required
911
- # },
912
- # ],
913
928
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
914
929
  # offset_millis: 1, # required
915
930
  # slate: {
@@ -925,31 +940,58 @@ module Aws::MediaTailor
925
940
  # time_signal_message: {
926
941
  # segmentation_descriptors: [
927
942
  # {
928
- # segment_num: 1,
929
943
  # segmentation_event_id: 1,
930
- # segmentation_type_id: 1,
931
- # segmentation_upid: "String",
932
944
  # segmentation_upid_type: 1,
945
+ # segmentation_upid: "String",
946
+ # segmentation_type_id: 1,
947
+ # segment_num: 1,
933
948
  # segments_expected: 1,
934
949
  # sub_segment_num: 1,
935
950
  # sub_segments_expected: 1,
936
951
  # },
937
952
  # ],
938
953
  # },
954
+ # ad_break_metadata: [
955
+ # {
956
+ # key: "String", # required
957
+ # value: "String", # required
958
+ # },
959
+ # ],
939
960
  # },
940
961
  # ],
962
+ # channel_name: "__string", # required
963
+ # live_source_name: "__string",
964
+ # program_name: "__string", # required
965
+ # schedule_configuration: { # required
966
+ # transition: { # required
967
+ # duration_millis: 1,
968
+ # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
969
+ # relative_program: "__string",
970
+ # scheduled_start_time_millis: 1,
971
+ # type: "__string", # required
972
+ # },
973
+ # clip_range: {
974
+ # end_offset_millis: 1,
975
+ # start_offset_millis: 1,
976
+ # },
977
+ # },
978
+ # source_location_name: "__string", # required
979
+ # vod_source_name: "__string",
941
980
  # audience_media: [
942
981
  # {
982
+ # audience: "__string",
943
983
  # alternate_media: [
944
984
  # {
985
+ # source_location_name: "__string",
986
+ # live_source_name: "__string",
987
+ # vod_source_name: "__string",
988
+ # clip_range: {
989
+ # end_offset_millis: 1,
990
+ # start_offset_millis: 1,
991
+ # },
992
+ # scheduled_start_time_millis: 1,
945
993
  # ad_breaks: [
946
994
  # {
947
- # ad_break_metadata: [
948
- # {
949
- # key: "String", # required
950
- # value: "String", # required
951
- # },
952
- # ],
953
995
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
954
996
  # offset_millis: 1, # required
955
997
  # slate: {
@@ -965,59 +1007,35 @@ module Aws::MediaTailor
965
1007
  # time_signal_message: {
966
1008
  # segmentation_descriptors: [
967
1009
  # {
968
- # segment_num: 1,
969
1010
  # segmentation_event_id: 1,
970
- # segmentation_type_id: 1,
971
- # segmentation_upid: "String",
972
1011
  # segmentation_upid_type: 1,
1012
+ # segmentation_upid: "String",
1013
+ # segmentation_type_id: 1,
1014
+ # segment_num: 1,
973
1015
  # segments_expected: 1,
974
1016
  # sub_segment_num: 1,
975
1017
  # sub_segments_expected: 1,
976
1018
  # },
977
1019
  # ],
978
1020
  # },
1021
+ # ad_break_metadata: [
1022
+ # {
1023
+ # key: "String", # required
1024
+ # value: "String", # required
1025
+ # },
1026
+ # ],
979
1027
  # },
980
1028
  # ],
981
- # clip_range: {
982
- # end_offset_millis: 1,
983
- # start_offset_millis: 1,
984
- # },
985
1029
  # 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
1030
  # },
991
1031
  # ],
992
- # audience: "__string",
993
1032
  # },
994
1033
  # ],
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
1034
  # })
1014
1035
  #
1015
1036
  # @example Response structure
1016
1037
  #
1017
1038
  # 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
1039
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
1022
1040
  # resp.ad_breaks[0].offset_millis #=> Integer
1023
1041
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -1027,21 +1045,38 @@ module Aws::MediaTailor
1027
1045
  # resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
1028
1046
  # resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
1029
1047
  # 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
1048
  # 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
1049
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
1050
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
1051
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
1052
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
1035
1053
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
1036
1054
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
1037
1055
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
1056
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
1057
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
1058
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
1038
1059
  # resp.arn #=> String
1060
+ # resp.channel_name #=> String
1061
+ # resp.creation_time #=> Time
1062
+ # resp.live_source_name #=> String
1063
+ # resp.program_name #=> String
1064
+ # resp.scheduled_start_time #=> Time
1065
+ # resp.source_location_name #=> String
1066
+ # resp.vod_source_name #=> String
1067
+ # resp.clip_range.end_offset_millis #=> Integer
1068
+ # resp.clip_range.start_offset_millis #=> Integer
1069
+ # resp.duration_millis #=> Integer
1039
1070
  # resp.audience_media #=> Array
1071
+ # resp.audience_media[0].audience #=> String
1040
1072
  # resp.audience_media[0].alternate_media #=> Array
1073
+ # resp.audience_media[0].alternate_media[0].source_location_name #=> String
1074
+ # resp.audience_media[0].alternate_media[0].live_source_name #=> String
1075
+ # resp.audience_media[0].alternate_media[0].vod_source_name #=> String
1076
+ # resp.audience_media[0].alternate_media[0].clip_range.end_offset_millis #=> Integer
1077
+ # resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
1078
+ # resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
1041
1079
  # 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
1080
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
1046
1081
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
1047
1082
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
@@ -1051,32 +1086,18 @@ module Aws::MediaTailor
1051
1086
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
1052
1087
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
1053
1088
  # 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
1089
  # 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
1090
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
1091
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
1092
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
1093
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
1059
1094
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
1060
1095
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
1061
1096
  # 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].clip_range.end_offset_millis #=> Integer
1063
- # resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
1097
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
1098
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
1099
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
1064
1100
  # 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
1101
  #
1081
1102
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgram AWS API Documentation
1082
1103
  #
@@ -1497,18 +1518,18 @@ module Aws::MediaTailor
1497
1518
  # @return [Types::DescribeChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1498
1519
  #
1499
1520
  # * {Types::DescribeChannelResponse#arn #arn} => String
1500
- # * {Types::DescribeChannelResponse#audiences #audiences} => Array&lt;String&gt;
1501
1521
  # * {Types::DescribeChannelResponse#channel_name #channel_name} => String
1502
1522
  # * {Types::DescribeChannelResponse#channel_state #channel_state} => String
1503
1523
  # * {Types::DescribeChannelResponse#creation_time #creation_time} => Time
1504
1524
  # * {Types::DescribeChannelResponse#filler_slate #filler_slate} => Types::SlateSource
1505
1525
  # * {Types::DescribeChannelResponse#last_modified_time #last_modified_time} => Time
1506
- # * {Types::DescribeChannelResponse#log_configuration #log_configuration} => Types::LogConfigurationForChannel
1507
1526
  # * {Types::DescribeChannelResponse#outputs #outputs} => Array&lt;Types::ResponseOutputItem&gt;
1508
1527
  # * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
1509
1528
  # * {Types::DescribeChannelResponse#tags #tags} => Hash&lt;String,String&gt;
1510
1529
  # * {Types::DescribeChannelResponse#tier #tier} => String
1530
+ # * {Types::DescribeChannelResponse#log_configuration #log_configuration} => Types::LogConfigurationForChannel
1511
1531
  # * {Types::DescribeChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
1532
+ # * {Types::DescribeChannelResponse#audiences #audiences} => Array&lt;String&gt;
1512
1533
  #
1513
1534
  # @example Request syntax with placeholder values
1514
1535
  #
@@ -1519,24 +1540,20 @@ module Aws::MediaTailor
1519
1540
  # @example Response structure
1520
1541
  #
1521
1542
  # resp.arn #=> String
1522
- # resp.audiences #=> Array
1523
- # resp.audiences[0] #=> String
1524
1543
  # resp.channel_name #=> String
1525
1544
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
1526
1545
  # resp.creation_time #=> Time
1527
1546
  # resp.filler_slate.source_location_name #=> String
1528
1547
  # resp.filler_slate.vod_source_name #=> String
1529
1548
  # 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
1549
  # resp.outputs #=> Array
1533
1550
  # resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
1534
1551
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
1535
1552
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
1536
1553
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
1554
+ # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
1537
1555
  # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
1538
1556
  # 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
1557
  # resp.outputs[0].manifest_name #=> String
1541
1558
  # resp.outputs[0].playback_url #=> String
1542
1559
  # resp.outputs[0].source_group #=> String
@@ -1544,7 +1561,11 @@ module Aws::MediaTailor
1544
1561
  # resp.tags #=> Hash
1545
1562
  # resp.tags["__string"] #=> String
1546
1563
  # resp.tier #=> String
1564
+ # resp.log_configuration.log_types #=> Array
1565
+ # resp.log_configuration.log_types[0] #=> String, one of "AS_RUN"
1547
1566
  # resp.time_shift_configuration.max_time_delay_seconds #=> Integer
1567
+ # resp.audiences #=> Array
1568
+ # resp.audiences[0] #=> String
1548
1569
  #
1549
1570
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannel AWS API Documentation
1550
1571
  #
@@ -1620,16 +1641,16 @@ module Aws::MediaTailor
1620
1641
  #
1621
1642
  # * {Types::DescribeProgramResponse#ad_breaks #ad_breaks} => Array&lt;Types::AdBreak&gt;
1622
1643
  # * {Types::DescribeProgramResponse#arn #arn} => String
1623
- # * {Types::DescribeProgramResponse#audience_media #audience_media} => Array&lt;Types::AudienceMedia&gt;
1624
1644
  # * {Types::DescribeProgramResponse#channel_name #channel_name} => String
1625
- # * {Types::DescribeProgramResponse#clip_range #clip_range} => Types::ClipRange
1626
1645
  # * {Types::DescribeProgramResponse#creation_time #creation_time} => Time
1627
- # * {Types::DescribeProgramResponse#duration_millis #duration_millis} => Integer
1628
1646
  # * {Types::DescribeProgramResponse#live_source_name #live_source_name} => String
1629
1647
  # * {Types::DescribeProgramResponse#program_name #program_name} => String
1630
1648
  # * {Types::DescribeProgramResponse#scheduled_start_time #scheduled_start_time} => Time
1631
1649
  # * {Types::DescribeProgramResponse#source_location_name #source_location_name} => String
1632
1650
  # * {Types::DescribeProgramResponse#vod_source_name #vod_source_name} => String
1651
+ # * {Types::DescribeProgramResponse#clip_range #clip_range} => Types::ClipRange
1652
+ # * {Types::DescribeProgramResponse#duration_millis #duration_millis} => Integer
1653
+ # * {Types::DescribeProgramResponse#audience_media #audience_media} => Array&lt;Types::AudienceMedia&gt;
1633
1654
  #
1634
1655
  # @example Request syntax with placeholder values
1635
1656
  #
@@ -1641,9 +1662,6 @@ module Aws::MediaTailor
1641
1662
  # @example Response structure
1642
1663
  #
1643
1664
  # 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
1665
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
1648
1666
  # resp.ad_breaks[0].offset_millis #=> Integer
1649
1667
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -1653,21 +1671,38 @@ module Aws::MediaTailor
1653
1671
  # resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
1654
1672
  # resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
1655
1673
  # 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
1674
  # 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
1675
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
1676
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
1677
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
1678
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
1661
1679
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
1662
1680
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
1663
1681
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
1682
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
1683
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
1684
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
1664
1685
  # resp.arn #=> String
1686
+ # resp.channel_name #=> String
1687
+ # resp.creation_time #=> Time
1688
+ # resp.live_source_name #=> String
1689
+ # resp.program_name #=> String
1690
+ # resp.scheduled_start_time #=> Time
1691
+ # resp.source_location_name #=> String
1692
+ # resp.vod_source_name #=> String
1693
+ # resp.clip_range.end_offset_millis #=> Integer
1694
+ # resp.clip_range.start_offset_millis #=> Integer
1695
+ # resp.duration_millis #=> Integer
1665
1696
  # resp.audience_media #=> Array
1697
+ # resp.audience_media[0].audience #=> String
1666
1698
  # resp.audience_media[0].alternate_media #=> Array
1699
+ # resp.audience_media[0].alternate_media[0].source_location_name #=> String
1700
+ # resp.audience_media[0].alternate_media[0].live_source_name #=> String
1701
+ # resp.audience_media[0].alternate_media[0].vod_source_name #=> String
1702
+ # resp.audience_media[0].alternate_media[0].clip_range.end_offset_millis #=> Integer
1703
+ # resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
1704
+ # resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
1667
1705
  # 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
1706
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
1672
1707
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
1673
1708
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
@@ -1677,32 +1712,18 @@ module Aws::MediaTailor
1677
1712
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
1678
1713
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
1679
1714
  # 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
1715
  # 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
1716
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
1717
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
1718
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
1719
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
1685
1720
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
1686
1721
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
1687
1722
  # 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].clip_range.end_offset_millis #=> Integer
1689
- # resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
1723
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
1724
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
1725
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
1690
1726
  # 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
1727
  #
1707
1728
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeProgram AWS API Documentation
1708
1729
  #
@@ -1852,9 +1873,6 @@ module Aws::MediaTailor
1852
1873
 
1853
1874
  # Retrieves information about your channel's schedule.
1854
1875
  #
1855
- # @option params [String] :audience
1856
- # The single audience for GetChannelScheduleRequest.
1857
- #
1858
1876
  # @option params [required, String] :channel_name
1859
1877
  # The name of the channel associated with this Channel Schedule.
1860
1878
  #
@@ -1881,6 +1899,9 @@ module Aws::MediaTailor
1881
1899
  # If the previous response didn't include a `NextToken` element, there
1882
1900
  # are no more channel schedules to get.
1883
1901
  #
1902
+ # @option params [String] :audience
1903
+ # The single audience for GetChannelScheduleRequest.
1904
+ #
1884
1905
  # @return [Types::GetChannelScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1885
1906
  #
1886
1907
  # * {Types::GetChannelScheduleResponse#items #items} => Array&lt;Types::ScheduleEntry&gt;
@@ -1891,11 +1912,11 @@ module Aws::MediaTailor
1891
1912
  # @example Request syntax with placeholder values
1892
1913
  #
1893
1914
  # resp = client.get_channel_schedule({
1894
- # audience: "__string",
1895
1915
  # channel_name: "__string", # required
1896
1916
  # duration_minutes: "__string",
1897
1917
  # max_results: 1,
1898
1918
  # next_token: "__string",
1919
+ # audience: "__string",
1899
1920
  # })
1900
1921
  #
1901
1922
  # @example Response structure
@@ -1904,8 +1925,6 @@ module Aws::MediaTailor
1904
1925
  # resp.items[0].approximate_duration_seconds #=> Integer
1905
1926
  # resp.items[0].approximate_start_time #=> Time
1906
1927
  # resp.items[0].arn #=> String
1907
- # resp.items[0].audiences #=> Array
1908
- # resp.items[0].audiences[0] #=> String
1909
1928
  # resp.items[0].channel_name #=> String
1910
1929
  # resp.items[0].live_source_name #=> String
1911
1930
  # resp.items[0].program_name #=> String
@@ -1917,6 +1936,8 @@ module Aws::MediaTailor
1917
1936
  # resp.items[0].schedule_entry_type #=> String, one of "PROGRAM", "FILLER_SLATE", "ALTERNATE_MEDIA"
1918
1937
  # resp.items[0].source_location_name #=> String
1919
1938
  # resp.items[0].vod_source_name #=> String
1939
+ # resp.items[0].audiences #=> Array
1940
+ # resp.items[0].audiences[0] #=> String
1920
1941
  # resp.next_token #=> String
1921
1942
  #
1922
1943
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelSchedule AWS API Documentation
@@ -1961,6 +1982,7 @@ module Aws::MediaTailor
1961
1982
  # * {Types::GetPlaybackConfigurationResponse#tags #tags} => Hash&lt;String,String&gt;
1962
1983
  # * {Types::GetPlaybackConfigurationResponse#transcode_profile_name #transcode_profile_name} => String
1963
1984
  # * {Types::GetPlaybackConfigurationResponse#video_content_source_url #video_content_source_url} => String
1985
+ # * {Types::GetPlaybackConfigurationResponse#ad_conditioning_configuration #ad_conditioning_configuration} => Types::AdConditioningConfiguration
1964
1986
  #
1965
1987
  # @example Request syntax with placeholder values
1966
1988
  #
@@ -1971,9 +1993,9 @@ module Aws::MediaTailor
1971
1993
  # @example Response structure
1972
1994
  #
1973
1995
  # resp.ad_decision_server_url #=> String
1974
- # resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
1975
1996
  # resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
1976
1997
  # resp.avail_suppression.value #=> String
1998
+ # resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
1977
1999
  # resp.bumper.end_url #=> String
1978
2000
  # resp.bumper.start_url #=> String
1979
2001
  # resp.cdn_configuration.ad_segment_url_prefix #=> String
@@ -1989,6 +2011,8 @@ module Aws::MediaTailor
1989
2011
  # resp.live_pre_roll_configuration.ad_decision_server_url #=> String
1990
2012
  # resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
1991
2013
  # resp.log_configuration.percent_enabled #=> Integer
2014
+ # resp.log_configuration.enabled_logging_strategies #=> Array
2015
+ # resp.log_configuration.enabled_logging_strategies[0] #=> String, one of "VENDED_LOGS", "LEGACY_CLOUDWATCH"
1992
2016
  # resp.manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
1993
2017
  # resp.name #=> String
1994
2018
  # resp.personalization_threshold_seconds #=> Integer
@@ -2000,6 +2024,7 @@ module Aws::MediaTailor
2000
2024
  # resp.tags["__string"] #=> String
2001
2025
  # resp.transcode_profile_name #=> String
2002
2026
  # resp.video_content_source_url #=> String
2027
+ # resp.ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
2003
2028
  #
2004
2029
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPlaybackConfiguration AWS API Documentation
2005
2030
  #
@@ -2108,11 +2133,11 @@ module Aws::MediaTailor
2108
2133
  # resp.items #=> Array
2109
2134
  # resp.items[0].alert_code #=> String
2110
2135
  # resp.items[0].alert_message #=> String
2111
- # resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
2112
2136
  # resp.items[0].last_modified_time #=> Time
2113
2137
  # resp.items[0].related_resource_arns #=> Array
2114
2138
  # resp.items[0].related_resource_arns[0] #=> String
2115
2139
  # resp.items[0].resource_arn #=> String
2140
+ # resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
2116
2141
  # resp.next_token #=> String
2117
2142
  #
2118
2143
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlerts AWS API Documentation
@@ -2155,24 +2180,20 @@ module Aws::MediaTailor
2155
2180
  #
2156
2181
  # resp.items #=> Array
2157
2182
  # resp.items[0].arn #=> String
2158
- # resp.items[0].audiences #=> Array
2159
- # resp.items[0].audiences[0] #=> String
2160
2183
  # resp.items[0].channel_name #=> String
2161
2184
  # resp.items[0].channel_state #=> String
2162
2185
  # resp.items[0].creation_time #=> Time
2163
2186
  # resp.items[0].filler_slate.source_location_name #=> String
2164
2187
  # resp.items[0].filler_slate.vod_source_name #=> String
2165
2188
  # 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
2189
  # resp.items[0].outputs #=> Array
2169
2190
  # resp.items[0].outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
2170
2191
  # resp.items[0].outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
2171
2192
  # resp.items[0].outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
2172
2193
  # resp.items[0].outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
2194
+ # resp.items[0].outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
2173
2195
  # resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type #=> Array
2174
2196
  # 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
2197
  # resp.items[0].outputs[0].manifest_name #=> String
2177
2198
  # resp.items[0].outputs[0].playback_url #=> String
2178
2199
  # resp.items[0].outputs[0].source_group #=> String
@@ -2180,6 +2201,10 @@ module Aws::MediaTailor
2180
2201
  # resp.items[0].tags #=> Hash
2181
2202
  # resp.items[0].tags["__string"] #=> String
2182
2203
  # resp.items[0].tier #=> String
2204
+ # resp.items[0].log_configuration.log_types #=> Array
2205
+ # resp.items[0].log_configuration.log_types[0] #=> String, one of "AS_RUN"
2206
+ # resp.items[0].audiences #=> Array
2207
+ # resp.items[0].audiences[0] #=> String
2183
2208
  # resp.next_token #=> String
2184
2209
  #
2185
2210
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListChannels AWS API Documentation
@@ -2284,9 +2309,9 @@ module Aws::MediaTailor
2284
2309
  #
2285
2310
  # resp.items #=> Array
2286
2311
  # 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
2312
  # resp.items[0].avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
2289
2313
  # resp.items[0].avail_suppression.value #=> String
2314
+ # resp.items[0].avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
2290
2315
  # resp.items[0].bumper.end_url #=> String
2291
2316
  # resp.items[0].bumper.start_url #=> String
2292
2317
  # resp.items[0].cdn_configuration.ad_segment_url_prefix #=> String
@@ -2302,6 +2327,8 @@ module Aws::MediaTailor
2302
2327
  # resp.items[0].live_pre_roll_configuration.ad_decision_server_url #=> String
2303
2328
  # resp.items[0].live_pre_roll_configuration.max_duration_seconds #=> Integer
2304
2329
  # resp.items[0].log_configuration.percent_enabled #=> Integer
2330
+ # resp.items[0].log_configuration.enabled_logging_strategies #=> Array
2331
+ # resp.items[0].log_configuration.enabled_logging_strategies[0] #=> String, one of "VENDED_LOGS", "LEGACY_CLOUDWATCH"
2305
2332
  # resp.items[0].manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
2306
2333
  # resp.items[0].name #=> String
2307
2334
  # resp.items[0].personalization_threshold_seconds #=> Integer
@@ -2313,6 +2340,7 @@ module Aws::MediaTailor
2313
2340
  # resp.items[0].tags["__string"] #=> String
2314
2341
  # resp.items[0].transcode_profile_name #=> String
2315
2342
  # resp.items[0].video_content_source_url #=> String
2343
+ # resp.items[0].ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
2316
2344
  # resp.next_token #=> String
2317
2345
  #
2318
2346
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListPlaybackConfigurations AWS API Documentation
@@ -2616,7 +2644,7 @@ module Aws::MediaTailor
2616
2644
  #
2617
2645
  #
2618
2646
  #
2619
- # [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html
2647
+ # [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
2620
2648
  #
2621
2649
  # @option params [Types::DashConfigurationForPut] :dash_configuration
2622
2650
  # The configuration for DASH content.
@@ -2683,6 +2711,11 @@ module Aws::MediaTailor
2683
2711
  # The URL prefix for the parent manifest for the stream, minus the asset
2684
2712
  # ID. The maximum length is 512 characters.
2685
2713
  #
2714
+ # @option params [Types::AdConditioningConfiguration] :ad_conditioning_configuration
2715
+ # The setting that indicates what conditioning MediaTailor will perform
2716
+ # on ads that the ad decision server (ADS) returns, and what priority
2717
+ # MediaTailor uses when inserting ads.
2718
+ #
2686
2719
  # @return [Types::PutPlaybackConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2687
2720
  #
2688
2721
  # * {Types::PutPlaybackConfigurationResponse#ad_decision_server_url #ad_decision_server_url} => String
@@ -2705,15 +2738,16 @@ module Aws::MediaTailor
2705
2738
  # * {Types::PutPlaybackConfigurationResponse#tags #tags} => Hash&lt;String,String&gt;
2706
2739
  # * {Types::PutPlaybackConfigurationResponse#transcode_profile_name #transcode_profile_name} => String
2707
2740
  # * {Types::PutPlaybackConfigurationResponse#video_content_source_url #video_content_source_url} => String
2741
+ # * {Types::PutPlaybackConfigurationResponse#ad_conditioning_configuration #ad_conditioning_configuration} => Types::AdConditioningConfiguration
2708
2742
  #
2709
2743
  # @example Request syntax with placeholder values
2710
2744
  #
2711
2745
  # resp = client.put_playback_configuration({
2712
2746
  # ad_decision_server_url: "__string",
2713
2747
  # avail_suppression: {
2714
- # fill_policy: "FULL_AVAIL_ONLY", # accepts FULL_AVAIL_ONLY, PARTIAL_AVAIL
2715
2748
  # mode: "OFF", # accepts OFF, BEHIND_LIVE_EDGE, AFTER_LIVE_EDGE
2716
2749
  # value: "__string",
2750
+ # fill_policy: "FULL_AVAIL_ONLY", # accepts FULL_AVAIL_ONLY, PARTIAL_AVAIL
2717
2751
  # },
2718
2752
  # bumper: {
2719
2753
  # end_url: "__string",
@@ -2750,14 +2784,17 @@ module Aws::MediaTailor
2750
2784
  # },
2751
2785
  # transcode_profile_name: "__string",
2752
2786
  # video_content_source_url: "__string",
2787
+ # ad_conditioning_configuration: {
2788
+ # streaming_media_file_conditioning: "TRANSCODE", # required, accepts TRANSCODE, NONE
2789
+ # },
2753
2790
  # })
2754
2791
  #
2755
2792
  # @example Response structure
2756
2793
  #
2757
2794
  # resp.ad_decision_server_url #=> String
2758
- # resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
2759
2795
  # resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE", "AFTER_LIVE_EDGE"
2760
2796
  # resp.avail_suppression.value #=> String
2797
+ # resp.avail_suppression.fill_policy #=> String, one of "FULL_AVAIL_ONLY", "PARTIAL_AVAIL"
2761
2798
  # resp.bumper.end_url #=> String
2762
2799
  # resp.bumper.start_url #=> String
2763
2800
  # resp.cdn_configuration.ad_segment_url_prefix #=> String
@@ -2773,6 +2810,8 @@ module Aws::MediaTailor
2773
2810
  # resp.live_pre_roll_configuration.ad_decision_server_url #=> String
2774
2811
  # resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
2775
2812
  # resp.log_configuration.percent_enabled #=> Integer
2813
+ # resp.log_configuration.enabled_logging_strategies #=> Array
2814
+ # resp.log_configuration.enabled_logging_strategies[0] #=> String, one of "VENDED_LOGS", "LEGACY_CLOUDWATCH"
2776
2815
  # resp.manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
2777
2816
  # resp.name #=> String
2778
2817
  # resp.personalization_threshold_seconds #=> Integer
@@ -2784,6 +2823,7 @@ module Aws::MediaTailor
2784
2823
  # resp.tags["__string"] #=> String
2785
2824
  # resp.transcode_profile_name #=> String
2786
2825
  # resp.video_content_source_url #=> String
2826
+ # resp.ad_conditioning_configuration.streaming_media_file_conditioning #=> String, one of "TRANSCODE", "NONE"
2787
2827
  #
2788
2828
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfiguration AWS API Documentation
2789
2829
  #
@@ -2923,9 +2963,6 @@ module Aws::MediaTailor
2923
2963
  #
2924
2964
  # [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html
2925
2965
  #
2926
- # @option params [Array<String>] :audiences
2927
- # The list of audiences defined in channel.
2928
- #
2929
2966
  # @option params [required, String] :channel_name
2930
2967
  # The name of the channel.
2931
2968
  #
@@ -2942,10 +2979,12 @@ module Aws::MediaTailor
2942
2979
  # The time-shifted viewing configuration you want to associate to the
2943
2980
  # channel.
2944
2981
  #
2982
+ # @option params [Array<String>] :audiences
2983
+ # The list of audiences defined in channel.
2984
+ #
2945
2985
  # @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2946
2986
  #
2947
2987
  # * {Types::UpdateChannelResponse#arn #arn} => String
2948
- # * {Types::UpdateChannelResponse#audiences #audiences} => Array&lt;String&gt;
2949
2988
  # * {Types::UpdateChannelResponse#channel_name #channel_name} => String
2950
2989
  # * {Types::UpdateChannelResponse#channel_state #channel_state} => String
2951
2990
  # * {Types::UpdateChannelResponse#creation_time #creation_time} => Time
@@ -2956,11 +2995,11 @@ module Aws::MediaTailor
2956
2995
  # * {Types::UpdateChannelResponse#tags #tags} => Hash&lt;String,String&gt;
2957
2996
  # * {Types::UpdateChannelResponse#tier #tier} => String
2958
2997
  # * {Types::UpdateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
2998
+ # * {Types::UpdateChannelResponse#audiences #audiences} => Array&lt;String&gt;
2959
2999
  #
2960
3000
  # @example Request syntax with placeholder values
2961
3001
  #
2962
3002
  # resp = client.update_channel({
2963
- # audiences: ["String"],
2964
3003
  # channel_name: "__string", # required
2965
3004
  # filler_slate: {
2966
3005
  # source_location_name: "__string",
@@ -2975,8 +3014,8 @@ module Aws::MediaTailor
2975
3014
  # suggested_presentation_delay_seconds: 1,
2976
3015
  # },
2977
3016
  # hls_playlist_settings: {
2978
- # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
2979
3017
  # manifest_window_seconds: 1,
3018
+ # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
2980
3019
  # },
2981
3020
  # manifest_name: "__string", # required
2982
3021
  # source_group: "__string", # required
@@ -2985,13 +3024,12 @@ module Aws::MediaTailor
2985
3024
  # time_shift_configuration: {
2986
3025
  # max_time_delay_seconds: 1, # required
2987
3026
  # },
3027
+ # audiences: ["String"],
2988
3028
  # })
2989
3029
  #
2990
3030
  # @example Response structure
2991
3031
  #
2992
3032
  # resp.arn #=> String
2993
- # resp.audiences #=> Array
2994
- # resp.audiences[0] #=> String
2995
3033
  # resp.channel_name #=> String
2996
3034
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
2997
3035
  # resp.creation_time #=> Time
@@ -3003,9 +3041,9 @@ module Aws::MediaTailor
3003
3041
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
3004
3042
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
3005
3043
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
3044
+ # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
3006
3045
  # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
3007
3046
  # 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
3047
  # resp.outputs[0].manifest_name #=> String
3010
3048
  # resp.outputs[0].playback_url #=> String
3011
3049
  # resp.outputs[0].source_group #=> String
@@ -3014,6 +3052,8 @@ module Aws::MediaTailor
3014
3052
  # resp.tags["__string"] #=> String
3015
3053
  # resp.tier #=> String
3016
3054
  # resp.time_shift_configuration.max_time_delay_seconds #=> Integer
3055
+ # resp.audiences #=> Array
3056
+ # resp.audiences[0] #=> String
3017
3057
  #
3018
3058
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannel AWS API Documentation
3019
3059
  #
@@ -3088,9 +3128,6 @@ module Aws::MediaTailor
3088
3128
  # @option params [Array<Types::AdBreak>] :ad_breaks
3089
3129
  # The ad break configuration settings.
3090
3130
  #
3091
- # @option params [Array<Types::AudienceMedia>] :audience_media
3092
- # The list of AudienceMedia defined in program.
3093
- #
3094
3131
  # @option params [required, String] :channel_name
3095
3132
  # The name of the channel for this Program.
3096
3133
  #
@@ -3100,32 +3137,29 @@ module Aws::MediaTailor
3100
3137
  # @option params [required, Types::UpdateProgramScheduleConfiguration] :schedule_configuration
3101
3138
  # The schedule configuration settings.
3102
3139
  #
3140
+ # @option params [Array<Types::AudienceMedia>] :audience_media
3141
+ # The list of AudienceMedia defined in program.
3142
+ #
3103
3143
  # @return [Types::UpdateProgramResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3104
3144
  #
3105
3145
  # * {Types::UpdateProgramResponse#ad_breaks #ad_breaks} => Array&lt;Types::AdBreak&gt;
3106
3146
  # * {Types::UpdateProgramResponse#arn #arn} => String
3107
- # * {Types::UpdateProgramResponse#audience_media #audience_media} => Array&lt;Types::AudienceMedia&gt;
3108
3147
  # * {Types::UpdateProgramResponse#channel_name #channel_name} => String
3109
- # * {Types::UpdateProgramResponse#clip_range #clip_range} => Types::ClipRange
3110
3148
  # * {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
3149
  # * {Types::UpdateProgramResponse#program_name #program_name} => String
3114
- # * {Types::UpdateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
3115
3150
  # * {Types::UpdateProgramResponse#source_location_name #source_location_name} => String
3116
3151
  # * {Types::UpdateProgramResponse#vod_source_name #vod_source_name} => String
3152
+ # * {Types::UpdateProgramResponse#live_source_name #live_source_name} => String
3153
+ # * {Types::UpdateProgramResponse#clip_range #clip_range} => Types::ClipRange
3154
+ # * {Types::UpdateProgramResponse#duration_millis #duration_millis} => Integer
3155
+ # * {Types::UpdateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
3156
+ # * {Types::UpdateProgramResponse#audience_media #audience_media} => Array&lt;Types::AudienceMedia&gt;
3117
3157
  #
3118
3158
  # @example Request syntax with placeholder values
3119
3159
  #
3120
3160
  # resp = client.update_program({
3121
3161
  # ad_breaks: [
3122
3162
  # {
3123
- # ad_break_metadata: [
3124
- # {
3125
- # key: "String", # required
3126
- # value: "String", # required
3127
- # },
3128
- # ],
3129
3163
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
3130
3164
  # offset_millis: 1, # required
3131
3165
  # slate: {
@@ -3141,31 +3175,52 @@ module Aws::MediaTailor
3141
3175
  # time_signal_message: {
3142
3176
  # segmentation_descriptors: [
3143
3177
  # {
3144
- # segment_num: 1,
3145
3178
  # segmentation_event_id: 1,
3146
- # segmentation_type_id: 1,
3147
- # segmentation_upid: "String",
3148
3179
  # segmentation_upid_type: 1,
3180
+ # segmentation_upid: "String",
3181
+ # segmentation_type_id: 1,
3182
+ # segment_num: 1,
3149
3183
  # segments_expected: 1,
3150
3184
  # sub_segment_num: 1,
3151
3185
  # sub_segments_expected: 1,
3152
3186
  # },
3153
3187
  # ],
3154
3188
  # },
3189
+ # ad_break_metadata: [
3190
+ # {
3191
+ # key: "String", # required
3192
+ # value: "String", # required
3193
+ # },
3194
+ # ],
3155
3195
  # },
3156
3196
  # ],
3197
+ # channel_name: "__string", # required
3198
+ # program_name: "__string", # required
3199
+ # schedule_configuration: { # required
3200
+ # transition: {
3201
+ # scheduled_start_time_millis: 1,
3202
+ # duration_millis: 1,
3203
+ # },
3204
+ # clip_range: {
3205
+ # end_offset_millis: 1,
3206
+ # start_offset_millis: 1,
3207
+ # },
3208
+ # },
3157
3209
  # audience_media: [
3158
3210
  # {
3211
+ # audience: "__string",
3159
3212
  # alternate_media: [
3160
3213
  # {
3214
+ # source_location_name: "__string",
3215
+ # live_source_name: "__string",
3216
+ # vod_source_name: "__string",
3217
+ # clip_range: {
3218
+ # end_offset_millis: 1,
3219
+ # start_offset_millis: 1,
3220
+ # },
3221
+ # scheduled_start_time_millis: 1,
3161
3222
  # ad_breaks: [
3162
3223
  # {
3163
- # ad_break_metadata: [
3164
- # {
3165
- # key: "String", # required
3166
- # value: "String", # required
3167
- # },
3168
- # ],
3169
3224
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
3170
3225
  # offset_millis: 1, # required
3171
3226
  # slate: {
@@ -3181,53 +3236,35 @@ module Aws::MediaTailor
3181
3236
  # time_signal_message: {
3182
3237
  # segmentation_descriptors: [
3183
3238
  # {
3184
- # segment_num: 1,
3185
3239
  # segmentation_event_id: 1,
3186
- # segmentation_type_id: 1,
3187
- # segmentation_upid: "String",
3188
3240
  # segmentation_upid_type: 1,
3241
+ # segmentation_upid: "String",
3242
+ # segmentation_type_id: 1,
3243
+ # segment_num: 1,
3189
3244
  # segments_expected: 1,
3190
3245
  # sub_segment_num: 1,
3191
3246
  # sub_segments_expected: 1,
3192
3247
  # },
3193
3248
  # ],
3194
3249
  # },
3250
+ # ad_break_metadata: [
3251
+ # {
3252
+ # key: "String", # required
3253
+ # value: "String", # required
3254
+ # },
3255
+ # ],
3195
3256
  # },
3196
3257
  # ],
3197
- # clip_range: {
3198
- # end_offset_millis: 1,
3199
- # start_offset_millis: 1,
3200
- # },
3201
3258
  # 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
3259
  # },
3207
3260
  # ],
3208
- # audience: "__string",
3209
3261
  # },
3210
3262
  # ],
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
3263
  # })
3224
3264
  #
3225
3265
  # @example Response structure
3226
3266
  #
3227
3267
  # 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
3268
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
3232
3269
  # resp.ad_breaks[0].offset_millis #=> Integer
3233
3270
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -3237,21 +3274,38 @@ module Aws::MediaTailor
3237
3274
  # resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
3238
3275
  # resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
3239
3276
  # 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
3277
  # 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
3278
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
3279
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
3280
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
3281
+ # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
3245
3282
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
3246
3283
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
3247
3284
  # resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
3285
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
3286
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
3287
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
3248
3288
  # resp.arn #=> String
3289
+ # resp.channel_name #=> String
3290
+ # resp.creation_time #=> Time
3291
+ # resp.program_name #=> String
3292
+ # resp.source_location_name #=> String
3293
+ # resp.vod_source_name #=> String
3294
+ # resp.live_source_name #=> String
3295
+ # resp.clip_range.end_offset_millis #=> Integer
3296
+ # resp.clip_range.start_offset_millis #=> Integer
3297
+ # resp.duration_millis #=> Integer
3298
+ # resp.scheduled_start_time #=> Time
3249
3299
  # resp.audience_media #=> Array
3300
+ # resp.audience_media[0].audience #=> String
3250
3301
  # resp.audience_media[0].alternate_media #=> Array
3302
+ # resp.audience_media[0].alternate_media[0].source_location_name #=> String
3303
+ # resp.audience_media[0].alternate_media[0].live_source_name #=> String
3304
+ # resp.audience_media[0].alternate_media[0].vod_source_name #=> String
3305
+ # resp.audience_media[0].alternate_media[0].clip_range.end_offset_millis #=> Integer
3306
+ # resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
3307
+ # resp.audience_media[0].alternate_media[0].scheduled_start_time_millis #=> Integer
3251
3308
  # 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
3309
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
3256
3310
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].offset_millis #=> Integer
3257
3311
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].slate.source_location_name #=> String
@@ -3261,32 +3315,18 @@ module Aws::MediaTailor
3261
3315
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
3262
3316
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
3263
3317
  # 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
3318
  # 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
3319
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
3320
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
3321
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
3322
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
3269
3323
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
3270
3324
  # resp.audience_media[0].alternate_media[0].ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
3271
3325
  # 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].clip_range.end_offset_millis #=> Integer
3273
- # resp.audience_media[0].alternate_media[0].clip_range.start_offset_millis #=> Integer
3326
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata #=> Array
3327
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].key #=> String
3328
+ # resp.audience_media[0].alternate_media[0].ad_breaks[0].ad_break_metadata[0].value #=> String
3274
3329
  # 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
3330
  #
3291
3331
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgram AWS API Documentation
3292
3332
  #
@@ -3464,7 +3504,7 @@ module Aws::MediaTailor
3464
3504
  tracer: tracer
3465
3505
  )
3466
3506
  context[:gem_name] = 'aws-sdk-mediatailor'
3467
- context[:gem_version] = '1.92.0'
3507
+ context[:gem_version] = '1.94.0'
3468
3508
  Seahorse::Client::Request.new(handlers, context)
3469
3509
  end
3470
3510