aws-sdk-mediaconvert 1.125.0 → 1.127.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: ce00a1dcca7bdf931e97d05a60191086a432500129f0ec6f8622976af225c283
4
- data.tar.gz: 266ed364207efd653c6d05efaa408ad1e1b1303190b9236ad596ccaa9229f261
3
+ metadata.gz: 9229202a42db20078328b27042808088ea00627705fd7088476d2bac60b96b51
4
+ data.tar.gz: cf222c0dca7cb938599cbf78f8b8cc2e96294f2cf330c44bb9cfccd53a87e7e7
5
5
  SHA512:
6
- metadata.gz: 54ae10abad30a8330aa0b44e27b63bf21586f1534a276eb1fa6a842ca74dbfbf09dc33a4391d7f72f031da75e071d2c4199847c6f5590e4909614651c01a2c1a
7
- data.tar.gz: a19e03f306317a5520f4072cafc95162ad1a847635f548d3546a7b42a645d52dff062769be1755c7f8b2aaa82a00d2185696a89148374e9a718be6ba7667108a
6
+ metadata.gz: 68a07626c1b8fd3b2ffb16a5384df5e0865d772b9a1ba1d981f46b42ee17b5bf6534608a9c1d366e44c9f8c28250d7cc17173bca0ce78bf74541b127dc487d82
7
+ data.tar.gz: d3039a2872ece97d0eb3589a2f0ff544cefca6dbded1b3c77f7964d073df5280a2119bc4eefcd27d19f14f249eb88c87b1e10a2fe9f41c2ad12aab49924b06cb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.127.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.126.0 (2024-04-09)
10
+ ------------------
11
+
12
+ * Feature - This release includes support for bringing your own fonts to use for burn-in or DVB-Sub captioning workflows.
13
+
4
14
  1.125.0 (2024-02-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.125.0
1
+ 1.127.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::MediaConvert
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::MediaConvert
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::MediaConvert
337
346
  # @option options [Aws::MediaConvert::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::MediaConvert::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.
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.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
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.
378
- #
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
@@ -779,6 +803,10 @@ module Aws::MediaConvert
779
803
  # background_opacity: 1,
780
804
  # fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
781
805
  # font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
806
+ # font_file_bold: "__stringPatternS3TtfHttpsTtf",
807
+ # font_file_bold_italic: "__string",
808
+ # font_file_italic: "__stringPatternS3TtfHttpsTtf",
809
+ # font_file_regular: "__stringPatternS3TtfHttpsTtf",
782
810
  # font_opacity: 1,
783
811
  # font_resolution: 1,
784
812
  # font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
@@ -806,6 +834,10 @@ module Aws::MediaConvert
806
834
  # dds_y_coordinate: 1,
807
835
  # fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
808
836
  # font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
837
+ # font_file_bold: "__stringPatternS3TtfHttpsTtf",
838
+ # font_file_bold_italic: "__stringPatternS3TtfHttpsTtf",
839
+ # font_file_italic: "__stringPatternS3TtfHttpsTtf",
840
+ # font_file_regular: "__stringPatternS3TtfHttpsTtf",
809
841
  # font_opacity: 1,
810
842
  # font_resolution: 1,
811
843
  # font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
@@ -915,6 +947,7 @@ module Aws::MediaConvert
915
947
  # pcr_pid: 1,
916
948
  # pmt_interval: 1,
917
949
  # pmt_pid: 1,
950
+ # prevent_buffer_underflow: "DISABLED", # accepts DISABLED, ENABLED
918
951
  # private_metadata_pid: 1,
919
952
  # program_number: 1,
920
953
  # pts_offset: 1,
@@ -1539,6 +1572,10 @@ module Aws::MediaConvert
1539
1572
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.background_opacity #=> Integer
1540
1573
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
1541
1574
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
1575
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold #=> String
1576
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold_italic #=> String
1577
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_italic #=> String
1578
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_regular #=> String
1542
1579
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_opacity #=> Integer
1543
1580
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_resolution #=> Integer
1544
1581
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -1564,6 +1601,10 @@ module Aws::MediaConvert
1564
1601
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
1565
1602
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
1566
1603
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
1604
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold #=> String
1605
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold_italic #=> String
1606
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_italic #=> String
1607
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_regular #=> String
1567
1608
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_opacity #=> Integer
1568
1609
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_resolution #=> Integer
1569
1610
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -1646,6 +1687,7 @@ module Aws::MediaConvert
1646
1687
  # resp.preset.settings.container_settings.m2ts_settings.pcr_pid #=> Integer
1647
1688
  # resp.preset.settings.container_settings.m2ts_settings.pmt_interval #=> Integer
1648
1689
  # resp.preset.settings.container_settings.m2ts_settings.pmt_pid #=> Integer
1690
+ # resp.preset.settings.container_settings.m2ts_settings.prevent_buffer_underflow #=> String, one of "DISABLED", "ENABLED"
1649
1691
  # resp.preset.settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
1650
1692
  # resp.preset.settings.container_settings.m2ts_settings.program_number #=> Integer
1651
1693
  # resp.preset.settings.container_settings.m2ts_settings.pts_offset #=> Integer
@@ -2486,6 +2528,10 @@ module Aws::MediaConvert
2486
2528
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.background_opacity #=> Integer
2487
2529
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
2488
2530
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
2531
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold #=> String
2532
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold_italic #=> String
2533
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_italic #=> String
2534
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_regular #=> String
2489
2535
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_opacity #=> Integer
2490
2536
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_resolution #=> Integer
2491
2537
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -2511,6 +2557,10 @@ module Aws::MediaConvert
2511
2557
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
2512
2558
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
2513
2559
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
2560
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold #=> String
2561
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold_italic #=> String
2562
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_italic #=> String
2563
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_regular #=> String
2514
2564
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_opacity #=> Integer
2515
2565
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_resolution #=> Integer
2516
2566
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -2593,6 +2643,7 @@ module Aws::MediaConvert
2593
2643
  # resp.preset.settings.container_settings.m2ts_settings.pcr_pid #=> Integer
2594
2644
  # resp.preset.settings.container_settings.m2ts_settings.pmt_interval #=> Integer
2595
2645
  # resp.preset.settings.container_settings.m2ts_settings.pmt_pid #=> Integer
2646
+ # resp.preset.settings.container_settings.m2ts_settings.prevent_buffer_underflow #=> String, one of "DISABLED", "ENABLED"
2596
2647
  # resp.preset.settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
2597
2648
  # resp.preset.settings.container_settings.m2ts_settings.program_number #=> Integer
2598
2649
  # resp.preset.settings.container_settings.m2ts_settings.pts_offset #=> Integer
@@ -3312,6 +3363,10 @@ module Aws::MediaConvert
3312
3363
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.background_opacity #=> Integer
3313
3364
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
3314
3365
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
3366
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold #=> String
3367
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold_italic #=> String
3368
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_italic #=> String
3369
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_regular #=> String
3315
3370
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_opacity #=> Integer
3316
3371
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_resolution #=> Integer
3317
3372
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -3337,6 +3392,10 @@ module Aws::MediaConvert
3337
3392
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
3338
3393
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
3339
3394
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
3395
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold #=> String
3396
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold_italic #=> String
3397
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_italic #=> String
3398
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_regular #=> String
3340
3399
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_opacity #=> Integer
3341
3400
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_resolution #=> Integer
3342
3401
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -3419,6 +3478,7 @@ module Aws::MediaConvert
3419
3478
  # resp.presets[0].settings.container_settings.m2ts_settings.pcr_pid #=> Integer
3420
3479
  # resp.presets[0].settings.container_settings.m2ts_settings.pmt_interval #=> Integer
3421
3480
  # resp.presets[0].settings.container_settings.m2ts_settings.pmt_pid #=> Integer
3481
+ # resp.presets[0].settings.container_settings.m2ts_settings.prevent_buffer_underflow #=> String, one of "DISABLED", "ENABLED"
3422
3482
  # resp.presets[0].settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
3423
3483
  # resp.presets[0].settings.container_settings.m2ts_settings.program_number #=> Integer
3424
3484
  # resp.presets[0].settings.container_settings.m2ts_settings.pts_offset #=> Integer
@@ -4252,6 +4312,10 @@ module Aws::MediaConvert
4252
4312
  # background_opacity: 1,
4253
4313
  # fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
4254
4314
  # font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
4315
+ # font_file_bold: "__stringPatternS3TtfHttpsTtf",
4316
+ # font_file_bold_italic: "__string",
4317
+ # font_file_italic: "__stringPatternS3TtfHttpsTtf",
4318
+ # font_file_regular: "__stringPatternS3TtfHttpsTtf",
4255
4319
  # font_opacity: 1,
4256
4320
  # font_resolution: 1,
4257
4321
  # font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
@@ -4279,6 +4343,10 @@ module Aws::MediaConvert
4279
4343
  # dds_y_coordinate: 1,
4280
4344
  # fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
4281
4345
  # font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
4346
+ # font_file_bold: "__stringPatternS3TtfHttpsTtf",
4347
+ # font_file_bold_italic: "__stringPatternS3TtfHttpsTtf",
4348
+ # font_file_italic: "__stringPatternS3TtfHttpsTtf",
4349
+ # font_file_regular: "__stringPatternS3TtfHttpsTtf",
4282
4350
  # font_opacity: 1,
4283
4351
  # font_resolution: 1,
4284
4352
  # font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
@@ -4388,6 +4456,7 @@ module Aws::MediaConvert
4388
4456
  # pcr_pid: 1,
4389
4457
  # pmt_interval: 1,
4390
4458
  # pmt_pid: 1,
4459
+ # prevent_buffer_underflow: "DISABLED", # accepts DISABLED, ENABLED
4391
4460
  # private_metadata_pid: 1,
4392
4461
  # program_number: 1,
4393
4462
  # pts_offset: 1,
@@ -5009,6 +5078,10 @@ module Aws::MediaConvert
5009
5078
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.background_opacity #=> Integer
5010
5079
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
5011
5080
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
5081
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold #=> String
5082
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_bold_italic #=> String
5083
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_italic #=> String
5084
+ # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_file_regular #=> String
5012
5085
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_opacity #=> Integer
5013
5086
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_resolution #=> Integer
5014
5087
  # resp.preset.settings.caption_descriptions[0].destination_settings.burnin_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -5034,6 +5107,10 @@ module Aws::MediaConvert
5034
5107
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
5035
5108
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
5036
5109
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "HEX", "AUTO"
5110
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold #=> String
5111
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_bold_italic #=> String
5112
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_italic #=> String
5113
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_file_regular #=> String
5037
5114
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_opacity #=> Integer
5038
5115
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_resolution #=> Integer
5039
5116
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.font_script #=> String, one of "AUTOMATIC", "HANS", "HANT"
@@ -5116,6 +5193,7 @@ module Aws::MediaConvert
5116
5193
  # resp.preset.settings.container_settings.m2ts_settings.pcr_pid #=> Integer
5117
5194
  # resp.preset.settings.container_settings.m2ts_settings.pmt_interval #=> Integer
5118
5195
  # resp.preset.settings.container_settings.m2ts_settings.pmt_pid #=> Integer
5196
+ # resp.preset.settings.container_settings.m2ts_settings.prevent_buffer_underflow #=> String, one of "DISABLED", "ENABLED"
5119
5197
  # resp.preset.settings.container_settings.m2ts_settings.private_metadata_pid #=> Integer
5120
5198
  # resp.preset.settings.container_settings.m2ts_settings.program_number #=> Integer
5121
5199
  # resp.preset.settings.container_settings.m2ts_settings.pts_offset #=> Integer
@@ -5596,7 +5674,7 @@ module Aws::MediaConvert
5596
5674
  params: params,
5597
5675
  config: config)
