interface MediaPackageOutputDestinationSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.MediaPackageOutputDestinationSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_MediaPackageOutputDestinationSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.MediaPackageOutputDestinationSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.MediaPackageOutputDestinationSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const mediaPackageOutputDestinationSettingsProperty: medialive_mixins.CfnChannelPropsMixin.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