interface PipelineOutputLockingProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.PipelineOutputLockingProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#PipelineOutputLockingProps |
Java | software.amazon.awscdk.services.medialive.alpha.PipelineOutputLockingProps |
Python | aws_cdk.aws_medialive_alpha.PipelineOutputLockingProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป PipelineOutputLockingProps |
Properties for pipeline output locking.
Example
// Video-aligned pipeline locking โ useful when sources lack reliable timecodes
const locking = medialive.OutputLocking.pipeline({
method: medialive.PipelineLockingMethod.VIDEO_ALIGNMENT,
});
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | A custom epoch (ISO-8601 timestamp) to lock outputs to. |
| method? | Pipeline | The method MediaLive uses to synchronise the pipelines. |
customEpoch?
Type:
string
(optional, default: service default)
A custom epoch (ISO-8601 timestamp) to lock outputs to.
method?
Type:
Pipeline
(optional, default: SOURCE_TIMECODE, applied by MediaLive)
The method MediaLive uses to synchronise the pipelines.

.NET
Go
Java
Python
TypeScript (