aws-sdk-mediatailor 1.43.0 → 1.44.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 344b86411c80fd0c37b1f7ca49cfe2bc4b0dcc82fb70ae4fc31425c7f50803ee
4
- data.tar.gz: 57242b64139b512d9dda2f3a8eceacf0454e4364547662606d92e268135ee339
3
+ metadata.gz: 6c588a99cdef3a63fced3ff4845c1f091af6649fa43d83fd545252b665c10ef2
4
+ data.tar.gz: be25bc5a446e42c099c2dc77167f97304d46b4fdfa9b36c5b8fff53ac56d6d16
5
5
  SHA512:
6
- metadata.gz: 5442b4094f2c49e1e6eae4790cd9ddb2ec6bb01e95193c659604e04ed89442c684dc9ad07c56b67da2bc87a80aba95e6b3c3f7b7ca41a08083803eeb1585fe03
7
- data.tar.gz: c57c19fd15502c1bdd451bcd3f8ecacb1f11c4f5de7a2e1cd9d4dee13229d8a9f75229da03275e9dfc022c2c5752e014627f9ce80da5b2a545fbe9b5c654bfb9
6
+ metadata.gz: 8f1bcaf4a66d618519c1f245ec088d566a082c16c77afe5c6243342fa40695cc300800eeb53a5106bee37ca9ab9d0dc68347ee4f0893ec58c2f2f7fef7318d53
7
+ data.tar.gz: 0f662d0756a89ab1561708faa2dae5d76a58bcabc4eff598d7309bef31753a50526926a4f5151e650a15c5f22e242f2f9dcd22091a49ad1e6331ba9a47079d44
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for wall clock programs in LINEAR channels.
8
+
4
9
  1.43.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.44.0
@@ -331,12 +331,22 @@ module Aws::MediaTailor
331
331
  #
332
332
  # @option params [required, String] :channel_name
333
333
  #
334
+ # @option params [Types::SlateSource] :filler_slate
335
+ # The slate used to fill gaps between programs in the schedule. You must
336
+ # configure filler slate if your channel uses an LINEAR PlaybackMode.
337
+ #
334
338
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
335
339
  # The channel's output properties.
336
340
  #
337
341
  # @option params [required, String] :playback_mode
338
- # The type of playback mode for this channel. The only supported value
339
- # is LOOP.
342
+ # The type of playback mode to use for this channel.
343
+ #
344
+ # LINEAR - The programs in the schedule play once back-to-back in the
345
+ # schedule.
346
+ #
347
+ # LOOP - The programs in the schedule play back-to-back in an endless
348
+ # loop. When the last program in the schedule stops playing, playback
349
+ # loops back to the first program in the schedule.
340
350
  #
341
351
  # @option params [Hash<String,String>] :tags
342
352
  # The tags to assign to the channel.
@@ -347,6 +357,7 @@ module Aws::MediaTailor
347
357
  # * {Types::CreateChannelResponse#channel_name #channel_name} => String
348
358
  # * {Types::CreateChannelResponse#channel_state #channel_state} => String
349
359
  # * {Types::CreateChannelResponse#creation_time #creation_time} => Time
360
+ # * {Types::CreateChannelResponse#filler_slate #filler_slate} => Types::SlateSource
350
361
  # * {Types::CreateChannelResponse#last_modified_time #last_modified_time} => Time
351
362
  # * {Types::CreateChannelResponse#outputs #outputs} => Array&lt;Types::ResponseOutputItem&gt;
352
363
  # * {Types::CreateChannelResponse#playback_mode #playback_mode} => String
@@ -356,6 +367,10 @@ module Aws::MediaTailor
356
367
  #
357
368
  # resp = client.create_channel({
358
369
  # channel_name: "__string", # required
370
+ # filler_slate: {
371
+ # source_location_name: "__string",
372
+ # vod_source_name: "__string",
373
+ # },
359
374
  # outputs: [ # required
360
375
  # {
361
376
  # dash_playlist_settings: {
@@ -371,7 +386,7 @@ module Aws::MediaTailor
371
386
  # source_group: "__string", # required
372
387
  # },
373
388
  # ],
374
- # playback_mode: "LOOP", # required, accepts LOOP
389
+ # playback_mode: "LOOP", # required, accepts LOOP, LINEAR
375
390
  # tags: {
376
391
  # "__string" => "__string",
377
392
  # },
@@ -383,6 +398,8 @@ module Aws::MediaTailor
383
398
  # resp.channel_name #=> String
