interface MultiplexProgramChannelDestinationSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_MultiplexProgramChannelDestinationSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » MultiplexProgramChannelDestinationSettingsProperty |
Destination settings for a Multiplex output.
The parent of this entity is OutputDestination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const multiplexProgramChannelDestinationSettingsProperty: medialive_mixins.CfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty = {
multiplexId: 'multiplexId',
programName: 'programName',
};
Properties
| Name | Type | Description |
|---|---|---|
| multiplex | string | The ID of the Multiplex that the encoder is providing output to. |
| program | string | The program name of the Multiplex program that the encoder is providing output to. |
multiplexId?
Type:
string
(optional)
The ID of the Multiplex that the encoder is providing output to.
You do not need to specify the individual inputs to the Multiplex; MediaLive will handle the connection of the two MediaLive pipelines to the two Multiplex instances. The Multiplex must be in the same region as the Channel.
programName?
Type:
string
(optional)
The program name of the Multiplex program that the encoder is providing output to.

.NET
Go
Java
Python
TypeScript