MsSmoothOutputDefinition

class aws_cdk.aws_medialive_alpha.MsSmoothOutputDefinition(*, encodes, output_name, h265_packaging_type=None, name_modifier=None)

Bases: OutputDefinition

(experimental) Output definition for an MS Smooth output group.

Parameters:
  • encodes (Sequence[EncodeConfiguration]) – (experimental) The encode configurations to wire to this output.

  • output_name (str) – (experimental) The name of this output. Must be unique across all outputs in the channel.

  • h265_packaging_type (Optional[H265PackagingType]) – (experimental) For H.265 video, whether to package as HEV1 or HVC1. Default: - service default

  • name_modifier (Optional[str]) – (experimental) A string concatenated to the end of the destination file name. Required if the output group contains more than one output. Default: - no name modifier

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

# encode_configuration: medialive_alpha.EncodeConfiguration
# h265_packaging_type: medialive_alpha.H265PackagingType

ms_smooth_output_definition = medialive_alpha.MsSmoothOutputDefinition(
    encodes=[encode_configuration],
    output_name="outputName",

    # the properties below are optional
    h265_packaging_type=h265_packaging_type,
    name_modifier="nameModifier"
)

Attributes

encodes

(experimental) The encode configurations to wire to this output.

Stability:

experimental

h265_packaging_type

(experimental) For H.265 video, whether to package as HEV1 or HVC1.

Default:
  • service default

Stability:

experimental

name_modifier

(experimental) A string concatenated to the end of the destination file name.

Required if the output group contains more than one output.

Default:
  • no name modifier

Stability:

experimental

output_name

(experimental) The name of this output.

Must be unique across all outputs in the channel.

Stability:

experimental