384
399
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
385
400
  # resp.creation_time #=> Time
401
+ # resp.filler_slate.source_location_name #=> String
402
+ # resp.filler_slate.vod_source_name #=> String
386
403
  # resp.last_modified_time #=> Time
387
404
  # resp.outputs #=> Array
388
405
  # resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -431,6 +448,7 @@ module Aws::MediaTailor
431
448
  # * {Types::CreateProgramResponse#channel_name #channel_name} => String
432
449
  # * {Types::CreateProgramResponse#creation_time #creation_time} => Time
433
450
  # * {Types::CreateProgramResponse#program_name #program_name} => String
451
+ # * {Types::CreateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
434
452
  # * {Types::CreateProgramResponse#source_location_name #source_location_name} => String
435
453
  # * {Types::CreateProgramResponse#vod_source_name #vod_source_name} => String
436
454
  #
@@ -459,6 +477,7 @@ module Aws::MediaTailor
459
477
  # transition: { # required
460
478
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
461
479
  # relative_program: "__string",
480
+ # scheduled_start_time_millis: 1,
462
481
  # type: "__string", # required
463
482
  # },
464
483
  # },
@@ -481,6 +500,7 @@ module Aws::MediaTailor
481
500
  # resp.channel_name #=> String
482
501
  # resp.creation_time #=> Time
483
502
  # resp.program_name #=> String
503
+ # resp.scheduled_start_time #=> Time
484
504
  # resp.source_location_name #=> String
485
505
  # resp.vod_source_name #=> String
486
506
  #
@@ -772,6 +792,7 @@ module Aws::MediaTailor
772
792
  # * {Types::DescribeChannelResponse#channel_name #channel_name} => String
773
793
  # * {Types::DescribeChannelResponse#channel_state #channel_state} => String
774
794
  # * {Types::DescribeChannelResponse#creation_time #creation_time} => Time
795
+ # * {Types::DescribeChannelResponse#filler_slate #filler_slate} => Types::SlateSource
775
796
  # * {Types::DescribeChannelResponse#last_modified_time #last_modified_time} => Time
776
797
  # * {Types::DescribeChannelResponse#outputs #outputs} => Array&lt;Types::ResponseOutputItem&gt;
777
798
  # * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
@@ -789,6 +810,8 @@ module Aws::MediaTailor
789
810
  # resp.channel_name #=> String
790
811
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
791
812
  # resp.creation_time #=> Time
813
+ # resp.filler_slate.source_location_name #=> String
814
+ # resp.filler_slate.vod_source_name #=> String
792
815
  # resp.last_modified_time #=> Time
793
816
  # resp.outputs #=> Array
794
817
  # resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -825,6 +848,7 @@ module Aws::MediaTailor
825
848
  # * {Types::DescribeProgramResponse#channel_name #channel_name} => String
826
849
  # * {Types::DescribeProgramResponse#creation_time #creation_time} => Time
827
850
  # * {Types::DescribeProgramResponse#program_name #program_name} => String
851
+ # * {Types::DescribeProgramResponse#scheduled_start_time #scheduled_start_time} => Time
828
852
  # * {Types::DescribeProgramResponse#source_location_name #source_location_name} => String
829
853
  # * {Types::DescribeProgramResponse#vod_source_name #vod_source_name} => String
830
854
  #
@@ -850,6 +874,7 @@ module Aws::MediaTailor
850
874
  # resp.channel_name #=> String
851
875
  # resp.creation_time #=> Time
852
876
  # resp.program_name #=> String
877
+ # resp.scheduled_start_time #=> Time
853
878
  # resp.source_location_name #=> String
854
879
  # resp.vod_source_name #=> String
855
880
  #
@@ -1020,6 +1045,7 @@ module Aws::MediaTailor
1020
1045
  # resp.items[0].schedule_ad_breaks[0].approximate_start_time #=> Time
1021
1046
  # resp.items[0].schedule_ad_breaks[0].source_location_name #=> String
1022
1047
  # resp.items[0].schedule_ad_breaks[0].vod_source_name #=> String
1048
+ # resp.items[0].schedule_entry_type #=> String, one of "PROGRAM", "FILLER_SLATE"
1023
1049
  # resp.items[0].source_location_name #=> String
1024
1050
  # resp.items[0].vod_source_name #=> String
1025
1051
  # resp.next_token #=> String
@@ -1173,6 +1199,8 @@ module Aws::MediaTailor
1173
1199
  # resp.items[0].channel_name #=> String
1174
1200
  # resp.items[0].channel_state #=> String
1175
1201
  # resp.items[0].creation_time #=> Time
1202
+ # resp.items[0].filler_slate.source_location_name #=> String
1203
+ # resp.items[0].filler_slate.vod_source_name #=> String
1176
1204
  # resp.items[0].last_modified_time #=> Time
1177
1205
  # resp.items[0].outputs #=> Array
1178
1206
  # resp.items[0].outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -1712,6 +1740,7 @@ module Aws::MediaTailor
1712
1740
  # * {Types::UpdateChannelResponse#channel_name #channel_name} => String
1713
1741
  # * {Types::UpdateChannelResponse#channel_state #channel_state} => String
1714
1742
  # * {Types::UpdateChannelResponse#creation_time #creation_time} => Time
1743
+ # * {Types::UpdateChannelResponse#filler_slate #filler_slate} => Types::SlateSource
1715
1744
  # * {Types::UpdateChannelResponse#last_modified_time #last_modified_time} => Time
1716
1745
  # * {Types::UpdateChannelResponse#outputs #outputs} => Array&lt;Types::ResponseOutputItem&gt;
1717
1746
  # * {Types::UpdateChannelResponse#playback_mode #playback_mode} => String
@@ -1744,6 +1773,8 @@ module Aws::MediaTailor
1744
1773
  # resp.channel_name #=> String
1745
1774
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
1746
1775
  # resp.creation_time #=> Time
1776
+ # resp.filler_slate.source_location_name #=> String
1777
+ # resp.filler_slate.vod_source_name #=> String
1747
1778
  # resp.last_modified_time #=> Time
1748
1779
  # resp.outputs #=> Array
1749
1780
  # resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -1906,7 +1937,7 @@ module Aws::MediaTailor
1906
1937
  params: params,
1907
1938
  config: config)
1908
1939
  context[:gem_name] = 'aws-sdk-mediatailor'
1909
- context[:gem_version] = '1.43.0'
1940
+ context[:gem_version] = '1.44.0'
1910
1941
  Seahorse::Client::Request.new(handlers, context)
1911
1942
  end
1912
1943
 
@@ -101,6 +101,7 @@ module Aws::MediaTailor
101
101
  ScheduleAdBreak = Shapes::StructureShape.new(name: 'ScheduleAdBreak')
102
102
  ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
103
103
  ScheduleEntry = Shapes::StructureShape.new(name: 'ScheduleEntry')
104
+ ScheduleEntryType = Shapes::StringShape.new(name: 'ScheduleEntryType')
104
105
  SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
105
106
  SlateSource = Shapes::StructureShape.new(name: 'SlateSource')
106
107
  SourceLocation = Shapes::StructureShape.new(name: 'SourceLocation')
@@ -176,6 +177,7 @@ module Aws::MediaTailor
176
177
  Channel.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelName"))
177
178
  Channel.add_member(:channel_state, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelState"))
178
179
  Channel.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
180
+ Channel.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
179
181
  Channel.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
180
182
  Channel.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, required: true, location_name: "Outputs"))
181
183
  Channel.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "PlaybackMode"))
@@ -189,6 +191,7 @@ module Aws::MediaTailor
189
191
  ConfigurationAliasesResponse.value = Shapes::ShapeRef.new(shape: __mapOf__string)
190
192
 
191
193
  CreateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelName"))
194
+ CreateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
192
195
  CreateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
193
196
  CreateChannelRequest.add_member(:playback_mode, Shapes::ShapeRef.new(shape: PlaybackMode, required: true, location_name: "PlaybackMode"))
194
197
  CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
@@ -198,6 +201,7 @@ module Aws::MediaTailor
198
201
  CreateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
199
202
  CreateChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
200
203
  CreateChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
204
+ CreateChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
201
205
  CreateChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
202
206
  CreateChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
203
207
  CreateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
@@ -217,6 +221,7 @@ module Aws::MediaTailor
217
221
  CreateProgramResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
218
222
  CreateProgramResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
219
223
  CreateProgramResponse.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, location_name: "ProgramName"))
224
+ CreateProgramResponse.add_member(:scheduled_start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "ScheduledStartTime"))
220
225
  CreateProgramResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
221
226
  CreateProgramResponse.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
222
227
  CreateProgramResponse.struct_class = Types::CreateProgramResponse
@@ -310,6 +315,7 @@ module Aws::MediaTailor
310
315
  DescribeChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
311
316
  DescribeChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
312
317
  DescribeChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
318
+ DescribeChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
313
319
  DescribeChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