5598
5676
  context[:gem_name] = 'aws-sdk-mediaconvert'
5599
- context[:gem_version] = '1.125.0'
5677
+ context[:gem_version] = '1.127.0'
5600
5678
  Seahorse::Client::Request.new(handlers, context)
5601
5679
  end
5602
5680
 
@@ -429,6 +429,7 @@ module Aws::MediaConvert
429
429
  M2tsKlvMetadata = Shapes::StringShape.new(name: 'M2tsKlvMetadata')
430
430
  M2tsNielsenId3 = Shapes::StringShape.new(name: 'M2tsNielsenId3')
431
431
  M2tsPcrControl = Shapes::StringShape.new(name: 'M2tsPcrControl')
432
+ M2tsPreventBufferUnderflow = Shapes::StringShape.new(name: 'M2tsPreventBufferUnderflow')
432
433
  M2tsRateMode = Shapes::StringShape.new(name: 'M2tsRateMode')
433
434
  M2tsScte35Esam = Shapes::StructureShape.new(name: 'M2tsScte35Esam')
434
435
  M2tsScte35Source = Shapes::StringShape.new(name: 'M2tsScte35Source')
@@ -882,6 +883,7 @@ module Aws::MediaConvert
882
883
  __stringPatternS3 = Shapes::StringShape.new(name: '__stringPatternS3')
883
884
  __stringPatternS3ASSETMAPXml = Shapes::StringShape.new(name: '__stringPatternS3ASSETMAPXml')
884
885
  __stringPatternS3Https = Shapes::StringShape.new(name: '__stringPatternS3Https')
886
+ __stringPatternS3TtfHttpsTtf = Shapes::StringShape.new(name: '__stringPatternS3TtfHttpsTtf')
885
887
  __stringPatternSNManifestConfirmConditionNotificationNS = Shapes::StringShape.new(name: '__stringPatternSNManifestConfirmConditionNotificationNS')
886
888
  __stringPatternSNSignalProcessingNotificationNS = Shapes::StringShape.new(name: '__stringPatternSNSignalProcessingNotificationNS')
887
889
  __stringPatternW = Shapes::StringShape.new(name: '__stringPatternW')
@@ -1063,6 +1065,10 @@ module Aws::MediaConvert
1063
1065
  BurninDestinationSettings.add_member(:background_opacity, Shapes::ShapeRef.new(shape: __integerMin0Max255, location_name: "backgroundOpacity"))
1064
1066
  BurninDestinationSettings.add_member(:fallback_font, Shapes::ShapeRef.new(shape: BurninSubtitleFallbackFont, location_name: "fallbackFont"))
1065
1067
  BurninDestinationSettings.add_member(:font_color, Shapes::ShapeRef.new(shape: BurninSubtitleFontColor, location_name: "fontColor"))
