aws-sdk-medialive 1.181.0 → 1.182.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: bf9ddfc5f47d98da6432efc01abc359e740a8a1fa0b22730a07433e9609738cc
4
- data.tar.gz: 677de65e982e43e8af2602ec6491c2a8e307f03a03fdfb2d9041001dceb37c80
3
+ metadata.gz: ea890df89563f08ffb065287c599ff28853c14a826daf3ae4180fe93e3fffeab
4
+ data.tar.gz: fcfa066515699c514d783d5a6c8243225acfcd5be65ca298c7af4430fd841676
5
5
  SHA512:
6
- metadata.gz: a99b7de2bdb97b36c2a20b9b8a75a2686bcfeb0fc2de4876c0d34864ef9be7b135ed934c46e7faa9bd845a11a3df05dd95f0b324d78d6c61651ed5963577d7b9
7
- data.tar.gz: e36ddc35c128fb4805912ff1399206856747c7f5da41f9aa1d721bed9c80cdd8bba163234de4852ee38a03f6f3f33a21c316b004ae2ccf9c87555b8161be2f96
6
+ metadata.gz: c03dd0db1ba3793059db0c9c9a1088f242a9ab7ea00414df1dc48b2bef9827eb44837389543d893fd33b57e120a3caa51434e5145272966063cb7ad331e9e508
7
+ data.tar.gz: aefb74c5ac6dace5bc50f87cc75eed7e26876a1a7c60b58d7f8106df4ce980cdebc07df1bd839eecf869aa2c39414c578b290cbd4658a972aa41931810b51a81
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.182.0 (2026-04-03)
5
+ ------------------
6
+
7
+ * Feature - AWS Elemental MediaLive released a new features that allows customers to use HLG 2020 as a color space for AV1 video codec.
8
+
4
9
  1.181.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.181.0
1
+ 1.182.0
@@ -14973,7 +14973,7 @@ module Aws::MediaLive
14973
14973
  tracer: tracer
14974
14974
  )
14975
14975
  context[:gem_name] = 'aws-sdk-medialive'
14976
- context[:gem_version] = '1.181.0'
14976
+ context[:gem_version] = '1.182.0'
14977
14977
  Seahorse::Client::Request.new(handlers, context)
14978
14978
  end
14979
14979
 
@@ -1450,6 +1450,7 @@ module Aws::MediaLive
1450
1450
  Av1ColorSpaceSettings.add_member(:hdr_10_settings, Shapes::ShapeRef.new(shape: Hdr10Settings, location_name: "hdr10Settings"))
1451
1451
  Av1ColorSpaceSettings.add_member(:rec_601_settings, Shapes::ShapeRef.new(shape: Rec601Settings, location_name: "rec601Settings"))
1452
1452
  Av1ColorSpaceSettings.add_member(:rec_709_settings, Shapes::ShapeRef.new(shape: Rec709Settings, location_name: "rec709Settings"))
1453
+ Av1ColorSpaceSettings.add_member(:hlg_2020_settings, Shapes::ShapeRef.new(shape: Hlg2020Settings, location_name: "hlg2020Settings"))
1453
1454
  Av1ColorSpaceSettings.struct_class = Types::Av1ColorSpaceSettings
1454
1455
 
1455
1456
  Av1Settings.add_member(:afd_signaling, Shapes::ShapeRef.new(shape: AfdSignaling, location_name: "afdSignaling"))
@@ -18570,13 +18570,18 @@ module Aws::MediaLive
18570
18570
  # Rec709 Settings
18571
18571
  # @return [Types::Rec709Settings]
18572
18572
  #
18573
+ # @!attribute [rw] hlg_2020_settings
18574
+ # Hlg2020 Settings
18575
+ # @return [Types::Hlg2020Settings]
18576
+ #
18573
18577
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Av1ColorSpaceSettings AWS API Documentation
18574
18578
  #
18575
18579
  class Av1ColorSpaceSettings < Struct.new(
18576
18580
  :color_space_passthrough_settings,
18577
18581
  :hdr_10_settings,
18578
18582
  :rec_601_settings,
18579
- :rec_709_settings)
18583
+ :rec_709_settings,
18584
+ :hlg_2020_settings)
18580
18585
  SENSITIVE = []
18581
18586
  include Aws::Structure
18582
18587
  end
@@ -55,7 +55,7 @@ module Aws::MediaLive
55
55
  autoload :EndpointProvider, 'aws-sdk-medialive/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medialive/endpoints'
57
57
 
58
- GEM_VERSION = '1.181.0'
58
+ GEM_VERSION = '1.182.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1401,6 +1401,8 @@ module Aws
1401
1401
  rec_601_settings: {
1402
1402
  }?,
1403
1403
  rec_709_settings: {
1404
+ }?,
1405
+ hlg_2020_settings: {
1404
1406
  }?
1405
1407
  }?,
1406
1408
  fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
@@ -3607,6 +3609,8 @@ module Aws
3607
3609
  rec_601_settings: {
3608
3610
  }?,
3609
3611
  rec_709_settings: {
3612
+ }?,
3613
+ hlg_2020_settings: {
3610
3614
  }?
3611
3615
  }?,
3612
3616
  fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
data/sig/types.rbs CHANGED
@@ -4798,6 +4798,7 @@ module Aws::MediaLive
4798
4798
  attr_accessor hdr_10_settings: Types::Hdr10Settings
4799
4799
  attr_accessor rec_601_settings: Types::Rec601Settings
4800
4800
  attr_accessor rec_709_settings: Types::Rec709Settings
4801
+ attr_accessor hlg_2020_settings: Types::Hlg2020Settings
4801
4802
  SENSITIVE: []
4802
4803
  end
4803
4804
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.181.0
4
+ version: 1.182.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services