314
320
  DescribeChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
315
321
  DescribeChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
@@ -325,6 +331,7 @@ module Aws::MediaTailor
325
331
  DescribeProgramResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
326
332
  DescribeProgramResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
327
333
  DescribeProgramResponse.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, location_name: "ProgramName"))
334
+ DescribeProgramResponse.add_member(:scheduled_start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "ScheduledStartTime"))
328
335
  DescribeProgramResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
329
336
  DescribeProgramResponse.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
330
337
  DescribeProgramResponse.struct_class = Types::DescribeProgramResponse
@@ -559,6 +566,7 @@ module Aws::MediaTailor
559
566
  ScheduleEntry.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelName"))
560
567
  ScheduleEntry.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ProgramName"))
561
568
  ScheduleEntry.add_member(:schedule_ad_breaks, Shapes::ShapeRef.new(shape: __listOfScheduleAdBreak, location_name: "ScheduleAdBreaks"))
569
+ ScheduleEntry.add_member(:schedule_entry_type, Shapes::ShapeRef.new(shape: ScheduleEntryType, location_name: "ScheduleEntryType"))
562
570
  ScheduleEntry.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "SourceLocationName"))
563
571
  ScheduleEntry.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "VodSourceName"))
564
572
  ScheduleEntry.struct_class = Types::ScheduleEntry
@@ -604,6 +612,7 @@ module Aws::MediaTailor
604
612
 
605
613
  Transition.add_member(:relative_position, Shapes::ShapeRef.new(shape: RelativePosition, required: true, location_name: "RelativePosition"))
606
614
  Transition.add_member(:relative_program, Shapes::ShapeRef.new(shape: __string, location_name: "RelativeProgram"))
615
+ Transition.add_member(:scheduled_start_time_millis, Shapes::ShapeRef.new(shape: __long, location_name: "ScheduledStartTimeMillis"))
607
616
  Transition.add_member(:type, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Type"))
608
617
  Transition.struct_class = Types::Transition
609
618
 
@@ -619,6 +628,7 @@ module Aws::MediaTailor
619
628
  UpdateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
620
629
  UpdateChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
621
630
  UpdateChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
631
+ UpdateChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
622
632
  UpdateChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
623
633
  UpdateChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
624
634
  UpdateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
@@ -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. Possible values: ONCE or
342
- # LOOP.
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,
@@ -368,6 +380,10 @@ module Aws::MediaTailor
368
380
  #
369
381
  # {
370
382
  # channel_name: "__string", # required
383
+ # filler_slate: {
384
+ # source_location_name: "__string",
385
+ # vod_source_name: "__string",
386
+ # },
371
387
  # outputs: [ # required
372
388
  # {
373
389
  # dash_playlist_settings: {
@@ -383,7 +399,7 @@ module Aws::MediaTailor
383
399
  # source_group: "__string", # required
384
400
  # },
385
401
  # ],
386
- # playback_mode: "LOOP", # required, accepts LOOP
402
+ # playback_mode: "LOOP", # required, accepts LOOP, LINEAR
387
403
  # tags: {
388
404
  # "__string" => "__string",
389
405
  # },
@@ -392,13 +408,25 @@ module Aws::MediaTailor
392
408
  # @!attribute [rw] channel_name
393
409
  # @return [String]
394
410
  #
411
+ # @!attribute [rw] filler_slate
412
+ # The slate used to fill gaps between programs in the schedule. You
413
+ # must configure filler slate if your channel uses an LINEAR
414
+ # PlaybackMode.
415
+ # @return [Types::SlateSource]
416
+ #
395
417
  # @!attribute [rw] outputs
396
418
  # The channel's output properties.
397
419
  # @return [Array<Types::RequestOutputItem>]
398
420
  #
399
421
  # @!attribute [rw] playback_mode
400
- # The type of playback mode for this channel. The only supported value
401
- # is LOOP.
422
+ # The type of playback mode to use for this channel.
423
+ #
424
+ # LINEAR - The programs in the schedule play once back-to-back in the
425
+ # schedule.
426
+ #
427
+ # LOOP - The programs in the schedule play back-to-back in an endless
428
+ # loop. When the last program in the schedule stops playing, playback
429
+ # loops back to the first program in the schedule.
402
430
  # @return [String]
403
431
  #
404
432
  # @!attribute [rw] tags
@@ -409,6 +437,7 @@ module Aws::MediaTailor
409
437
  #
410
438
  class CreateChannelRequest < Struct.new(
411
439
  :channel_name,
440
+ :filler_slate,
412
441
  :outputs,
413
442
  :playback_mode,
414
443
  :tags)
@@ -428,6 +457,10 @@ module Aws::MediaTailor
428
457
  # @!attribute [rw] creation_time
429
458
  # @return [Time]
430
459
  #
460
+ # @!attribute [rw] filler_slate
461
+ # Slate VOD source configuration.
462
+ # @return [Types::SlateSource]
463
+ #
431
464
  # @!attribute [rw] last_modified_time
432
465
  # @return [Time]
433
466
  #
@@ -447,6 +480,7 @@ module Aws::MediaTailor
447
480
  :channel_name,
448
481
  :channel_state,
449
482
  :creation_time,
483
+ :filler_slate,
450
484
  :last_modified_time,
451
485
  :outputs,
452
486
  :playback_mode,
@@ -483,6 +517,7 @@ module Aws::MediaTailor
483
517
  # transition: { # required
484
518
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
485
519
  # relative_program: "__string",
520
+ # scheduled_start_time_millis: 1,
486
521
  # type: "__string", # required
487
522
  # },
488
523
  # },
@@ -540,6 +575,9 @@ module Aws::MediaTailor
540
575
  # @!attribute [rw] program_name
541
576
  # @return [String]
542
577
  #
578
+ # @!attribute [rw] scheduled_start_time
579
+ # @return [Time]
580
+ #
543
581
  # @!attribute [rw] source_location_name
544
582
  # @return [String]
545
583
  #
@@ -554,6 +592,7 @@ module Aws::MediaTailor
554
592
  :channel_name,
555
593
  :creation_time,
556
594
  :program_name,
595
+ :scheduled_start_time,
557
596
  :source_location_name,
558
597
  :vod_source_name)
559
598
  SENSITIVE = []
@@ -1091,6 +1130,11 @@ module Aws::MediaTailor
1091
1130
  # The timestamp of when the channel was created.
1092
1131
  # @return [Time]
1093
1132
  #
1133
+ # @!attribute [rw] filler_slate
1134
+ # Contains information about the slate used to fill gaps between
1135
+ # programs in the schedule.
1136
+ # @return [Types::SlateSource]
1137
+ #
1094
1138
  # @!attribute [rw] last_modified_time
1095
1139
  # The timestamp of when the channel was last modified.
1096
1140
  # @return [Time]
@@ -1100,8 +1144,7 @@ module Aws::MediaTailor
1100
1144
  # @return [Array<Types::ResponseOutputItem>]
1101
1145
  #
1102
1146
  # @!attribute [rw] playback_mode
1103
- # The type of playback for this channel. The only supported value is
1104
- # LOOP.
1147
+ # The channel's playback mode.
1105
1148
  # @return [String]
1106
1149
  #
1107
1150
  # @!attribute [rw] tags
@@ -1115,6 +1158,7 @@ module Aws::MediaTailor
1115
1158
  :channel_name,
1116
1159
  :channel_state,
1117
1160
  :creation_time,
1161
+ :filler_slate,
1118
1162
  :last_modified_time,
1119
1163
  :outputs,
1120
1164
  :playback_mode,
@@ -1168,6 +1212,13 @@ module Aws::MediaTailor
1168
1212
  # The name of the program.
1169
1213
  # @return [String]
1170
1214
  #
1215
+ # @!attribute [rw] scheduled_start_time
1216
+ # The date and time that the program is scheduled to start in ISO 8601
1217
+ # format and Coordinated Universal Time (UTC). For example, the value
1218
+ # 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751
1219
+ # UTC.
1220
+ # @return [Time]
1221
+ #
1171
1222
  # @!attribute [rw] source_location_name
1172
1223
  # The source location name.
1173
1224
  # @return [String]
@@ -1184,6 +1235,7 @@ module Aws::MediaTailor
1184
1235
  :channel_name,
1185
1236
  :creation_time,
1186
1237
  :program_name,
1238
+ :scheduled_start_time,
1187
1239
  :source_location_name,
1188
1240
  :vod_source_name)
1189
1241
  SENSITIVE = []
@@ -2582,6 +2634,7 @@ module Aws::MediaTailor
2582
2634
  # transition: { # required
2583
2635
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
2584
2636
  # relative_program: "__string",
2637
+ # scheduled_start_time_millis: 1,
2585
2638
  # type: "__string", # required
2586
2639
  # },
2587
2640
  # }
@@ -2624,6 +2677,12 @@ module Aws::MediaTailor
2624
2677
  # The schedule's ad break properties.
2625
2678
  # @return [Array<Types::ScheduleAdBreak>]
2626
2679
  #
2680
+ # @!attribute [rw] schedule_entry_type
2681
+ # The type of schedule entry.
2682
+ #
2683
+ # Valid values: PROGRAM or FILLER\_SLATE.
2684
+ # @return [String]
2685
+ #
2627
2686
  # @!attribute [rw] source_location_name
2628
2687
  # The name of the source location.
2629
2688
  # @return [String]
@@ -2641,6 +2700,7 @@ module Aws::MediaTailor
2641
2700
  :channel_name,
2642
2701
  :program_name,
2643
2702
  :schedule_ad_breaks,
2703
+ :schedule_entry_type,
2644
2704
  :source_location_name,
2645
2705
  :vod_source_name)
2646
2706
  SENSITIVE = []
@@ -2897,13 +2957,13 @@ module Aws::MediaTailor
2897
2957
  # {
2898
2958
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
2899
2959
  # relative_program: "__string",
2960
+ # scheduled_start_time_millis: 1,
2900
2961
  # type: "__string", # required
2901
2962
  # }
2902
2963
  #
2903
2964
  # @!attribute [rw] relative_position
2904
2965
  # The position where this program will be inserted relative to the
2905
- # RelativeProgram. Possible values are: AFTER\_PROGRAM, and
2906
- # BEFORE\_PROGRAM.
2966
+ # RelativePosition.
2907
2967
  # @return [String]
2908
2968
  #
2909
2969
  # @!attribute [rw] relative_program
@@ -2911,9 +2971,29 @@ module Aws::MediaTailor
2911
2971
  # as defined by RelativePosition.
2912
2972
  # @return [String]
2913
2973
  #
2974
+ # @!attribute [rw] scheduled_start_time_millis
2975
+ # The date and time that the program is scheduled to start, in epoch
2976
+ # milliseconds.
2977
+ # @return [Integer]
2978
+ #
2914
2979
  # @!attribute [rw] type
2915
- # When the program should be played. RELATIVE means that programs will
2916
- # be played back-to-back.
2980
+ # Defines when the program plays in the schedule. You can set the
2981
+ # value to ABSOLUTE or RELATIVE.
2982
+ #
2983
+ # ABSOLUTE - The program plays at a specific wall clock time. This
2984
+ # setting can only be used for channels using the LINEAR PlaybackMode.
2985
+ #
2986
+ # Note the following considerations when using ABSOLUTE transitions:
2987
+ #
2988
+ # If the preceding program in the schedule has a duration that extends
2989
+ # past the wall clock time, MediaTailor truncates the preceding
2990
+ # program on a common segment boundary.
2991
+ #
2992
+ # If there are gaps in playback, MediaTailor plays the FillerSlate you
2993
+ # configured for your linear channel.
2994
+ #
2995
+ # RELATIVE - The program is inserted into the schedule either before
2996
+ # or after a program that you specify via RelativePosition.
2917
2997
  # @return [String]
2918
2998
  #
2919
2999
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Transition AWS API Documentation
@@ -2921,6 +3001,7 @@ module Aws::MediaTailor
2921
3001
  class Transition < Struct.new(
2922
3002
  :relative_position,
2923
3003
  :relative_program,
3004
+ :scheduled_start_time_millis,
2924
3005
  :type)
2925
3006
  SENSITIVE = []
2926
3007
  include Aws::Structure
@@ -3001,6 +3082,10 @@ module Aws::MediaTailor
3001
3082
  # @!attribute [rw] creation_time
3002
3083
  # @return [Time]
3003
3084
  #
3085
+ # @!attribute [rw] filler_slate
3086
+ # Slate VOD source configuration.
3087
+ # @return [Types::SlateSource]
3088
+ #
3004
3089
  # @!attribute [rw] last_modified_time
3005
3090
  # @return [Time]
3006
3091
  #
@@ -3020,6 +3105,7 @@ module Aws::MediaTailor
3020
3105
  :channel_name,
3021
3106
  :channel_state,
3022
3107
  :creation_time,
3108
+ :filler_slate,
3023
3109
  :last_modified_time,
3024
3110
  :outputs,
3025
3111
  :playback_mode,
@@ -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.43.0'
51
+ GEM_VERSION = '1.44.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.43.0
4
+ version: 1.44.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-07-30 00:00:00.000000000 Z
11
+ date: 2021-09-01 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.119.0
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.119.0
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: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="