StandardInputSpecificationProps
- class aws_cdk.aws_medialive_alpha.StandardInputSpecificationProps(*, codec=None, maximum_bitrate=None, resolution=None)
Bases:
object(experimental) Properties shared by all input specifications.
- 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.AVCmaximum_bitrate (
Optional[InputMaximumBitrate]) – (experimental) The maximum bitrate of the input. Default: InputMaximumBitrate.MAX_20_MBPSresolution (
Optional[InputResolution]) – (experimental) The resolution of the input. Default: InputResolution.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 # input_codec: medialive_alpha.InputCodec # input_maximum_bitrate: medialive_alpha.InputMaximumBitrate # input_resolution: medialive_alpha.InputResolution standard_input_specification_props = medialive_alpha.StandardInputSpecificationProps( codec=input_codec, maximum_bitrate=input_maximum_bitrate, resolution=input_resolution )
Attributes
- 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