aws-sdk-mediatailor 1.49.0 → 1.53.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: 13790039e48f3e63d7a040972153804459d05fe49963df5e3579532032c04e64
4
- data.tar.gz: ca2acc5b5ba08391df043dcd6cd32305b3afa158aab2cbc46761380a4887ca07
3
+ metadata.gz: 2cbd07d5f912ff888d73b97a54e9b931dfc3b6afb0e0d2ac92de00f4ac1ed36c
4
+ data.tar.gz: b1db67ca0bdeb3744bf5782aa07daaea0fc3a66370b06ee02b70fafcc984db4b
5
5
  SHA512:
6
- metadata.gz: 2fc8785851d3068c1985bfeb2ebd7d791a4c55ed96b67f9fbe7bea8795faa4b431e0102771cb202163381b4585af38c99e6be885cdbc8bcc1475aeceb15b9055
7
- data.tar.gz: b9f48231cb818fce1ab1b31c4a742250c0eed522cd2efb5a481f0f3bf0ad2dfc5c064036475b2c0a757e26d21f40bb67d105710038fe4101addb5d9b0737a786
6
+ metadata.gz: 31e2a87b7ac2eea2a3a52b0d9ebb1f280c6646f0eb90218d10422a9c991f49bdc9f59626bb2b261f1f8e681ebe166555b5a9ad7c9fbb00bfac358bc56dbd35e7
7
+ data.tar.gz: d2755d09e47925fe4d71e6d73ed750e4dd4a2585cd806bf85ea68835f7d279d89162ac975d183dfb894dabf2a289e8978f3d2be1c46d98cf3d81e70d41e02eb1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.52.0 (2022-01-20)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for multiple Segment Delivery Configurations. Users can provide a list of names and URLs when creating or editing a source location. When retrieving content, users can send a header to choose which URL should be used to serve content.
13
+
14
+ 1.51.0 (2022-01-06)
15
+ ------------------
16
+
17
+ * Feature - This release adds support for filler slate when updating MediaTailor channels that use the linear playback mode.
18
+
19
+ 1.50.0 (2021-12-21)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.49.0 (2021-11-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.53.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::MediaTailor
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
82
 
@@ -175,6 +179,10 @@ module Aws::MediaTailor
175
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
180
  # a clock skew correction and retry requests with skewed client clocks.
177
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
178
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
187
  # Set to true to disable SDK automatically adding host prefix
180
188
  # to default service endpoint when available.
@@ -297,7 +305,7 @@ module Aws::MediaTailor
297
305
  # seconds to wait when opening a HTTP session before raising a
298
306
  # `Timeout::Error`.
299
307
  #
300
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
301
309
  # number of seconds to wait for response data. This value can
302
310
  # safely be set per-request on the session.
303
311
  #
@@ -313,6 +321,9 @@ module Aws::MediaTailor
313
321
  # disables this behaviour. This value can safely be set per
314
322
  # request on the session.
315
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
316
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
317
328
  # HTTP debug output will be sent to the `:logger`.
318
329
  #
@@ -391,7 +402,9 @@ module Aws::MediaTailor
391
402
  #
392
403
  # @option params [Types::SlateSource] :filler_slate
393
404
  # The slate used to fill gaps between programs in the schedule. You must
394
- # configure filler slate if your channel uses a LINEAR PlaybackMode.
405
+ # configure filler slate if your channel uses the LINEAR PlaybackMode.
406
+ # MediaTailor doesn't support filler slate for channels using the LOOP
407
+ # PlaybackMode.
395
408
  #
396
409
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
397
410
  # The channel's output properties.
@@ -669,6 +682,9 @@ module Aws::MediaTailor
669
682
  # @option params [required, Types::HttpConfiguration] :http_configuration
670
683
  # The source's HTTP package configurations.
671
684
  #
685
+ # @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
686
+ # An array of segment delivery configurations for this source location.
687
+ #
672
688
  # @option params [required, String] :source_location_name
673
689
  #
674
690
  # @option params [Hash<String,String>] :tags
@@ -682,6 +698,7 @@ module Aws::MediaTailor
682
698
  # * {Types::CreateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
683
699
  # * {Types::CreateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
684
700
  # * {Types::CreateSourceLocationResponse#last_modified_time #last_modified_time} => Time
701
+ # * {Types::CreateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
685
702
  # * {Types::CreateSourceLocationResponse#source_location_name #source_location_name} => String
686
703
  # * {Types::CreateSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
687
704
  #
@@ -702,6 +719,12 @@ module Aws::MediaTailor
702
719
  # http_configuration: { # required
703
720
  # base_url: "__string", # required
704
721
  # },
722
+ # segment_delivery_configurations: [
723
+ # {
724
+ # base_url: "__string",
725
+ # name: "__string",
726
+ # },
727
+ # ],
705
728
  # source_location_name: "__string", # required
706
729
  # tags: {
707
730
  # "__string" => "__string",
@@ -719,6 +742,9 @@ module Aws::MediaTailor
719
742
  # resp.default_segment_delivery_configuration.base_url #=> String
720
743
  # resp.http_configuration.base_url #=> String
721
744
  # resp.last_modified_time #=> Time
745
+ # resp.segment_delivery_configurations #=> Array
746
+ # resp.segment_delivery_configurations[0].base_url #=> String
747
+ # resp.segment_delivery_configurations[0].name #=> String
722
748
  # resp.source_location_name #=> String
723
749
  # resp.tags #=> Hash
724
750
  # resp.tags["__string"] #=> String
@@ -1069,6 +1095,7 @@ module Aws::MediaTailor
1069
1095
  # * {Types::DescribeSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
1070
1096
  # * {Types::DescribeSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
1071
1097
  # * {Types::DescribeSourceLocationResponse#last_modified_time #last_modified_time} => Time
1098
+ # * {Types::DescribeSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
1072
1099
  # * {Types::DescribeSourceLocationResponse#source_location_name #source_location_name} => String
1073
1100
  # * {Types::DescribeSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
1074
1101
  #
@@ -1089,6 +1116,9 @@ module Aws::MediaTailor
1089
1116
  # resp.default_segment_delivery_configuration.base_url #=> String
1090
1117
  # resp.http_configuration.base_url #=> String
1091
1118
  # resp.last_modified_time #=> Time
1119
+ # resp.segment_delivery_configurations #=> Array
1120
+ # resp.segment_delivery_configurations[0].base_url #=> String
1121
+ # resp.segment_delivery_configurations[0].name #=> String
1092
1122
  # resp.source_location_name #=> String
1093
1123
  # resp.tags #=> Hash
1094
1124
  # resp.tags["__string"] #=> String
@@ -1616,6 +1646,9 @@ module Aws::MediaTailor
1616
1646
  # resp.items[0].default_segment_delivery_configuration.base_url #=> String
1617
1647
  # resp.items[0].http_configuration.base_url #=> String
1618
1648
  # resp.items[0].last_modified_time #=> Time
1649
+ # resp.items[0].segment_delivery_configurations #=> Array
1650
+ # resp.items[0].segment_delivery_configurations[0].base_url #=> String
1651
+ # resp.items[0].segment_delivery_configurations[0].name #=> String
1619
1652
  # resp.items[0].source_location_name #=> String
1620
1653
  # resp.items[0].tags #=> Hash
1621
1654
  # resp.items[0].tags["__string"] #=> String
@@ -2026,6 +2059,12 @@ module Aws::MediaTailor
2026
2059
  #
2027
2060
  # @option params [required, String] :channel_name
2028
2061
  #
2062
+ # @option params [Types::SlateSource] :filler_slate
2063
+ # The slate used to fill gaps between programs in the schedule. You must
2064
+ # configure filler slate if your channel uses the LINEAR PlaybackMode.
2065
+ # MediaTailor doesn't support filler slate for channels using the LOOP
2066
+ # PlaybackMode.
2067
+ #
2029
2068
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
2030
2069
  # The channel's output properties.
2031
2070
  #
@@ -2045,6 +2084,10 @@ module Aws::MediaTailor
2045
2084
  #
2046
2085
  # resp = client.update_channel({
2047
2086
  # channel_name: "__string", # required
2087
+ # filler_slate: {
2088
+ # source_location_name: "__string",
2089
+ # vod_source_name: "__string",
2090
+ # },
2048
2091
  # outputs: [ # required
2049
2092
  # {
2050
2093
  # dash_playlist_settings: {
@@ -2105,6 +2148,9 @@ module Aws::MediaTailor
2105
2148
  # @option params [required, Types::HttpConfiguration] :http_configuration
2106
2149
  # The HTTP configuration for the source location.
2107
2150
  #
2151
+ # @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
2152
+ # An array of segment delivery configurations for this source location.
2153
+ #
2108
2154
  # @option params [required, String] :source_location_name
2109
2155
  #
2110
2156
  # @return [Types::UpdateSourceLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -2115,6 +2161,7 @@ module Aws::MediaTailor
2115
2161
  # * {Types::UpdateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
2116
2162
  # * {Types::UpdateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
2117
2163
  # * {Types::UpdateSourceLocationResponse#last_modified_time #last_modified_time} => Time
2164
+ # * {Types::UpdateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
2118
2165
  # * {Types::UpdateSourceLocationResponse#source_location_name #source_location_name} => String
2119
2166
  # * {Types::UpdateSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
2120
2167
  #
@@ -2135,6 +2182,12 @@ module Aws::MediaTailor
2135
2182
  # http_configuration: { # required
2136
2183
  # base_url: "__string", # required
2137
2184
  # },
2185
+ # segment_delivery_configurations: [
2186
+ # {
2187
+ # base_url: "__string",
2188
+ # name: "__string",
2189
+ # },
2190
+ # ],
2138
2191
  # source_location_name: "__string", # required
2139
2192
  # })
2140
2193
  #
@@ -2149,6 +2202,9 @@ module Aws::MediaTailor
2149
2202
  # resp.default_segment_delivery_configuration.base_url #=> String
2150
2203
  # resp.http_configuration.base_url #=> String
2151
2204
  # resp.last_modified_time #=> Time
2205
+ # resp.segment_delivery_configurations #=> Array
2206
+ # resp.segment_delivery_configurations[0].base_url #=> String
2207
+ # resp.segment_delivery_configurations[0].name #=> String
2152
2208
  # resp.source_location_name #=> String
2153
2209
  # resp.tags #=> Hash
2154
2210
  # resp.tags["__string"] #=> String
@@ -2232,7 +2288,7 @@ module Aws::MediaTailor
2232
2288
  params: params,
2233
2289
  config: config)
2234
2290
  context[:gem_name] = 'aws-sdk-mediatailor'
2235
- context[:gem_version] = '1.49.0'
2291
+ context[:gem_version] = '1.53.0'
2236
2292
  Seahorse::Client::Request.new(handlers, context)
2237
2293
  end
2238
2294
 
@@ -119,6 +119,7 @@ module Aws::MediaTailor
119
119
  ScheduleEntry = Shapes::StructureShape.new(name: 'ScheduleEntry')
120
120
  ScheduleEntryType = Shapes::StringShape.new(name: 'ScheduleEntryType')
121
121
  SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
122
+ SegmentDeliveryConfiguration = Shapes::StructureShape.new(name: 'SegmentDeliveryConfiguration')
122
123
  SlateSource = Shapes::StructureShape.new(name: 'SlateSource')
123
124
  SourceLocation = Shapes::StructureShape.new(name: 'SourceLocation')
124
125
  SpliceInsertMessage = Shapes::StructureShape.new(name: 'SpliceInsertMessage')
@@ -149,6 +150,7 @@ module Aws::MediaTailor
149
150
  __listOfPrefetchSchedule = Shapes::ListShape.new(name: '__listOfPrefetchSchedule')
150
151
  __listOfScheduleAdBreak = Shapes::ListShape.new(name: '__listOfScheduleAdBreak')
151
152
  __listOfScheduleEntry = Shapes::ListShape.new(name: '__listOfScheduleEntry')
153
+ __listOfSegmentDeliveryConfiguration = Shapes::ListShape.new(name: '__listOfSegmentDeliveryConfiguration')
152
154
  __listOfSourceLocation = Shapes::ListShape.new(name: '__listOfSourceLocation')
153
155
  __listOfVodSource = Shapes::ListShape.new(name: '__listOfVodSource')
154
156
  __listOf__string = Shapes::ListShape.new(name: '__listOf__string')
@@ -275,6 +277,7 @@ module Aws::MediaTailor
275
277
  CreateSourceLocationRequest.add_member(:access_configuration, Shapes::ShapeRef.new(shape: AccessConfiguration, location_name: "AccessConfiguration"))
276
278
  CreateSourceLocationRequest.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
277
279
  CreateSourceLocationRequest.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, required: true, location_name: "HttpConfiguration"))
280
+ CreateSourceLocationRequest.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
278
281
  CreateSourceLocationRequest.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceLocationName"))
279
282
  CreateSourceLocationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
280
283
  CreateSourceLocationRequest.struct_class = Types::CreateSourceLocationRequest
@@ -285,6 +288,7 @@ module Aws::MediaTailor
285
288
  CreateSourceLocationResponse.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