1068
+ BurninDestinationSettings.add_member(:font_file_bold, Shapes::ShapeRef.new(shape: __stringPatternS3TtfHttpsTtf, location_name: "fontFileBold"))
1069
+ BurninDestinationSettings.add_member(:font_file_bold_italic, Shapes::ShapeRef.new(shape: __string, location_name: "fontFileBoldItalic"))
1070
+ BurninDestinationSettings.add_member(:font_file_italic, Shapes::ShapeRef.new(shape: __stringPatternS3TtfHttpsTtf, location_name: "fontFileItalic"))
1071
+ BurninDestinationSettings.add_member(:font_file_regular, Shapes::ShapeRef.new(shape: __stringPatternS3TtfHttpsTtf, location_name: "fontFileRegular"))
1066
1072
  BurninDestinationSettings.add_member(:font_opacity, Shapes::ShapeRef.new(shape: __integerMin0Max255, location_name: "fontOpacity"))
1067
1073
  BurninDestinationSettings.add_member(:font_resolution, Shapes::ShapeRef.new(shape: __integerMin96Max600, location_name: "fontResolution"))
1068
1074
  BurninDestinationSettings.add_member(:font_script, Shapes::ShapeRef.new(shape: FontScript, location_name: "fontScript"))
@@ -1401,6 +1407,10 @@ module Aws::MediaConvert
1401
1407
  DvbSubDestinationSettings.add_member(:dds_y_coordinate, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "ddsYCoordinate"))
1402
1408
  DvbSubDestinationSettings.add_member(:fallback_font, Shapes::ShapeRef.new(shape: DvbSubSubtitleFallbackFont, location_name: "fallbackFont"))
1403
1409
  DvbSubDestinationSettings.add_member(:font_color, Shapes::ShapeRef.new(shape: DvbSubtitleFontColor, location_name: "fontColor"))
1410
+ DvbSubDestinationSettings.add_member(:font_file_bold, Shapes::ShapeRef.new(shape: __stringPatternS3TtfHttpsTtf, location_name: "fontFileBold"))
1411
+ DvbSubDestinationSettings.add_member(:font_file_bold_italic, Shapes::ShapeRef.new(shape: __stringPatternS3TtfHttpsTtf, location_name: "fontFileBoldItalic"))
1412
+ DvbSubDestinationSettings.add_member(:font_file_italic, Shapes::ShapeRef.new(shape: __stringPatternS3TtfHttpsTtf, location_name: "fontFileItalic"))
1413
+ DvbSubDestinationSettings.add_member(:font_file_regular, Shapes::ShapeRef.new(shape: __stringPatternS3TtfHttpsTtf, location_name: "fontFileRegular"))
1404
1414
  DvbSubDestinationSettings.add_member(:font_opacity, Shapes::ShapeRef.new(shape: __integerMin0Max255, location_name: "fontOpacity"))
1405
1415
  DvbSubDestinationSettings.add_member(:font_resolution, Shapes::ShapeRef.new(shape: __integerMin96Max600, location_name: "fontResolution"))
1406
1416
  DvbSubDestinationSettings.add_member(:font_script, Shapes::ShapeRef.new(shape: FontScript, location_name: "fontScript"))
@@ -2025,6 +2035,7 @@ module Aws::MediaConvert
2025
2035
  M2tsSettings.add_member(:pcr_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8182, location_name: "pcrPid"))
2026
2036
  M2tsSettings.add_member(:pmt_interval, Shapes::ShapeRef.new(shape: __integerMin0Max1000, location_name: "pmtInterval"))
2027
2037
  M2tsSettings.add_member(:pmt_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8182, location_name: "pmtPid"))
2038
+ M2tsSettings.add_member(:prevent_buffer_underflow, Shapes::ShapeRef.new(shape: M2tsPreventBufferUnderflow, location_name: "preventBufferUnderflow"))
2028
2039
  M2tsSettings.add_member(:private_metadata_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8182, location_name: "privateMetadataPid"))
2029
2040
  M2tsSettings.add_member(:program_number, Shapes::ShapeRef.new(shape: __integerMin0Max65535, location_name: "programNumber"))
2030
2041
  M2tsSettings.add_member(:pts_offset, Shapes::ShapeRef.new(shape: __integerMin0Max3600, location_name: "ptsOffset"))
@@ -1443,6 +1443,34 @@ module Aws::MediaConvert
1443
1443
  # data from your input captions, if present.
1444
1444
  # @return [String]
1445
1445
  #
1446
+ # @!attribute [rw] font_file_bold
1447
+ # Specify a bold TrueType font file to use when rendering your output
1448
+ # captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must
1449
+ # also separately specify a regular, an italic, and a bold italic font
1450
+ # file.
1451
+ # @return [String]
1452
+ #
1453
+ # @!attribute [rw] font_file_bold_italic
1454
+ # Specify a bold italic TrueType font file to use when rendering your
1455
+ # output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you
1456
+ # must also separately specify a regular, a bold, and an italic font
1457
+ # file.
1458
+ # @return [String]
1459
+ #
1460
+ # @!attribute [rw] font_file_italic
1461
+ # Specify an italic TrueType font file to use when rendering your
1462
+ # output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you
1463
+ # must also separately specify a regular, a bold, and a bold italic
1464
+ # font file.
1465
+ # @return [String]
1466
+ #
1467
+ # @!attribute [rw] font_file_regular
1468
+ # Specify a regular TrueType font file to use when rendering your
1469
+ # output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you
1470
+ # must also separately specify a bold, an italic, and a bold italic
1471
+ # font file.
1472
+ # @return [String]
1473
+ #
1446
1474
  # @!attribute [rw] font_opacity
1447
1475
  # Specify the opacity of the burned-in captions. 255 is opaque; 0 is
1448
1476
  # transparent.
@@ -1515,15 +1543,17 @@ module Aws::MediaConvert
1515
1543
  # @return [Integer]
1516
1544
  #
1517
1545
  # @!attribute [rw] style_passthrough
1518
- # Set Style passthrough to ENABLED to use the available style, color,
1519
- # and position information from your input captions. MediaConvert uses
1520
- # default settings for any missing style and position information in
1521
- # your input captions. Set Style passthrough to DISABLED, or leave
1522
- # blank, to ignore the style and position information from your input
1523
- # captions and use default settings: white text with black outlining,
1524
- # bottom-center positioning, and automatic sizing. Whether you set
1525
- # Style passthrough to enabled or not, you can also choose to manually
1526
- # override any of the individual style and position settings.
1546
+ # To use the available style, color, and position information from
1547
+ # your input captions: Set Style passthrough to Enabled. Note that
1548
+ # MediaConvert uses default settings for any missing style or position
1549
+ # information in your input captions To ignore the style and position
1550
+ # information from your input captions and use default settings: Leave
1551
+ # blank or keep the default value, Disabled. Default settings include
1552
+ # white text with black outlining, bottom-center positioning, and
1553
+ # automatic sizing. Whether you set Style passthrough to enabled or
1554
+ # not, you can also choose to manually override any of the individual
1555
+ # style and position settings. You can also override any fonts by
1556
+ # manually specifying custom font files.
1527
1557
  # @return [String]
1528
1558
  #
1529
1559
  # @!attribute [rw] teletext_spacing
@@ -1559,6 +1589,10 @@ module Aws::MediaConvert
1559
1589
  :background_opacity,
1560
1590
  :fallback_font,
1561
1591
  :font_color,
1592
+ :font_file_bold,
1593
+ :font_file_bold_italic,
1594
+ :font_file_italic,
1595
+ :font_file_regular,
1562
1596
  :font_opacity,
1563
1597
  :font_resolution,
1564
1598
  :font_script,
@@ -3992,6 +4026,34 @@ module Aws::MediaConvert
3992
4026
  # your DVB-Sub settings must be identical.
3993
4027
  # @return [String]
3994
4028
  #
4029
+ # @!attribute [rw] font_file_bold
4030
+ # Specify a bold TrueType font file to use when rendering your output
4031
+ # captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must
4032
+ # also separately specify a regular, an italic, and a bold italic font
4033
+ # file.
4034
+ # @return [String]
4035
+ #
4036
+ # @!attribute [rw] font_file_bold_italic
4037
+ # Specify a bold italic TrueType font file to use when rendering your
4038
+ # output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you
4039
+ # must also separately specify a regular, a bold, and an italic font
4040
+ # file.
4041
+ # @return [String]
4042
+ #
4043
+ # @!attribute [rw] font_file_italic
4044
+ # Specify an italic TrueType font file to use when rendering your
4045
+ # output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you
4046
+ # must also separately specify a regular, a bold, and a bold italic
4047
+ # font file.
4048
+ # @return [String]
4049
+ #
4050
+ # @!attribute [rw] font_file_regular
4051
+ # Specify a regular TrueType font file to use when rendering your
4052
+ # output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you
4053
+ # must also separately specify a bold, an italic, and a bold italic
4054
+ # font file.
4055
+ # @return [String]
4056
+ #
3995
4057
  # @!attribute [rw] font_opacity
3996
4058
  # Specify the opacity of the burned-in captions. 255 is opaque; 0 is
3997
4059
  # transparent. Within your job settings, all of your DVB-Sub settings
@@ -4082,15 +4144,17 @@ module Aws::MediaConvert
4082
4144
  # @return [Integer]
4083
4145
  #
4084
4146
  # @!attribute [rw] style_passthrough
4085
- # Set Style passthrough to ENABLED to use the available style, color,
4086
- # and position information from your input captions. MediaConvert uses
4087
- # default settings for any missing style and position information in
4088
- # your input captions. Set Style passthrough to DISABLED, or leave
4089
- # blank, to ignore the style and position information from your input
4090
- # captions and use default settings: white text with black outlining,
4091
- # bottom-center positioning, and automatic sizing. Whether you set
4092
- # Style passthrough to enabled or not, you can also choose to manually
4093
- # override any of the individual style and position settings.
4147
+ # To use the available style, color, and position information from
4148
+ # your input captions: Set Style passthrough to Enabled. Note that
4149
+ # MediaConvert uses default settings for any missing style or position
4150
+ # information in your input captions To ignore the style and position
4151
+ # information from your input captions and use default settings: Leave
4152
+ # blank or keep the default value, Disabled. Default settings include
4153
+ # white text with black outlining, bottom-center positioning, and
4154
+ # automatic sizing. Whether you set Style passthrough to enabled or
4155
+ # not, you can also choose to manually override any of the individual
4156
+ # style and position settings. You can also override any fonts by
4157
+ # manually specifying custom font files.
4094
4158
  # @return [String]
4095
4159
  #
4096
4160
  # @!attribute [rw] subtitling_type
@@ -4146,6 +4210,10 @@ module Aws::MediaConvert
4146
4210
  :dds_y_coordinate,
4147
4211
  :fallback_font,
4148
4212
  :font_color,
4213
+ :font_file_bold,
4214
+ :font_file_bold_italic,
4215
+ :font_file_italic,
4216
+ :font_file_regular,
4149
4217
  :font_opacity,
4150
4218
  :font_resolution,
4151
4219
  :font_script,
@@ -7924,7 +7992,8 @@ module Aws::MediaConvert
7924
7992
  # @!attribute [rw] color_conversion_3_dlut_settings
7925
7993
  # Use 3D LUTs to specify custom color mapping behavior when you
7926
7994
  # convert from one color space into another. You can include up to 8
7927
- # different 3D LUTs.
7995
+ # different 3D LUTs. For more information, see:
7996
+ # https://docs.aws.amazon.com/mediaconvert/latest/ug/3d-luts.html
7928
7997
  # @return [Array<Types::ColorConversion3DLUTSetting>]
7929
7998
  #
7930
7999
  # @!attribute [rw] esam
@@ -8142,7 +8211,8 @@ module Aws::MediaConvert
8142
8211
  # @!attribute [rw] color_conversion_3_dlut_settings
8143
8212
  # Use 3D LUTs to specify custom color mapping behavior when you
8144
8213
  # convert from one color space into another. You can include up to 8
8145
- # different 3D LUTs.
8214
+ # different 3D LUTs. For more information, see:
8215
+ # https://docs.aws.amazon.com/mediaconvert/latest/ug/3d-luts.html
8146
8216
  # @return [Array<Types::ColorConversion3DLUTSetting>]
8147
8217
  #
8148
8218
  # @!attribute [rw] esam
@@ -8855,6 +8925,18 @@ module Aws::MediaConvert
8855
8925
  # itself. Default is 480.
8856
8926
  # @return [Integer]
8857
8927
  #
8928
+ # @!attribute [rw] prevent_buffer_underflow
8929
+ # Specify whether MediaConvert automatically attempts to prevent
8930
+ # decoder buffer underflows in your transport stream output. Use if
8931
+ # you are seeing decoder buffer underflows in your output and are
8932
+ # unable to increase your transport stream's bitrate. For most
8933
+ # workflows: We recommend that you keep the default value, Disabled.
8934
+ # To prevent decoder buffer underflows in your output, when possible:
8935
+ # Choose Enabled. Note that if MediaConvert prevents a decoder buffer
8936
+ # underflow in your output, output video quality is reduced and your
8937
+ # job will take longer to complete.
8938
+ # @return [String]
8939
+ #
8858
8940
  # @!attribute [rw] private_metadata_pid
8859
8941
  # Specify the packet identifier (PID) of the private metadata stream.
8860
8942
  # Default is 503.
@@ -8993,6 +9075,7 @@ module Aws::MediaConvert
8993
9075
  :pcr_pid,
8994
9076
  :pmt_interval,
8995
9077
  :pmt_pid,
9078
+ :prevent_buffer_underflow,
8996
9079
  :private_metadata_pid,
8997
9080
  :program_number,
8998
9081
  :pts_offset,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediaconvert/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaConvert
54
54
 
55
- GEM_VERSION = '1.125.0'
55
+ GEM_VERSION = '1.127.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -829,6 +829,10 @@ module Aws
829
829
  background_opacity: ::Integer?,
830
830
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
831
831
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
832
+ font_file_bold: ::String?,
833
+ font_file_bold_italic: ::String?,
834
+ font_file_italic: ::String?,
835
+ font_file_regular: ::String?,
832
836
  font_opacity: ::Integer?,
833
837
  font_resolution: ::Integer?,
834
838
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -856,6 +860,10 @@ module Aws
856
860
  dds_y_coordinate: ::Integer?,
857
861
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
858
862
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
863
+ font_file_bold: ::String?,
864
+ font_file_bold_italic: ::String?,
865
+ font_file_italic: ::String?,
866
+ font_file_regular: ::String?,
859
867
  font_opacity: ::Integer?,
860
868
  font_resolution: ::Integer?,
861
869
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -965,6 +973,7 @@ module Aws
965
973
  pcr_pid: ::Integer?,
966
974
  pmt_interval: ::Integer?,
967
975
  pmt_pid: ::Integer?,
976
+ prevent_buffer_underflow: ("DISABLED" | "ENABLED")?,
968
977
  private_metadata_pid: ::Integer?,
969
978
  program_number: ::Integer?,
970
979
  pts_offset: ::Integer?,
@@ -2225,6 +2234,10 @@ module Aws
2225
2234
  background_opacity: ::Integer?,
2226
2235
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
2227
2236
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
2237
+ font_file_bold: ::String?,
2238
+ font_file_bold_italic: ::String?,
2239
+ font_file_italic: ::String?,
2240
+ font_file_regular: ::String?,
2228
2241
  font_opacity: ::Integer?,
2229
2242
  font_resolution: ::Integer?,
2230
2243
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -2252,6 +2265,10 @@ module Aws
2252
2265
  dds_y_coordinate: ::Integer?,
2253
2266
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
2254
2267
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
2268
+ font_file_bold: ::String?,
2269
+ font_file_bold_italic: ::String?,
2270
+ font_file_italic: ::String?,
2271
+ font_file_regular: ::String?,
2255
2272
  font_opacity: ::Integer?,
2256
2273
  font_resolution: ::Integer?,
2257
2274
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -2361,6 +2378,7 @@ module Aws
2361
2378
  pcr_pid: ::Integer?,
2362
2379
  pmt_interval: ::Integer?,
2363
2380
  pmt_pid: ::Integer?,
2381
+ prevent_buffer_underflow: ("DISABLED" | "ENABLED")?,
2364
2382
  private_metadata_pid: ::Integer?,
2365
2383
  program_number: ::Integer?,
2366
2384
  pts_offset: ::Integer?,
@@ -3057,6 +3075,10 @@ module Aws
3057
3075
  background_opacity: ::Integer?,
3058
3076
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
3059
3077
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
3078
+ font_file_bold: ::String?,
3079
+ font_file_bold_italic: ::String?,
3080
+ font_file_italic: ::String?,
3081
+ font_file_regular: ::String?,
3060
3082
  font_opacity: ::Integer?,
3061
3083
  font_resolution: ::Integer?,
3062
3084
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -3084,6 +3106,10 @@ module Aws
3084
3106
  dds_y_coordinate: ::Integer?,
3085
3107
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
3086
3108
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
3109
+ font_file_bold: ::String?,
3110
+ font_file_bold_italic: ::String?,
3111
+ font_file_italic: ::String?,
3112
+ font_file_regular: ::String?,
3087
3113
  font_opacity: ::Integer?,
3088
3114
  font_resolution: ::Integer?,
3089
3115
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -3193,6 +3219,7 @@ module Aws
3193
3219
  pcr_pid: ::Integer?,
3194
3220
  pmt_interval: ::Integer?,
3195
3221
  pmt_pid: ::Integer?,
3222
+ prevent_buffer_underflow: ("DISABLED" | "ENABLED")?,
3196
3223
  private_metadata_pid: ::Integer?,
3197
3224
  program_number: ::Integer?,
3198
3225
  pts_offset: ::Integer?,
@@ -4646,6 +4673,10 @@ module Aws
4646
4673
  background_opacity: ::Integer?,
4647
4674
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
4648
4675
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
4676
+ font_file_bold: ::String?,
4677
+ font_file_bold_italic: ::String?,
4678
+ font_file_italic: ::String?,
4679
+ font_file_regular: ::String?,
4649
4680
  font_opacity: ::Integer?,
4650
4681
  font_resolution: ::Integer?,
4651
4682
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -4673,6 +4704,10 @@ module Aws
4673
4704
  dds_y_coordinate: ::Integer?,
4674
4705
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
4675
4706
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
4707
+ font_file_bold: ::String?,
4708
+ font_file_bold_italic: ::String?,
4709
+ font_file_italic: ::String?,
4710
+ font_file_regular: ::String?,
4676
4711
  font_opacity: ::Integer?,
4677
4712
  font_resolution: ::Integer?,
4678
4713
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -4782,6 +4817,7 @@ module Aws
4782
4817
  pcr_pid: ::Integer?,
4783
4818
  pmt_interval: ::Integer?,
4784
4819
  pmt_pid: ::Integer?,
4820
+ prevent_buffer_underflow: ("DISABLED" | "ENABLED")?,
4785
4821
  private_metadata_pid: ::Integer?,
4786
4822
  program_number: ::Integer?,
4787
4823
  pts_offset: ::Integer?,
@@ -5477,6 +5513,10 @@ module Aws
5477
5513
  background_opacity: ::Integer?,
5478
5514
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
5479
5515
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
5516
+ font_file_bold: ::String?,
5517
+ font_file_bold_italic: ::String?,
5518
+ font_file_italic: ::String?,
5519
+ font_file_regular: ::String?,
5480
5520
  font_opacity: ::Integer?,
5481
5521
  font_resolution: ::Integer?,
5482
5522
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -5504,6 +5544,10 @@ module Aws
5504
5544
  dds_y_coordinate: ::Integer?,
5505
5545
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
5506
5546
  font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")?,
5547
+ font_file_bold: ::String?,
5548
+ font_file_bold_italic: ::String?,
5549
+ font_file_italic: ::String?,
5550
+ font_file_regular: ::String?,
5507
5551
  font_opacity: ::Integer?,
5508
5552
  font_resolution: ::Integer?,
5509
5553
  font_script: ("AUTOMATIC" | "HANS" | "HANT")?,
@@ -5613,6 +5657,7 @@ module Aws
5613
5657
  pcr_pid: ::Integer?,
5614
5658
  pmt_interval: ::Integer?,
5615
5659
  pmt_pid: ::Integer?,
5660
+ prevent_buffer_underflow: ("DISABLED" | "ENABLED")?,
5616
5661
  private_metadata_pid: ::Integer?,
5617
5662
  program_number: ::Integer?,
5618
5663
  pts_offset: ::Integer?,
data/sig/types.rbs CHANGED
@@ -232,6 +232,10 @@ module Aws::MediaConvert
232
232
  attr_accessor background_opacity: ::Integer
233
233
  attr_accessor fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")
234
234
  attr_accessor font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")
235
+ attr_accessor font_file_bold: ::String
236
+ attr_accessor font_file_bold_italic: ::String
237
+ attr_accessor font_file_italic: ::String
238
+ attr_accessor font_file_regular: ::String
235
239
  attr_accessor font_opacity: ::Integer
236
240
  attr_accessor font_resolution: ::Integer
237
241
  attr_accessor font_script: ("AUTOMATIC" | "HANS" | "HANT")
@@ -663,6 +667,10 @@ module Aws::MediaConvert
663
667
  attr_accessor dds_y_coordinate: ::Integer
664
668
  attr_accessor fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")
665
669
  attr_accessor font_color: ("WHITE" | "BLACK" | "YELLOW" | "RED" | "GREEN" | "BLUE" | "HEX" | "AUTO")
670
+ attr_accessor font_file_bold: ::String
671
+ attr_accessor font_file_bold_italic: ::String
672
+ attr_accessor font_file_italic: ::String
673
+ attr_accessor font_file_regular: ::String
666
674
  attr_accessor font_opacity: ::Integer
667
675
  attr_accessor font_resolution: ::Integer
668
676
  attr_accessor font_script: ("AUTOMATIC" | "HANS" | "HANT")
@@ -1428,6 +1436,7 @@ module Aws::MediaConvert
1428
1436
  attr_accessor pcr_pid: ::Integer
1429
1437
  attr_accessor pmt_interval: ::Integer
1430
1438
  attr_accessor pmt_pid: ::Integer
1439
+ attr_accessor prevent_buffer_underflow: ("DISABLED" | "ENABLED")
1431
1440
  attr_accessor private_metadata_pid: ::Integer
1432
1441
  attr_accessor program_number: ::Integer
1433
1442
  attr_accessor pts_offset: ::Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.125.0
4
+ version: 1.127.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-02-01 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