interface MediaPackageOutputDestinationSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.MediaPackageOutputDestinationSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_MediaPackageOutputDestinationSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.MediaPackageOutputDestinationSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.MediaPackageOutputDestinationSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » MediaPackageOutputDestinationSettingsProperty |
Destination settings for a MediaPackage 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-lib';
const mediaPackageOutputDestinationSettingsProperty: medialive.CfnChannel.MediaPackageOutputDestinationSettingsProperty = {
channelGroup: 'channelGroup',
channelId: 'channelId',
channelName: 'channelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | |
| channel | string | The ID of the channel in MediaPackage that is the destination for this output group. |
| channel | string |
channelGroup?
Type:
string
(optional)
channelId?
Type:
string
(optional)
The ID of the channel in MediaPackage that is the destination for this output group.
You don't need to specify the individual inputs in MediaPackage; MediaLive handles the connection of the two MediaLive pipelines to the two MediaPackage inputs. The MediaPackage channel and MediaLive channel must be in the same Region.
channelName?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript