class OutputTimingSource
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.OutputTimingSource |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#OutputTimingSource |
Java | software.amazon.awscdk.services.medialive.alpha.OutputTimingSource |
Python | aws_cdk.aws_medialive_alpha.OutputTimingSource |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป OutputTimingSource |
Source of output timing.
Example
declare const stack: Stack;
declare const input: medialive.IInput;
declare const bucket: s3.IBucket;
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
new medialive.Channel(stack, 'Channel', {
inputs: [{ input }],
timecodeConfig: {
source: medialive.TimecodeSource.EMBEDDED,
},
globalConfiguration: {
outputLocking: medialive.OutputLocking.epoch(),
outputTimingSource: medialive.OutputTimingSource.INPUT_CLOCK,
},
outputGroups: [
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [{ encodes: [video, audio], outputName: 'hls_out' }],
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static INPUT_CLOCK | Output | Use the input clock. |
| static SYSTEM_CLOCK | Output | Use the system clock. |
value
Type:
string
The underlying string value passed to CloudFormation.
static INPUT_CLOCK
Type:
Output
Use the input clock.
static SYSTEM_CLOCK
Type:
Output
Use the system clock.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): OutputTimingSource
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (