FrameCaptureOutputDefinition

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

Bases: OutputDefinition

(experimental) Output definition for a Frame Capture 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.

  • 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

frame_capture_output_definition = medialive_alpha.FrameCaptureOutputDefinition(
    encodes=[encode_configuration],
    output_name="outputName",

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

Attributes

encodes

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

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