Hdr10SettingsProps

class aws_cdk.aws_medialive_alpha.Hdr10SettingsProps(*, max_cll=None, max_fall=None)

Bases: object

(experimental) Properties for HDR10 color space settings.

Parameters:
  • max_cll (Union[int, float, None]) – (experimental) Maximum Content Light Level — the maximum light level of any single pixel in nits. Default: - service default

  • max_fall (Union[int, float, None]) – (experimental) Maximum Frame Average Light Level — the maximum average light level of any single frame in nits. Default: - service default

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

hdr10_settings_props = medialive_alpha.Hdr10SettingsProps(
    max_cll=123,
    max_fall=123
)

Attributes

max_cll

(experimental) Maximum Content Light Level — the maximum light level of any single pixel in nits.

Default:
  • service default

Stability:

experimental

max_fall

(experimental) Maximum Frame Average Light Level — the maximum average light level of any single frame in nits.

Default:
  • service default

Stability:

experimental