interface MultiplexProgramChannelDestinationSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_MultiplexProgramChannelDestinationSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » 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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const multiplexProgramChannelDestinationSettingsProperty: medialive.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