CdiInputSpecificationProps

class aws_cdk.aws_medialive_alpha.CdiInputSpecificationProps(*, codec=None, maximum_bitrate=None, resolution=None, cdi_resolution=None)

Bases: StandardInputSpecificationProps

(experimental) Properties for a CDI input specification.

Parameters:
  • codec (Optional[InputCodec]) – (experimental) The codec of the input. This should match the codec of your source content, not the output codec. Default: InputCodec.AVC

  • maximum_bitrate (Optional[InputMaximumBitrate]) – (experimental) The maximum bitrate of the input. Default: InputMaximumBitrate.MAX_20_MBPS

  • resolution (Optional[InputResolution]) – (experimental) The resolution of the input. Default: InputResolution.HD

  • cdi_resolution (Optional[CdiInputResolution]) – (experimental) The maximum resolution of the most demanding CDI input. Default: CdiInputResolution.HD

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

# cdi_input_resolution: medialive_alpha.CdiInputResolution
# input_codec: medialive_alpha.InputCodec
# input_maximum_bitrate: medialive_alpha.InputMaximumBitrate
# input_resolution: medialive_alpha.InputResolution

cdi_input_specification_props = medialive_alpha.CdiInputSpecificationProps(
    cdi_resolution=cdi_input_resolution,
    codec=input_codec,
    maximum_bitrate=input_maximum_bitrate,
    resolution=input_resolution
)

Attributes

cdi_resolution

(experimental) The maximum resolution of the most demanding CDI input.

Default:

CdiInputResolution.HD

Stability:

experimental

codec

(experimental) The codec of the input.

This should match the codec of your source content, not the output codec.

Default:

InputCodec.AVC

Stability:

experimental

maximum_bitrate

(experimental) The maximum bitrate of the input.

Default:

InputMaximumBitrate.MAX_20_MBPS

Stability:

experimental

resolution

(experimental) The resolution of the input.

Default:

InputResolution.HD

Stability:

experimental