interface MediaConnectRouterOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.MediaConnectRouterOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#MediaConnectRouterOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.MediaConnectRouterOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.MediaConnectRouterOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป MediaConnectRouterOutputDefinition |
Implements
Output
Output definition for a MediaConnect Router output group.
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';
declare const encodeConfiguration: medialive_alpha.EncodeConfiguration;
declare const m2tsSettings: medialive_alpha.M2tsSettings;
const mediaConnectRouterOutputDefinition: medialive_alpha.MediaConnectRouterOutputDefinition = {
encodes: [encodeConfiguration],
outputName: 'outputName',
// the properties below are optional
m2tsSettings: m2tsSettings,
};
Properties
| Name | Type | Description |
|---|---|---|
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
| m2ts | M2ts | MPEG-TS (M2TS) container settings for this output. |
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.
m2tsSettings?
Type:
M2ts
(optional, default: service defaults)
MPEG-TS (M2TS) container settings for this output.

.NET
Go
Java
Python
TypeScript (