aws-sdk-mediatailor 1.51.0 → 1.54.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: 680a93d698a3329c6a238a10409ec74ad9cacb816f08b4172852590e65ff1cd2
4
- data.tar.gz: 3eaba8fa6dd99a5b6e9135c78a284cac9a74cdb0f40110690cef25c5f949f1bc
3
+ metadata.gz: a60328463831e8ebbbc2eb88238bb7905f913a67ebefe1c9595ea14e165ee4b2
4
+ data.tar.gz: c232dc70022cb8f0ee5531d9c1dda8d767d3d73f8f43d0f47ad4b3772def0c2a
5
5
  SHA512:
6
- metadata.gz: 222d060d022fbac56a268c47e12271cdcc98641d226388590933c147a2f8e5b4f8558a209cfa5d427476d4f6bae55e647c4c43aafef54ea5b2573bc30dc895bd
7
- data.tar.gz: 35399ff97066ecfdbc2a20f5a315f076961fab1e2196954b78bd2d4204ba2cfa93b648f8360d003bab10dc6ccda22762c021bf091b8bf93e6c1e9d215094b92a
6
+ metadata.gz: f78f6e4377f6f08df7cbc971e9bd3d5d9297c3be2d27b18dd9ec9d520983fc6a085b1fb209fb69dee7420b8a5090d1ba2676a9eccf3671c974531dbb1899a7cb
7
+ data.tar.gz: 12e377965745c1c9f9e9e16a46d1482e00502b4020e18bddedd8d9127f0ef0cba03fec4fc12bf72e27f9e363d57b28a1e15765da19cbaeec6fb02310d474f5ac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.53.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.52.0 (2022-01-20)
15
+ ------------------
16
+
17
+ * 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.
18
+
4
19
  1.51.0 (2022-01-06)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.54.0
@@ -27,7 +27,9 @@ 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/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::MediaTailor
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -680,6 +684,9 @@ module Aws::MediaTailor
680
684
  # @option params [required, Types::HttpConfiguration] :http_configuration
681
685
  # The source's HTTP package configurations.
682
686
  #
687
+ # @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
688
+ # An array of segment delivery configurations for this source location.
689
+ #
683
690
  # @option params [required, String] :source_location_name
684
691
  #
685
692
  # @option params [Hash<String,String>] :tags
@@ -693,6 +700,7 @@ module Aws::MediaTailor
693
700
  # * {Types::CreateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
694
701
  # * {Types::CreateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
695
702
  # * {Types::CreateSourceLocationResponse#last_modified_time #last_modified_time} => Time
703
+ # * {Types::CreateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
696
704
  # * {Types::CreateSourceLocationResponse#source_location_name #source_location_name} => String
697
705
  # * {Types::CreateSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
698
706
  #
@@ -713,6 +721,12 @@ module Aws::MediaTailor
713
721
  # http_configuration: { # required
714
722
  # base_url: "__string", # required
715
723
  # },
724
+ # segment_delivery_configurations: [
725
+ # {
726
+ # base_url: "__string",
727
+ # name: "__string",
728
+ # },
729
+ # ],
716
730
  # source_location_name: "__string", # required
717
731
  # tags: {
718
732
  # "__string" => "__string",
@@ -730,6 +744,9 @@ module Aws::MediaTailor
730
744
  # resp.default_segment_delivery_configuration.base_url #=> String
731
745
  # resp.http_configuration.base_url #=> String
732
746
  # resp.last_modified_time #=> Time
747
+ # resp.segment_delivery_configurations #=> Array
748
+ # resp.segment_delivery_configurations[0].base_url #=> String
749
+ # resp.segment_delivery_configurations[0].name #=> String
733
750
  # resp.source_location_name #=> String
734
751
  # resp.tags #=> Hash
735
752
  # resp.tags["__string"] #=> String
@@ -1080,6 +1097,7 @@ module Aws::MediaTailor
1080
1097
  # * {Types::DescribeSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
1081
1098
  # * {Types::DescribeSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
1082
1099
  # * {Types::DescribeSourceLocationResponse#last_modified_time #last_modified_time} => Time
1100
+ # * {Types::DescribeSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
1083
1101
  # * {Types::DescribeSourceLocationResponse#source_location_name #source_location_name} => String
1084
1102
  # * {Types::DescribeSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
1085
1103
  #
@@ -1100,6 +1118,9 @@ module Aws::MediaTailor
1100
1118
  # resp.default_segment_delivery_configuration.base_url #=> String
1101
1119
  # resp.http_configuration.base_url #=> String
1102
1120
  # resp.last_modified_time #=> Time
1121
+ # resp.segment_delivery_configurations #=> Array
1122
+ # resp.segment_delivery_configurations[0].base_url #=> String
1123
+ # resp.segment_delivery_configurations[0].name #=> String
1103
1124
  # resp.source_location_name #=> String
1104
1125
  # resp.tags #=> Hash
1105
1126
  # resp.tags["__string"] #=> String
@@ -1627,6 +1648,9 @@ module Aws::MediaTailor
1627
1648
  # resp.items[0].default_segment_delivery_configuration.base_url #=> String
1628
1649
  # resp.items[0].http_configuration.base_url #=> String
1629
1650
  # resp.items[0].last_modified_time #=> Time
1651
+ # resp.items[0].segment_delivery_configurations #=> Array
1652
+ # resp.items[0].segment_delivery_configurations[0].base_url #=> String
1653
+ # resp.items[0].segment_delivery_configurations[0].name #=> String
1630
1654
  # resp.items[0].source_location_name #=> String
1631
1655
  # resp.items[0].tags #=> Hash
1632
1656
  # resp.items[0].tags["__string"] #=> String
@@ -2126,6 +2150,9 @@ module Aws::MediaTailor
2126
2150
  # @option params [required, Types::HttpConfiguration] :http_configuration
2127
2151
  # The HTTP configuration for the source location.
2128
2152
  #
2153
+ # @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
2154
+ # An array of segment delivery configurations for this source location.
2155
+ #
2129
2156
  # @option params [required, String] :source_location_name
2130
2157
  #
2131
2158
  # @return [Types::UpdateSourceLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -2136,6 +2163,7 @@ module Aws::MediaTailor
2136
2163
  # * {Types::UpdateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
2137
2164
  # * {Types::UpdateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
2138
2165
  # * {Types::UpdateSourceLocationResponse#last_modified_time #last_modified_time} => Time
2166
+ # * {Types::UpdateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
2139
2167
  # * {Types::UpdateSourceLocationResponse#source_location_name #source_location_name} => String
2140
2168
  # * {Types::UpdateSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
2141
2169
  #
@@ -2156,6 +2184,12 @@ module Aws::MediaTailor
2156
2184
  # http_configuration: { # required
2157
2185
  # base_url: "__string", # required
2158
2186
  # },
2187
+ # segment_delivery_configurations: [
2188
+ # {
2189
+ # base_url: "__string",
2190
+ # name: "__string",
2191
+ # },
2192
+ # ],
2159
2193
  # source_location_name: "__string", # required
2160
2194
  # })
2161
2195
  #
@@ -2170,6 +2204,9 @@ module Aws::MediaTailor
2170
2204
  # resp.default_segment_delivery_configuration.base_url #=> String
2171
2205
  # resp.http_configuration.base_url #=> String
2172
2206
  # resp.last_modified_time #=> Time
2207
+ # resp.segment_delivery_configurations #=> Array
2208
+ # resp.segment_delivery_configurations[0].base_url #=> String
2209
+ # resp.segment_delivery_configurations[0].name #=> String
2173
2210
  # resp.source_location_name #=> String
2174
2211
  # resp.tags #=> Hash
2175
2212
  # resp.tags["__string"] #=> String
@@ -2253,7 +2290,7 @@ module Aws::MediaTailor
2253
2290
  params: params,
2254
2291
  config: config)
2255
2292
  context[:gem_name] = 'aws-sdk-mediatailor'
2256
- context[:gem_version] = '1.51.0'
2293
+ context[:gem_version] = '1.54.0'
2257
2294
  Seahorse::Client::Request.new(handlers, context)
2258
2295
  end
2259
2296
 
@@ -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
@@ -737,6 +747,7 @@ module Aws::MediaTailor
737
747
  UpdateSourceLocationRequest.add_member(:access_configuration, Shapes::ShapeRef.new(shape: AccessConfiguration, location_name: "AccessConfiguration"))
738
748
  UpdateSourceLocationRequest.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
739
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"))
740
751
  UpdateSourceLocationRequest.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceLocationName"))
741
752
  UpdateSourceLocationRequest.struct_class = Types::UpdateSourceLocationRequest
742
753
 
@@ -746,6 +757,7 @@ module Aws::MediaTailor
746
757
  UpdateSourceLocationResponse.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
747
758
  UpdateSourceLocationResponse.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, location_name: "HttpConfiguration"))
748
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"))
749
761
  UpdateSourceLocationResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
750
762
  UpdateSourceLocationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
751
763
  UpdateSourceLocationResponse.struct_class = Types::UpdateSourceLocationResponse
@@ -789,6 +801,8 @@ module Aws::MediaTailor
789
801
 
790
802
  __listOfScheduleEntry.member = Shapes::ShapeRef.new(shape: ScheduleEntry)
791
803
 
804
+ __listOfSegmentDeliveryConfiguration.member = Shapes::ShapeRef.new(shape: SegmentDeliveryConfiguration)
805
+
792
806
  __listOfSourceLocation.member = Shapes::ShapeRef.new(shape: SourceLocation)
793
807
 
794
808
  __listOfVodSource.member = Shapes::ShapeRef.new(shape: VodSource)
@@ -842,6 +842,12 @@ module Aws::MediaTailor
842
842
  # http_configuration: { # required
843
843
  # base_url: "__string", # required
844
844
  # },
845
+ # segment_delivery_configurations: [
846
+ # {
847
+ # base_url: "__string",
848
+ # name: "__string",
849
+ # },
850
+ # ],
845
851
  # source_location_name: "__string", # required
846
852
  # tags: {
847
853
  # "__string" => "__string",
