class PipelineLockingMethod
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.PipelineLockingMethod |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#PipelineLockingMethod |
Java | software.amazon.awscdk.services.medialive.alpha.PipelineLockingMethod |
Python | aws_cdk.aws_medialive_alpha.PipelineLockingMethod |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป PipelineLockingMethod |
The method MediaLive uses to synchronise pipelines 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 |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static SOURCE_TIMECODE | Pipeline | Use the timecode in the source (the default). |
| static VIDEO_ALIGNMENT | Pipeline | Lock frames the encoder identifies as having matching content (visual signature comparison). |
value
Type:
string
The underlying string value passed to CloudFormation.
static SOURCE_TIMECODE
Type:
Pipeline
Use the timecode in the source (the default).
Requires reliable embedded timecodes.
static VIDEO_ALIGNMENT
Type:
Pipeline
Lock frames the encoder identifies as having matching content (visual signature comparison).
Does not require embedded timecodes; existing timecodes are ignored for locking decisions.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): PipelineLockingMethod
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (