aws-sdk-mediatailor 1.51.0 → 1.52.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: c0c5a5bad0447568ae375e4a16bd14c67d4e160f471bee471290dfbdb89e8b44
4
+ data.tar.gz: 3b583f1190f92cae76bad89e496f70de2e39fcd2b29cadd84c75716ee6cc8a0a
5
5
  SHA512:
6
- metadata.gz: 222d060d022fbac56a268c47e12271cdcc98641d226388590933c147a2f8e5b4f8558a209cfa5d427476d4f6bae55e647c4c43aafef54ea5b2573bc30dc895bd
7
- data.tar.gz: 35399ff97066ecfdbc2a20f5a315f076961fab1e2196954b78bd2d4204ba2cfa93b648f8360d003bab10dc6ccda22762c021bf091b8bf93e6c1e9d215094b92a
6
+ metadata.gz: 9e0271a0f8d41491159c872bb4a9af156ae19f07d6516c30c33f491c0f9ba6cb1b309375f8538b43e1c343f48af86468b139865b39db4a9c9df5dcd488e7a815
7
+ data.tar.gz: 2615caab7c7f552818541c4f136a8331a25e72520b116eea57f3976dac22c100114703dcd822703a28f6a3229d0e3f11cb2c1c15afa48089da20c77945329917
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2022-01-20)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.51.0 (2022-01-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.52.0
@@ -680,6 +680,9 @@ module Aws::MediaTailor
680
680
  # @option params [required, Types::HttpConfiguration] :http_configuration
681
681
  # The source's HTTP package configurations.
682
682
  #
683
+ # @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
684
+ # An array of segment delivery configurations for this source location.
685
+ #
683
686
  # @option params [required, String] :source_location_name
684
687
  #
685
688
  # @option params [Hash<String,String>] :tags
@@ -693,6 +696,7 @@ module Aws::MediaTailor
693
696
  # * {Types::CreateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
694
697
  # * {Types::CreateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
695
698
  # * {Types::CreateSourceLocationResponse#last_modified_time #last_modified_time} => Time
699
+ # * {Types::CreateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
696
700
  # * {Types::CreateSourceLocationResponse#source_location_name #source_location_name} => String
697
701
  # * {Types::CreateSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
698
702
  #
@@ -713,6 +717,12 @@ module Aws::MediaTailor
713
717
  # http_configuration: { # required
714
718
  # base_url: "__string", # required
715
719
  # },
720
+ # segment_delivery_configurations: [
721
+ # {
722
+ # base_url: "__string",
723
+ # name: "__string",
724
+ # },
725
+ # ],
716
726
  # source_location_name: "__string", # required
717
727
  # tags: {
718
728
  # "__string" => "__string",
@@ -730,6 +740,9 @@ module Aws::MediaTailor
730
740
  # resp.default_segment_delivery_configuration.base_url #=> String
731
741
  # resp.http_configuration.base_url #=> String
732
742
  # resp.last_modified_time #=> Time
743
+ # resp.segment_delivery_configurations #=> Array
744
+ # resp.segment_delivery_configurations[0].base_url #=> String
745
+ # resp.segment_delivery_configurations[0].name #=> String
733
746
  # resp.source_location_name #=> String
734
747
  # resp.tags #=> Hash
735
748
  # resp.tags["__string"] #=> String
@@ -1080,6 +1093,7 @@ module Aws::MediaTailor
1080
1093
  # * {Types::DescribeSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
1081
1094
  # * {Types::DescribeSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
1082
1095
  # * {Types::DescribeSourceLocationResponse#last_modified_time #last_modified_time} => Time
1096
+ # * {Types::DescribeSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
1083
1097
  # * {Types::DescribeSourceLocationResponse#source_location_name #source_location_name} => String
1084
1098
  # * {Types::DescribeSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
1085
1099
  #
@@ -1100,6 +1114,9 @@ module Aws::MediaTailor
1100
1114
  # resp.default_segment_delivery_configuration.base_url #=> String
1101
1115
  # resp.http_configuration.base_url #=> String
1102
1116
  # resp.last_modified_time #=> Time
1117
+ # resp.segment_delivery_configurations #=> Array
1118
+ # resp.segment_delivery_configurations[0].base_url #=> String
1119
+ # resp.segment_delivery_configurations[0].name #=> String
1103
1120
  # resp.source_location_name #=> String
1104
1121
  # resp.tags #=> Hash
1105
1122
  # resp.tags["__string"] #=> String
@@ -1627,6 +1644,9 @@ module Aws::MediaTailor
1627
1644
  # resp.items[0].default_segment_delivery_configuration.base_url #=> String
1628
1645
  # resp.items[0].http_configuration.base_url #=> String
1629
1646
  # resp.items[0].last_modified_time #=> Time
1647
+ # resp.items[0].segment_delivery_configurations #=> Array
1648
+ # resp.items[0].segment_delivery_configurations[0].base_url #=> String
1649
+ # resp.items[0].segment_delivery_configurations[0].name #=> String
1630
1650
  # resp.items[0].source_location_name #=> String
1631
1651
  # resp.items[0].tags #=> Hash
1632
1652
  # resp.items[0].tags["__string"] #=> String
@@ -2126,6 +2146,9 @@ module Aws::MediaTailor
2126
2146
  # @option params [required, Types::HttpConfiguration] :http_configuration
2127
2147
  # The HTTP configuration for the source location.
2128
2148
  #
2149
+ # @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
2150
+ # An array of segment delivery configurations for this source location.
2151
+ #
2129
2152
  # @option params [required, String] :source_location_name
2130
2153
  #
2131
2154
  # @return [Types::UpdateSourceLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -2136,6 +2159,7 @@ module Aws::MediaTailor
2136
2159
  # * {Types::UpdateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
2137
2160
  # * {Types::UpdateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
2138
2161
  # * {Types::UpdateSourceLocationResponse#last_modified_time #last_modified_time} => Time
2162
+ # * {Types::UpdateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array&lt;Types::SegmentDeliveryConfiguration&gt;
2139
2163
  # * {Types::UpdateSourceLocationResponse#source_location_name #source_location_name} => String
2140
2164
  # * {Types::UpdateSourceLocationResponse#tags #tags} => Hash&lt;String,String&gt;
2141
2165
  #
@@ -2156,6 +2180,12 @@ module Aws::MediaTailor
2156
2180
  # http_configuration: { # required
2157
2181
  # base_url: "__string", # required
2158
2182
  # },
2183
+ # segment_delivery_configurations: [
2184
+ # {
2185
+ # base_url: "__string",
2186
+ # name: "__string",
2187
+ # },
2188
+ # ],
2159
2189
  # source_location_name: "__string", # required
2160
2190
  # })
2161
2191
  #
@@ -2170,6 +2200,9 @@ module Aws::MediaTailor
2170
2200
  # resp.default_segment_delivery_configuration.base_url #=> String
2171
2201
  # resp.http_configuration.base_url #=> String
2172
2202
  # resp.last_modified_time #=> Time
2203
+ # resp.segment_delivery_configurations #=> Array
2204
+ # resp.segment_delivery_configurations[0].base_url #=> String
2205
+ # resp.segment_delivery_configurations[0].name #=> String
2173
2206
  # resp.source_location_name #=> String
2174
2207
  # resp.tags #=> Hash
2175
2208
  # resp.tags["__string"] #=> String
@@ -2253,7 +2286,7 @@ module Aws::MediaTailor
2253
2286
  params: params,
2254
2287
  config: config)
2255
2288
  context[:gem_name] = 'aws-sdk-mediatailor'
2256
- context[:gem_version] = '1.51.0'
2289
+ context[:gem_version] = '1.52.0'
2257
2290
  Seahorse::Client::Request.new(handlers, context)
2258
2291
  end
2259
2292
 
@@ -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.52.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.52.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-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core