aws-sdk-mediatailor 1.50.0 → 1.51.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c1822ecc9b3f52ff525da1ec9240842aeb9a739bb9e9d9bf9946850a9f5ce79
4
- data.tar.gz: d5562b2d595f229691b87701203012ffd88e37a0a542b86cb793e3ec93da7da2
3
+ metadata.gz: 680a93d698a3329c6a238a10409ec74ad9cacb816f08b4172852590e65ff1cd2
4
+ data.tar.gz: 3eaba8fa6dd99a5b6e9135c78a284cac9a74cdb0f40110690cef25c5f949f1bc
5
5
  SHA512:
6
- metadata.gz: 94cc5a020d89b396c7d90eea5a0272e162f05eff1a68b0b690a936669dbd51b60d1e3ecd2b306e54fdd1daef2989c43a7b5a87861f6a008b8c94f92c52dfbf8b
7
- data.tar.gz: 6168710a72dd7857ba8caed37cbc0a64c34cf8d39d597b93cd1da5cc13a4eaddc361e5a6d248a6c3dc534d0597c26bcdd95ff1abb7902dbea52614c59c450308
6
+ metadata.gz: 222d060d022fbac56a268c47e12271cdcc98641d226388590933c147a2f8e5b4f8558a209cfa5d427476d4f6bae55e647c4c43aafef54ea5b2573bc30dc895bd
7
+ data.tar.gz: 35399ff97066ecfdbc2a20f5a315f076961fab1e2196954b78bd2d4204ba2cfa93b648f8360d003bab10dc6ccda22762c021bf091b8bf93e6c1e9d215094b92a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2022-01-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for filler slate when updating MediaTailor channels that use the linear playback mode.
8
+
4
9
  1.50.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.51.0
@@ -400,7 +400,9 @@ module Aws::MediaTailor
400
400
  #
401
401
  # @option params [Types::SlateSource] :filler_slate
402
402
  # The slate used to fill gaps between programs in the schedule. You must
403
- # configure filler slate if your channel uses a LINEAR PlaybackMode.
403
+ # configure filler slate if your channel uses the LINEAR PlaybackMode.
404
+ # MediaTailor doesn't support filler slate for channels using the LOOP
405
+ # PlaybackMode.
404
406
  #
405
407
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
406
408
  # The channel's output properties.
@@ -2035,6 +2037,12 @@ module Aws::MediaTailor
2035
2037
  #
2036
2038
  # @option params [required, String] :channel_name
2037
2039
  #
2040
+ # @option params [Types::SlateSource] :filler_slate
2041
+ # The slate used to fill gaps between programs in the schedule. You must
2042
+ # configure filler slate if your channel uses the LINEAR PlaybackMode.
2043
+ # MediaTailor doesn't support filler slate for channels using the LOOP
2044
+ # PlaybackMode.
2045
+ #
2038
2046
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
2039
2047
  # The channel's output properties.
2040
2048
  #
@@ -2054,6 +2062,10 @@ module Aws::MediaTailor
2054
2062
  #
2055
2063
  # resp = client.update_channel({
2056
2064
  # channel_name: "__string", # required
2065
+ # filler_slate: {
2066
+ # source_location_name: "__string",
2067
+ # vod_source_name: "__string",
2068
+ # },
2057
2069
  # outputs: [ # required
2058
2070
  # {
2059
2071
  # dash_playlist_settings: {
@@ -2241,7 +2253,7 @@ module Aws::MediaTailor
2241
2253
  params: params,
2242
2254
  config: config)
2243
2255
  context[:gem_name] = 'aws-sdk-mediatailor'
2244
- context[:gem_version] = '1.50.0'
2256
+ context[:gem_version] = '1.51.0'
2245
2257
  Seahorse::Client::Request.new(handlers, context)
2246
2258
  end
2247
2259
 
@@ -719,6 +719,7 @@ module Aws::MediaTailor
719
719
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
720
720
 
721
721
  UpdateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelName"))
722
+ UpdateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
722
723
  UpdateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
723
724
  UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
724
725
 
@@ -385,9 +385,10 @@ module Aws::MediaTailor
385
385
  # @return [Time]
386
386
  #
387
387
  # @!attribute [rw] filler_slate
388
- # Contains information about the slate used to fill gaps between
389
- # programs in the schedule. You must configure FillerSlate if your
390
- # channel uses an LINEAR PlaybackMode.
388
+ # The slate used to fill gaps between programs in the schedule. You
389
+ # must configure filler slate if your channel uses the LINEAR
390
+ # PlaybackMode. MediaTailor doesn't support filler slate for channels
391
+ # using the LOOP PlaybackMode.
391
392
  # @return [Types::SlateSource]
392
393
  #
393
394
  # @!attribute [rw] last_modified_time
@@ -525,8 +526,9 @@ module Aws::MediaTailor
525
526
  #
526
527
  # @!attribute [rw] filler_slate
527
528
  # The slate used to fill gaps between programs in the schedule. You
528
- # must configure filler slate if your channel uses a LINEAR
529
- # PlaybackMode.
529
+ # must configure filler slate if your channel uses the LINEAR
530
+ # PlaybackMode. MediaTailor doesn't support filler slate for channels
531
+ # using the LOOP PlaybackMode.
530
532
  # @return [Types::SlateSource]
531
533
  #
532
534
  # @!attribute [rw] outputs
@@ -3611,6 +3613,10 @@ module Aws::MediaTailor
3611
3613
  #
3612
3614
  # {
3613
3615
  # channel_name: "__string", # required
3616
+ # filler_slate: {
3617
+ # source_location_name: "__string",
3618
+ # vod_source_name: "__string",
3619
+ # },
3614
3620
  # outputs: [ # required
3615
3621
  # {
3616
3622
  # dash_playlist_settings: {
@@ -3631,6 +3637,13 @@ module Aws::MediaTailor
3631
3637
  # @!attribute [rw] channel_name
3632
3638
  # @return [String]
3633
3639
  #
3640
+ # @!attribute [rw] filler_slate
3641
+ # The slate used to fill gaps between programs in the schedule. You
3642
+ # must configure filler slate if your channel uses the LINEAR
3643
+ # PlaybackMode. MediaTailor doesn't support filler slate for channels
3644
+ # using the LOOP PlaybackMode.
3645
+ # @return [Types::SlateSource]
3646
+ #
3634
3647
  # @!attribute [rw] outputs
3635
3648
  # The channel's output properties.
3636
3649
  # @return [Array<Types::RequestOutputItem>]
@@ -3639,6 +3652,7 @@ module Aws::MediaTailor
3639
3652
  #
3640
3653
  class UpdateChannelRequest < Struct.new(
3641
3654
  :channel_name,
3655
+ :filler_slate,
3642
3656
  :outputs)
3643
3657
  SENSITIVE = []
3644
3658
  include Aws::Structure
@@ -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.50.0'
51
+ GEM_VERSION = '1.51.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.50.0
4
+ version: 1.51.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-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core