aws-sdk-mediatailor 1.77.0 → 1.79.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ac497c09a095134d28a5a433308f4f8efe3538a7e6ed89ba019c2f436f0aafb
4
- data.tar.gz: 42148c9dd82872fc530c786df5a9f3cd8c38d5118ebb0326c23f7dc09b192a77
3
+ metadata.gz: 2daa45bf84a4ef5138f1dbeb50af72688f495aed1e95d5b458155271cdbe3fea
4
+ data.tar.gz: 83dd01f1f51606dc1d8cc10e6aebbdd9e61d1c8d79dfd079417164265ee3579f
5
5
  SHA512:
6
- metadata.gz: 534bc7836ed2e9b3e1daaee3d38a31f0304371bc939707e447b6bc5d5d418ecacbf18a8bf5e43f83c6305e9d99e056b9edc48c12ba020ab22c511f5f3868dc3e
7
- data.tar.gz: 1c7ad3a2c5499e85d7cb70fd2bc49e0ee87fd016906836ed3c294b77c174363723d9b738501f2b41f49e662f89975bb087d92cfc7fdc1a3f0f85fed9821184c0
6
+ metadata.gz: c449f4972e6c6aacb019cc801f3ec2051be7e4dcd9f8b67c9c493d878c2bb610d252e752ccc3933cbba628956f8e351671977bda91a2905e03d88b2c3cf99654
7
+ data.tar.gz: b5a2d85dc8ffc9bcaf98e5235f40a9b6c5086f414155c8aef469996ec540c8ee3baa32f778c63149720a1d11998dae636920dcda1056e2ef7da6049e8f589041
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.78.0 (2024-04-12)
10
+ ------------------
11
+
12
+ * Feature - Added InsertionMode to PlaybackConfigurations. This setting controls whether players can use stitched or guided ad insertion. The default for players that do not specify an insertion mode is stitched.
13
+
4
14
  1.77.0 (2024-03-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.79.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::MediaTailor
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::MediaTailor
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::MediaTailor
337
346
  # @option options [Aws::MediaTailor::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MediaTailor::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -1866,6 +1890,7 @@ module Aws::MediaTailor
1866
1890
  # * {Types::GetPlaybackConfigurationResponse#configuration_aliases #configuration_aliases} => Hash<String,Hash<String,String>>
1867
1891
  # * {Types::GetPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
1868
1892
  # * {Types::GetPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
1893
+ # * {Types::GetPlaybackConfigurationResponse#insertion_mode #insertion_mode} => String
1869
1894
  # * {Types::GetPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
1870
1895
  # * {Types::GetPlaybackConfigurationResponse#log_configuration #log_configuration} => Types::LogConfiguration
1871
1896
  # * {Types::GetPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
@@ -1902,6 +1927,7 @@ module Aws::MediaTailor
1902
1927
  # resp.dash_configuration.mpd_location #=> String
1903
1928
  # resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
1904
1929
  # resp.hls_configuration.manifest_endpoint_prefix #=> String
1930
+ # resp.insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
1905
1931
  # resp.live_pre_roll_configuration.ad_decision_server_url #=> String
1906
1932
  # resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
1907
1933
  # resp.log_configuration.percent_enabled #=> Integer
@@ -2214,6 +2240,7 @@ module Aws::MediaTailor
2214
2240
  # resp.items[0].dash_configuration.mpd_location #=> String
2215
2241
  # resp.items[0].dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
2216
2242
  # resp.items[0].hls_configuration.manifest_endpoint_prefix #=> String
2243
+ # resp.items[0].insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
2217
2244
  # resp.items[0].live_pre_roll_configuration.ad_decision_server_url #=> String
2218
2245
  # resp.items[0].live_pre_roll_configuration.max_duration_seconds #=> Integer
2219
2246
  # resp.items[0].log_configuration.percent_enabled #=> Integer
@@ -2536,6 +2563,14 @@ module Aws::MediaTailor
2536
2563
  # @option params [Types::DashConfigurationForPut] :dash_configuration
2537
2564
  # The configuration for DASH content.
2538
2565
  #
2566
+ # @option params [String] :insertion_mode
2567
+ # The setting that controls whether players can use stitched or guided
2568
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player sessions
2569
+ # to use stitched (server-side) ad insertion. Choosing `PLAYER_SELECT`
2570
+ # allows players to select either stitched or guided ad insertion at
2571
+ # session-initialization time. The default for players that do not
2572
+ # specify an insertion mode is stitched.
2573
+ #
2539
2574
  # @option params [Types::LivePreRollConfiguration] :live_pre_roll_configuration
2540
2575
  # The configuration for pre-roll ad insertion.
2541
2576
  #
@@ -2599,6 +2634,7 @@ module Aws::MediaTailor
2599
2634
  # * {Types::PutPlaybackConfigurationResponse#configuration_aliases #configuration_aliases} => Hash<String,Hash<String,String>>
2600
2635
  # * {Types::PutPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
2601
2636
  # * {Types::PutPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
2637
+ # * {Types::PutPlaybackConfigurationResponse#insertion_mode #insertion_mode} => String
2602
2638
  # * {Types::PutPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
2603
2639
  # * {Types::PutPlaybackConfigurationResponse#log_configuration #log_configuration} => Types::LogConfiguration
2604
2640
  # * {Types::PutPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
@@ -2638,6 +2674,7 @@ module Aws::MediaTailor
2638
2674
  # mpd_location: "__string",
2639
2675
  # origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
2640
2676
  # },
2677
+ # insertion_mode: "STITCHED_ONLY", # accepts STITCHED_ONLY, PLAYER_SELECT
2641
2678
  # live_pre_roll_configuration: {
2642
2679
  # ad_decision_server_url: "__string",
2643
2680
  # max_duration_seconds: 1,
@@ -2674,6 +2711,7 @@ module Aws::MediaTailor
2674
2711
  # resp.dash_configuration.mpd_location #=> String
2675
2712
  # resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
2676
2713
  # resp.hls_configuration.manifest_endpoint_prefix #=> String
2714
+ # resp.insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
2677
2715
  # resp.live_pre_roll_configuration.ad_decision_server_url #=> String
2678
2716
  # resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
2679
2717
  # resp.log_configuration.percent_enabled #=> Integer
@@ -3363,7 +3401,7 @@ module Aws::MediaTailor
3363
3401
  params: params,
3364
3402
  config: config)
3365
3403
  context[:gem_name] = 'aws-sdk-mediatailor'
3366
- context[:gem_version] = '1.77.0'
3404
+ context[:gem_version] = '1.79.0'
3367
3405
  Seahorse::Client::Request.new(handlers, context)
3368
3406
  end
3369
3407
 
@@ -96,6 +96,7 @@ module Aws::MediaTailor
96
96
  HttpConfiguration = Shapes::StructureShape.new(name: 'HttpConfiguration')
97
97
  HttpPackageConfiguration = Shapes::StructureShape.new(name: 'HttpPackageConfiguration')
98
98
  HttpPackageConfigurations = Shapes::ListShape.new(name: 'HttpPackageConfigurations')
99
+ InsertionMode = Shapes::StringShape.new(name: 'InsertionMode')
99
100
  Integer = Shapes::IntegerShape.new(name: 'Integer')
100
101
  KeyValuePair = Shapes::StructureShape.new(name: 'KeyValuePair')
101
102
  ListAlertsRequest = Shapes::StructureShape.new(name: 'ListAlertsRequest')
@@ -585,6 +586,7 @@ module Aws::MediaTailor
585
586
  GetPlaybackConfigurationResponse.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
586
587
  GetPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
587
588
  GetPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
589
+ GetPlaybackConfigurationResponse.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
588
590
  GetPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
589
591
  GetPlaybackConfigurationResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
590
592
  GetPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
@@ -730,6 +732,7 @@ module Aws::MediaTailor
730
732
  PlaybackConfiguration.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
731
733
  PlaybackConfiguration.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
732
734
  PlaybackConfiguration.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
735
+ PlaybackConfiguration.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
733
736
  PlaybackConfiguration.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
734
737
  PlaybackConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
735
738
  PlaybackConfiguration.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
@@ -774,6 +777,7 @@ module Aws::MediaTailor
774
777
  PutPlaybackConfigurationRequest.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
775
778
  PutPlaybackConfigurationRequest.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesRequest, location_name: "ConfigurationAliases"))
776
779
  PutPlaybackConfigurationRequest.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfigurationForPut, location_name: "DashConfiguration"))
780
+ PutPlaybackConfigurationRequest.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
777
781
  PutPlaybackConfigurationRequest.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
778
782
  PutPlaybackConfigurationRequest.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
779
783
  PutPlaybackConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Name"))
@@ -791,6 +795,7 @@ module Aws::MediaTailor
791
795
  PutPlaybackConfigurationResponse.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
792
796
  PutPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
793
797
  PutPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
798
+ PutPlaybackConfigurationResponse.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
794
799
  PutPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
795
800
  PutPlaybackConfigurationResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
796
801
  PutPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
@@ -2097,6 +2097,15 @@ module Aws::MediaTailor
2097
2097
  # The configuration for HLS content.
2098
2098
  # @return [Types::HlsConfiguration]
2099
2099
  #
2100
+ # @!attribute [rw] insertion_mode
2101
+ # The setting that controls whether players can use stitched or guided
2102
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
2103
+ # sessions to use stitched (server-side) ad insertion. Choosing
2104
+ # `PLAYER_SELECT` allows players to select either stitched or guided
2105
+ # ad insertion at session-initialization time. The default for players
2106
+ # that do not specify an insertion mode is stitched.
2107
+ # @return [String]
2108
+ #
2100
2109
  # @!attribute [rw] live_pre_roll_configuration
2101
2110
  # The configuration for pre-roll ad insertion.
2102
2111
  # @return [Types::LivePreRollConfiguration]
@@ -2188,6 +2197,7 @@ module Aws::MediaTailor
2188
2197
  :configuration_aliases,
2189
2198
  :dash_configuration,
2190
2199
  :hls_configuration,
2200
+ :insertion_mode,
2191
2201
  :live_pre_roll_configuration,
2192
2202
  :log_configuration,
2193
2203
  :manifest_processing_rules,
@@ -2942,6 +2952,15 @@ module Aws::MediaTailor
2942
2952
  # The configuration for HLS content.
2943
2953
  # @return [Types::HlsConfiguration]
2944
2954
  #
2955
+ # @!attribute [rw] insertion_mode
2956
+ # The setting that controls whether players can use stitched or guided
2957
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
2958
+ # sessions to use stitched (server-side) ad insertion. Choosing
2959
+ # `PLAYER_SELECT` allows players to select either stitched or guided
2960
+ # ad insertion at session-initialization time. The default for players
2961
+ # that do not specify an insertion mode is stitched.
2962
+ # @return [String]
2963
+ #
2945
2964
  # @!attribute [rw] live_pre_roll_configuration
2946
2965
  # The configuration for pre-roll ad insertion.
2947
2966
  # @return [Types::LivePreRollConfiguration]
@@ -3033,6 +3052,7 @@ module Aws::MediaTailor
3033
3052
  :configuration_aliases,
3034
3053
  :dash_configuration,
3035
3054
  :hls_configuration,
3055
+ :insertion_mode,
3036
3056
  :live_pre_roll_configuration,
3037
3057
  :log_configuration,
3038
3058
  :manifest_processing_rules,
@@ -3248,6 +3268,15 @@ module Aws::MediaTailor
3248
3268
  # The configuration for DASH content.
3249
3269
  # @return [Types::DashConfigurationForPut]
3250
3270
  #
3271
+ # @!attribute [rw] insertion_mode
3272
+ # The setting that controls whether players can use stitched or guided
3273
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
3274
+ # sessions to use stitched (server-side) ad insertion. Choosing
3275
+ # `PLAYER_SELECT` allows players to select either stitched or guided
3276
+ # ad insertion at session-initialization time. The default for players
3277
+ # that do not specify an insertion mode is stitched.
3278
+ # @return [String]
3279
+ #
3251
3280
  # @!attribute [rw] live_pre_roll_configuration
3252
3281
  # The configuration for pre-roll ad insertion.
3253
3282
  # @return [Types::LivePreRollConfiguration]
@@ -3320,6 +3349,7 @@ module Aws::MediaTailor
3320
3349
  :cdn_configuration,
3321
3350
  :configuration_aliases,
3322
3351
  :dash_configuration,
3352
+ :insertion_mode,
3323
3353
  :live_pre_roll_configuration,
3324
3354
  :manifest_processing_rules,
3325
3355
  :name,
@@ -3384,6 +3414,15 @@ module Aws::MediaTailor
3384
3414
  # The configuration for HLS content.
3385
3415
  # @return [Types::HlsConfiguration]
3386
3416
  #
3417
+ # @!attribute [rw] insertion_mode
3418
+ # The setting that controls whether players can use stitched or guided
3419
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
3420
+ # sessions to use stitched (server-side) ad insertion. Choosing
3421
+ # `PLAYER_SELECT` allows players to select either stitched or guided
3422
+ # ad insertion at session-initialization time. The default for players
3423
+ # that do not specify an insertion mode is stitched.
3424
+ # @return [String]
3425
+ #
3387
3426
  # @!attribute [rw] live_pre_roll_configuration
3388
3427
  # The configuration for pre-roll ad insertion.
3389
3428
  # @return [Types::LivePreRollConfiguration]
@@ -3476,6 +3515,7 @@ module Aws::MediaTailor
3476
3515
  :configuration_aliases,
3477
3516
  :dash_configuration,
3478
3517
  :hls_configuration,
3518
+ :insertion_mode,
3479
3519
  :live_pre_roll_configuration,
3480
3520
  :log_configuration,
3481
3521
  :manifest_processing_rules,
@@ -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.77.0'
55
+ GEM_VERSION = '1.79.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -600,6 +600,7 @@ module Aws
600
600
  def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
601
601
  def dash_configuration: () -> Types::DashConfiguration
602
602
  def hls_configuration: () -> Types::HlsConfiguration
603
+ def insertion_mode: () -> ("STITCHED_ONLY" | "PLAYER_SELECT")
603
604
  def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
604
605
  def log_configuration: () -> Types::LogConfiguration
605
606
  def manifest_processing_rules: () -> Types::ManifestProcessingRules
@@ -753,6 +754,7 @@ module Aws
753
754
  def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
754
755
  def dash_configuration: () -> Types::DashConfiguration
755
756
  def hls_configuration: () -> Types::HlsConfiguration
757
+ def insertion_mode: () -> ("STITCHED_ONLY" | "PLAYER_SELECT")
756
758
  def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
757
759
  def log_configuration: () -> Types::LogConfiguration
758
760
  def manifest_processing_rules: () -> Types::ManifestProcessingRules
@@ -787,6 +789,7 @@ module Aws
787
789
  mpd_location: ::String?,
788
790
  origin_manifest_type: ("SINGLE_PERIOD" | "MULTI_PERIOD")?
789
791
  },
792
+ ?insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT"),
790
793
  ?live_pre_roll_configuration: {
791
794
  ad_decision_server_url: ::String?,
792
795
  max_duration_seconds: ::Integer?
data/sig/types.rbs CHANGED
@@ -502,6 +502,7 @@ module Aws::MediaTailor
502
502
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
503
503
  attr_accessor dash_configuration: Types::DashConfiguration
504
504
  attr_accessor hls_configuration: Types::HlsConfiguration
505
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
505
506
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
506
507
  attr_accessor log_configuration: Types::LogConfiguration
507
508
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
@@ -701,6 +702,7 @@ module Aws::MediaTailor
701
702
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
702
703
  attr_accessor dash_configuration: Types::DashConfiguration
703
704
  attr_accessor hls_configuration: Types::HlsConfiguration
705
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
704
706
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
705
707
  attr_accessor log_configuration: Types::LogConfiguration
706
708
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
@@ -756,6 +758,7 @@ module Aws::MediaTailor
756
758
  attr_accessor cdn_configuration: Types::CdnConfiguration
757
759
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
758
760
  attr_accessor dash_configuration: Types::DashConfigurationForPut
761
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
759
762
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
760
763
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
761
764
  attr_accessor name: ::String
@@ -775,6 +778,7 @@ module Aws::MediaTailor
775
778
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
776
779
  attr_accessor dash_configuration: Types::DashConfiguration
777
780
  attr_accessor hls_configuration: Types::HlsConfiguration
781
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
778
782
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
779
783
  attr_accessor log_configuration: Types::LogConfiguration
780
784
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
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.77.0
4
+ version: 1.79.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: 2024-03-18 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement