aws-sdk-mediatailor 1.41.0 → 1.45.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +87 -4
- data/lib/aws-sdk-mediatailor/client_api.rb +35 -0
- data/lib/aws-sdk-mediatailor/types.rb +199 -12
- data/lib/aws-sdk-mediatailor.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0779b9ea619f4bc6e099db8d8d52c314cb4c0b203ae0aa30efe962da3cb57405'
|
4
|
+
data.tar.gz: c12f66df94fb1b84850ac0a55cdf2ba080ad78f063ae2697e978e3fde3b3dcff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 031e6dacd4d9db5ba35056d1489a6b19210e11d0da688e76a0eee3fc916768e52e9c557a88939e43ddc5ca44dff6d40125a7a483b5bded0c998cb9094ea1ad60
|
7
|
+
data.tar.gz: fda18b10c1c6e00b5bc3170ca325b38376b8e0c12dee25af84e9435c72d3e485969e89190d8d6e22464a1291326ea98fdfee702b6c9d1d573b1512902835acfe
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2021-09-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support to configure logs for playback configuration.
|
8
|
+
|
9
|
+
1.44.0 (2021-09-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for wall clock programs in LINEAR channels.
|
13
|
+
|
14
|
+
1.43.0 (2021-07-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.42.0 (2021-07-28)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.41.0 (2021-07-08)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
@@ -327,16 +327,73 @@ module Aws::MediaTailor
|
|
327
327
|
|
328
328
|
# @!group API Operations
|
329
329
|
|
330
|
+
# Configures Amazon CloudWatch log settings for a playback
|
331
|
+
# configuration.
|
332
|
+
#
|
333
|
+
# @option params [required, Integer] :percent_enabled
|
334
|
+
# The percentage of session logs that MediaTailor sends to your
|
335
|
+
# Cloudwatch Logs account. For example, if your playback configuration
|
336
|
+
# has 1000 sessions and percentEnabled is set to 60, MediaTailor sends
|
337
|
+
# logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides
|
338
|
+
# at random which of the playback configuration sessions to send logs
|
339
|
+
# for. If you want to view logs for a specific session, you can use the
|
340
|
+
# [debug log mode][1].
|
341
|
+
#
|
342
|
+
# Valid values: 0 - 100
|
343
|
+
#
|
344
|
+
#
|
345
|
+
#
|
346
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html
|
347
|
+
#
|
348
|
+
# @option params [required, String] :playback_configuration_name
|
349
|
+
# The name of the playback configuration.
|
350
|
+
#
|
351
|
+
# @return [Types::ConfigureLogsForPlaybackConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
352
|
+
#
|
353
|
+
# * {Types::ConfigureLogsForPlaybackConfigurationResponse#percent_enabled #percent_enabled} => Integer
|
354
|
+
# * {Types::ConfigureLogsForPlaybackConfigurationResponse#playback_configuration_name #playback_configuration_name} => String
|
355
|
+
#
|
356
|
+
# @example Request syntax with placeholder values
|
357
|
+
#
|
358
|
+
# resp = client.configure_logs_for_playback_configuration({
|
359
|
+
# percent_enabled: 1, # required
|
360
|
+
# playback_configuration_name: "__string", # required
|
361
|
+
# })
|
362
|
+
#
|
363
|
+
# @example Response structure
|
364
|
+
#
|
365
|
+
# resp.percent_enabled #=> Integer
|
366
|
+
# resp.playback_configuration_name #=> String
|
367
|
+
#
|
368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ConfigureLogsForPlaybackConfiguration AWS API Documentation
|
369
|
+
#
|
370
|
+
# @overload configure_logs_for_playback_configuration(params = {})
|
371
|
+
# @param [Hash] params ({})
|
372
|
+
def configure_logs_for_playback_configuration(params = {}, options = {})
|
373
|
+
req = build_request(:configure_logs_for_playback_configuration, params)
|
374
|
+
req.send_request(options)
|
375
|
+
end
|
376
|
+
|
330
377
|
# Creates a channel.
|
331
378
|
#
|
332
379
|
# @option params [required, String] :channel_name
|
333
380
|
#
|
381
|
+
# @option params [Types::SlateSource] :filler_slate
|
382
|
+
# The slate used to fill gaps between programs in the schedule. You must
|
383
|
+
# configure filler slate if your channel uses a LINEAR PlaybackMode.
|
384
|
+
#
|
334
385
|
# @option params [required, Array<Types::RequestOutputItem>] :outputs
|
335
386
|
# The channel's output properties.
|
336
387
|
#
|
337
388
|
# @option params [required, String] :playback_mode
|
338
|
-
# The type of playback mode for this channel.
|
339
|
-
#
|
389
|
+
# The type of playback mode to use for this channel.
|
390
|
+
#
|
391
|
+
# LINEAR - The programs in the schedule play once back-to-back in the
|
392
|
+
# schedule.
|
393
|
+
#
|
394
|
+
# LOOP - The programs in the schedule play back-to-back in an endless
|
395
|
+
# loop. When the last program in the schedule stops playing, playback
|
396
|
+
# loops back to the first program in the schedule.
|
340
397
|
#
|
341
398
|
# @option params [Hash<String,String>] :tags
|
342
399
|
# The tags to assign to the channel.
|
@@ -347,6 +404,7 @@ module Aws::MediaTailor
|
|
347
404
|
# * {Types::CreateChannelResponse#channel_name #channel_name} => String
|
348
405
|
# * {Types::CreateChannelResponse#channel_state #channel_state} => String
|
349
406
|
# * {Types::CreateChannelResponse#creation_time #creation_time} => Time
|
407
|
+
# * {Types::CreateChannelResponse#filler_slate #filler_slate} => Types::SlateSource
|
350
408
|
# * {Types::CreateChannelResponse#last_modified_time #last_modified_time} => Time
|
351
409
|
# * {Types::CreateChannelResponse#outputs #outputs} => Array<Types::ResponseOutputItem>
|
352
410
|
# * {Types::CreateChannelResponse#playback_mode #playback_mode} => String
|
@@ -356,6 +414,10 @@ module Aws::MediaTailor
|
|
356
414
|
#
|
357
415
|
# resp = client.create_channel({
|
358
416
|
# channel_name: "__string", # required
|
417
|
+
# filler_slate: {
|
418
|
+
# source_location_name: "__string",
|
419
|
+
# vod_source_name: "__string",
|
420
|
+
# },
|
359
421
|
# outputs: [ # required
|
360
422
|
# {
|
361
423
|
# dash_playlist_settings: {
|
@@ -371,7 +433,7 @@ module Aws::MediaTailor
|
|
371
433
|
# source_group: "__string", # required
|
372
434
|
# },
|
373
435
|
# ],
|
374
|
-
# playback_mode: "LOOP", # required, accepts LOOP
|
436
|
+
# playback_mode: "LOOP", # required, accepts LOOP, LINEAR
|
375
437
|
# tags: {
|
376
438
|
# "__string" => "__string",
|
377
439
|
# },
|
@@ -383,6 +445,8 @@ module Aws::MediaTailor
|
|
383
445
|
# resp.channel_name #=> String
|
384
446
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
385
447
|
# resp.creation_time #=> Time
|
448
|
+
# resp.filler_slate.source_location_name #=> String
|
449
|
+
# resp.filler_slate.vod_source_name #=> String
|
386
450
|
# resp.last_modified_time #=> Time
|
387
451
|
# resp.outputs #=> Array
|
388
452
|
# resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
@@ -431,6 +495,7 @@ module Aws::MediaTailor
|
|
431
495
|
# * {Types::CreateProgramResponse#channel_name #channel_name} => String
|
432
496
|
# * {Types::CreateProgramResponse#creation_time #creation_time} => Time
|
433
497
|
# * {Types::CreateProgramResponse#program_name #program_name} => String
|
498
|
+
# * {Types::CreateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
434
499
|
# * {Types::CreateProgramResponse#source_location_name #source_location_name} => String
|
435
500
|
# * {Types::CreateProgramResponse#vod_source_name #vod_source_name} => String
|
436
501
|
#
|
@@ -459,6 +524,7 @@ module Aws::MediaTailor
|
|
459
524
|
# transition: { # required
|
460
525
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
461
526
|
# relative_program: "__string",
|
527
|
+
# scheduled_start_time_millis: 1,
|
462
528
|
# type: "__string", # required
|
463
529
|
# },
|
464
530
|
# },
|
@@ -481,6 +547,7 @@ module Aws::MediaTailor
|
|
481
547
|
# resp.channel_name #=> String
|
482
548
|
# resp.creation_time #=> Time
|
483
549
|
# resp.program_name #=> String
|
550
|
+
# resp.scheduled_start_time #=> Time
|
484
551
|
# resp.source_location_name #=> String
|
485
552
|
# resp.vod_source_name #=> String
|
486
553
|
#
|
@@ -772,6 +839,7 @@ module Aws::MediaTailor
|
|
772
839
|
# * {Types::DescribeChannelResponse#channel_name #channel_name} => String
|
773
840
|
# * {Types::DescribeChannelResponse#channel_state #channel_state} => String
|
774
841
|
# * {Types::DescribeChannelResponse#creation_time #creation_time} => Time
|
842
|
+
# * {Types::DescribeChannelResponse#filler_slate #filler_slate} => Types::SlateSource
|
775
843
|
# * {Types::DescribeChannelResponse#last_modified_time #last_modified_time} => Time
|
776
844
|
# * {Types::DescribeChannelResponse#outputs #outputs} => Array<Types::ResponseOutputItem>
|
777
845
|
# * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
|
@@ -789,6 +857,8 @@ module Aws::MediaTailor
|
|
789
857
|
# resp.channel_name #=> String
|
790
858
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
791
859
|
# resp.creation_time #=> Time
|
860
|
+
# resp.filler_slate.source_location_name #=> String
|
861
|
+
# resp.filler_slate.vod_source_name #=> String
|
792
862
|
# resp.last_modified_time #=> Time
|
793
863
|
# resp.outputs #=> Array
|
794
864
|
# resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
@@ -825,6 +895,7 @@ module Aws::MediaTailor
|
|
825
895
|
# * {Types::DescribeProgramResponse#channel_name #channel_name} => String
|
826
896
|
# * {Types::DescribeProgramResponse#creation_time #creation_time} => Time
|
827
897
|
# * {Types::DescribeProgramResponse#program_name #program_name} => String
|
898
|
+
# * {Types::DescribeProgramResponse#scheduled_start_time #scheduled_start_time} => Time
|
828
899
|
# * {Types::DescribeProgramResponse#source_location_name #source_location_name} => String
|
829
900
|
# * {Types::DescribeProgramResponse#vod_source_name #vod_source_name} => String
|
830
901
|
#
|
@@ -850,6 +921,7 @@ module Aws::MediaTailor
|
|
850
921
|
# resp.channel_name #=> String
|
851
922
|
# resp.creation_time #=> Time
|
852
923
|
# resp.program_name #=> String
|
924
|
+
# resp.scheduled_start_time #=> Time
|
853
925
|
# resp.source_location_name #=> String
|
854
926
|
# resp.vod_source_name #=> String
|
855
927
|
#
|
@@ -1020,6 +1092,7 @@ module Aws::MediaTailor
|
|
1020
1092
|
# resp.items[0].schedule_ad_breaks[0].approximate_start_time #=> Time
|
1021
1093
|
# resp.items[0].schedule_ad_breaks[0].source_location_name #=> String
|
1022
1094
|
# resp.items[0].schedule_ad_breaks[0].vod_source_name #=> String
|
1095
|
+
# resp.items[0].schedule_entry_type #=> String, one of "PROGRAM", "FILLER_SLATE"
|
1023
1096
|
# resp.items[0].source_location_name #=> String
|
1024
1097
|
# resp.items[0].vod_source_name #=> String
|
1025
1098
|
# resp.next_token #=> String
|
@@ -1047,6 +1120,7 @@ module Aws::MediaTailor
|
|
1047
1120
|
# * {Types::GetPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
|
1048
1121
|
# * {Types::GetPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
|
1049
1122
|
# * {Types::GetPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
|
1123
|
+
# * {Types::GetPlaybackConfigurationResponse#log_configuration #log_configuration} => Types::LogConfiguration
|
1050
1124
|
# * {Types::GetPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
|
1051
1125
|
# * {Types::GetPlaybackConfigurationResponse#name #name} => String
|
1052
1126
|
# * {Types::GetPlaybackConfigurationResponse#personalization_threshold_seconds #personalization_threshold_seconds} => Integer
|
@@ -1082,6 +1156,7 @@ module Aws::MediaTailor
|
|
1082
1156
|
# resp.hls_configuration.manifest_endpoint_prefix #=> String
|
1083
1157
|
# resp.live_pre_roll_configuration.ad_decision_server_url #=> String
|
1084
1158
|
# resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
|
1159
|
+
# resp.log_configuration.percent_enabled #=> Integer
|
1085
1160
|
# resp.manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
|
1086
1161
|
# resp.name #=> String
|
1087
1162
|
# resp.personalization_threshold_seconds #=> Integer
|
@@ -1173,6 +1248,8 @@ module Aws::MediaTailor
|
|
1173
1248
|
# resp.items[0].channel_name #=> String
|
1174
1249
|
# resp.items[0].channel_state #=> String
|
1175
1250
|
# resp.items[0].creation_time #=> Time
|
1251
|
+
# resp.items[0].filler_slate.source_location_name #=> String
|
1252
|
+
# resp.items[0].filler_slate.vod_source_name #=> String
|
1176
1253
|
# resp.items[0].last_modified_time #=> Time
|
1177
1254
|
# resp.items[0].outputs #=> Array
|
1178
1255
|
# resp.items[0].outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
@@ -1241,6 +1318,7 @@ module Aws::MediaTailor
|
|
1241
1318
|
# resp.items[0].hls_configuration.manifest_endpoint_prefix #=> String
|
1242
1319
|
# resp.items[0].live_pre_roll_configuration.ad_decision_server_url #=> String
|
1243
1320
|
# resp.items[0].live_pre_roll_configuration.max_duration_seconds #=> Integer
|
1321
|
+
# resp.items[0].log_configuration.percent_enabled #=> Integer
|
1244
1322
|
# resp.items[0].manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
|
1245
1323
|
# resp.items[0].name #=> String
|
1246
1324
|
# resp.items[0].personalization_threshold_seconds #=> Integer
|
@@ -1511,6 +1589,7 @@ module Aws::MediaTailor
|
|
1511
1589
|
# * {Types::PutPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
|
1512
1590
|
# * {Types::PutPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
|
1513
1591
|
# * {Types::PutPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
|
1592
|
+
# * {Types::PutPlaybackConfigurationResponse#log_configuration #log_configuration} => Types::LogConfiguration
|
1514
1593
|
# * {Types::PutPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
|
1515
1594
|
# * {Types::PutPlaybackConfigurationResponse#name #name} => String
|
1516
1595
|
# * {Types::PutPlaybackConfigurationResponse#personalization_threshold_seconds #personalization_threshold_seconds} => Integer
|
@@ -1584,6 +1663,7 @@ module Aws::MediaTailor
|
|
1584
1663
|
# resp.hls_configuration.manifest_endpoint_prefix #=> String
|
1585
1664
|
# resp.live_pre_roll_configuration.ad_decision_server_url #=> String
|
1586
1665
|
# resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
|
1666
|
+
# resp.log_configuration.percent_enabled #=> Integer
|
1587
1667
|
# resp.manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
|
1588
1668
|
# resp.name #=> String
|
1589
1669
|
# resp.personalization_threshold_seconds #=> Integer
|
@@ -1712,6 +1792,7 @@ module Aws::MediaTailor
|
|
1712
1792
|
# * {Types::UpdateChannelResponse#channel_name #channel_name} => String
|
1713
1793
|
# * {Types::UpdateChannelResponse#channel_state #channel_state} => String
|
1714
1794
|
# * {Types::UpdateChannelResponse#creation_time #creation_time} => Time
|
1795
|
+
# * {Types::UpdateChannelResponse#filler_slate #filler_slate} => Types::SlateSource
|
1715
1796
|
# * {Types::UpdateChannelResponse#last_modified_time #last_modified_time} => Time
|
1716
1797
|
# * {Types::UpdateChannelResponse#outputs #outputs} => Array<Types::ResponseOutputItem>
|
1717
1798
|
# * {Types::UpdateChannelResponse#playback_mode #playback_mode} => String
|
@@ -1744,6 +1825,8 @@ module Aws::MediaTailor
|
|
1744
1825
|
# resp.channel_name #=> String
|
1745
1826
|
# resp.channel_state #=> String, one of "RUNNING", "STOPPED"
|
1746
1827
|
# resp.creation_time #=> Time
|
1828
|
+
# resp.filler_slate.source_location_name #=> String
|
1829
|
+
# resp.filler_slate.vod_source_name #=> String
|
1747
1830
|
# resp.last_modified_time #=> Time
|
1748
1831
|
# resp.outputs #=> Array
|
1749
1832
|
# resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
|
@@ -1906,7 +1989,7 @@ module Aws::MediaTailor
|
|
1906
1989
|
params: params,
|
1907
1990
|
config: config)
|
1908
1991
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
1909
|
-
context[:gem_version] = '1.
|
1992
|
+
context[:gem_version] = '1.45.0'
|
1910
1993
|
Seahorse::Client::Request.new(handlers, context)
|
1911
1994
|
end
|
1912
1995
|
|
@@ -26,6 +26,8 @@ module Aws::MediaTailor
|
|
26
26
|
ChannelState = Shapes::StringShape.new(name: 'ChannelState')
|
27
27
|
ConfigurationAliasesRequest = Shapes::MapShape.new(name: 'ConfigurationAliasesRequest')
|
28
28
|
ConfigurationAliasesResponse = Shapes::MapShape.new(name: 'ConfigurationAliasesResponse')
|
29
|
+
ConfigureLogsForPlaybackConfigurationRequest = Shapes::StructureShape.new(name: 'ConfigureLogsForPlaybackConfigurationRequest')
|
30
|
+
ConfigureLogsForPlaybackConfigurationResponse = Shapes::StructureShape.new(name: 'ConfigureLogsForPlaybackConfigurationResponse')
|
29
31
|
CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
|
30
32
|
CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
|
31
33
|
CreateProgramRequest = Shapes::StructureShape.new(name: 'CreateProgramRequest')
|
@@ -82,6 +84,7 @@ module Aws::MediaTailor
|
|
82
84
|
ListVodSourcesRequest = Shapes::StructureShape.new(name: 'ListVodSourcesRequest')
|
83
85
|
ListVodSourcesResponse = Shapes::StructureShape.new(name: 'ListVodSourcesResponse')
|
84
86
|
LivePreRollConfiguration = Shapes::StructureShape.new(name: 'LivePreRollConfiguration')
|
87
|
+
LogConfiguration = Shapes::StructureShape.new(name: 'LogConfiguration')
|
85
88
|
ManifestProcessingRules = Shapes::StructureShape.new(name: 'ManifestProcessingRules')
|
86
89
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
87
90
|
MessageType = Shapes::StringShape.new(name: 'MessageType')
|
@@ -101,6 +104,7 @@ module Aws::MediaTailor
|
|
101
104
|
ScheduleAdBreak = Shapes::StructureShape.new(name: 'ScheduleAdBreak')
|
102
105
|
ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
|
103
106
|
ScheduleEntry = Shapes::StructureShape.new(name: 'ScheduleEntry')
|
107
|
+
ScheduleEntryType = Shapes::StringShape.new(name: 'ScheduleEntryType')
|
104
108
|
SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
|
105
109
|
SlateSource = Shapes::StructureShape.new(name: 'SlateSource')
|
106
110
|
SourceLocation = Shapes::StructureShape.new(name: 'SourceLocation')
|
@@ -176,6 +180,7 @@ module Aws::MediaTailor
|
|
176
180
|
Channel.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelName"))
|
177
181
|
Channel.add_member(:channel_state, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelState"))
|
178
182
|
Channel.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
|
183
|
+
Channel.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
|
179
184
|
Channel.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
180
185
|
Channel.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, required: true, location_name: "Outputs"))
|
181
186
|
Channel.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "PlaybackMode"))
|
@@ -188,7 +193,16 @@ module Aws::MediaTailor
|
|
188
193
|
ConfigurationAliasesResponse.key = Shapes::ShapeRef.new(shape: __string)
|
189
194
|
ConfigurationAliasesResponse.value = Shapes::ShapeRef.new(shape: __mapOf__string)
|
190
195
|
|
196
|
+
ConfigureLogsForPlaybackConfigurationRequest.add_member(:percent_enabled, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "PercentEnabled"))
|
197
|
+
ConfigureLogsForPlaybackConfigurationRequest.add_member(:playback_configuration_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "PlaybackConfigurationName"))
|
198
|
+
ConfigureLogsForPlaybackConfigurationRequest.struct_class = Types::ConfigureLogsForPlaybackConfigurationRequest
|
199
|
+
|
200
|
+
ConfigureLogsForPlaybackConfigurationResponse.add_member(:percent_enabled, Shapes::ShapeRef.new(shape: __integer, location_name: "PercentEnabled"))
|
201
|
+
ConfigureLogsForPlaybackConfigurationResponse.add_member(:playback_configuration_name, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackConfigurationName"))
|
202
|
+
ConfigureLogsForPlaybackConfigurationResponse.struct_class = Types::ConfigureLogsForPlaybackConfigurationResponse
|
203
|
+
|
191
204
|
CreateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelName"))
|
205
|
+
CreateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
|
192
206
|
CreateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
|
193
207
|
CreateChannelRequest.add_member(:playback_mode, Shapes::ShapeRef.new(shape: PlaybackMode, required: true, location_name: "PlaybackMode"))
|
194
208
|
CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
@@ -198,6 +212,7 @@ module Aws::MediaTailor
|
|
198
212
|
CreateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
|
199
213
|
CreateChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
|
200
214
|
CreateChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
|
215
|
+
CreateChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
|
201
216
|
CreateChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
202
217
|
CreateChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
|
203
218
|
CreateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
|
@@ -217,6 +232,7 @@ module Aws::MediaTailor
|
|
217
232
|
CreateProgramResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
|
218
233
|
CreateProgramResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
|
219
234
|
CreateProgramResponse.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, location_name: "ProgramName"))
|
235
|
+
CreateProgramResponse.add_member(:scheduled_start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "ScheduledStartTime"))
|
220
236
|
CreateProgramResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
|
221
237
|
CreateProgramResponse.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
|
222
238
|
CreateProgramResponse.struct_class = Types::CreateProgramResponse
|
@@ -310,6 +326,7 @@ module Aws::MediaTailor
|
|
310
326
|
DescribeChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
|
311
327
|
DescribeChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
|
312
328
|
DescribeChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
|
329
|
+
DescribeChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
|
313
330
|
DescribeChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
314
331
|
DescribeChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
|
315
332
|
DescribeChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
|
@@ -325,6 +342,7 @@ module Aws::MediaTailor
|
|
325
342
|
DescribeProgramResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
|
326
343
|
DescribeProgramResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
|
327
344
|
DescribeProgramResponse.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, location_name: "ProgramName"))
|
345
|
+
DescribeProgramResponse.add_member(:scheduled_start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "ScheduledStartTime"))
|
328
346
|
DescribeProgramResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
|
329
347
|
DescribeProgramResponse.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
|
330
348
|
DescribeProgramResponse.struct_class = Types::DescribeProgramResponse
|
@@ -382,6 +400,7 @@ module Aws::MediaTailor
|
|
382
400
|
GetPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
383
401
|
GetPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
|
384
402
|
GetPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
|
403
|
+
GetPlaybackConfigurationResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
|
385
404
|
GetPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
|
386
405
|
GetPlaybackConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
387
406
|
GetPlaybackConfigurationResponse.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
@@ -462,6 +481,9 @@ module Aws::MediaTailor
|
|
462
481
|
LivePreRollConfiguration.add_member(:max_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "MaxDurationSeconds"))
|
463
482
|
LivePreRollConfiguration.struct_class = Types::LivePreRollConfiguration
|
464
483
|
|
484
|
+
LogConfiguration.add_member(:percent_enabled, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "PercentEnabled"))
|
485
|
+
LogConfiguration.struct_class = Types::LogConfiguration
|
486
|
+
|
465
487
|
ManifestProcessingRules.add_member(:ad_marker_passthrough, Shapes::ShapeRef.new(shape: AdMarkerPassthrough, location_name: "AdMarkerPassthrough"))
|
466
488
|
ManifestProcessingRules.struct_class = Types::ManifestProcessingRules
|
467
489
|
|
@@ -473,6 +495,7 @@ module Aws::MediaTailor
|
|
473
495
|
PlaybackConfiguration.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
474
496
|
PlaybackConfiguration.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
|
475
497
|
PlaybackConfiguration.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
|
498
|
+
PlaybackConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
|
476
499
|
PlaybackConfiguration.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
|
477
500
|
PlaybackConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
478
501
|
PlaybackConfiguration.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
@@ -515,6 +538,7 @@ module Aws::MediaTailor
|
|
515
538
|
PutPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
516
539
|
PutPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
|
517
540
|
PutPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
|
541
|
+
PutPlaybackConfigurationResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
|
518
542
|
PutPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
|
519
543
|
PutPlaybackConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
520
544
|
PutPlaybackConfigurationResponse.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
@@ -559,6 +583,7 @@ module Aws::MediaTailor
|
|
559
583
|
ScheduleEntry.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelName"))
|
560
584
|
ScheduleEntry.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ProgramName"))
|
561
585
|
ScheduleEntry.add_member(:schedule_ad_breaks, Shapes::ShapeRef.new(shape: __listOfScheduleAdBreak, location_name: "ScheduleAdBreaks"))
|
586
|
+
ScheduleEntry.add_member(:schedule_entry_type, Shapes::ShapeRef.new(shape: ScheduleEntryType, location_name: "ScheduleEntryType"))
|
562
587
|
ScheduleEntry.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "SourceLocationName"))
|
563
588
|
ScheduleEntry.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "VodSourceName"))
|
564
589
|
ScheduleEntry.struct_class = Types::ScheduleEntry
|
@@ -604,6 +629,7 @@ module Aws::MediaTailor
|
|
604
629
|
|
605
630
|
Transition.add_member(:relative_position, Shapes::ShapeRef.new(shape: RelativePosition, required: true, location_name: "RelativePosition"))
|
606
631
|
Transition.add_member(:relative_program, Shapes::ShapeRef.new(shape: __string, location_name: "RelativeProgram"))
|
632
|
+
Transition.add_member(:scheduled_start_time_millis, Shapes::ShapeRef.new(shape: __long, location_name: "ScheduledStartTimeMillis"))
|
607
633
|
Transition.add_member(:type, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Type"))
|
608
634
|
Transition.struct_class = Types::Transition
|
609
635
|
|
@@ -619,6 +645,7 @@ module Aws::MediaTailor
|
|
619
645
|
UpdateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
|
620
646
|
UpdateChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
|
621
647
|
UpdateChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
|
648
|
+
UpdateChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
|
622
649
|
UpdateChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
623
650
|
UpdateChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
|
624
651
|
UpdateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
|
@@ -704,6 +731,14 @@ module Aws::MediaTailor
|
|
704
731
|
"uid" => "mediatailor-2018-04-23",
|
705
732
|
}
|
706
733
|
|
734
|
+
api.add_operation(:configure_logs_for_playback_configuration, Seahorse::Model::Operation.new.tap do |o|
|
735
|
+
o.name = "ConfigureLogsForPlaybackConfiguration"
|
736
|
+
o.http_method = "PUT"
|
737
|
+
o.http_request_uri = "/configureLogs/playbackConfiguration"
|
738
|
+
o.input = Shapes::ShapeRef.new(shape: ConfigureLogsForPlaybackConfigurationRequest)
|
739
|
+
o.output = Shapes::ShapeRef.new(shape: ConfigureLogsForPlaybackConfigurationResponse)
|
740
|
+
end)
|
741
|
+
|
707
742
|
api.add_operation(:create_channel, Seahorse::Model::Operation.new.tap do |o|
|
708
743
|
o.name = "CreateChannel"
|
709
744
|
o.http_method = "POST"
|
@@ -329,6 +329,12 @@ module Aws::MediaTailor
|
|
329
329
|
# The timestamp of when the channel was created.
|
330
330
|
# @return [Time]
|
331
331
|
#
|
332
|
+
# @!attribute [rw] filler_slate
|
333
|
+
# Contains information about the slate used to fill gaps between
|
334
|
+
# programs in the schedule. You must configure FillerSlate if your
|
335
|
+
# channel uses an LINEAR PlaybackMode.
|
336
|
+
# @return [Types::SlateSource]
|
337
|
+
#
|
332
338
|
# @!attribute [rw] last_modified_time
|
333
339
|
# The timestamp of when the channel was last modified.
|
334
340
|
# @return [Time]
|
@@ -338,8 +344,13 @@ module Aws::MediaTailor
|
|
338
344
|
# @return [Array<Types::ResponseOutputItem>]
|
339
345
|
#
|
340
346
|
# @!attribute [rw] playback_mode
|
341
|
-
# The type of playback mode for this channel.
|
342
|
-
#
|
347
|
+
# The type of playback mode for this channel.
|
348
|
+
#
|
349
|
+
# LINEAR - Programs play back-to-back only once.
|
350
|
+
#
|
351
|
+
# LOOP - Programs play back-to-back in an endless loop. When the last
|
352
|
+
# program in the schedule plays, playback loops back to the first
|
353
|
+
# program in the schedule.
|
343
354
|
# @return [String]
|
344
355
|
#
|
345
356
|
# @!attribute [rw] tags
|
@@ -353,6 +364,7 @@ module Aws::MediaTailor
|
|
353
364
|
:channel_name,
|
354
365
|
:channel_state,
|
355
366
|
:creation_time,
|
367
|
+
:filler_slate,
|
356
368
|
:last_modified_time,
|
357
369
|
:outputs,
|
358
370
|
:playback_mode,
|
@@ -361,6 +373,66 @@ module Aws::MediaTailor
|
|
361
373
|
include Aws::Structure
|
362
374
|
end
|
363
375
|
|
376
|
+
# Configures Amazon CloudWatch log settings for an existing MediaTailor
|
377
|
+
# playback configuration.
|
378
|
+
#
|
379
|
+
# @note When making an API call, you may pass ConfigureLogsForPlaybackConfigurationRequest
|
380
|
+
# data as a hash:
|
381
|
+
#
|
382
|
+
# {
|
383
|
+
# percent_enabled: 1, # required
|
384
|
+
# playback_configuration_name: "__string", # required
|
385
|
+
# }
|
386
|
+
#
|
387
|
+
# @!attribute [rw] percent_enabled
|
388
|
+
# The percentage of session logs that MediaTailor sends to your
|
389
|
+
# Cloudwatch Logs account. For example, if your playback configuration
|
390
|
+
# has 1000 sessions and percentEnabled is set to 60, MediaTailor sends
|
391
|
+
# logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides
|
392
|
+
# at random which of the playback configuration sessions to send logs
|
393
|
+
# for. If you want to view logs for a specific session, you can use
|
394
|
+
# the [debug log mode][1].
|
395
|
+
#
|
396
|
+
# Valid values: 0 - 100
|
397
|
+
#
|
398
|
+
#
|
399
|
+
#
|
400
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html
|
401
|
+
# @return [Integer]
|
402
|
+
#
|
403
|
+
# @!attribute [rw] playback_configuration_name
|
404
|
+
# The name of the playback configuration.
|
405
|
+
# @return [String]
|
406
|
+
#
|
407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ConfigureLogsForPlaybackConfigurationRequest AWS API Documentation
|
408
|
+
#
|
409
|
+
class ConfigureLogsForPlaybackConfigurationRequest < Struct.new(
|
410
|
+
:percent_enabled,
|
411
|
+
:playback_configuration_name)
|
412
|
+
SENSITIVE = []
|
413
|
+
include Aws::Structure
|
414
|
+
end
|
415
|
+
|
416
|
+
# Amazon CloudWatch log settings for a playback configuration.
|
417
|
+
#
|
418
|
+
# @!attribute [rw] percent_enabled
|
419
|
+
# The percentage of session logs that MediaTailor sends to your
|
420
|
+
# Cloudwatch Logs account.
|
421
|
+
# @return [Integer]
|
422
|
+
#
|
423
|
+
# @!attribute [rw] playback_configuration_name
|
424
|
+
# The name of the playback configuration.
|
425
|
+
# @return [String]
|
426
|
+
#
|
427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ConfigureLogsForPlaybackConfigurationResponse AWS API Documentation
|
428
|
+
#
|
429
|
+
class ConfigureLogsForPlaybackConfigurationResponse < Struct.new(
|
430
|
+
:percent_enabled,
|
431
|
+
:playback_configuration_name)
|
432
|
+
SENSITIVE = []
|
433
|
+
include Aws::Structure
|
434
|
+
end
|
435
|
+
|
364
436
|
# The configuration for this channel.
|
365
437
|
#
|
366
438
|
# @note When making an API call, you may pass CreateChannelRequest
|
@@ -368,6 +440,10 @@ module Aws::MediaTailor
|
|
368
440
|
#
|
369
441
|
# {
|
370
442
|
# channel_name: "__string", # required
|
443
|
+
# filler_slate: {
|
444
|
+
# source_location_name: "__string",
|
445
|
+
# vod_source_name: "__string",
|
446
|
+
# },
|
371
447
|
# outputs: [ # required
|
372
448
|
# {
|
373
449
|
# dash_playlist_settings: {
|
@@ -383,7 +459,7 @@ module Aws::MediaTailor
|
|
383
459
|
# source_group: "__string", # required
|
384
460
|
# },
|
385
461
|
# ],
|
386
|
-
# playback_mode: "LOOP", # required, accepts LOOP
|
462
|
+
# playback_mode: "LOOP", # required, accepts LOOP, LINEAR
|
387
463
|
# tags: {
|
388
464
|
# "__string" => "__string",
|
389
465
|
# },
|
@@ -392,13 +468,25 @@ module Aws::MediaTailor
|
|
392
468
|
# @!attribute [rw] channel_name
|
393
469
|
# @return [String]
|
394
470
|
#
|
471
|
+
# @!attribute [rw] filler_slate
|
472
|
+
# The slate used to fill gaps between programs in the schedule. You
|
473
|
+
# must configure filler slate if your channel uses a LINEAR
|
474
|
+
# PlaybackMode.
|
475
|
+
# @return [Types::SlateSource]
|
476
|
+
#
|
395
477
|
# @!attribute [rw] outputs
|
396
478
|
# The channel's output properties.
|
397
479
|
# @return [Array<Types::RequestOutputItem>]
|
398
480
|
#
|
399
481
|
# @!attribute [rw] playback_mode
|
400
|
-
# The type of playback mode for this channel.
|
401
|
-
#
|
482
|
+
# The type of playback mode to use for this channel.
|
483
|
+
#
|
484
|
+
# LINEAR - The programs in the schedule play once back-to-back in the
|
485
|
+
# schedule.
|
486
|
+
#
|
487
|
+
# LOOP - The programs in the schedule play back-to-back in an endless
|
488
|
+
# loop. When the last program in the schedule stops playing, playback
|
489
|
+
# loops back to the first program in the schedule.
|
402
490
|
# @return [String]
|
403
491
|
#
|
404
492
|
# @!attribute [rw] tags
|
@@ -409,6 +497,7 @@ module Aws::MediaTailor
|
|
409
497
|
#
|
410
498
|
class CreateChannelRequest < Struct.new(
|
411
499
|
:channel_name,
|
500
|
+
:filler_slate,
|
412
501
|
:outputs,
|
413
502
|
:playback_mode,
|
414
503
|
:tags)
|
@@ -428,6 +517,10 @@ module Aws::MediaTailor
|
|
428
517
|
# @!attribute [rw] creation_time
|
429
518
|
# @return [Time]
|
430
519
|
#
|
520
|
+
# @!attribute [rw] filler_slate
|
521
|
+
# Slate VOD source configuration.
|
522
|
+
# @return [Types::SlateSource]
|
523
|
+
#
|
431
524
|
# @!attribute [rw] last_modified_time
|
432
525
|
# @return [Time]
|
433
526
|
#
|
@@ -447,6 +540,7 @@ module Aws::MediaTailor
|
|
447
540
|
:channel_name,
|
448
541
|
:channel_state,
|
449
542
|
:creation_time,
|
543
|
+
:filler_slate,
|
450
544
|
:last_modified_time,
|
451
545
|
:outputs,
|
452
546
|
:playback_mode,
|
@@ -483,6 +577,7 @@ module Aws::MediaTailor
|
|
483
577
|
# transition: { # required
|
484
578
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
485
579
|
# relative_program: "__string",
|
580
|
+
# scheduled_start_time_millis: 1,
|
486
581
|
# type: "__string", # required
|
487
582
|
# },
|
488
583
|
# },
|
@@ -540,6 +635,9 @@ module Aws::MediaTailor
|
|
540
635
|
# @!attribute [rw] program_name
|
541
636
|
# @return [String]
|
542
637
|
#
|
638
|
+
# @!attribute [rw] scheduled_start_time
|
639
|
+
# @return [Time]
|
640
|
+
#
|
543
641
|
# @!attribute [rw] source_location_name
|
544
642
|
# @return [String]
|
545
643
|
#
|
@@ -554,6 +652,7 @@ module Aws::MediaTailor
|
|
554
652
|
:channel_name,
|
555
653
|
:creation_time,
|
556
654
|
:program_name,
|
655
|
+
:scheduled_start_time,
|
557
656
|
:source_location_name,
|
558
657
|
:vod_source_name)
|
559
658
|
SENSITIVE = []
|
@@ -1091,6 +1190,11 @@ module Aws::MediaTailor
|
|
1091
1190
|
# The timestamp of when the channel was created.
|
1092
1191
|
# @return [Time]
|
1093
1192
|
#
|
1193
|
+
# @!attribute [rw] filler_slate
|
1194
|
+
# Contains information about the slate used to fill gaps between
|
1195
|
+
# programs in the schedule.
|
1196
|
+
# @return [Types::SlateSource]
|
1197
|
+
#
|
1094
1198
|
# @!attribute [rw] last_modified_time
|
1095
1199
|
# The timestamp of when the channel was last modified.
|
1096
1200
|
# @return [Time]
|
@@ -1100,8 +1204,7 @@ module Aws::MediaTailor
|
|
1100
1204
|
# @return [Array<Types::ResponseOutputItem>]
|
1101
1205
|
#
|
1102
1206
|
# @!attribute [rw] playback_mode
|
1103
|
-
# The
|
1104
|
-
# LOOP.
|
1207
|
+
# The channel's playback mode.
|
1105
1208
|
# @return [String]
|
1106
1209
|
#
|
1107
1210
|
# @!attribute [rw] tags
|
@@ -1115,6 +1218,7 @@ module Aws::MediaTailor
|
|
1115
1218
|
:channel_name,
|
1116
1219
|
:channel_state,
|
1117
1220
|
:creation_time,
|
1221
|
+
:filler_slate,
|
1118
1222
|
:last_modified_time,
|
1119
1223
|
:outputs,
|
1120
1224
|
:playback_mode,
|
@@ -1168,6 +1272,13 @@ module Aws::MediaTailor
|
|
1168
1272
|
# The name of the program.
|
1169
1273
|
# @return [String]
|
1170
1274
|
#
|
1275
|
+
# @!attribute [rw] scheduled_start_time
|
1276
|
+
# The date and time that the program is scheduled to start in ISO 8601
|
1277
|
+
# format and Coordinated Universal Time (UTC). For example, the value
|
1278
|
+
# 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751
|
1279
|
+
# UTC.
|
1280
|
+
# @return [Time]
|
1281
|
+
#
|
1171
1282
|
# @!attribute [rw] source_location_name
|
1172
1283
|
# The source location name.
|
1173
1284
|
# @return [String]
|
@@ -1184,6 +1295,7 @@ module Aws::MediaTailor
|
|
1184
1295
|
:channel_name,
|
1185
1296
|
:creation_time,
|
1186
1297
|
:program_name,
|
1298
|
+
:scheduled_start_time,
|
1187
1299
|
:source_location_name,
|
1188
1300
|
:vod_source_name)
|
1189
1301
|
SENSITIVE = []
|
@@ -1486,6 +1598,10 @@ module Aws::MediaTailor
|
|
1486
1598
|
# The configuration for pre-roll ad insertion.
|
1487
1599
|
# @return [Types::LivePreRollConfiguration]
|
1488
1600
|
#
|
1601
|
+
# @!attribute [rw] log_configuration
|
1602
|
+
# The Amazon CloudWatch log settings for a playback configuration.
|
1603
|
+
# @return [Types::LogConfiguration]
|
1604
|
+
#
|
1489
1605
|
# @!attribute [rw] manifest_processing_rules
|
1490
1606
|
# The configuration for manifest processing rules. Manifest processing
|
1491
1607
|
# rules enable customization of the personalized manifests created by
|
@@ -1563,6 +1679,7 @@ module Aws::MediaTailor
|
|
1563
1679
|
:dash_configuration,
|
1564
1680
|
:hls_configuration,
|
1565
1681
|
:live_pre_roll_configuration,
|
1682
|
+
:log_configuration,
|
1566
1683
|
:manifest_processing_rules,
|
1567
1684
|
:name,
|
1568
1685
|
:personalization_threshold_seconds,
|
@@ -1966,6 +2083,32 @@ module Aws::MediaTailor
|
|
1966
2083
|
include Aws::Structure
|
1967
2084
|
end
|
1968
2085
|
|
2086
|
+
# Returns Amazon CloudWatch log settings for a playback configuration.
|
2087
|
+
#
|
2088
|
+
# @!attribute [rw] percent_enabled
|
2089
|
+
# The percentage of session logs that MediaTailor sends to your
|
2090
|
+
# Cloudwatch Logs account. For example, if your playback configuration
|
2091
|
+
# has 1000 sessions and percentEnabled is set to 60, MediaTailor sends
|
2092
|
+
# logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides
|
2093
|
+
# at random which of the playback configuration sessions to send logs
|
2094
|
+
# for. If you want to view logs for a specific session, you can use
|
2095
|
+
# the [debug log mode][1].
|
2096
|
+
#
|
2097
|
+
# Valid values: 0 - 100
|
2098
|
+
#
|
2099
|
+
#
|
2100
|
+
#
|
2101
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html
|
2102
|
+
# @return [Integer]
|
2103
|
+
#
|
2104
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/LogConfiguration AWS API Documentation
|
2105
|
+
#
|
2106
|
+
class LogConfiguration < Struct.new(
|
2107
|
+
:percent_enabled)
|
2108
|
+
SENSITIVE = []
|
2109
|
+
include Aws::Structure
|
2110
|
+
end
|
2111
|
+
|
1969
2112
|
# The configuration for manifest processing rules. Manifest processing
|
1970
2113
|
# rules enable customization of the personalized manifests created by
|
1971
2114
|
# MediaTailor.
|
@@ -2061,6 +2204,10 @@ module Aws::MediaTailor
|
|
2061
2204
|
# The configuration for pre-roll ad insertion.
|
2062
2205
|
# @return [Types::LivePreRollConfiguration]
|
2063
2206
|
#
|
2207
|
+
# @!attribute [rw] log_configuration
|
2208
|
+
# The Amazon CloudWatch log settings for a playback configuration.
|
2209
|
+
# @return [Types::LogConfiguration]
|
2210
|
+
#
|
2064
2211
|
# @!attribute [rw] manifest_processing_rules
|
2065
2212
|
# The configuration for manifest processing rules. Manifest processing
|
2066
2213
|
# rules enable customization of the personalized manifests created by
|
@@ -2138,6 +2285,7 @@ module Aws::MediaTailor
|
|
2138
2285
|
:dash_configuration,
|
2139
2286
|
:hls_configuration,
|
2140
2287
|
:live_pre_roll_configuration,
|
2288
|
+
:log_configuration,
|
2141
2289
|
:manifest_processing_rules,
|
2142
2290
|
:name,
|
2143
2291
|
:personalization_threshold_seconds,
|
@@ -2400,6 +2548,10 @@ module Aws::MediaTailor
|
|
2400
2548
|
# The configuration for pre-roll ad insertion.
|
2401
2549
|
# @return [Types::LivePreRollConfiguration]
|
2402
2550
|
#
|
2551
|
+
# @!attribute [rw] log_configuration
|
2552
|
+
# Returns Amazon CloudWatch log settings for a playback configuration.
|
2553
|
+
# @return [Types::LogConfiguration]
|
2554
|
+
#
|
2403
2555
|
# @!attribute [rw] manifest_processing_rules
|
2404
2556
|
# The configuration for manifest processing rules. Manifest processing
|
2405
2557
|
# rules enable customization of the personalized manifests created by
|
@@ -2444,6 +2596,7 @@ module Aws::MediaTailor
|
|
2444
2596
|
:dash_configuration,
|
2445
2597
|
:hls_configuration,
|
2446
2598
|
:live_pre_roll_configuration,
|
2599
|
+
:log_configuration,
|
2447
2600
|
:manifest_processing_rules,
|
2448
2601
|
:name,
|
2449
2602
|
:personalization_threshold_seconds,
|
@@ -2458,7 +2611,7 @@ module Aws::MediaTailor
|
|
2458
2611
|
include Aws::Structure
|
2459
2612
|
end
|
2460
2613
|
|
2461
|
-
# The
|
2614
|
+
# The output configuration for this channel.
|
2462
2615
|
#
|
2463
2616
|
# @note When making an API call, you may pass RequestOutputItem
|
2464
2617
|
# data as a hash:
|
@@ -2582,6 +2735,7 @@ module Aws::MediaTailor
|
|
2582
2735
|
# transition: { # required
|
2583
2736
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
2584
2737
|
# relative_program: "__string",
|
2738
|
+
# scheduled_start_time_millis: 1,
|
2585
2739
|
# type: "__string", # required
|
2586
2740
|
# },
|
2587
2741
|
# }
|
@@ -2624,6 +2778,12 @@ module Aws::MediaTailor
|
|
2624
2778
|
# The schedule's ad break properties.
|
2625
2779
|
# @return [Array<Types::ScheduleAdBreak>]
|
2626
2780
|
#
|
2781
|
+
# @!attribute [rw] schedule_entry_type
|
2782
|
+
# The type of schedule entry.
|
2783
|
+
#
|
2784
|
+
# Valid values: PROGRAM or FILLER\_SLATE.
|
2785
|
+
# @return [String]
|
2786
|
+
#
|
2627
2787
|
# @!attribute [rw] source_location_name
|
2628
2788
|
# The name of the source location.
|
2629
2789
|
# @return [String]
|
@@ -2641,6 +2801,7 @@ module Aws::MediaTailor
|
|
2641
2801
|
:channel_name,
|
2642
2802
|
:program_name,
|
2643
2803
|
:schedule_ad_breaks,
|
2804
|
+
:schedule_entry_type,
|
2644
2805
|
:source_location_name,
|
2645
2806
|
:vod_source_name)
|
2646
2807
|
SENSITIVE = []
|
@@ -2897,13 +3058,13 @@ module Aws::MediaTailor
|
|
2897
3058
|
# {
|
2898
3059
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
2899
3060
|
# relative_program: "__string",
|
3061
|
+
# scheduled_start_time_millis: 1,
|
2900
3062
|
# type: "__string", # required
|
2901
3063
|
# }
|
2902
3064
|
#
|
2903
3065
|
# @!attribute [rw] relative_position
|
2904
3066
|
# The position where this program will be inserted relative to the
|
2905
|
-
#
|
2906
|
-
# BEFORE\_PROGRAM.
|
3067
|
+
# RelativePosition.
|
2907
3068
|
# @return [String]
|
2908
3069
|
#
|
2909
3070
|
# @!attribute [rw] relative_program
|
@@ -2911,9 +3072,29 @@ module Aws::MediaTailor
|
|
2911
3072
|
# as defined by RelativePosition.
|
2912
3073
|
# @return [String]
|
2913
3074
|
#
|
3075
|
+
# @!attribute [rw] scheduled_start_time_millis
|
3076
|
+
# The date and time that the program is scheduled to start, in epoch
|
3077
|
+
# milliseconds.
|
3078
|
+
# @return [Integer]
|
3079
|
+
#
|
2914
3080
|
# @!attribute [rw] type
|
2915
|
-
#
|
2916
|
-
#
|
3081
|
+
# Defines when the program plays in the schedule. You can set the
|
3082
|
+
# value to ABSOLUTE or RELATIVE.
|
3083
|
+
#
|
3084
|
+
# ABSOLUTE - The program plays at a specific wall clock time. This
|
3085
|
+
# setting can only be used for channels using the LINEAR PlaybackMode.
|
3086
|
+
#
|
3087
|
+
# Note the following considerations when using ABSOLUTE transitions:
|
3088
|
+
#
|
3089
|
+
# If the preceding program in the schedule has a duration that extends
|
3090
|
+
# past the wall clock time, MediaTailor truncates the preceding
|
3091
|
+
# program on a common segment boundary.
|
3092
|
+
#
|
3093
|
+
# If there are gaps in playback, MediaTailor plays the FillerSlate you
|
3094
|
+
# configured for your linear channel.
|
3095
|
+
#
|
3096
|
+
# RELATIVE - The program is inserted into the schedule either before
|
3097
|
+
# or after a program that you specify via RelativePosition.
|
2917
3098
|
# @return [String]
|
2918
3099
|
#
|
2919
3100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Transition AWS API Documentation
|
@@ -2921,6 +3102,7 @@ module Aws::MediaTailor
|
|
2921
3102
|
class Transition < Struct.new(
|
2922
3103
|
:relative_position,
|
2923
3104
|
:relative_program,
|
3105
|
+
:scheduled_start_time_millis,
|
2924
3106
|
:type)
|
2925
3107
|
SENSITIVE = []
|
2926
3108
|
include Aws::Structure
|
@@ -3001,6 +3183,10 @@ module Aws::MediaTailor
|
|
3001
3183
|
# @!attribute [rw] creation_time
|
3002
3184
|
# @return [Time]
|
3003
3185
|
#
|
3186
|
+
# @!attribute [rw] filler_slate
|
3187
|
+
# Slate VOD source configuration.
|
3188
|
+
# @return [Types::SlateSource]
|
3189
|
+
#
|
3004
3190
|
# @!attribute [rw] last_modified_time
|
3005
3191
|
# @return [Time]
|
3006
3192
|
#
|
@@ -3020,6 +3206,7 @@ module Aws::MediaTailor
|
|
3020
3206
|
:channel_name,
|
3021
3207
|
:channel_state,
|
3022
3208
|
:creation_time,
|
3209
|
+
:filler_slate,
|
3023
3210
|
:last_modified_time,
|
3024
3211
|
:outputs,
|
3025
3212
|
:playback_mode,
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
@@ -28,7 +28,7 @@ require_relative 'aws-sdk-mediatailor/customizations'
|
|
28
28
|
# structure.
|
29
29
|
#
|
30
30
|
# media_tailor = Aws::MediaTailor::Client.new
|
31
|
-
# resp = media_tailor.
|
31
|
+
# resp = media_tailor.configure_logs_for_playback_configuration(params)
|
32
32
|
#
|
33
33
|
# See {Client} for more information.
|
34
34
|
#
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::MediaTailor
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.45.0'
|
52
52
|
|
53
53
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediatailor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.120.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|