@@ -861,6 +867,11 @@ module Aws::MediaTailor
861
867
  # The source's HTTP package configurations.
862
868
  # @return [Types::HttpConfiguration]
863
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
+ #
864
875
  # @!attribute [rw] source_location_name
865
876
  # @return [String]
866
877
  #
@@ -874,6 +885,7 @@ module Aws::MediaTailor
874
885
  :access_configuration,
875
886
  :default_segment_delivery_configuration,
876
887
  :http_configuration,
888
+ :segment_delivery_configurations,
877
889
  :source_location_name,
878
890
  :tags)
879
891
  SENSITIVE = []
@@ -907,6 +919,9 @@ module Aws::MediaTailor
907
919
  # @!attribute [rw] last_modified_time
908
920
  # @return [Time]
909
921
  #
922
+ # @!attribute [rw] segment_delivery_configurations
923
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
924
+ #
910
925
  # @!attribute [rw] source_location_name
911
926
  # @return [String]
912
927
  #
@@ -922,6 +937,7 @@ module Aws::MediaTailor
922
937
  :default_segment_delivery_configuration,
923
938
  :http_configuration,
924
939
  :last_modified_time,
940
+ :segment_delivery_configurations,
925
941
  :source_location_name,
926
942
  :tags)
927
943
  SENSITIVE = []
@@ -1540,6 +1556,11 @@ module Aws::MediaTailor
1540
1556
  # modified.
1541
1557
  # @return [Time]
1542
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
+ #
1543
1564
  # @!attribute [rw] source_location_name
1544
1565
  # The name of the source location.
1545
1566
  # @return [String]
@@ -1557,6 +1578,7 @@ module Aws::MediaTailor
1557
1578
  :default_segment_delivery_configuration,
1558
1579
  :http_configuration,
1559
1580
  :last_modified_time,
1581
+ :segment_delivery_configurations,
1560
1582
  :source_location_name,
1561
1583
  :tags)
1562
1584
  SENSITIVE = []
@@ -3330,6 +3352,37 @@ module Aws::MediaTailor
3330
3352
  include Aws::Structure
3331
3353
  end
3332
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
+
3333
3386
  # Slate VOD source configuration.
3334
3387
  #
3335
3388
  # @note When making an API call, you may pass SlateSource
@@ -3386,6 +3439,11 @@ module Aws::MediaTailor
3386
3439
  # modified.
3387
3440
  # @return [Time]
3388
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
+ #
3389
3447
  # @!attribute [rw] source_location_name
3390
3448
  # The name of the source location.
3391
3449
  # @return [String]
@@ -3403,6 +3461,7 @@ module Aws::MediaTailor
3403
3461
  :default_segment_delivery_configuration,
3404
3462
  :http_configuration,
3405
3463
  :last_modified_time,
3464
+ :segment_delivery_configurations,
3406
3465
  :source_location_name,
3407
3466
  :tags)
3408
3467
  SENSITIVE = []
@@ -3722,6 +3781,12 @@ module Aws::MediaTailor
3722
3781
  # http_configuration: { # required
3723
3782
  # base_url: "__string", # required
3724
3783
  # },
3784
+ # segment_delivery_configurations: [
3785
+ # {
3786
+ # base_url: "__string",
3787
+ # name: "__string",
3788
+ # },
3789
+ # ],
3725
3790
  # source_location_name: "__string", # required
3726
3791
  # }
3727
3792
  #
@@ -3738,6 +3803,11 @@ module Aws::MediaTailor
3738
3803
  # The HTTP configuration for the source location.
3739
3804
  # @return [Types::HttpConfiguration]
3740
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
+ #
3741
3811
  # @!attribute [rw] source_location_name
3742
3812
  # @return [String]
3743
3813
  #
@@ -3747,6 +3817,7 @@ module Aws::MediaTailor
3747
3817
  :access_configuration,
3748
3818
  :default_segment_delivery_configuration,
3749
3819
  :http_configuration,
3820
+ :segment_delivery_configurations,
3750
3821
  :source_location_name)
3751
3822
  SENSITIVE = []
3752
3823
  include Aws::Structure
@@ -3779,6 +3850,9 @@ module Aws::MediaTailor
3779
3850
  # @!attribute [rw] last_modified_time
3780
3851
  # @return [Time]
3781
3852
  #
3853
+ # @!attribute [rw] segment_delivery_configurations
3854
+ # @return [Array<Types::SegmentDeliveryConfiguration>]
3855
+ #
3782
3856
  # @!attribute [rw] source_location_name
3783
3857
  # @return [String]
3784
3858
  #
@@ -3794,6 +3868,7 @@ module Aws::MediaTailor
3794
3868
  :default_segment_delivery_configuration,
3795
3869
  :http_configuration,
3796
3870
  :last_modified_time,
3871
+ :segment_delivery_configurations,
3797
3872
  :source_location_name,
3798
3873
  :tags)
3799
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.51.0'
51
+ GEM_VERSION = '1.54.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.51.0
4
+ version: 1.54.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: 2022-01-06 00:00:00.000000000 Z
11
+ date: 2022-02-24 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.125.0
22
+ version: 3.127.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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement