interface SrtOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.SrtOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.SrtOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtOutputDefinition |
Implements
Output
Output definition for an SRT output group.
outputName is normalised (underscores โ hyphens) for use as the destination reference ID.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import * as cdk from 'aws-cdk-lib';
declare const encodeConfiguration: medialive_alpha.EncodeConfiguration;
declare const m2tsSettings: medialive_alpha.M2tsSettings;
declare const srtDestination: medialive_alpha.SrtDestination;
declare const srtEncryptionType: medialive_alpha.SrtEncryptionType;
const srtOutputDefinition: medialive_alpha.SrtOutputDefinition = {
destinations: [srtDestination],
encodes: [encodeConfiguration],
outputName: 'outputName',
// the properties below are optional
buffer: cdk.Duration.minutes(30),
encryptionType: srtEncryptionType,
latency: cdk.Duration.minutes(30),
m2tsSettings: m2tsSettings,
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations | Srt[] | The SRT destination(s) for this output โ one per channel pipeline. |
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
| buffer? | Duration | The output buffering. |
| encryption | Srt | The encryption type for the SRT output. |
| latency? | Duration | The SRT latency. |
| m2ts | M2ts | MPEG-TS (M2TS) container settings for this output. |
destinations
Type:
Srt[]
The SRT destination(s) for this output โ one per channel pipeline.
MediaLive publishes each SRT output to one destination per pipeline (the console
calls these "Destination A" and "Destination B"). Provide a single destination for a
SINGLE_PIPELINE channel, or two (A then B) for a STANDARD channel. Each pipeline
can target a different listener and carry its own encryption passphrase.
encodes
Type:
Encode[]
The encode configurations to wire to this output.
outputName
Type:
string
The name of this output.
Must be unique across all outputs in the channel.
buffer?
Type:
Duration
(optional, default: service default)
The output buffering.
Applied at millisecond granularity.
encryptionType?
Type:
Srt
(optional, default: no encryption)
The encryption type for the SRT output.
latency?
Type:
Duration
(optional, default: service default)
The SRT latency.
m2tsSettings?
Type:
M2ts
(optional, default: service defaults)
MPEG-TS (M2TS) container settings for this output.

.NET
Go
Java
Python
TypeScript (