286
289
  CreateSourceLocationResponse.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, location_name: "HttpConfiguration"))
287
290
  CreateSourceLocationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
291
+ CreateSourceLocationResponse.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
288
292
  CreateSourceLocationResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
289
293
  CreateSourceLocationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
290
294
  CreateSourceLocationResponse.struct_class = Types::CreateSourceLocationResponse
@@ -397,6 +401,7 @@ module Aws::MediaTailor
397
401
  DescribeSourceLocationResponse.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
398
402
  DescribeSourceLocationResponse.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, location_name: "HttpConfiguration"))
399
403
  DescribeSourceLocationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
404
+ DescribeSourceLocationResponse.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
400
405
  DescribeSourceLocationResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
401
406
  DescribeSourceLocationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
402
407
  DescribeSourceLocationResponse.struct_class = Types::DescribeSourceLocationResponse
@@ -674,6 +679,10 @@ module Aws::MediaTailor
674
679
  SecretsManagerAccessTokenConfiguration.add_member(:secret_string_key, Shapes::ShapeRef.new(shape: __string, location_name: "SecretStringKey"))
675
680
  SecretsManagerAccessTokenConfiguration.struct_class = Types::SecretsManagerAccessTokenConfiguration
676
681
 
682
+ SegmentDeliveryConfiguration.add_member(:base_url, Shapes::ShapeRef.new(shape: __string, location_name: "BaseUrl"))
683
+ SegmentDeliveryConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
684
+ SegmentDeliveryConfiguration.struct_class = Types::SegmentDeliveryConfiguration
685
+
677
686
  SlateSource.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
678
687
  SlateSource.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
679
688
  SlateSource.struct_class = Types::SlateSource
@@ -684,6 +693,7 @@ module Aws::MediaTailor
684
693
  SourceLocation.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
685
694
  SourceLocation.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, required: true, location_name: "HttpConfiguration"))
686
695
  SourceLocation.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
696
+ SourceLocation.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
687
697
  SourceLocation.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "SourceLocationName"))
688
698
  SourceLocation.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
689
699
  SourceLocation.struct_class = Types::SourceLocation
@@ -719,6 +729,7 @@ module Aws::MediaTailor
719
729
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
720
730
 
721
731
  UpdateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelName"))
732
+ UpdateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
722
733
  UpdateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
723
734
  UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
724
735
 
@@ -736,6 +747,7 @@ module Aws::MediaTailor
736
747
  UpdateSourceLocationRequest.add_member(:access_configuration, Shapes::ShapeRef.new(shape: AccessConfiguration, location_name: "AccessConfiguration"))
737
748
  UpdateSourceLocationRequest.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
738
749
  UpdateSourceLocationRequest.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, required: true, location_name: "HttpConfiguration"))
750
+ UpdateSourceLocationRequest.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
739
751
  UpdateSourceLocationRequest.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceLocationName"))
740
752
  UpdateSourceLocationRequest.struct_class = Types::UpdateSourceLocationRequest
741
753
 
@@ -745,6 +757,7 @@ module Aws::MediaTailor
745
757
  UpdateSourceLocationResponse.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
746
758
  UpdateSourceLocationResponse.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, location_name: "HttpConfiguration"))
747
759
  UpdateSourceLocationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
760
+ UpdateSourceLocationResponse.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
748
761
  UpdateSourceLocationResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
749
762
  UpdateSourceLocationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
750
763
  UpdateSourceLocationResponse.struct_class = Types::UpdateSourceLocationResponse
@@ -788,6 +801,8 @@ module Aws::MediaTailor
788
801
 
789
802
  __listOfScheduleEntry.member = Shapes::ShapeRef.new(shape: ScheduleEntry)
790
803
 
804
+ __listOfSegmentDeliveryConfiguration.member = Shapes::ShapeRef.new(shape: SegmentDeliveryConfiguration)
805
+
791
806
  __listOfSourceLocation.member = Shapes::ShapeRef.new(shape: SourceLocation)
792
807
 
793
808
  __listOfVodSource.member = Shapes::ShapeRef.new(shape: VodSource)
@@ -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
@@ -840,6 +842,12 @@ module Aws::MediaTailor
840
842
  # http_configuration: { # required
841
843
  # base_url: "__string", # required
842
844
  # },
845
+ # segment_delivery_configurations: [
846
+ # {
847
+ # base_url: "__string",
848
+ # name: "__string",
849
+ # },
850
+ # ],
843
851
  # source_location_name: "__string", # required
844
852
  # tags: {
845
853
  # "__string" => "__string",
@@ -859,6 +867,11 @@ module Aws::MediaTailor
859
867
  # The source's HTTP package configurations.
860
868
  # @return [Types::HttpConfiguration]
861
869
  #
870
+ # @!attribute [rw] segment_delivery_configurations
871
+ # An array of segment delivery configurations for this source
872
+ # location.
873
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
874
+ #
862
875
  # @!attribute [rw] source_location_name
863
876
  # @return [String]
864
877
  #
@@ -872,6 +885,7 @@ module Aws::MediaTailor
872
885
  :access_configuration,
873
886
  :default_segment_delivery_configuration,
874
887
  :http_configuration,
888
+ :segment_delivery_configurations,
875
889
  :source_location_name,
876
890
  :tags)
877
891
  SENSITIVE = []
@@ -905,6 +919,9 @@ module Aws::MediaTailor
905
919
  # @!attribute [rw] last_modified_time
906
920
  # @return [Time]
907
921
  #
922
+ # @!attribute [rw] segment_delivery_configurations
923
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
924
+ #
908
925
  # @!attribute [rw] source_location_name
909
926
  # @return [String]
910
927
  #
@@ -920,6 +937,7 @@ module Aws::MediaTailor
920
937
  :default_segment_delivery_configuration,
921
938
  :http_configuration,
922
939
  :last_modified_time,
940
+ :segment_delivery_configurations,
923
941
  :source_location_name,
924
942
  :tags)
925
943
  SENSITIVE = []
@@ -1538,6 +1556,11 @@ module Aws::MediaTailor
1538
1556
  # modified.
1539
1557
  # @return [Time]
1540
1558
  #
1559
+ # @!attribute [rw] segment_delivery_configurations
1560
+ # An array of segment delivery configurations for this source
1561
+ # location.
1562
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
1563
+ #
1541
1564
  # @!attribute [rw] source_location_name
1542
1565
  # The name of the source location.
1543
1566
  # @return [String]
@@ -1555,6 +1578,7 @@ module Aws::MediaTailor
1555
1578
  :default_segment_delivery_configuration,
1556
1579
  :http_configuration,
1557
1580
  :last_modified_time,
1581
+ :segment_delivery_configurations,
1558
1582
  :source_location_name,
1559
1583
  :tags)
1560
1584
  SENSITIVE = []
@@ -3328,6 +3352,37 @@ module Aws::MediaTailor
3328
3352
  include Aws::Structure
3329
3353
  end
3330
3354
 
3355
+ # @note When making an API call, you may pass SegmentDeliveryConfiguration
3356
+ # data as a hash:
3357
+ #
3358
+ # {
3359
+ # base_url: "__string",
3360
+ # name: "__string",
3361
+ # }
3362
+ #
3363
+ # @!attribute [rw] base_url
3364
+ # The base URL of the host or path of the segment delivery server that
3365
+ # you're using to serve segments. This is typically a content
3366
+ # delivery network (CDN). The URL can be absolute or relative. To use
3367
+ # an absolute URL include the protocol, such as
3368
+ # https://example.com/some/path. To use a relative URL specify the
3369
+ # relative path, such as /some/path.
3370
+ # @return [String]
3371
+ #
3372
+ # @!attribute [rw] name
3373
+ # A unique identifier used to distinguish between multiple segment
3374
+ # delivery configurations in a source location.
3375
+ # @return [String]
3376
+ #
3377
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SegmentDeliveryConfiguration AWS API Documentation
3378
+ #
3379
+ class SegmentDeliveryConfiguration < Struct.new(
3380
+ :base_url,
3381
+ :name)
3382
+ SENSITIVE = []
3383
+ include Aws::Structure
3384
+ end
3385
+
3331
3386
  # Slate VOD source configuration.
3332
3387
  #
3333
3388
  # @note When making an API call, you may pass SlateSource
@@ -3384,6 +3439,11 @@ module Aws::MediaTailor
3384
3439
  # modified.
3385
3440
  # @return [Time]
3386
3441
  #
3442
+ # @!attribute [rw] segment_delivery_configurations
3443
+ # An array of segment delivery configurations for this source
3444
+ # location.
3445
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
3446
+ #
3387
3447
  # @!attribute [rw] source_location_name
3388
3448
  # The name of the source location.
3389
3449
  # @return [String]
@@ -3401,6 +3461,7 @@ module Aws::MediaTailor
3401
3461
  :default_segment_delivery_configuration,
3402
3462
  :http_configuration,
3403
3463
  :last_modified_time,
3464
+ :segment_delivery_configurations,
3404
3465
  :source_location_name,
3405
3466
  :tags)
3406
3467
  SENSITIVE = []
@@ -3611,6 +3672,10 @@ module Aws::MediaTailor
3611
3672
  #
3612
3673
  # {
3613
3674
  # channel_name: "__string", # required
3675
+ # filler_slate: {
3676
+ # source_location_name: "__string",
3677
+ # vod_source_name: "__string",
3678
+ # },
3614
3679
  # outputs: [ # required
3615
3680
  # {
3616
3681
  # dash_playlist_settings: {
@@ -3631,6 +3696,13 @@ module Aws::MediaTailor
3631
3696
  # @!attribute [rw] channel_name
3632
3697
  # @return [String]
3633
3698
  #
3699
+ # @!attribute [rw] filler_slate
3700
+ # The slate used to fill gaps between programs in the schedule. You
3701
+ # must configure filler slate if your channel uses the LINEAR
3702
+ # PlaybackMode. MediaTailor doesn't support filler slate for channels
3703
+ # using the LOOP PlaybackMode.
3704
+ # @return [Types::SlateSource]
3705
+ #
3634
3706
  # @!attribute [rw] outputs
3635
3707
  # The channel's output properties.
3636
3708
  # @return [Array<Types::RequestOutputItem>]
@@ -3639,6 +3711,7 @@ module Aws::MediaTailor
3639
3711
  #
3640
3712
  class UpdateChannelRequest < Struct.new(
3641
3713
  :channel_name,
3714
+ :filler_slate,
3642
3715
  :outputs)
3643
3716
  SENSITIVE = []
3644
3717
  include Aws::Structure
@@ -3708,6 +3781,12 @@ module Aws::MediaTailor
3708
3781
  # http_configuration: { # required
3709
3782
  # base_url: "__string", # required
3710
3783
  # },
3784
+ # segment_delivery_configurations: [
3785
+ # {
3786
+ # base_url: "__string",
3787
+ # name: "__string",
3788
+ # },
3789
+ # ],
3711
3790
  # source_location_name: "__string", # required
3712
3791
  # }
3713
3792
  #
@@ -3724,6 +3803,11 @@ module Aws::MediaTailor
3724
3803
  # The HTTP configuration for the source location.
3725
3804
  # @return [Types::HttpConfiguration]
3726
3805
  #
3806
+ # @!attribute [rw] segment_delivery_configurations
3807
+ # An array of segment delivery configurations for this source
3808
+ # location.
3809
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
3810
+ #
3727
3811
  # @!attribute [rw] source_location_name
3728
3812
  # @return [String]
3729
3813
  #
@@ -3733,6 +3817,7 @@ module Aws::MediaTailor
3733
3817
  :access_configuration,
3734
3818
  :default_segment_delivery_configuration,
3735
3819
  :http_configuration,
3820
+ :segment_delivery_configurations,
3736
3821
  :source_location_name)
3737
3822
  SENSITIVE = []
3738
3823
  include Aws::Structure
@@ -3765,6 +3850,9 @@ module Aws::MediaTailor
3765
3850
  # @!attribute [rw] last_modified_time
3766
3851
  # @return [Time]
3767
3852
  #
3853
+ # @!attribute [rw] segment_delivery_configurations
3854
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
3855
+ #
3768
3856
  # @!attribute [rw] source_location_name
3769
3857
  # @return [String]
3770
3858
  #
@@ -3780,6 +3868,7 @@ module Aws::MediaTailor
3780
3868
  :default_segment_delivery_configuration,
3781
3869
  :http_configuration,
3782
3870
  :last_modified_time,
3871
+ :segment_delivery_configurations,
3783
3872
  :source_location_name,
3784
3873
  :tags)
3785
3874
  SENSITIVE = []
@@ -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.49.0'
51
+ GEM_VERSION = '1.53.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.49.0
4
+ version: 1.53.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-30 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement