aws-sdk-mediatailor 1.65.0 → 1.67.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: 468db15bfe39a0e21b8b004d4c333b9a49b79268521491b2b4f856493e484797
4
- data.tar.gz: bae24a0b91b1a5b25f01843ce608e5462fe2076c4282fe8dd2cfe708129b0af8
3
+ metadata.gz: d3738e89228dae6664729ceafa0a4e78413879d96aedebc03fa23eeb05b287eb
4
+ data.tar.gz: 4fcbd6f16092ef9e83062e8365c7cddae7200da19c8e8ec0ffa93e57852f3727
5
5
  SHA512:
6
- metadata.gz: fbdfb409f00a47bb5b2e211dbed0bcb29e27650e01e2a583e045e9805b1b8054e8c09b575fe5f5d967ccf484508b50784e291bb50bfd8afd556df1c0b746277e
7
- data.tar.gz: 54a925ab1940d2fc9bf82fbf4e1ca270816d7190ea1773a686ecebfd040cb021349a49c3c93fec40747e258ee330fac378fb5c733c9a6c4a5743de4f49591b03
6
+ metadata.gz: 437172ece3a4c57ba6962ef8a4135234376dc01aa34a815128d9350d2bf4543b86a4322320e75c17ba53965aec52ce08cf41be4cde2223232c3df7716474f559
7
+ data.tar.gz: 2bf014f8b4fec59d0407b79f665ba420676fc97349a8e103095ab9c2c87970bb4deaabdb449c3caf6018c12cb0d9fb18f8482c069f72201ab95c359ca4e6dba4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2023-07-11)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.66.0 (2023-07-07)
10
+ ------------------
11
+
12
+ * Feature - The AWS Elemental MediaTailor SDK for Channel Assembly has added support for EXT-X-CUE-OUT and EXT-X-CUE-IN tags to specify ad breaks in HLS outputs, including support for EXT-OATCLS, EXT-X-ASSET, and EXT-X-CUE-OUT-CONT accessory tags.
13
+
4
14
  1.65.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.67.0
@@ -216,6 +216,10 @@ module Aws::MediaTailor
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -537,6 +541,7 @@ module Aws::MediaTailor
537
541
  # suggested_presentation_delay_seconds: 1,
538
542
  # },
539
543
  # hls_playlist_settings: {
544
+ # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
540
545
  # manifest_window_seconds: 1,
541
546
  # },
542
547
  # manifest_name: "__string", # required
@@ -564,6 +569,8 @@ module Aws::MediaTailor
564
569
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
565
570
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
566
571
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
572
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
573
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
567
574
  # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
568
575
  # resp.outputs[0].manifest_name #=> String
569
576
  # resp.outputs[0].playback_url #=> String
@@ -795,6 +802,12 @@ module Aws::MediaTailor
795
802
  # resp = client.create_program({
796
803
  # ad_breaks: [
797
804
  # {
805
+ # ad_break_metadata: [
806
+ # {
807
+ # key: "String", # required
808
+ # value: "String", # required
809
+ # },
810
+ # ],
798
811
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
799
812
  # offset_millis: 1,
800
813
  # slate: {
@@ -845,6 +858,9 @@ module Aws::MediaTailor
845
858
  # @example Response structure
846
859
  #
847
860
  # resp.ad_breaks #=> Array
861
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
862
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
863
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
848
864
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
849
865
  # resp.ad_breaks[0].offset_millis #=> Integer
850
866
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -1325,6 +1341,8 @@ module Aws::MediaTailor
1325
1341
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
1326
1342
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
1327
1343
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
1344
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
1345
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
1328
1346
  # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
1329
1347
  # resp.outputs[0].manifest_name #=> String
1330
1348
  # resp.outputs[0].playback_url #=> String
@@ -1428,6 +1446,9 @@ module Aws::MediaTailor
1428
1446
  # @example Response structure
1429
1447
  #
1430
1448
  # resp.ad_breaks #=> Array
1449
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
1450
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
1451
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
1431
1452
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
1432
1453
  # resp.ad_breaks[0].offset_millis #=> Integer
1433
1454
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -1908,6 +1929,8 @@ module Aws::MediaTailor
1908
1929
  # resp.items[0].outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
1909
1930
  # resp.items[0].outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
1910
1931
  # resp.items[0].outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
1932
+ # resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type #=> Array
1933
+ # resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
1911
1934
  # resp.items[0].outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
1912
1935
  # resp.items[0].outputs[0].manifest_name #=> String
1913
1936
  # resp.items[0].outputs[0].playback_url #=> String
@@ -2689,6 +2712,7 @@ module Aws::MediaTailor
2689
2712
  # suggested_presentation_delay_seconds: 1,
2690
2713
  # },
2691
2714
  # hls_playlist_settings: {
2715
+ # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
2692
2716
  # manifest_window_seconds: 1,
2693
2717
  # },
2694
2718
  # manifest_name: "__string", # required
@@ -2711,6 +2735,8 @@ module Aws::MediaTailor
2711
2735
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
2712
2736
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
2713
2737
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
2738
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
2739
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
2714
2740
  # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
2715
2741
  # resp.outputs[0].manifest_name #=> String
2716
2742
  # resp.outputs[0].playback_url #=> String
@@ -2821,6 +2847,12 @@ module Aws::MediaTailor
2821
2847
  # resp = client.update_program({
2822
2848
  # ad_breaks: [
2823
2849
  # {
2850
+ # ad_break_metadata: [
2851
+ # {
2852
+ # key: "String", # required
2853
+ # value: "String", # required
2854
+ # },
2855
+ # ],
2824
2856
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
2825
2857
  # offset_millis: 1,
2826
2858
  # slate: {
@@ -2865,6 +2897,9 @@ module Aws::MediaTailor
2865
2897
  # @example Response structure
2866
2898
  #
2867
2899
  # resp.ad_breaks #=> Array
2900
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
2901
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
2902
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
2868
2903
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
2869
2904
  # resp.ad_breaks[0].offset_millis #=> Integer
2870
2905
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -3064,7 +3099,7 @@ module Aws::MediaTailor
3064
3099
  params: params,
3065
3100
  config: config)
3066
3101
  context[:gem_name] = 'aws-sdk-mediatailor'
3067
- context[:gem_version] = '1.65.0'
3102
+ context[:gem_version] = '1.67.0'
3068
3103
  Seahorse::Client::Request.new(handlers, context)
3069
3104
  end
3070
3105
 
@@ -16,7 +16,9 @@ module Aws::MediaTailor
16
16
  AccessConfiguration = Shapes::StructureShape.new(name: 'AccessConfiguration')
17
17
  AccessType = Shapes::StringShape.new(name: 'AccessType')
18
18
  AdBreak = Shapes::StructureShape.new(name: 'AdBreak')
19
+ AdBreakMetadataList = Shapes::ListShape.new(name: 'AdBreakMetadataList')
19
20
  AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
21
+ AdMarkupType = Shapes::StringShape.new(name: 'AdMarkupType')
20
22
  Alert = Shapes::StructureShape.new(name: 'Alert')
21
23
  AvailMatchingCriteria = Shapes::StructureShape.new(name: 'AvailMatchingCriteria')
22
24
  AvailSuppression = Shapes::StructureShape.new(name: 'AvailSuppression')
@@ -89,6 +91,7 @@ module Aws::MediaTailor
89
91
  HttpPackageConfiguration = Shapes::StructureShape.new(name: 'HttpPackageConfiguration')
90
92
  HttpPackageConfigurations = Shapes::ListShape.new(name: 'HttpPackageConfigurations')
91
93
  Integer = Shapes::IntegerShape.new(name: 'Integer')
94
+ KeyValuePair = Shapes::StructureShape.new(name: 'KeyValuePair')
92
95
  ListAlertsRequest = Shapes::StructureShape.new(name: 'ListAlertsRequest')
93
96
  ListAlertsResponse = Shapes::StructureShape.new(name: 'ListAlertsResponse')
94
97
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
@@ -188,11 +191,13 @@ module Aws::MediaTailor
188
191
  __mapOf__string = Shapes::MapShape.new(name: '__mapOf__string')
189
192
  __string = Shapes::StringShape.new(name: '__string')
190
193
  __timestampUnix = Shapes::TimestampShape.new(name: '__timestampUnix', timestampFormat: "unixTimestamp")
194
+ adMarkupTypes = Shapes::ListShape.new(name: 'adMarkupTypes')
191
195
 
192
196
  AccessConfiguration.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, location_name: "AccessType"))
193
197
  AccessConfiguration.add_member(:secrets_manager_access_token_configuration, Shapes::ShapeRef.new(shape: SecretsManagerAccessTokenConfiguration, location_name: "SecretsManagerAccessTokenConfiguration"))
194
198
  AccessConfiguration.struct_class = Types::AccessConfiguration
195
199
 
200
+ AdBreak.add_member(:ad_break_metadata, Shapes::ShapeRef.new(shape: AdBreakMetadataList, location_name: "AdBreakMetadata"))
196
201
  AdBreak.add_member(:message_type, Shapes::ShapeRef.new(shape: MessageType, location_name: "MessageType"))
197
202
  AdBreak.add_member(:offset_millis, Shapes::ShapeRef.new(shape: __long, location_name: "OffsetMillis"))
198
203
  AdBreak.add_member(:slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "Slate"))
@@ -200,6 +205,8 @@ module Aws::MediaTailor
200
205
  AdBreak.add_member(:time_signal_message, Shapes::ShapeRef.new(shape: TimeSignalMessage, location_name: "TimeSignalMessage"))
201
206
  AdBreak.struct_class = Types::AdBreak
202
207
 
208
+ AdBreakMetadataList.member = Shapes::ShapeRef.new(shape: KeyValuePair)
209
+
203
210
  AdMarkerPassthrough.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
204
211
  AdMarkerPassthrough.struct_class = Types::AdMarkerPassthrough
205
212
 
@@ -564,6 +571,7 @@ module Aws::MediaTailor
564
571
  HlsConfiguration.add_member(:manifest_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "ManifestEndpointPrefix"))
565
572
  HlsConfiguration.struct_class = Types::HlsConfiguration
566
573
 
574
+ HlsPlaylistSettings.add_member(:ad_markup_type, Shapes::ShapeRef.new(shape: adMarkupTypes, location_name: "AdMarkupType"))
567
575
  HlsPlaylistSettings.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "ManifestWindowSeconds"))
568
576
  HlsPlaylistSettings.struct_class = Types::HlsPlaylistSettings
569
577
 
@@ -577,6 +585,10 @@ module Aws::MediaTailor
577
585
 
578
586
  HttpPackageConfigurations.member = Shapes::ShapeRef.new(shape: HttpPackageConfiguration)
579
587
 
588
+ KeyValuePair.add_member(:key, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Key"))
589
+ KeyValuePair.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Value"))
590
+ KeyValuePair.struct_class = Types::KeyValuePair
591
+
580
592
  ListAlertsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
581
593
  ListAlertsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
582
594
  ListAlertsRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "resourceArn"))
@@ -987,6 +999,8 @@ module Aws::MediaTailor
987
999
  __mapOf__string.key = Shapes::ShapeRef.new(shape: __string)
988
1000
  __mapOf__string.value = Shapes::ShapeRef.new(shape: __string)
989
1001
 
1002
+ adMarkupTypes.member = Shapes::ShapeRef.new(shape: AdMarkupType)
1003
+
990
1004
 
991
1005
  # @api private
992
1006
  API = Seahorse::Model::Api.new.tap do |api|
@@ -56,6 +56,11 @@ module Aws::MediaTailor
56
56
 
57
57
  # Ad break configuration parameters.
58
58
  #
59
+ # @!attribute [rw] ad_break_metadata
60
+ # Defines a list of key/value pairs that MediaTailor generates within
61
+ # the `EXT-X-ASSET`tag for `SCTE35_ENHANCED` output.
62
+ # @return [Array<Types::KeyValuePair>]
63
+ #
59
64
  # @!attribute [rw] message_type
60
65
  # The SCTE-35 ad insertion type. Accepted value: `SPLICE_INSERT`,
61
66
  # `TIME_SIGNAL`.
@@ -91,6 +96,7 @@ module Aws::MediaTailor
91
96
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdBreak AWS API Documentation
92
97
  #
93
98
  class AdBreak < Struct.new(
99
+ :ad_break_metadata,
94
100
  :message_type,
95
101
  :offset_millis,
96
102
  :slate,
@@ -2088,6 +2094,13 @@ module Aws::MediaTailor
2088
2094
 
2089
2095
  # HLS playlist configuration parameters.
2090
2096
  #
2097
+ # @!attribute [rw] ad_markup_type
2098
+ # Determines the type of SCTE 35 tags to use in ad markup. Specify
2099
+ # `DATERANGE` to use `DATERANGE` tags (for live or VOD content).
2100
+ # Specify `SCTE35_ENHANCED` to use `EXT-X-CUE-OUT` and `EXT-X-CUE-IN`
2101
+ # tags (for VOD content only).
2102
+ # @return [Array<String>]
2103
+ #
2091
2104
  # @!attribute [rw] manifest_window_seconds
2092
2105
  # The total duration (in seconds) of each manifest. Minimum value:
2093
2106
  # `30` seconds. Maximum value: `3600` seconds.
@@ -2096,6 +2109,7 @@ module Aws::MediaTailor
2096
2109
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HlsPlaylistSettings AWS API Documentation
2097
2110
  #
2098
2111
  class HlsPlaylistSettings < Struct.new(
2112
+ :ad_markup_type,
2099
2113
  :manifest_window_seconds)
2100
2114
  SENSITIVE = []
2101
2115
  include Aws::Structure
@@ -2145,6 +2159,32 @@ module Aws::MediaTailor
2145
2159
  include Aws::Structure
2146
2160
  end
2147
2161
 
2162
+ # For `SCTE35_ENHANCED` output, defines a key and corresponding value.
2163
+ # MediaTailor generates these pairs within the `EXT-X-ASSET`tag.
2164
+ #
2165
+ # @!attribute [rw] key
2166
+ # For `SCTE35_ENHANCED` output, defines a key. MediaTailor takes this
2167
+ # key, and its associated value, and generates the key/value pair
2168
+ # within the `EXT-X-ASSET`tag. If you specify a key, you must also
2169
+ # specify a corresponding value.
2170
+ # @return [String]
2171
+ #
2172
+ # @!attribute [rw] value
2173
+ # For `SCTE35_ENHANCED` output, defines a vaue. MediaTailor; takes
2174
+ # this value, and its associated key, and generates the key/value pair
2175
+ # within the `EXT-X-ASSET`tag. If you specify a value, you must also
2176
+ # specify a corresponding key.
2177
+ # @return [String]
2178
+ #
2179
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/KeyValuePair AWS API Documentation
2180
+ #
2181
+ class KeyValuePair < Struct.new(
2182
+ :key,
2183
+ :value)
2184
+ SENSITIVE = []
2185
+ include Aws::Structure
2186
+ end
2187
+
2148
2188
  # @!attribute [rw] max_results
2149
2189
  # The maximum number of alerts that you want MediaTailor to return in
2150
2190
  # response to the current request. If there are more than `MaxResults`
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaTailor
54
54
 
55
- GEM_VERSION = '1.65.0'
55
+ GEM_VERSION = '1.67.0'
56
56
 
57
57
  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.65.0
4
+ version: 1.67.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: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2023-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core