OutputDefinition

class aws_cdk.aws_medialive_alpha.OutputDefinition(*, encodes, output_name)

Bases: object

(experimental) Base output definition — shared by all output group types.

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.

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

output_definition = medialive_alpha.OutputDefinition(
    encodes=[encode_configuration],
    output_name="outputName"
)

Attributes

encodes

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

Stability:

experimental

output_name

(experimental) The name of this output.

Must be unique across all outputs in the channel.

Stability:

experimental