interface MultiplexOutputSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.MultiplexOutputSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_MultiplexOutputSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.MultiplexOutputSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.MultiplexOutputSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » MultiplexOutputSettingsProperty |
Configuration of a Multiplex output.
The parent of this entity is OutputSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const multiplexOutputSettingsProperty: medialive.CfnChannel.MultiplexOutputSettingsProperty = {
containerSettings: {
multiplexM2TsSettings: {
absentInputAudioBehavior: 'absentInputAudioBehavior',
arib: 'arib',
audioBufferModel: 'audioBufferModel',
audioFramesPerPes: 123,
audioStreamType: 'audioStreamType',
ccDescriptor: 'ccDescriptor',
ebif: 'ebif',
esRateInPes: 'esRateInPes',
klv: 'klv',
nielsenId3Behavior: 'nielsenId3Behavior',
pcrControl: 'pcrControl',
pcrPeriod: 123,
scte35Control: 'scte35Control',
scte35PrerollPullupMilliseconds: 123,
},
},
destination: {
destinationRefId: 'destinationRefId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| container | IResolvable | Multiplex | |
| destination? | IResolvable | Output | Destination is a Multiplex. |
containerSettings?
Type:
IResolvable | Multiplex
(optional)
destination?
Type:
IResolvable | Output
(optional)
Destination is a Multiplex.

.NET
Go
Java
Python
TypeScript