interface MediaStreamOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowOutputPropsMixin.MediaStreamOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowOutputPropsMixin_MediaStreamOutputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowOutputPropsMixin.MediaStreamOutputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowOutputPropsMixin.MediaStreamOutputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowOutputPropsMixin » MediaStreamOutputConfigurationProperty |
The media stream that is associated with the output, and the parameters for that association.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const mediaStreamOutputConfigurationProperty: mediaconnect_mixins.CfnFlowOutputPropsMixin.MediaStreamOutputConfigurationProperty = {
destinationConfigurations: [{
destinationIp: 'destinationIp',
destinationPort: 123,
interface: {
name: 'name',
},
}],
encodingName: 'encodingName',
encodingParameters: {
compressionFactor: 123,
encoderProfile: 'encoderProfile',
},
mediaStreamName: 'mediaStreamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | (IResolvable | Destination)[] | The transport parameters that are associated with each outbound media stream. |
| encoding | string | The format that was used to encode the data. |
| encoding | IResolvable | Encoding | A collection of parameters that determine how MediaConnect will convert the content. |
| media | string | The name of the media stream. |
destinationConfigurations?
Type:
IResolvable | (IResolvable | Destination)[]
(optional)
The transport parameters that are associated with each outbound media stream.
encodingName?
Type:
string
(optional)
The format that was used to encode the data.
For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.
encodingParameters?
Type:
IResolvable | Encoding
(optional)
A collection of parameters that determine how MediaConnect will convert the content.
These fields only apply to outputs on flows that have a CDI source.
mediaStreamName?
Type:
string
(optional)
The name of the media stream.

.NET
Go
Java
Python
TypeScript