PipelineOutputLockingProps

class aws_cdk.aws_medialive_alpha.PipelineOutputLockingProps(*, custom_epoch=None, method=None)

Bases: object

(experimental) Properties for pipeline output locking.

Parameters:
  • custom_epoch (Optional[str]) – (experimental) A custom epoch (ISO-8601 timestamp) to lock outputs to. Default: - service default

  • method (Optional[PipelineLockingMethod]) – (experimental) The method MediaLive uses to synchronise the pipelines. Default: - SOURCE_TIMECODE, applied by MediaLive

Stability:

experimental

ExampleMetadata:

infused

Example:

# Video-aligned pipeline locking — useful when sources lack reliable timecodes
locking = medialive.OutputLocking.pipeline(
    method=medialive.PipelineLockingMethod.VIDEO_ALIGNMENT
)

Attributes

custom_epoch

(experimental) A custom epoch (ISO-8601 timestamp) to lock outputs to.

Default:
  • service default

Stability:

experimental

method

(experimental) The method MediaLive uses to synchronise the pipelines.

Default:
  • SOURCE_TIMECODE, applied by MediaLive

Stability:

experimental